C# WPF 表单更改提示
2021-01-19 12:16
标签:resize 代码下载 ucf family 二维 padding oat namespace ane 微信公众号:Dotnet9,网站:Dotnet9,问题或建议,请网站留言; 内容目录 未做修改的表单展示 表单变化,关闭窗体提示 来个Gif动态操作看看 表单修改后,关闭窗体前检查提示 使用 .Net Core 3.1 创建名为“ValidateDataChange”的WPF解决方案,添加两个Nuget库:MaterialDesignThemes和MaterialDesignColors。 MaterialDesign控件库 4个文件变动: 表单展示,使用MD控件的Snackbar作为消息提示 数据绑定,窗体关闭前表单验证:简单使用hashcode判断绑定实体是否有变化。 联系人实体类 Design com WPF 大神的学习视频:Validate Data Change Github源码下载:下载 除非注明,文章均由 Dotnet9 整理发布,欢迎转载。 C# WPF 表单更改提示 标签:resize 代码下载 ucf family 二维 padding oat namespace ane 原文地址:https://www.cnblogs.com/Dotnet9-com/p/12155815.html
如果您觉得Dotnet9对您有帮助,欢迎赞赏C# WPF 表单更改提示
1.实现效果
2.业务场景
3.编码实现
3.1 添加Nuget库
3.2 工程结构
3.3 App.xaml引入MD控件样式
3.4 主窗体 MainWindow.xaml
3.5 MainWindow.xaml.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace ValidateDataChange
{
///
3.6 Contact.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
namespace ValidateDataChange
{
internal class Contact : INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged;
private void NotifyPropertyChanged(string info)
{
if (PropertyChanged != null)
{
PropertyChanged(this, new PropertyChangedEventArgs(info));
}
}
private string name;
public string Name
{
get { return name; }
set { name = value; NotifyPropertyChanged("Name"); }
}
private string email;
public string Email
{
get { return email; }
set { email = value; NotifyPropertyChanged("Email"); }
}
private string facebook;
public string Facebook
{
get { return facebook; }
set { facebook = value; NotifyPropertyChanged("Facebook"); }
}
public Contact(string name, string email, string facebook)
{
this.name = name;
this.email = email;
this.facebook = facebook;
}
public override int GetHashCode()
{
return (name + email + facebook).GetHashCode();
}
}
}
4.本文参考
开源控件库:MaterialDesignInXamlToolkit
本站对MD开源控件库的介绍:控件介绍5.代码下载
转载请注明本文地址:https://dotnet9.com/6823.html
欢迎扫描下方二维码关注 Dotnet9 的微信公众号,本站会及时推送最新技术文章
下一篇:c/c++ 编译错误汇总