MainWindow.xaml
2.1 KB
<Window x:Class="WpfAppTest.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:WpfAppTest"
mc:Ignorable="d"
Title="登录页面" Height="200" Width="315" WindowStartupLocation="CenterScreen" Icon="/huaheng2.png" ResizeMode="NoResize" Loaded="Window_Loaded" >
<!--网格 行和列 布局控件 Grid Window的Content-->
<Grid Name="grid1">
<Button Name="btnLogin" Content="登录" HorizontalAlignment="Left" IsCancel="True" Margin="102,113,0,0" VerticalAlignment="Top" Width="50" Click="BtnLogin_Click"/>
<Border BorderBrush="Black" BorderThickness="1" CornerRadius="10" HorizontalAlignment="Left" Height="26" VerticalAlignment="Top" Width="54" Margin="56,25,0,0">
<Label HorizontalContentAlignment="Center" Margin="1,-1,-1,1">用户名:</Label>
</Border>
<TextBox Name="txtUName" HorizontalAlignment="Left" Height="23" Margin="130,27,0,0" TextWrapping="NoWrap" Text="admin" VerticalAlignment="Top" Width="120"/>
<Border BorderBrush="Black" BorderThickness="1" CornerRadius="10" HorizontalAlignment="Left" Height="26" VerticalAlignment="Top" Width="54" Margin="56,57,0,0" >
<Label HorizontalContentAlignment="Center" Margin="2,-1,-2,1">密码:</Label>
</Border>
<PasswordBox Name="txtUPwd" HorizontalAlignment="Left" Height="23" Margin="130,60,0,0" Password="123456" PasswordChar="*" VerticalAlignment="Top" Width="120"/>
<Button Name="btnCancel" Content="取消" HorizontalAlignment="Left" IsCancel="True" Margin="171,113,0,0" VerticalAlignment="Top" Width="50" Click="BtnCancel_Click"/>
<!--<Label Name="btnCancel2" Content="配置数据" IsEnabled="False" Foreground="Red" HorizontalAlignment="Left" Margin="129,141,0,0" VerticalAlignment="Top" Width="60" MouseDown="btnCancel2_Down"/>-->
</Grid>
</Window>