Create a scroll viewer using the ScrollViewer element. : ScrollViewer « Windows Presentation Foundation « VB.Net

Home
VB.Net
1.2D
2.Application
3.Class
4.Data Structure
5.Data Types
6.Database ADO.net
7.Date Time
8.Development
9.Event
10.File Directory
11.Generics
12.GUI
13.Internationalization I18N
14.Language Basics
15.LINQ
16.Network Remote
17.Reflection
18.Security
19.Thread
20.Windows Presentation Foundation
21.Windows System
22.XML
23.XML LINQ
VB.Net » Windows Presentation Foundation » ScrollViewerScreenshots 
Create a scroll viewer using the ScrollViewer element.
Create a scroll viewer using the ScrollViewer element.
            


<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
      xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
      WindowTitle="ScrollViewer Sample">
  <ScrollViewer HorizontalScrollBarVisibility="Auto">
    <StackPanel VerticalAlignment="Top" HorizontalAlignment="Left">
      <TextBlock TextWrapping="Wrap" Margin="0,0,0,20">Scrolling is enabled when it is necessary. 
      Resize the window, making it larger and smaller.</TextBlock>
      <Rectangle Fill="Red" Width="500" Height="500"></Rectangle>
    </StackPanel>
  </ScrollViewer>
</Page>

   
    
    
    
    
    
    
    
    
    
    
    
  
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.Scroll Viewer and stack panelScroll Viewer and stack panel
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.