Scroll Viewer and stack panel : ScrollViewer « Windows Presentation Foundation « VB.Net






Scroll Viewer and stack panel

Scroll Viewer and stack panel
            
<Window 
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Fun with Panels!" Height="186" Width="501">

  <ScrollViewer>
    <StackPanel>
      <Button Content ="First" Background = "Green" Height ="40"/>
      <Button Content ="Second" Background = "Red" Height ="40"/>
      <Button Content ="Third" Background = "Pink" Height ="40"/>
      <Button Content ="Fourth" Background = "Yellow" Height ="40"/>
      <Button Content ="Fifth" Background = "Blue" Height ="40"/>    
    </StackPanel>
  </ScrollViewer>
</Window>

   
    
    
    
    
    
    
    
    
    
    
    
  








Related examples in the same category

1.Add StackPanel to ScrollViewerAdd StackPanel to ScrollViewer
2.Display Content in a Scrollable User InterfaceDisplay Content in a Scrollable User Interface
3.Hidden ScrollViewerHidden ScrollViewer
4.Raise the ScrollChanged event of a ScrollViewerRaise the ScrollChanged event of a ScrollViewer
5.Use the content-scrolling methods of the ScrollViewer classUse the content-scrolling methods of the ScrollViewer class
6.Create a scroll viewer using the ScrollViewer element.Create a scroll viewer using the ScrollViewer element.