C#简单配置类及数据绑定
程序员文章站
2022-06-09 18:05:47
目录1、简介2、配置基类3、派生配置类4、数据绑定4.1 winform中的数据绑定4.2 wpf下的数据绑定1、简介本文实现一个简单的配置类,原理比较简单,适用于一些小型项目。主要实现以下功能:...
1、简介
本文实现一个简单的配置类,原理比较简单,适用于一些小型项目。主要实现以下功能:
- 保存配置到
json
文件 - 从文件或实例加载配置类的属性值
- 数据绑定到界面控件
一般情况下,项目都会提供配置的设置界面,很少手动更改配置文件,所以选择以json
文件保存配置数据。
2、配置基类
为了方便管理,项目中的配置一般是按用途划分到不同的配置类中,保存时也是保存到多个配置文件。所以,我们需要实现一个配置基类,然后再派生出不同用途的配置类。
配置基类需要引用 json.net
,继承数据绑定基类 bindablebase
,实现从其它实例加载数据的功能
基类代码如下:
using newtonsoft.json; using system.collections.generic; using system.io; using system.linq; using system.reflection; namespace testconfigdll { /// <summary> /// 配置基类,实现配置类的加载、保存功能 /// </summary> /// <typeparam name="t"></typeparam> public class configbase<t> : bindablebase where t : class { /// <summary> /// 文件保存路径 /// </summary> private string filepath = ""; /// <summary> /// 设置文件保存路径 /// </summary> /// <param name="filepath"></param> public virtual void setpath(string filepath) { this.filepath = filepath; } /// <summary> /// 保存到本地文件 /// </summary> public virtual void save() { string dirstr = path.getdirectoryname(filepath); if (!directory.exists(dirstr)) { directory.createdirectory(dirstr); } string jsonstr = jsonconvert.serializeobject(this); file.writealltext(filepath, jsonstr); } /// <summary> /// 从本地文件加载 /// </summary> public virtual void load() { if (file.exists(filepath)) { var config = jsonconvert.deserializeobject<t>(file.readalltext(filepath)); foreach (propertyinfo pro in typeof(t).getproperties()) { pro.setvalue(this, pro.getvalue(config)); } } } /// <summary> /// 从其它实例加载 /// </summary> /// <param name="config"></param> public virtual void load(t config) { foreach (propertyinfo pro in typeof(t).getproperties()) { pro.setvalue(this, pro.getvalue(config)); } } /// <summary> /// 从其它实例加载,仅加载指定的属性 /// </summary> /// <param name="config"></param> /// <param name="proname"></param> public virtual void load(t config, ienumerable<string> proname = null) { foreach (propertyinfo pro in typeof(t).getproperties()) { if (proname == null || proname.contains(pro.name)) { pro.setvalue(this, pro.getvalue(config)); } } } } }
数据绑定基类 bindablebase
的实现参考wpf之数据绑定基类,
代码如下:
using system; using system.collections.generic; using system.componentmodel; using system.runtime.compilerservices; namespace testconfigdll { public class bindablebase : inotifypropertychanged { /// <summary> /// 属性值更改时发生 /// </summary> public event propertychangedeventhandler propertychanged; /// <summary> /// 检查属性是否已与设置值相等,设置属性并仅在必要时通知侦听器。 /// </summary> /// <typeparam name="t">属性的类型</typeparam> /// <param name="storage">对同时具有getter和setter的属性的引用</param> /// <param name="value">属性的所需值</param> /// <param name="propertyname">用于通知侦听器的属性的名称,此值是可选的,从支持callermembername的编译器调用时可以自动提供。</param> /// <returns>如果值已更改,则为true;如果现有值与所需值匹配,则为false。</returns> protected virtual bool setproperty<t>(ref t storage, t value, [callermembername] string propertyname = null) { if (equalitycomparer<t>.default.equals(storage, value)) return false; storage = value; raisepropertychanged(propertyname); return true; } /// <summary> /// 检查属性是否已与设置值相等,设置属性并仅在必要时通知侦听器。 /// </summary> /// <typeparam name="t">属性的类型</typeparam> /// <param name="storage">对同时具有getter和setter的属性的引用</param> /// <param name="value">属性的所需值</param> /// <param name="propertyname">用于通知侦听器的属性的名称,此值是可选的,从支持callermembername的编译器调用时可以自动提供。</param> /// <param name="onchanged">属性值更改后调用的操作。</param> /// <returns>如果值已更改,则为true;如果现有值与所需值匹配,则为false。</returns> protected virtual bool setproperty<t>(ref t storage, t value, action onchanged, [callermembername] string propertyname = null) { if (equalitycomparer<t>.default.equals(storage, value)) return false; storage = value; onchanged?.invoke(); raisepropertychanged(propertyname); return true; } /// <summary> /// 引发此对象的propertychanged事件。 /// <param name="propertyname">用于通知侦听器的属性的名称,此值是可选的,从支持callermembername的编译器调用时可以自动提供。</param> protected void raisepropertychanged([callermembername] string propertyname = null) { onpropertychanged(new propertychangedeventargs(propertyname)); } /// <summary> /// 引发此对象的propertychanged事件。 /// </summary> /// <param name="args">propertychangedeventargs参数</param> protected virtual void onpropertychanged(propertychangedeventargs args) { propertychanged?.invoke(this, args); } } }
3、派生配置类
配置类的属性定义不能使用缩写形式,不用单例模式时可删除“配置单例”的代码,
配置类代码如下:
class testconfig :configbase<testconfig> { #region 配置单例 /// <summary> /// 唯一实例 /// </summary> public static testconfig instance { get; private set; } = new testconfig(); /// <summary> /// 静态构造函数 /// </summary> static testconfig() { instance.setpath("config\\" + nameof(testconfig) + ".json"); instance.load(); } #endregion #region 属性定义 private string configstr = ""; public string configstr { get { return this.configstr; } set { setproperty(ref this.configstr, value); } } private int configint =0; public int configint { get { return this.configint; } set { if (value > 100) { setproperty(ref this.configint, value); } } } private bool configbool = false; public bool configbool { get { return this.configbool; } set { setproperty(ref this.configbool, value); } } #endregion }
4、数据绑定
一般数据绑定会定义一个model
类、viewmodel
类,本文为了演示方便使用配置类同时承担两者的角色。
4.1 winform中的数据绑定
先设计一个简单的界面,如下所示:
配置数据的加载、保存不用对每个控件进行操作,
后台代码如下:
public partial class form1 : form { private testconfig testconfig = new testconfig(); private list<string> proname = new list<string>(); public form1() { initializecomponent(); string textproname = nameof(textbox1.text); textbox1.databindings.add(textproname, testconfig, nameof(testconfig.configstr)); textbox2.databindings.add(textproname, testconfig, nameof(testconfig.configint)); string checkedproname= nameof(checkbox1.checked); checkbox1.databindings.add(checkedproname, testconfig, nameof(testconfig.configbool)); proname.add(textbox1.databindings[0].bindingmemberinfo.bindingfield); proname.add(textbox2.databindings[0].bindingmemberinfo.bindingfield); proname.add(checkbox1.databindings[0].bindingmemberinfo.bindingfield); } private void button1_click(object sender, eventargs e) { testconfig.load(testconfig.instance, proname); } private void button2_click(object sender, eventargs e) { testconfig.instance.load(testconfig, proname); testconfig.instance.save(); } }
如上所示, testconfig
作为中转,可以根据需求加载、保存配置类的部分或全部属性。如果对winform
下的数据绑感兴趣,可以参考 winform
普通控件的双向绑定 。
4.2 wpf下的数据绑定
先设计一个简单的界面,如下所示:
<window x:class="wpfapp1.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:local="clr-namespace:wpfapp1" mc:ignorable="d" title="mainwindow" height="208" width="306.667"> <grid> <label content="configstr:" horizontalalignment="left" margin="18,16,0,0" verticalalignment="top"/> <textbox horizontalalignment="left" height="23" margin="113,20,0,0" textwrapping="wrap" verticalalignment="top" width="156" text="{binding path=configstr ,mode=twoway}"/> <label content="configint:" horizontalalignment="left" margin="18,44,0,0" verticalalignment="top"/> <textbox horizontalalignment="left" height="23" margin="113,48,0,0" textwrapping="wrap" verticalalignment="top" width="156" text="{binding path=configint ,mode=twoway}"/> <label content="configbool:" horizontalalignment="left" margin="18,74,0,0" verticalalignment="top"/> <checkbox content="" horizontalalignment="left" margin="118,84,0,0" verticalalignment="top" ischecked="{binding path=configbool ,mode=twoway}"/> <button content="加载" horizontalalignment="left" margin="24,129,0,0" verticalalignment="top" width="75" click="button_click"/> <button content="保存" horizontalalignment="left" margin="194,129,0,0" verticalalignment="top" width="75" click="button_click_1"/> </grid> </window>
相对于winform
,wpf
控件绑定的操作由xaml
实现,
后台代码如下:
/// <summary> /// mainwindow.xaml 的交互逻辑 /// </summary> public partial class mainwindow : window { private testconfig testconfig = new testconfig(); public mainwindow() { initializecomponent(); this.datacontext = testconfig; } private void button_click(object sender, routedeventargs e) { testconfig.load(testconfig.instance); } private void button_click_1(object sender, routedeventargs e) { testconfig.instance.load(testconfig); testconfig.instance.save(); } }
上面的代码比较粗糙,没有记录已经绑定的属性,实际使用时可以进一步优化。
到此这篇关于c#简单配置类及数据绑定的文章就介绍到这了,更多相关c#简单配置类及数据绑定内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
附件:
上一篇: 再也不和你手拉手到后山去了