0
votes
2answers
34 views
WPF - How to get only one expander expanded at any one time
I've got a StackPanel with a group of expanders in, how do I set it so that only expander is expanded at any one time?
Cheers
AW
0
votes
1answer
20 views
Anyone know how to create an Expander in the SketchFlow style?
I've checked the Expression Blend + Sketchflow forum, and also looked through the Gallery, but haven't found an expander control that's in the SketchFlow style. Can anyone point me to one, or offer …
2
votes
2answers
41 views
ListView with nested Expander not collapsing
This question is the same as this other unanswered question.
When the Expander is expanded the outer ListView grows to make space for the expanders contents, but when the Expander is then collapsed …
0
votes
1answer
255 views
Accessing expander from Listbox’s groupstyle
Hi,
I am using a WPF Listbox which is databound to an ICollectionView to display a list of items that can be filtered. And I am using context menu on the ListBox to group the items in the Listbox. …
1
vote
1answer
81 views
Preventing a WPF Expander from expanding when header is clicked
How can I prevent a WPF Expander from expanding when its header is clicked? I would like my Expander to expand or collapse only when the expand button itself is clicked.
I imagine the answer has …
0
votes
2answers
80 views
jQuery expander with max-lines property
Hi,
I really thinks jQuery Expander plugin is great but it can't do satisfy my needs. It cuts text and put a "read more" button after the text which expands the text. But it only cuts when the text …
1
vote
2answers
62 views
How do I anchor an expander to right side of a ListBox?
The XAML code below works fine except I want the expander button to be between the listbox and the grid. If I set the ExpandDirection="Left" the button is between the listbox and the grid but the …
0
votes
1answer
43 views
jquery ie7 css height inconsistent result compared to firefox
var heightOfDIV = $thisElement.css('height');
alert(heightOfDIV);
The above works as I expected it to work when I am using Firefox.
It returns me the div element that triggers the above code. I get …
0
votes
1answer
84 views
Expand WPF Expander to bring contained element into view
I have an expander that has n contained elements (possibly other Expanders that also contain elements).
Now I want to programmatically bring a contained element into view - like with BringIntoView() …
1
vote
3answers
170 views
WPF Expander still shows Validation Error adorner when shrunk
I've got a style for a TextBox to show a validation error message as follows:
<Style TargetType="{x:Type TextBox}">
<Style.Triggers>
<Trigger …
1
vote
2answers
114 views
How can I set the minimum size of a expander control in WPF ?
How can I set expander to show some content it encloses even in collapsed state ? I have the following code snippet, can anyone point changes to this code ?
<Window x:Class="UI2.Window1"
…
0
votes
0answers
102 views
Fire WPF DataGrid edit from child element
You can refer to this question for background/explanation of what the context to my problem is.
Basically, I have a WPF DataGrid bound to an ObservableCollection of an IEditableObject object. In a …
-1
votes
2answers
110 views
How to remove the border line for the header in the expander control in silverlight 3?
Please suggest a right answer
1
vote
4answers
134 views
WPF Style.Trigger
Hi,
Somebody can tell me why this trigger doesn't work:
<!--Style-->
<Style x:Key="Test" TargetType="{x:Type Expander}">
<Style.Triggers>
<Trigger …
0
votes
2answers
141 views
Stackpanel with multiple expanders
Hi
I have a stackpanel with multiple expanders:
<StackPanel Margin="0,10,0,0">
<Expander Header="Test 1">
<ListBox>
<ListBoxItem Content="Unit 1"/>
…
