C#简单配置类及数据绑定

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
{
    /// 
    /// 配置基类,实现配置类的加载、保存功能
    /// 
    /// 
    public class ConfigBase : BindableBase where T : class
    {
        /// 
        /// 文件保存路径
        /// 
        private string filePath = "";

        /// 
        /// 设置文件保存路径
        /// 
        /// 
        public virtual void SetPath(string filePath)
        {
            this.filePath = filePath;
        }

        /// 
        /// 保存到本地文件
        /// 
        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);
        }

        /// 
        /// 从本地文件加载
        /// 
        public virtual void Load()
        {
            if (File.Exists(filePath))
            {
                var config = JsonConvert.DeserializeObject(File.ReadAllText(filePath));
                foreach (PropertyInfo pro in typeof(T).GetProperties())
                {
                    pro.SetValue(this, pro.GetValue(config));
                }
            }
        }

        /// 
        /// 从其它实例加载
        /// 
        /// 
        public virtual void Load(T config)
        {
            foreach (PropertyInfo pro in typeof(T).GetProperties())
            {
                pro.SetValue(this, pro.GetValue(config));
            }
        }

        /// 
        /// 从其它实例加载,仅加载指定的属性
        /// 
        /// 
        /// 
        public virtual void Load(T config, IEnumerable 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
    {
        /// 
        /// 属性值更改时发生
        /// 
        public event PropertyChangedEventHandler PropertyChanged;

        /// 
        /// 检查属性是否已与设置值相等,设置属性并仅在必要时通知侦听器。
        /// 
        /// 属性的类型
        /// 对同时具有getter和setter的属性的引用
        /// 属性的所需值
        /// 用于通知侦听器的属性的名称,此值是可选的,从支持CallerMemberName的编译器调用时可以自动提供。
        /// 如果值已更改,则为True;如果现有值与所需值匹配,则为false。
        protected virtual bool SetProperty(ref T storage, T value, [CallerMemberName] string propertyName = null)
        {
            if (EqualityComparer.Default.Equals(storage, value)) return false;

            storage = value;
            RaisePropertyChanged(propertyName);

            return true;
        }

        /// 
        /// 检查属性是否已与设置值相等,设置属性并仅在必要时通知侦听器。
        /// 
        /// 属性的类型
        /// 对同时具有getter和setter的属性的引用
        /// 属性的所需值
        /// 用于通知侦听器的属性的名称,此值是可选的,从支持CallerMemberName的编译器调用时可以自动提供。
        /// 属性值更改后调用的操作。
        /// 如果值已更改,则为True;如果现有值与所需值匹配,则为false。
        protected virtual bool SetProperty(ref T storage, T value, Action onChanged, [CallerMemberName] string propertyName = null)
        {
            if (EqualityComparer.Default.Equals(storage, value)) return false;

            storage = value;
            onChanged?.Invoke();
            RaisePropertyChanged(propertyName);

            return true;
        }

        /// 
        /// 引发此对象的PropertyChanged事件。
        /// 用于通知侦听器的属性的名称,此值是可选的,从支持CallerMemberName的编译器调用时可以自动提供。
        protected void RaisePropertyChanged([CallerMemberName] string propertyName = null)
        {
            OnPropertyChanged(new PropertyChangedEventArgs(propertyName));
        }

        /// 
        /// 引发此对象的PropertyChanged事件。
        /// 
        /// PropertyChangedEventArgs参数
        protected virtual void OnPropertyChanged(PropertyChangedEventArgs args)
        {
            PropertyChanged?.Invoke(this, args);
        }

    }
}

3、派生配置类

配置类的属性定义不能使用缩写形式,不用单例模式时可删除“配置单例”的代码,

配置类代码如下:

class TestConfig :ConfigBase
{
    #region 配置单例
    /// 
    /// 唯一实例
    /// 
    public static TestConfig Instance { get; private set; } = new TestConfig();
            
    /// 
    /// 静态构造函数
    /// 
    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中的数据绑定

先设计一个简单的界面,如下所示:

C#简单配置类及数据绑定_第1张图片

配置数据的加载、保存不用对每个控件进行操作,

后台代码如下:

public partial class Form1 : Form
{
    private TestConfig testConfig = new TestConfig();
    private List proName = new List();

    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下的数据绑定

先设计一个简单的界面,如下所示:


    
        

C#简单配置类及数据绑定_第2张图片

相对于WinformWPF控件绑定的操作由XAML实现,

后台代码如下:

/// 
/// MainWindow.xaml 的交互逻辑
/// 
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#简单配置类及数据绑定内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

附件:

项目源码 提取码: pmwx

你可能感兴趣的:(C#简单配置类及数据绑定)