Display Content in a Scrollable User Interface : ScrollViewer « Windows Presentation Foundation « VB.Net






Display Content in a Scrollable User Interface

Display Content in a Scrollable User Interface
       

<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="250">
    <TabControl>
        <TabItem Header="Visible ScrollBars">
            <ScrollViewer HorizontalScrollBarVisibility="Visible" 
                          VerticalScrollBarVisibility="Visible" >
                <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>
            </ScrollViewer>
        </TabItem>

    </TabControl>
</Window>

   
    
    
    
    
    
    
  








Related examples in the same category

1.Add StackPanel to ScrollViewerAdd StackPanel to ScrollViewer
2.Hidden ScrollViewerHidden ScrollViewer
3.Raise the ScrollChanged event of a ScrollViewerRaise the ScrollChanged event of a ScrollViewer
4.Use the content-scrolling methods of the ScrollViewer classUse the content-scrolling methods of the ScrollViewer class
5.Create a scroll viewer using the ScrollViewer element.Create a scroll viewer using the ScrollViewer element.
6.Scroll Viewer and stack panelScroll Viewer and stack panel