forked from zachtaylor1/SWProj
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKeyRequest.xaml
More file actions
25 lines (24 loc) · 1.07 KB
/
KeyRequest.xaml
File metadata and controls
25 lines (24 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<Page x:Class="SWProjv1.KeyRequest"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:SWProjv1"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800"
Title="KeyRequest">
<Grid Background="#FFE5E5E5">
<StackPanel>
<TextBlock HorizontalAlignment="Center" FontSize="18" Text="Request Key"/>
<TextBlock Text="Name:"/>
<TextBox Name="name_inp"/>
<TextBlock Text="Student Number:"/>
<TextBox Name="stdNum_inp"/>
<TextBlock Text="Residence Building:"/>
<TextBox Name="building_inp"/>
<TextBlock Text="Room Number:"/>
<TextBox Name="room_inp"/>
<Button Name="submit_btn" Content="Submit Form" Click="submit_btn_Click"/>
</StackPanel>
</Grid>
</Page>