32 lines
1.7 KiB
XML
32 lines
1.7 KiB
XML
<mah:MetroWindow xmlns:mah="http://metro.mahapps.com/winfx/xaml/controls"
|
|
x:Class="PrototypWPFHAG.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:PrototypWPFHAG"
|
|
mc:Ignorable="d"
|
|
Title="Prototype"
|
|
Height="450"
|
|
Width="800"
|
|
TitleCharacterCasing="Normal"
|
|
WindowTitleBrush="Firebrick"
|
|
Icon="pack://application:,,,/Images/databaseicon.png"
|
|
ResizeMode="CanResizeWithGrip">
|
|
<Grid>
|
|
<Border BorderBrush="Firebrick" BorderThickness="3" Padding="20">
|
|
<StackPanel VerticalAlignment="Center" HorizontalAlignment="Center">
|
|
<!-- 用户名标签和输入框 -->
|
|
<TextBlock Text="USERNAME" Margin="0,10,0,0" FontSize="14" FontWeight="Bold" />
|
|
<TextBox Width="200" Height="30" Margin="0,5,0,0" x:Name="UsernameTextBox" />
|
|
|
|
<!-- 密码标签和输入框 -->
|
|
<TextBlock Text="PASSWORD" Margin="0,10,0,0" FontSize="14" FontWeight="Bold" />
|
|
<PasswordBox Width="200" Height="30" Margin="0,5,0,0" x:Name="PasswordTextBox" />
|
|
|
|
<!-- 登录按钮 -->
|
|
<Button Height="30" Width="100" Content="Log in" Margin="0,20,0,0" Click="loginButton_Click" />
|
|
</StackPanel>
|
|
</Border>
|
|
</Grid>
|
|
</mah:MetroWindow> |