Advertisement
Guest User

Untitled

a guest
Dec 17th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.74 KB | None | 0 0
  1.  <Grid>
  2.         <Grid.ColumnDefinitions>
  3.             <ColumnDefinition/>
  4.             <ColumnDefinition Width="0.5*"/>
  5.             <ColumnDefinition/>
  6.         </Grid.ColumnDefinitions>
  7.         <Grid Grid.Column="1">
  8.             <Grid.RowDefinitions>
  9.                 <RowDefinition/>
  10.                 <RowDefinition/>
  11.                 <RowDefinition/>
  12.                 <RowDefinition/>
  13.             </Grid.RowDefinitions>
  14.         </Grid>
  15.         <Calendar Grid.Column="2" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  16.         <Button Grid.Column="1" Grid.Row="0" Content="Insert event" Command="{Binding Insertevent}"/>
  17.         <Button Grid.Column="1" Grid.Row="1" Content="Delete event" Command="{Binding Deletevent}"/>
  18.     </Grid>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement