Advertisement
Tosker

WPF INotifyPropertyChanged Tutorial - Unbound XAML

Dec 7th, 2016
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.59 KB | None | 0 0
  1.     <!-- www.toskerscorner.com -->
  2. <Grid>
  3.         <DockPanel LastChildFill="False">
  4.             <StackPanel Width="150" DockPanel.Dock="Top">
  5.                 <TextBlock Text="Unknown/>
  6.                 <TextBox Text=""/>
  7.                 <Button>Submit</Button>
  8.             </StackPanel>
  9.             <StackPanel HorizontalAlignment="Center" Orientation="Horizontal" DockPanel.Dock="Bottom">
  10.                 <Button>Red Background</Button>
  11.                 <Button>Blue Background</Button>
  12.                 <Button>Yellow Background</Button>
  13.             </StackPanel>
  14.         </DockPanel>
  15.     </Grid>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement