Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
1answer
6k views

Animate Expander in WPF

How to animate the expanded and collapsed actions of a Wpf expander control?
9
votes
2answers
22k views

How to style a WPF Expander Header?

I would like to apply a style on a WPF Expander Header. In the following XAML I have an Expander but the style is for all of it not just for the header. Thanks. <Page ...
8
votes
1answer
6k views

Hidding the Arrows for the WPF Expander Control

When using the WPF Expander control it is displayed with the default "Up" and "Down" arrow keys. Is there any way to hide those up and down arrows? UPDATE: I managed to remove the arrows by ...
6
votes
4answers
861 views

WPF - Expand Window to the Left

I have a WPF window with expandable panel (via Expander). The panel is on the left side of the window, and when expanded the window grows to fit the content. By default, windows are anchored to the ...
6
votes
2answers
3k views

WPF Expander Button Styled so it is inside Expander Header

I am using the Expander control and have styled the header as shown in the picture below: The problem I have is that I want the expander button to be contained within the header so that the line ...
5
votes
2answers
331 views

Get the Height of the WPF Expander Header

I need to get the Height of the WPF Expander.Header, not the whole Expander just the Height of the Header. There is no property to get it because the Expander.Header + Expander.Content is the ...
5
votes
2answers
1k 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 ...
4
votes
1answer
160 views

Child Expanders raising Parent Expander's Expanded and Collapsed Events?

For some reason, child Expanders (placed in a StackPanel inside of another Expander), when collapsed or expanded, cause the parent Expander to raise its Expanded or Collapsed events. Anyone know why ...
4
votes
2answers
1k views

Scroll AND Stretch the content of an Expander

This is what I want: 1.) When I click my Expander button and it expands it should stretch down to the end of the Grid see sample image => 2.) When I write more Text than space is available in the ...
4
votes
3answers
4k views

WPF Listbox + Expander events

I have an Expander in the ItemTemplate of a ListBox. Renders fine. The issue I have run into is that I would like the ListBox_SelectionChanged event to fire when the expander is expanded and/or ...
4
votes
2answers
4k views

How can I set the TabIndex on a WPF Expander control?

In this example window, tabbing through goes from the first textbox, to the last textbox and then to the expander header. <Window x:Class="ExpanderTab.Window1" ...
4
votes
5answers
9k views

How to make WPF Expander Stretch?

The Expander control in WPF does not stretch to fill all the available space. Is there any solutions in XAML for this?
3
votes
1answer
253 views

How do I get jQuery .expander to invoke on load and not just on click?

I am having problems with jQuery .expander function and invoking it when the page loads and I know it has to do with the data being dynamically populated with jQuery. NOTE: It looks like altering ...
3
votes
2answers
1k views

Combine expander and grid (resizable expander)

I would like to have something like a resizable Expander. My basic idea was something like this: <Grid HorizontalAlignment="Left"> <Grid.ColumnDefinitions> ...
3
votes
1answer
306 views

Why doesn't my Expander expand when I set its template?

I'm trying to change the colour of an Expander's expand button, and it seems the only way to do that is to change its control template, as there is no property to set that. So, I've used Show Me The ...
3
votes
1answer
830 views

WPF Restrict size of an expander

I have a multiple treeviews inside expanders, which can grow in height along with the content. But when the height gets larger than the window's size, it goes outside the window. The obvious ...
3
votes
2answers
876 views

Putting an icon at the right end of a WPF expander control

Hi I am attempting to put a green tick icon at the right end of a WPF Expander control when a checkbox is set. My code currently is: <Expander x:Name="ImageExpander"> ...
3
votes
1answer
513 views

Disable TabStop on Expander

I set IsTabStop to False, but Tab still navigates to the expander. Any ideas what am I doing wrong? <Expander Header="Data" IsTabStop="False"> <Border Background="White" ...
3
votes
2answers
247 views

Long URLs from short ones using C#

I've been using the LongURL.org API for expanding short URLs. The great thing about this service is that it returns a long URL, the title of the actual page and meta-info. The real problem I have is ...
3
votes
1answer
1k views

How do I change the WPF Expander Header Text when expanded or collapsed?

Using a WPF expander, I want the Header to change from See More to See Less when the control is expanded, and back to See More when it's collapsed again. I'd prefer a WPF pure solution, rather than a ...
3
votes
1answer
1k views

How to align WPF Expander control toggle button

Hi I was wondering is it possible to align the toggle button on a WPF expander control to the far right side?
3
votes
3answers
2k views

WPF Expander IsExpanded binding

I have an Expander control with its IsExpanded property bound to a bool in the mvvm model. The binding works fine until you dont touch the expander. Once you click the arrow in the expander to expand, ...
3
votes
1answer
1k views

Can't get WPF Listview to collapse when expanders in the listview collapse

I have a wpf ListView with two Expanders in it. When the expanders expand the listview makes room for the content. When they collapse the listview does not "take back" that extra space. I have set ...
3
votes
2answers
4k views

How to align TexBlocks in WPF Expander Header

I have Multiple Texblock in Expander Header. I want these TextBlocks aligned to Left, Right and Center. How can i achieve this? Please Help... Thanks Sharath The Text in Red should be left ...
3
votes
1answer
12k views

How to modify Expander button background only? WPF

I have an Expander placed on a window with a blue background and I would like to make the button for the expander another color than the default (blue, which it is receiving from the window). When I ...
2
votes
3answers
81 views

Vertical WrapPanel inside expander; I'm not able to wrap at window bottom

I'm working on a WPF project build a couple of years ago. One control is an expander control which groups a list of check-controls. This list of check-controls is arranged from Left to Right, Top ...
2
votes
2answers
65 views

How to use the IsEnabled to disable the parts of an Expander, but not the whole thing?

I have an expander with a custom template: <ControlTemplate TargetType="{x:Type Expander}"> <Grid> <Grid.RowDefinitions> <RowDefinition Height="Auto" ...
2
votes
2answers
3k views

Add a expander (collapse/expand) to a Panel WinForm

I have a panel containing a datagridview and 3 buttons at the bottom of a Form, i wanna to add the possibility to expand and collapse this panel, is there a way to do it in a Windows.Forms application ...
2
votes
2answers
1k views

GridSplitter with button for pinning like behavior

I'm looking to extend the GridSplitter in some way to add a button which when click expands or collapses the control to one of the specified sides of the splitter. I've found a solution that works ...
2
votes
1answer
231 views

WPF Expander - Can't see the internal controls in Visual Studio 2010 Design window

I'm using Visual Studio 2010 and in a WPF app I'm using an expander. The prob is that the GroupBox etc inside the Expander are hidden from view in the Design window. Any ideas to have them show? ...
2
votes
4answers
1k 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
2
votes
2answers
903 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 ...
2
votes
1answer
672 views

WPF - Scrolling Listbox in an Expander

I have an Expander that I want to have a ListBox in. When the I open the Expander, the ListBox just expands off the screen (rather than expanding to fill what is available and then scrolling). Here ...
2
votes
2answers
2k 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 ...
2
votes
1answer
457 views

How do I get content to realign around an expanding/collapsing WPF Expander?

Right now I have a Stackpanel, that contains a collapsed Expander, and a Listbox. The Listbox beneath the collapsed Expander is being positioned as if the Expander was expanded. Is it possible for ...
1
vote
1answer
321 views

Style WPF Expander icon like TreeView expander

I would like to style my WPF expander like the expanders used in this TreeView from Windows 7 (see screenshot below). Are there any styles available to do this? Edit: I am interested in the expander ...
1
vote
1answer
107 views

How to click content behind collapsed WPF expander?

When I collapse an expander, it visibly collapse, but I cannot click the content behind. It occupies the same space as if it were expanded... Is it possible to REALLY collapse an expander? Thanks ...
1
vote
3answers
247 views

How to resize the Expander.Content?

<Grid> <Grid.ColumnDefinitions> <ColumnDefinition Width="*" /> <ColumnDefinition Width="auto"/> </Grid.ColumnDefinitions> ...
1
vote
1answer
194 views

Treeview vs nested Expanders

Edit 2 : This is what i want to do with only 1 treeview : Edit : I want to know how make a treeview with different expander styles in terms of the level. I currently use nested expanders. ...
1
vote
1answer
228 views

problem with wpf datagrid selection + expander

I have an expander containing a datagrid with a rowdetailstemplate. When I click on a datagrid row to see the row details template, the expander closes! Anyone know why and how to fix this? Update ...
1
vote
1answer
105 views

Right-Click on a PyGTK Hbox in an Expander

I've got a gtk.Expander object, containing in its label a gtk.HBox, which packed a gtk.Image and a gtk.Label. I want to launch a Webbrowser when the HBox is right-clicked. Here is my code: def ...
1
vote
2answers
317 views

WPF Expander Toggle Button - adress them in setter?

Hi is it possible to assign a ToggleButtonStyle in a Setter in the ExpanderStyle? Like this is possible in the Calendar: <Style x:Key="CS" TargetType="{x:Type Calendar}" > <Setter ...
1
vote
0answers
66 views

User can't scroll or focus on controls in WPF Datagrid

I have a dock panel with an expander docked top and an expander docked bottom and a datagrid sandwhiched in the middle filling the remaining space. One of my users has a problem where he can't scroll ...
1
vote
0answers
284 views

List box of Expander does not collapse properly in Silverlight

I have a listbox of expanders in Silverlight. They expand fine, however, when they collapse, the stackpanel containing the expander does not minimize. I have attached a screenshot here. <Grid ...
1
vote
1answer
442 views

How to make expander expand over grid rows

I was looking for the answer of this, but all solutions I've found was not working properly. Here is the problem. I have interface,based on grid like the below: | __________________________________| ...
1
vote
1answer
504 views

How programatically collapse Expander in Silverlight?

I need to be able to collapse expander on clicking anywhere outside the expander area. I am wondering what technique can be used. Any advice is highly appreciated. Expander XAML - set binding to ...
1
vote
1answer
524 views

Unable to set value of AccordionItem.IsSelected

Is there any way to set a WPF accordion so all it's items are collapsed by default, only when I click the expander button it should expand? Update According to the template I realized that what ...
1
vote
0answers
591 views

WPF: Vertical expander conatining a ListView doesn't expand properly

I have an expander containing a list view. The expander is initially disabled, and enabled sometime after the application is started. Everything works great if before InitializeComponent() I populate ...
1
vote
1answer
1k views

WPF Expander expand behind the grid row

I have expander control in grid row. And I change the expander size on the expander button click to maximize the expander size. And on the collapse status I minimize the expander size. The problem is ...
1
vote
1answer
189 views

displaying images in a list box so the image resizes based on parent container

I have an expander with a list box in it that displays image thumbnails. I want the images to be sized according to the size of the listbox and the list box to be sized based on the width of the ...

1 2 3 4