WPF-一个简单登录界面

一个简单登录界面


文章目录


一、效果展示

二、准备代码

创建一个WPF工程,创建名为 Login5 的WPF项目。

添加Nuget包

MaterialDesignThemes

界面的整体布局和样式代码

xml 复制代码
<Window x:Class="Login5.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:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
        xmlns:local="clr-namespace:Login5"
        mc:Ignorable="d"
        Title="MainWindow" Height="450" Width="800"
        ResizeMode="NoResize" WindowStartupLocation="CenterScreen"
        WindowStyle="None">
    <Window.Resources>
        <ResourceDictionary>
            <ResourceDictionary.MergedDictionaries>
                <ResourceDictionary Source="pack://application:,,,/MaterialDesignThemes.Wpf;component/Themes/MaterialDesignTheme.Light.xaml"/>
                <ResourceDictionary Source="pack://application:,,,/MaterialDesignThemes.Wpf;component/Themes/MaterialDesignTheme.Defaults.xaml" />
                <ResourceDictionary Source="pack://application:,,,/MaterialDesignColors;component/Themes/Recommended/Primary/MaterialDesignColor.Red.xaml" />
                <ResourceDictionary Source="pack://application:,,,/MaterialDesignColors;component/Themes/Recommended/Accent/MaterialDesignColor.Lime.xaml" />

            </ResourceDictionary.MergedDictionaries>
        </ResourceDictionary>
    </Window.Resources>
    <Grid MouseDown="Grid_MouseDown">
        <Grid.Background>
            <LinearGradientBrush StartPoint="0.1,0" EndPoint="0.9,1">
                <GradientStop Offset="1" Color="#FFE63070"/>
                <GradientStop Offset="0" Color="#FFFE8704"/>
            </LinearGradientBrush>
        </Grid.Background>
        <Border Height="390" VerticalAlignment="Top" 
                Background="#100E17" CornerRadius="0 0 180 0">
            <StackPanel Orientation="Horizontal">
                <StackPanel Width="350">
                    <Image Width="300" Height="300" Margin="30" 
                           VerticalAlignment="Top" Stretch="Fill" Source="pack://application:,,,/Login5;component/Images/left.png"/>
                </StackPanel>
                <StackPanel Width="350">
                    <StackPanel Margin="20,40">
                        <TextBlock Margin="20" FontFamily="Great Vibes"
                                   FontSize="38" Foreground="White" TextAlignment="Center">
                            用户登录
                        </TextBlock>
                        <StackPanel Margin="10" Orientation="Horizontal">
                            <materialDesign:PackIcon
                                Width="25" Height="25" Foreground="White"
                                Kind="User"/>
                            <TextBox x:Name="txtUserName" Width="250"
                                     Margin="10,0" BorderBrush="White"
                                     CaretBrush="#FFD94448" Foreground="White"
                                     SelectionBrush="#FFD94448"
                                     materialDesign:HintAssist.Hint="输入 用户名 / 邮箱"/>
                        </StackPanel>
                        <StackPanel Margin="10" Orientation="Horizontal">
                            <materialDesign:PackIcon
                                 Width="25" Height="25" Foreground="White"
                                 Kind="Lock"/>
                             <PasswordBox x:Name="txtPassword" Width="250"
                                      Margin="10,0" BorderBrush="White"
                                      CaretBrush="#FFD94448" Foreground="White"
                                      SelectionBrush="#FFD94448"
                                      materialDesign:HintAssist.Hint="********"/>
                        </StackPanel>
                        <StackPanel Margin="10" HorizontalAlignment="Center">
                            <Button  x:Name="btnLogin" Width="100" Height="40"
                                     materialDesign:ButtonAssist.CornerRadius="10"
                                     Background="#D94448" BorderBrush="#D94448" BorderThickness="2"
                                     Content="登录" Foreground="White" ToolTip="登录"
                                     Style="{StaticResource MaterialDesignRaisedButton}"/>
                        </StackPanel>
                    </StackPanel>
                </StackPanel>
                <StackPanel Width="100">
                    <Button x:Name="btnExit" Margin="10,20" Background="{x:Null}"
                            Click="btnExit_Click" Style="{StaticResource MaterialDesignFloatingActionButton}"
                            ToolTip="关闭">
                        <materialDesign:PackIcon Width="30" Height="30" 
                                                 Foreground="White" Kind="Close"/>
                    </Button>
                </StackPanel>
            </StackPanel>

        </Border>
    </Grid>
</Window>

MainWindow.xaml.cs

csharp 复制代码
using System.Windows;
using System.Windows.Input;

namespace Login5
{
    /// <summary>
    /// Interaction logic for MainWindow.xaml
    /// </summary>
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
        }

        private void btnExit_Click(object sender, RoutedEventArgs e)
        {
            this.Close();
        }

        private void Grid_MouseDown(object sender, MouseButtonEventArgs e)
        {
            if(Mouse.LeftButton == MouseButtonState.Pressed)
            {
                this.DragMove();
            }
        }
    }
}

相关推荐
福大大架构师每日一题1 小时前
2026年1月TIOBE编程语言排行榜,Go语言排名第16,Rust语言排名13。C# 当选 2025 年度编程语言。
golang·rust·c#
wangnaisheng1 小时前
【C#】gRPC的使用,以及与RESTful的区别和联系
c#
JosieBook1 小时前
【开源】基于 C# 和 Halcon 机器视觉开发的车牌识别工具(附带源码)
开发语言·c#
龙潜月七1 小时前
做一个背单词的脚本
数据库·windows·c#·aigc·程序那些事
寻星探路1 小时前
【Python 全栈测开之路】Python 基础语法精讲(一):常量、变量与运算符
java·开发语言·c++·python·http·ai·c#
故事不长丨2 小时前
深度解析C#文件系统I/O操作:File类与FileInfo类的核心用法与场景对比
c#·文件系统·file·fileinfo·i/o操作·i/o流
henreash4 小时前
Language-ext
c#·函数式编程
lalala_Zou4 小时前
场景题:电商平台订单未支付过期如何实现自动关闭订单?
wpf
czhc11400756634 小时前
wpf 16
wpf
kylezhao20194 小时前
C#根据时间加密和防止反编译
java·前端·c#