forked from zachtaylor1/SWProj
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRAApplication.xaml
More file actions
50 lines (47 loc) · 2.41 KB
/
RAApplication.xaml
File metadata and controls
50 lines (47 loc) · 2.41 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<Page x:Class="SWProjv1.RAApplication"
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="RAApplication">
<!--<Grid Background="#FFE5E5E5">
<StackPanel>
<TextBlock HorizontalAlignment="Center" FontSize="18" Text="Residence Assistant Application"/>
<TextBlock Text="Name:"/>
<TextBox Name="name_inp"/>
<TextBlock Text="Student Number:"/>
<TextBox Name="stdNum_inp"/>
<TextBlock Text="Why are you applying to be a Residence Assistant? (250 character max)"/>
<TextBox Name="essay_inp" MinLines="10" VerticalScrollBarVisibility="Visible" TextWrapping="Wrap" AcceptsReturn="True" AcceptsTab="True"/>
<Button Name="submit_btn" Content="Submit Form" Click="submit_btn_Click"/>
</StackPanel>
</Grid>
</Page>-->
<Grid Name="grid" Background="#FFE5E5E5">
<Grid.ColumnDefinitions>
<ColumnDefinition/>
<ColumnDefinition Width="1.8*"/>
<ColumnDefinition/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="0.1*"/>
<RowDefinition/>
<RowDefinition Height="0.1*"/>
</Grid.RowDefinitions>
<StackPanel Grid.Column="1" Grid.Row="1" Grid.RowSpan="2">
<TextBlock HorizontalAlignment="Center" FontSize="18" Text="Residence Assistant Application"/>
<TextBlock Text="First Name:"/>
<TextBox Name="fname_inp" MinWidth="150"/>
<TextBlock Text="Last Name:"/>
<TextBox Name="lname_inp" MinWidth="150"/>
<TextBlock Text="Student Number:"/>
<TextBox Name="stdNum_inp" MinWidth="150"/>
<TextBlock Text="Why are you applying to be a Residence Assistant? (250 character max)"/>
<TextBox Name="essay_inp" MinLines="10" VerticalScrollBarVisibility="Visible" TextWrapping="Wrap" AcceptsReturn="True" AcceptsTab="True"/>
<Button Name="submit_btn" Content="Submit Form" Click="submit_btn_Click" VerticalAlignment="Bottom"/>
</StackPanel>
</Grid>
</Page>