You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
3.6 KiB
XML
74 lines
3.6 KiB
XML
<Window x:Class="Aucma.Scada.UI.LoginPageView"
|
|
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:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
|
|
xmlns:local="clr-namespace:Aucma.Scada.UI"
|
|
mc:Ignorable="d"
|
|
Title="登录"
|
|
x:Name="MainWindow"
|
|
FontFamily="Microsoft YaHei"
|
|
WindowStartupLocation="CenterScreen"
|
|
WindowState="Maximized" d:DesignWidth="1200" d:DesignHeight="900"
|
|
>
|
|
<Window.Background>
|
|
<ImageBrush ImageSource="/templates/image/login-background.png" />
|
|
</Window.Background>
|
|
<Border Margin="5" Background="Transparent">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="0.5*"/>
|
|
<RowDefinition Height="2*"/>
|
|
<RowDefinition/>
|
|
</Grid.RowDefinitions>
|
|
<UniformGrid Grid.Row="0">
|
|
<StackPanel HorizontalAlignment="Left">
|
|
<!--<Image Source="/Assets/Images/Newlog.png" Width="100" />-->
|
|
</StackPanel>
|
|
</UniformGrid>
|
|
<UniformGrid Grid.Row="1" Margin="0 10">
|
|
<Border BorderThickness="4" CornerRadius="5" x:Name="DialogHost" Width="400" Height="350" VerticalAlignment="Center" HorizontalAlignment="Center" >
|
|
<StackPanel Background="White">
|
|
<ComboBox Margin="0 50 0 0" BorderThickness="1" FontSize="18"
|
|
x:Name="selectTeamComboBox" ItemsSource="{Binding TeamMembersList}"
|
|
Width="300"
|
|
materialDesign:HintAssist.Hint="班组"
|
|
SelectedValuePath="TeamCode"
|
|
DisplayMemberPath="TeamName"
|
|
BorderBrush="#DCDCDC"
|
|
Style="{StaticResource MaterialDesignOutlinedComboBox}">
|
|
|
|
</ComboBox>
|
|
|
|
<TextBox Margin="0 10 0 0"
|
|
x:Name="txtUserName"
|
|
Width="300"
|
|
FontSize="18"
|
|
BorderBrush="#DCDCDC"
|
|
materialDesign:HintAssist.Hint="用户名"
|
|
BorderThickness="1"
|
|
Style="{StaticResource MaterialDesignOutlinedTextBox}" />
|
|
|
|
<PasswordBox Margin="0 10 0 0" Width="300" FontSize="18" x:Name="txtPassword"
|
|
materialDesign:HintAssist.Hint="密码" BorderThickness="1" BorderBrush="#DCDCDC"
|
|
Style="{StaticResource MaterialDesignOutlinedPasswordBox}" />
|
|
<Button Margin="0 20 0 0"
|
|
x:Name="loginBtn"
|
|
Width="300"
|
|
Height="53"
|
|
BorderBrush="Transparent"
|
|
Command="{Binding LoginCommand}" Click="loginBtn_Click"
|
|
materialDesign:ButtonAssist.CornerRadius="10" Background="#4285DE" Foreground="#DDFFFFFF"
|
|
Content="登录" />
|
|
|
|
</StackPanel>
|
|
</Border>
|
|
</UniformGrid>
|
|
<UniformGrid Grid.Row="2">
|
|
|
|
</UniformGrid>
|
|
</Grid>
|
|
</Border>
|
|
</Window>
|