You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
2.8 KiB
54 lines
2.8 KiB
<Window x:Class="ToDoApp.SubWindow.JoinWindow"
|
|
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:ToDoApp.SubWindow"
|
|
mc:Ignorable="d"
|
|
Title="가입" Height="300" Width="300" ResizeMode="NoResize" WindowStyle="ToolWindow" WindowStartupLocation="CenterScreen"
|
|
Icon="../Resource/ToDo.png"
|
|
Loaded="Window_Loaded">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="2*"/>
|
|
<RowDefinition Height="2*"/>
|
|
<RowDefinition Height="2*"/>
|
|
<RowDefinition Height="2*"/>
|
|
<RowDefinition Height="*"/>
|
|
<RowDefinition Height="2*"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<StackPanel Grid.Row="0" Orientation="Horizontal" HorizontalAlignment="Center">
|
|
<TextBlock Text="사용자" Width="80" TextAlignment="Center" VerticalAlignment="Center" Margin="5"/>
|
|
<TextBox x:Name="tbName" Width="150" VerticalAlignment="Center" Margin="5"
|
|
KeyDown="tb_KeyDown"/>
|
|
</StackPanel>
|
|
|
|
<StackPanel Grid.Row="1" Orientation="Horizontal" HorizontalAlignment="Center">
|
|
<TextBlock Text="비밀번호" Width="80" TextAlignment="Center" VerticalAlignment="Center" Margin="5"/>
|
|
<PasswordBox x:Name="pbPassword" Width="150" VerticalAlignment="Center" Margin="5"
|
|
PasswordChanged="PasswordChanged"
|
|
KeyDown="tb_KeyDown"/>
|
|
</StackPanel>
|
|
|
|
<StackPanel Grid.Row="2" Orientation="Horizontal" HorizontalAlignment="Center">
|
|
<TextBlock Text="비밀번호 확인" Width="80" TextAlignment="Center" VerticalAlignment="Center" Margin="5"/>
|
|
<PasswordBox x:Name="pbVerification" Width="150" VerticalAlignment="Center" Margin="5"
|
|
PasswordChanged="PasswordChanged"
|
|
KeyDown="tb_KeyDown"/>
|
|
</StackPanel>
|
|
|
|
<StackPanel Grid.Row="3" Orientation="Horizontal" HorizontalAlignment="Center">
|
|
<TextBlock Text="이메일" Width="80" TextAlignment="Center" VerticalAlignment="Center" Margin="5"/>
|
|
<TextBox x:Name="tbEmail" Width="150" VerticalAlignment="Center" Margin="5"
|
|
TextChanged="tbEmail_TextChanged"
|
|
KeyDown="tb_KeyDown"/>
|
|
</StackPanel>
|
|
|
|
<TextBlock x:Name="tbMessage" Grid.Row="4" HorizontalAlignment="Center" VerticalAlignment="Center" Foreground="Red" Visibility="Collapsed"/>
|
|
|
|
<Button x:Name="btnJoin" Grid.Row="5" Width="150" HorizontalAlignment="Center" VerticalAlignment="Center"
|
|
Content="가입"
|
|
Click="btnJoin_Click"/>
|
|
</Grid>
|
|
</Window>
|
|
|