feat: 登录按钮

This commit is contained in:
xiang 2024-10-26 22:15:41 +08:00
parent 6e91d46415
commit 1326c7385f
2 changed files with 20 additions and 7 deletions

View File

@ -29,10 +29,9 @@
</Grid.Background>
<Border Height="390" VerticalAlignment="Top"
Background="#220000" CornerRadius="0 0 180 0">
<StackPanel Orientation="Horizontal">
<StackPanel Orientation="Horizontal" >
<StackPanel Width="350">
<Image Width="300" Height="300" Margin="30"
VerticalAlignment="Top" Stretch="Fill" Source="pack://application:,,,/VideoConcat;component/Images/left.png"/>
<!-- <Image Width="300" Height="300" Margin="30" VerticalAlignment="Top" Stretch="Fill" Source="pack://application:,,,/VideoConcat;component/Images/left.png"/>-->
</StackPanel>
<StackPanel Width="350">
<StackPanel Margin="20,40">
@ -58,6 +57,7 @@
Margin="10,0" BorderBrush="White"
CaretBrush="#FFD94448" Foreground="White"
SelectionBrush="#FFD94448"
materialDesign:HintAssist.Hint="输入 密码"
/>
</StackPanel>
<StackPanel Margin="10" HorizontalAlignment="Center">
@ -65,14 +65,14 @@
materialDesign:ButtonAssist.CornerRadius="10"
Background="#D94448" BorderBrush="#D94448" BorderThickness="2"
Content="登录" Foreground="White" ToolTip="登录"
Style="{StaticResource MaterialDesignRaisedButton}"/>
Style="{StaticResource MaterialDesignRaisedButton}" Click="BtnLogin_Click"/>
</StackPanel>
</StackPanel>
</StackPanel>
<StackPanel Width="100">
<Button x:Name="btnExit" Margin="5,10" Background="{x:Null}"
Click="BtnExit_Click" Style="{StaticResource MaterialDesignFloatingActionButton}"
ToolTip="关闭">
ToolTip="关闭" Height="36" Width="36">
<materialDesign:PackIcon Width="20" Height="20"
Foreground="White" Kind="Close"/>
</Button>

View File

@ -25,5 +25,18 @@ namespace VideoConcat
this.DragMove();
}
}
private void BtnLogin_Click(object sender, RoutedEventArgs e)
{
if (txtUserName.Text == "admin" && txtPassword.Password == "123456")
{
MessageBox.Show("登录成功");
return;
}
MessageBox.Show("用户名或者密码错误!");
txtUserName.Clear();
//txtUserName.Text = "";
txtPassword.Clear();
}
}
}