Advertisement
Tosker

ValueConverter Window Content

Jun 7th, 2017
1,273
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.30 KB | None | 0 0
  1.     <Window.Resources>
  2.         <!-- Converters defined here -->
  3.     </Window.Resources>
  4.     <Grid>
  5.         <Grid.RowDefinitions>
  6.             <RowDefinition/>
  7.             <RowDefinition/>
  8.             <RowDefinition/>
  9.         </Grid.RowDefinitions>
  10.         <Grid.ColumnDefinitions>
  11.             <ColumnDefinition/>
  12.             <ColumnDefinition/>
  13.         </Grid.ColumnDefinitions>
  14.  
  15.         <!-- Example 1 -->
  16.         <StackPanel Grid.Column="0" Grid.Row="0" Margin="5">
  17.             <CheckBox Content="Is Visible"/>
  18.         </StackPanel>
  19.  
  20.         <StackPanel Grid.Column="1" Grid.Row="0" Margin="5">
  21.             <Button Content="I am visible!" />
  22.         </StackPanel>
  23.  
  24.         <!-- Example 2 -->
  25.         <StackPanel Grid.Column="0" Grid.Row="1" Margin="5">
  26.             <CheckBox Content="Is Online"/>
  27.         </StackPanel>
  28.  
  29.         <StackPanel Grid.Column="1" Grid.Row="1" Margin="5">
  30.             <Label Content="FrogPattle13" />
  31.         </StackPanel>
  32.  
  33.         <!-- Example 3 -->
  34.         <StackPanel Grid.Column="0" Grid.Row="2" Margin="5">
  35.             <CheckBox Content="Signup for Newsletter"/>
  36.         </StackPanel>
  37.  
  38.         <StackPanel Grid.Column="1" Grid.Row="2" Margin="5">
  39.             <Label>Signed up for newsletter</Label>
  40.             <TextBox />
  41.         </StackPanel>
  42.     </Grid>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement