摘要: 以下是一种使用 MVVM 模式的方法: 首先,在 ViewModel 中添加一个属性来保存密码,我们可以使用 SecureString 类型。 // 密码变量 private SecureString _password; // 密码属性,用于获取和设置密码 public SecureString 阅读全文
posted @ 2024-04-24 22:32 Windows窗 阅读(280) 评论(2) 推荐(1) 编辑
摘要: 11 阅读全文
posted @ 2023-03-28 18:13 Windows窗 阅读(7) 评论(0) 推荐(0) 编辑
摘要: Prism内置了几个区域适配器 ContentControlRegionAdapter ItemsControlRegionAdapter SelectorRegionAdapter ComboBox ListBox Ribbon TabControl 所以我们可以在ContentControl当中 阅读全文
posted @ 2023-03-28 17:39 Windows窗 阅读(52) 评论(0) 推荐(0) 编辑
摘要: 定义Region的方式有两种: 一种是在XAML定义 RegionManager.RegionName(XAML) 一、View代码 1 <Viewbox Grid.Column="1" > 2 <ContentControl prism:RegionManager.RegionName="Cont 阅读全文
posted @ 2023-03-28 10:46 Windows窗 阅读(62) 评论(0) 推荐(0) 编辑
摘要: View代码 1 <StackPanel> 2 <TextBlock Text="方法一"></TextBlock> 3 <TextBox Text="{Binding Value1}"></TextBox> 4 <TextBlock Text="方法二"></TextBlock> 5 <TextB 阅读全文
posted @ 2023-03-27 23:55 Windows窗 阅读(56) 评论(0) 推荐(0) 编辑
摘要: View代码 <StackPanel> <Button Content="方法一" Command="{Binding AddCommand}"></Button> </StackPanel> ViewModel代码 1 public DelegateCommand? AddCommand 2 { 阅读全文
posted @ 2023-03-27 23:06 Windows窗 阅读(102) 评论(0) 推荐(0) 编辑
摘要: C# 可空类型(Nullable)说明_w3cschool 细说Nullable<T>类型 - Sweet-Tang - 博客园 (cnblogs.com) 值类型变量不能null,加问号就是可以为空。 可空类型,可以给值类型赋值null。 常规的方式: Nullable<int> i = 1; 简 阅读全文
posted @ 2023-03-27 22:24 Windows窗 阅读(134) 评论(0) 推荐(0) 编辑
摘要: Prism - 标签 - 阿杜聊编程 - 博客园 (cnblogs.com) 阅读全文
posted @ 2023-03-27 22:08 Windows窗 阅读(4) 评论(0) 推荐(0) 编辑
摘要: https://learn.microsoft.com/zh-cn/dotnet/api/system.string?view=net-6.0 原文链接:https://blog.csdn.net/weixin_46351122/article/details/107566932 字符串 strin 阅读全文
posted @ 2023-03-23 22:24 Windows窗 阅读(20) 评论(0) 推荐(0) 编辑