Advertisement
Alexallunited

Untitled

Nov 23rd, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.28 KB | None | 0 0
  1. <Grid.ColumnDefinitions>
  2.             <ColumnDefinition Width="120" />
  3.             <ColumnDefinition />
  4.         </Grid.ColumnDefinitions>
  5.         <Grid.RowDefinitions>
  6.             <RowDefinition />
  7.             <RowDefinition Height="25"/>
  8.             <RowDefinition Height="25"/>
  9.             <RowDefinition Height="25"/>
  10.             <RowDefinition Height="25"/>
  11.         </Grid.RowDefinitions>
  12.  
  13.         <TextBlock>Users</TextBlock>
  14.         <DataGrid x:Name="dataGrid" Grid.Column="1" Margin="0 0 0 3" >
  15.         </DataGrid>
  16.  
  17.  
  18.         <TextBlock Grid.Row="1">Name
  19.         </TextBlock>
  20.         <TextBox x:Name="tbName" Grid.Row="1" Grid.Column="1" Height="22"
  21.             Text=""/>
  22.  
  23.         <TextBlock Grid.Row="2">Telephone Number</TextBlock>
  24.         <TextBox x:Name="tbTel" Grid.Row="2" Grid.Column="1" Height="22"
  25.             Text=""/>
  26.  
  27.         <TextBlock Grid.Row="3">Email Address</TextBlock>
  28.         <TextBox x:Name="tbEmail" Grid.Row="3" Grid.Column="1" Height="22"
  29.             Text=""/>
  30.  
  31.         <TextBlock Grid.Row="4">Student</TextBlock>
  32.         <CheckBox x:Name="cbStudent" Grid.Row="4" Grid.Column="1" Height="22"
  33.             IsChecked=""/>
  34.  
  35.         <Button Grid.Row="4" Grid.Column="1" HorizontalAlignment="Right"
  36.                 Height="22" Width="50" >Add</Button>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement