Advertisement
mrkoval

Untitled

Nov 23rd, 2017
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.75 KB | None | 0 0
  1.  
  2.  
  3. <Grid.ColumnDefinitions>
  4.  
  5.             <ColumnDefinition Width="120" />
  6.  
  7.             <ColumnDefinition />
  8.  
  9.         </Grid.ColumnDefinitions>
  10.  
  11.         <Grid.RowDefinitions>
  12.  
  13.             <RowDefinition />
  14.  
  15.             <RowDefinition Height="25"/>
  16.  
  17.             <RowDefinition Height="25"/>
  18.  
  19.             <RowDefinition Height="25"/>
  20.  
  21.             <RowDefinition Height="25"/>
  22.  
  23.         </Grid.RowDefinitions>
  24. <Grid.ColumnDefinitions>
  25.  
  26.             <ColumnDefinition Width="120" />
  27.  
  28.             <ColumnDefinition />
  29.  
  30.         </Grid.ColumnDefinitions>
  31.  
  32.         <Grid.RowDefinitions>
  33.  
  34.             <RowDefinition />
  35.  
  36.             <RowDefinition Height="25"/>
  37.  
  38.             <RowDefinition Height="25"/>
  39.  
  40.             <RowDefinition Height="25"/>
  41.  
  42.             <RowDefinition Height="25"/>
  43.  
  44.         </Grid.RowDefinitions>
  45.  
  46.         <TextBlock>Users</TextBlock>
  47.  
  48.         <DataGrid x:Name="dataGrid" Grid.Column="1" Margin="0 0 0 3" >
  49.  
  50.         </DataGrid>
  51.  
  52.         <TextBlock Grid.Row="1">Name
  53.  
  54.         </TextBlock>
  55.  
  56.         <TextBox x:Name="tbName" Grid.Row="1" Grid.Column="1" Height="22"
  57.  
  58.             Text=""/>
  59.  
  60.         <TextBlock Grid.Row="2">Telephone Number</TextBlock>
  61.  
  62.         <TextBox x:Name="tbTel" Grid.Row="2" Grid.Column="1" Height="22"
  63.  
  64.             Text=""/>
  65.  
  66.         <TextBlock Grid.Row="3">Email Address</TextBlock>
  67.  
  68.         <TextBox x:Name="tbEmail" Grid.Row="3" Grid.Column="1" Height="22"
  69.  
  70.             Text=""/>
  71.  
  72.         <TextBlock Grid.Row="4">Student</TextBlock>
  73.  
  74.         <CheckBox x:Name="cbStudent" Grid.Row="4" Grid.Column="1" Height="22"
  75.  
  76.             IsChecked=""/>
  77.  
  78.         <Button Grid.Row="4" Grid.Column="1" HorizontalAlignment="Right"
  79.  
  80.                 Height="22" Width="50" >Add</Button>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement