摘要: WPF全局样式 Theme目录下建立Style.xaml文件 <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft 阅读全文
posted @ 2023-05-31 14:35 牛腩 阅读(102) 评论(0) 推荐(0) 编辑
摘要: WPF窗体右上角叉叉退出应用程序 WPF窗体右上角叉叉退出应用程序 记得xaml里的Window标签响应Closing事件 private void Window_Closing(object sender, System.ComponentModel.CancelEventArgs e) { if 阅读全文
posted @ 2023-05-31 14:19 牛腩 阅读(153) 评论(0) 推荐(0) 编辑
摘要: WPF中的密码框 XAML文件 <PasswordBox Name="PasswordBox" Margin="5" Padding="5" PreviewKeyDown="Txtpassword_PreviewKeyUp"/> 后台代码: IntPtr p = System.Runtime.Int 阅读全文
posted @ 2023-05-31 14:10 牛腩 阅读(106) 评论(0) 推荐(0) 编辑