#913 – Changing the Direction that an Expander Expands
September 24, 2013 1 Comment
By default, an Expander control expands down, placing the content of the Expander below the header, when the control is expanded.
You can cause the Expander to expand in a different direction using the ExpandDirection property. Valid values are Up, Down, Left or Right.
<Expander ExpandDirection="Right"> <Expander.Header> <Image Source="CptBlood-1935.png" Width="51" Height="72"/> </Expander.Header> <Grid> <Grid.RowDefinitions> <RowDefinition Height="Auto"/> <RowDefinition Height="Auto"/> <RowDefinition Height="Auto"/> <RowDefinition Height="Auto"/> </Grid.RowDefinitions> <Grid.ColumnDefinitions> <ColumnDefinition Width="Auto"/> <ColumnDefinition/> </Grid.ColumnDefinitions> <Label Grid.Row="0" Grid.Column="0" Content="Title" FontWeight="Bold"/> <Label Grid.Row="0" Grid.Column="1" Content="Captain Blood"/> <Label Grid.Row="1" Grid.Column="0" Content="Year" FontWeight="Bold"/> <Label Grid.Row="1" Grid.Column="1" Content="1935"/> <Label Grid.Row="2" Grid.Column="0" Content="Director" FontWeight="Bold"/> <Label Grid.Row="2" Grid.Column="1" Content="Michael Curtiz"/> <Label Grid.Row="3" Grid.Column="0" Content="Star" FontWeight="Bold"/> <Label Grid.Row="3" Grid.Column="1" Content="Errol Flynn"/> </Grid> </Expander>
Pingback: Dew Drop – September 24, 2013 (#1,630) | Morning Dew