added samples
[windows-sources.git] / sdk / samples / WPFSamples / TextBox_CursorToEnd / csharp / window1.xaml
blob9d5c796dd4c4b942730995c2625fbb2bc8fd6b3b
1 <Window  
2   xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3   xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"    
4   x:Class="SDKSample.Window1"
5   Title="CursorToEnd">
6   <StackPanel>    
7       <TextBox
8         Name="tbPositionCursor"
9         TextWrapping="Wrap"
10         AcceptsReturn="True"
11         VerticalScrollBarVisibility="Visible">
12         Here is some text in my TextBox...
13       </TextBox>
14       <Button   Click="OnClickMoveToStart" Width="150">Cursor To Start</Button>
15       <Button   Click="OnClickMoveToEnd" Width="150">Cursor To End</Button>
16   </StackPanel>
17 </Window>