添加的登录界面,使用固定账号和密码测试登录逻辑成功

This commit is contained in:
2025-07-05 14:05:59 +08:00
parent ad6b36018a
commit a3996dad99
24 changed files with 426 additions and 49 deletions

View File

@ -0,0 +1,17 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<UseWPF>true</UseWPF>
</PropertyGroup>
<ItemGroup>
<None Remove="Images\LoginImage.png" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MaterialDesignThemes" Version="5.2.1" />
<PackageReference Include="Prism.DryIoc" Version="8.1.97" />
</ItemGroup>
<ItemGroup>
<Resource Include="Images\LoginImage.png" />
</ItemGroup>
</Project>