54 lines
2.3 KiB
Text
54 lines
2.3 KiB
Text
|
|
<Window x:Class="RegisterBAdge.MainWindow"
|
||
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||
|
|
xmlns:local="clr-namespace:RegisterBAdge"
|
||
|
|
mc:Ignorable="d"
|
||
|
|
Title="Register Badge" Height="450" Width="800" Loaded="Window_Loaded">
|
||
|
|
<Grid>
|
||
|
|
<Grid.RowDefinitions>
|
||
|
|
<RowDefinition Height="40" />
|
||
|
|
<RowDefinition Height="*" />
|
||
|
|
<RowDefinition Height="20" />
|
||
|
|
</Grid.RowDefinitions>
|
||
|
|
<TextBlock Grid.Row="0" Text="Registratie Badge in Rems" Background="AntiqueWhite" HorizontalAlignment="Stretch" TextAlignment="Center" FontWeight="Bold" Margin="5,10,5,10" />
|
||
|
|
<Grid Grid.Row="1">
|
||
|
|
|
||
|
|
<Grid.RowDefinitions>
|
||
|
|
<RowDefinition Height="auto" />
|
||
|
|
<RowDefinition Height="auto" />
|
||
|
|
<RowDefinition Height="auto" />
|
||
|
|
<RowDefinition Height="auto" />
|
||
|
|
<RowDefinition Height="auto" />
|
||
|
|
<RowDefinition Height="auto" />
|
||
|
|
<RowDefinition Height="auto" />
|
||
|
|
</Grid.RowDefinitions>
|
||
|
|
<Grid.ColumnDefinitions>
|
||
|
|
<ColumnDefinition Width="auto" />
|
||
|
|
<ColumnDefinition/>
|
||
|
|
</Grid.ColumnDefinitions>
|
||
|
|
|
||
|
|
<TextBlock Text="PersID" Grid.Row="0" Grid.Column="0" Padding="10,0,10,0"/>
|
||
|
|
<TextBox Name="PersID" Grid.Row="0" Grid.Column="1"/>
|
||
|
|
|
||
|
|
<TextBlock Text="Name" Grid.Row="1" Grid.Column="0" Padding="10,0,10,0"/>
|
||
|
|
<TextBox Name="Name" Grid.Row="1" Grid.Column="1"/>
|
||
|
|
|
||
|
|
<TextBlock Text="FirstName" Grid.Row="2" Grid.Column="0" Padding="10,0,10,0"/>
|
||
|
|
<TextBox Name="FirstName" Grid.Row="2" Grid.Column="1"/>
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
<TextBlock Text="CSN: Card Serial Number" Grid.Row="3" Grid.Column="0" Padding="10,0,10,0"/>
|
||
|
|
<TextBox Name="CSN" Grid.Row="3" Grid.Column="1"/>
|
||
|
|
<TextBlock Text="SiteCode" Grid.Row="4" Grid.Column="0" Padding="10,0,10,0"/>
|
||
|
|
<TextBox Name="Site" Grid.Row="4" Grid.Column="1"/>
|
||
|
|
<TextBlock Text="BadgeCode" Grid.Row="5" Grid.Column="0" Padding="10,0,10,0"/>
|
||
|
|
<TextBox Name="Code" Grid.Row="5" Grid.Column="1"/>
|
||
|
|
|
||
|
|
</Grid>
|
||
|
|
</Grid>
|
||
|
|
</Window>
|
||
|
|
|