Add StackPanel to ScrollViewer : ScrollViewer « Windows Presentation Foundation « VB.Net






Add StackPanel to ScrollViewer

Add StackPanel to ScrollViewer
       

<Window x:Class="Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="UseScrollViewer" Height="300" Width="300">
    <Grid>
        <ScrollViewer Name="ScrollViewer1" HorizontalScrollBarVisibility="Auto" VerticalScrollBarVisibility="Auto">
            <StackPanel  Margin="0,0,0,0" Name="StackPanel1" VerticalAlignment="Top">
                <Image Margin="0,0,0,0" Name="Image1" Source="smile.bmp" Stretch="None" />
                <Label Height="Auto" Margin="0,0,0,0" Name="Label1" VerticalAlignment="Bottom" HorizontalContentAlignment="Center">Have a nice day!</Label>
            </StackPanel>
        </ScrollViewer>
    </Grid>
</Window>

   
    
    
    
    
    
    
  








Related examples in the same category

1.Display Content in a Scrollable User InterfaceDisplay Content in a Scrollable User Interface
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