-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCompanian.xaml
More file actions
21 lines (20 loc) · 1.86 KB
/
Companian.xaml
File metadata and controls
21 lines (20 loc) · 1.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<Window x:Class="EdGo.Companian"
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:EdGo"
mc:Ignorable="d"
Title="Companian Data" Height="260" Width="400" Closing="Window_Closing">
<Grid>
<Label x:Name="label" Content="E:D Account Email" HorizontalAlignment="Left" Margin="5,5,0,0" VerticalAlignment="Top"/>
<TextBox x:Name="inputEmail" Height="20" Margin="5,30,0,0" TextWrapping="Wrap" Text="" VerticalAlignment="Top" Width="380" KeyUp="input_KeyUp"/>
<Label x:Name="label1" Content="Account Password" HorizontalAlignment="Left" Margin="5,55,0,0" VerticalAlignment="Top"/>
<TextBox x:Name="inputPassword" Height="20" Margin="5,80,0,0" TextWrapping="Wrap" Text="" VerticalAlignment="Top" Width="380" KeyUp="input_KeyUp"/>
<Label x:Name="label3" Content="Confirmation Code (from account email)" HorizontalAlignment="Left" Margin="5,105,0,0" VerticalAlignment="Top"/>
<TextBox x:Name="inputCode" Height="20" Margin="5,130,0,0" TextWrapping="Wrap" Text="" VerticalAlignment="Top" Width="380" KeyUp="inputCode_KeyUp"/>
<Button x:Name="buttonNext" Content="Next >>" HorizontalAlignment="Left" Margin="8,165,0,0" VerticalAlignment="Top" Width="75" Height="25" Click="buttonNext_Click"/>
<Button x:Name="buttonSend" Content="Send to Server" HorizontalAlignment="Left" Margin="100,165,0,0" VerticalAlignment="Top" Width="100" Height="25" Click="buttonNext_Click"/>
<Button x:Name="buttonCancel" Content="Cancel" HorizontalAlignment="Left" Margin="215,165,0,0" VerticalAlignment="Top" Width="75" Height="25" IsCancel="True"/>
</Grid>
</Window>