Display Content in an Expander : Expander « Windows Presentation Foundation « VB.Net Tutorial






<Window x:Class="Main"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="WPF" Height="200" Width="300">
    <ScrollViewer HorizontalScrollBarVisibility="Auto"
        VerticalScrollBarVisibility="Auto" >
        <StackPanel HorizontalAlignment="Left">
            <Expander ExpandDirection="Right" IsExpanded="True">
                <Expander.Header>
                    <Image Source="c:\image.gif" />
                </Expander.Header>
                <TextBlock TextWrapping="Wrap" MaxWidth="200">
                    this is a test
                </TextBlock>
            </Expander>
            <Expander Header="Buttons">
                <StackPanel>
                    <StackPanel Orientation="Horizontal">
                        <Button Content="Button 1" Margin="2" />
                        <Button Content="Button 2" Margin="2" />
                        <Button Content="Button 3" Margin="2" />
                        <Button Content="Button 4" Margin="2" />
                        <Button Content="Button 5" Margin="2" />
                    </StackPanel>
                    <StackPanel HorizontalAlignment="Left">
                        <Button Content="Button A" Margin="2" />
                        <Button Content="Button B" Margin="2" />
                        <Button Content="Button C" Margin="2" />
                        <Button Content="Button D" Margin="2" />
                        <Button Content="Button E" Margin="2" />
                    </StackPanel>
                </StackPanel>
            </Expander>
        </StackPanel>
    </ScrollViewer>
</Window>
WPF Display Content In An Expander








16.46.Expander
16.46.1.Display Content in an ExpanderDisplay Content in an Expander
16.46.2.Multi Direction ExpandersMulti Direction Expanders
16.46.3.Use ExpanderUse Expander
16.46.4.Use the Expander control and set the ExpandDirection propertyUse the Expander control and set the ExpandDirection property