add-成品下线添加登录
parent
22192b3ae9
commit
945d4eb807
@ -1 +1 @@
|
||||
26d6a9afb39c72117143a7eab0e8e5f7fb39f4a77dbea43fa75b3f2eafedfc9a
|
||||
3c08b2a6f95957043123cba0d01dcd1675663fc7
|
||||
|
@ -1 +1 @@
|
||||
f767de055f10a2c1e934fea6ee70f0611af5d29269e2db5801139a65e7e1ca7e
|
||||
2af60005099f8dd0481f84ac0dfadb89cc4b6f1d
|
||||
|
@ -1 +1 @@
|
||||
1feccce0683e2531dc528f983ed4e425860f374c97d448334f2adea8191e58a6
|
||||
790ffd47e6e46a3c8a83558ad3550154a5c81377
|
||||
|
@ -1 +1 @@
|
||||
7b1384c62bbab128c20dd65978d1c78fee190609613d3d271a0288f0b54de02a
|
||||
7d60a94dd38c10522cbfe4a021ccb6e9c5da0354
|
||||
|
@ -1,5 +1,3 @@
|
||||
is_global = true
|
||||
build_property.RootNamespace = Admin.Core.FrameWork
|
||||
build_property.ProjectDir = D:\Project\gitea\AUCMA\SCADA\Admin.Core.FrameWork\
|
||||
build_property.EnableComHosting =
|
||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||
build_property.ProjectDir = E:\c#\AUCMA\最新代码整合\登录版\new\Admin.Core.FrameWork\
|
||||
|
@ -1 +1 @@
|
||||
2ea4137f3e01fa73a652c473c344bfb7cb531dd6aba8f60afe9e70227846f2e0
|
||||
80bb097f76aa594dc58289065a284d1acbd8bdff
|
||||
|
@ -1 +1 @@
|
||||
aefdf16c8cd5c88c9a3d622ce93aae825904bc76f06885ee1d291a51e95687da
|
||||
51b8351ca3dc5fa8344fbf501d63c1eff37c8f9c
|
||||
|
@ -1 +1 @@
|
||||
416b6b9f193a7519f5a2a285ba6591dd8ab4d0b86d17c3902da37833779391a8
|
||||
ef9752cf3f9e33d53832c154eeba975830dced91
|
||||
|
@ -1 +1 @@
|
||||
8d424b8a3cc0af50a0e8a1a8273fddf2d364a5fb1bc4a328593ea8371a25426a
|
||||
0868e6bde5b49a65a126b91d794e990427a11761
|
||||
|
@ -1 +1 @@
|
||||
2db50a9279905049b7790b56feaa6ed638d4ba55223933d35f76b6d3dac4337c
|
||||
046606c52f7e20e88e6dd5ffc01e33664c4b9ff8
|
||||
|
@ -1 +1 @@
|
||||
6a5664407711d594dee0bca82f7341b63f383b77025211b182f8b3160c886c81
|
||||
dbec6c73777a8ebf7006f00f1928199755951ac1
|
||||
|
@ -1 +1 @@
|
||||
090e6de5d1313c3398be84182724b27024a5f9bef27979c09e017e70e7e74dc3
|
||||
ff8a17c10bdbb7dcf5bd28c26639be5ea4bbf542
|
||||
|
@ -1 +1 @@
|
||||
f24d48b4b79ca532e24ee245999d6c746607b481373dad175c589d127da38ff1
|
||||
da4240456d30e56fa6c5e71babf5565adb3e1436
|
||||
|
Binary file not shown.
After Width: | Height: | Size: 2.3 MiB |
@ -0,0 +1,81 @@
|
||||
<Window x:Class="Aucma.Core.ProductOffLine.Views.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"
|
||||
|
||||
mc:Ignorable="d"
|
||||
Title="登录"
|
||||
x:Name="MainWindow"
|
||||
FontFamily="Microsoft YaHei"
|
||||
WindowStartupLocation="CenterScreen"
|
||||
WindowState="Maximized" d:DesignWidth="1200" d:DesignHeight="900"
|
||||
>
|
||||
<Window.Background>
|
||||
<ImageBrush ImageSource="/Assets/Images/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"
|
||||
x:Name="selectTeamComboBox"
|
||||
Width="300"
|
||||
BorderThickness="1"
|
||||
BorderBrush="{StaticResource MaterialDesignDivider}"
|
||||
materialDesign:HintAssist.Hint="班组"
|
||||
SelectedValuePath="TeamCode"
|
||||
DisplayMemberPath="TeamName"
|
||||
ItemsSource="{Binding TeamMembersList}"
|
||||
Style="{StaticResource MaterialDesignOutlinedComboBox}" />
|
||||
|
||||
<TextBox Margin="0 10 0 0"
|
||||
x:Name="txtUserName"
|
||||
Width="300"
|
||||
materialDesign:HintAssist.Hint="用户名"
|
||||
BorderThickness="1"
|
||||
BorderBrush="{StaticResource MaterialDesignDivider}"
|
||||
Style="{StaticResource MaterialDesignOutlinedTextBox}"
|
||||
GotFocus="TextBox_GotFocus"
|
||||
LostFocus="TextBox_LostFocus"/>
|
||||
<PasswordBox
|
||||
Margin="0 10 0 0"
|
||||
x:Name="txtPassword"
|
||||
Width="300"
|
||||
FontSize="12"
|
||||
materialDesign:HintAssist.Hint="密码"
|
||||
BorderThickness="1"
|
||||
BorderBrush="{StaticResource MaterialDesignDivider}"
|
||||
Style="{StaticResource MaterialDesignOutlinedPasswordBox}"
|
||||
GotFocus="TextBox_GotFocus"
|
||||
LostFocus="TextBox_LostFocus"/>
|
||||
<Button Margin="0 20 0 0"
|
||||
x:Name="loginBtn"
|
||||
Style="{StaticResource MaterialDesignFlatMidBgButton}"
|
||||
Width="300"
|
||||
Height="53"
|
||||
Command="{Binding LoginCommand}"
|
||||
materialDesign:ButtonAssist.CornerRadius="10"
|
||||
Content="登录" Click="loginBtn_Click"/>
|
||||
</StackPanel>
|
||||
</Border>
|
||||
</UniformGrid>
|
||||
<UniformGrid Grid.Row="2">
|
||||
|
||||
</UniformGrid>
|
||||
</Grid>
|
||||
</Border>
|
||||
</Window>
|
Loading…
Reference in New Issue