C# DevExpress WinForm编程 针对一些控件重复度高的属性设置问题的解决方案

问题描述

我在使用DevExpress控件时经常会需要先将控件设置成自己需要的样式或者取消控件的一部分功能(可删除、可拖曳之类的)。这种行为本身并没什么问题,问题在于DevExpress控件的属性实在是太多了,多到我每次打开属性界面都会头痛。

解决方案

为了解决这个问题我使用了工具类提取控件属性的方法。
如下图,我将XtraForm传入了ZXtraFormTools这个工具类,也将菜单Bar对象传入了ZXtraBarTools工具类进行常用属性的设置。
C# DevExpress WinForm编程 针对一些控件重复度高的属性设置问题的解决方案_第1张图片

这两个工具类的属性视图只保留了我要用的属性。
C# DevExpress WinForm编程 针对一些控件重复度高的属性设置问题的解决方案_第2张图片 C# DevExpress WinForm编程 针对一些控件重复度高的属性设置问题的解决方案_第3张图片

能看到这里的大家应该都懂了,下面直接放代码。

ZXtraFormTools.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.ComponentModel;
using System.Drawing;
using System.Windows.Forms;
using System.Runtime.InteropServices;
using DevExpress.XtraEditors;


namespace ZDevExpressTools {
    public class ZXtraFormTools : ZComponentTools {

        [Browsable(true), DefaultValue(null), DXCategory("对象引用")]
        public XtraForm XtraForm {
            get {
                return this.OperationObject;
            }
            set {
                this.OperationObject = value;
            }
        }

        [Browsable(true), DXCategory("视图选项")]
        public bool ShowIcon {
            get {
                if (this.XtraForm != null) {
                    return this.XtraForm.ShowIcon;
                }
                return false;
            }
            set {
                if (this.XtraForm != null) {
                    this.XtraForm.ShowIcon = value;
                }
            }
        }

        [AmbientValue("")]
        [Localizable(true)]
        [Browsable(true), DXCategory("视图选项")]
        public Icon Icon {
            get {
                if (this.XtraForm != null) {
                    return this.XtraForm.Icon;
                }
                return null;
            }
            set {
                if (this.XtraForm != null) {
                    this.XtraForm.Icon = value;
                }
            }
        }

        [Browsable(true), DXCategory("视图选项")]
        public string Text {
            get {
                if (this.XtraForm != null) {
                    return this.XtraForm.Text;
                }
                return null;
            }
            set {
                if (this.XtraForm != null) {
                    this.XtraForm.Text = value;
                }
            }
        }

        [Category("常用属性")]
        public bool ShowInTaskbar {
            get {
                if (this.XtraForm != null) {
                    return this.XtraForm.ShowInTaskbar;
                }
                return false;
            }
            set {
                if (this.XtraForm != null) {
                    this.XtraForm.ShowInTaskbar = value;
                }
            }
        }

        [Category("常用属性")]
        public bool MaximizeBox {
            get {
                if (this.XtraForm != null) {
                    return this.XtraForm.MaximizeBox;
                }
                return false;
            }
            set {
                if (this.XtraForm != null) {
                    this.XtraForm.MaximizeBox = value;
                }
            }
        }

        [Category("常用属性")]
        public bool MinimizeBox {
            get {
                if (this.XtraForm != null) {
                    return this.XtraForm.MinimizeBox;
                }
                return false;
            }
            set {
                if (this.XtraForm != null) {
                    this.XtraForm.MinimizeBox = value;
                }
            }
        }

        [Localizable(true)]
        [Category("常用属性")]
        public FormStartPosition StartPosition {
            get {
                if (this.XtraForm != null) {
                    return this.XtraForm.StartPosition;
                }
                return FormStartPosition.WindowsDefaultLocation;
            }
            set {
                if (this.XtraForm != null) {
                    this.XtraForm.StartPosition = value;

                }
            }
        }

        [DispId(-504)]
        [Category("常用属性")]
        public FormBorderStyle FormBorderStyle {
            get {
                if (this.XtraForm != null) {
                    return this.XtraForm.FormBorderStyle;
                }
                return System.Windows.Forms.FormBorderStyle.None;
            }
            set {
                if (this.XtraForm != null) {
                    this.XtraForm.FormBorderStyle = value;
                }
            }
        }

        [Category("常用属性")]
        public bool TopMast {
            get {
                if (this.XtraForm != null) {
                    return this.XtraForm.TopMost;
                }
                return false;
            }
            set {
                if (this.XtraForm != null) {
                    this.XtraForm.TopMost = value;
                }
            }
        }
    }
}

ZXtraBarTools.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.ComponentModel;
using System.Drawing;
using DevExpress.XtraEditors;
using DevExpress.XtraBars;
using DevExpress.Utils;
using DevExpress.Utils.Design;
using DevExpress.Utils.Serializing;

namespace ZDevExpressTools {
    public class ZXtraBarTools : Component {
        private Bar bar;
        [Browsable(true), Category("对象引用")]
        public Bar Bar {
            get {
                return bar;
            }
            set {
                bar = value;
            }
        }

        #region 常用属性

        [Browsable(true), Category("常用属性")]
        public bool AllowDelete {
            get {
                if (Bar != null) {
                    return Bar.OptionsBar.AllowDelete;
                } else {
                    return false;
                }
            }
            set {
                if (Bar != null) {
                    Bar.OptionsBar.AllowDelete = value;
                }
            }
        }

        [Browsable(true), Category("常用属性")]
        public bool AllowQuickCustomization {
            get {
                if (Bar != null) {
                    return Bar.OptionsBar.AllowQuickCustomization;
                } else {
                    return false;
                }
            }
            set {
                if (Bar != null) {
                    Bar.OptionsBar.AllowQuickCustomization = value;
                }
            }
        }

        [Browsable(true), Category("常用属性")]
        public bool DrawDragBorder {
            get {
                if (Bar != null) {
                    return Bar.OptionsBar.DrawDragBorder;
                } else {
                    return false;
                }
            }
            set {
                if (Bar != null) {
                    Bar.OptionsBar.DrawDragBorder = value;
                }
            }
        }

        [Browsable(true), Category("常用属性")]
        public bool MultiLine {
            get {
                if (Bar != null) {
                    return Bar.OptionsBar.MultiLine;
                } else {
                    return false;
                }
            }
            set {
                if (Bar != null) {
                    Bar.OptionsBar.MultiLine = value;
                }
            }
        }

        [Browsable(true), Category("常用属性")]
        public bool UseWholeRow {
            get {
                if (Bar != null) {
                    return Bar.OptionsBar.UseWholeRow;
                } else {
                    return false;
                }
            }
            set {
                if (Bar != null) {
                    Bar.OptionsBar.UseWholeRow = value;
                }
            }
        }
        #endregion

        [DXCategory("Font")]
        [DXDisplayName(typeof(ResFinder), "PropertyNamesRes", "DevExpress.Utils.AppearanceObject.Font")]
        [Localizable(true)]
        [RefreshProperties(RefreshProperties.All)]
        [TypeConverter(typeof(FontTypeConverter))]
        [XtraSerializableProperty]
        public Font Font {
            get {
                if (Bar != null) {
                    return Bar.BarAppearance.Normal.Font;
                } else {
                    return null;
                }
            }
            set {
                if (Bar != null) {
                    Bar.BarAppearance.Normal.Font = value;
                    Bar.BarAppearance.Pressed.Font = value;
                    Bar.BarAppearance.Hovered.Font = value;
                    Bar.BarAppearance.Disabled.Font = value;
                } else {

                }
            }
        }
    }
}

可能会碰到的问题

这个方案其实有一个问题,就是Winform的对象初始化顺序(上例不会碰到这个问题,因为控件拖放在工具类之前)。就算在设计视图中看到的是正常的,实际运行的时候可能是另一个样子。针对这个问题我的解决方案是当工具类实例加载对象时重载设置。

代码有点复杂,包含了对控件属性的加载、重置以及复用。实际就是用Attribute标识需要重载的属性,再用反射机制赋值。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.ComponentModel;
using System.Reflection;
using ZTools;

namespace ZDevExpressTools {

    /// 
    /// 
    /// 
    /// 
    public abstract class ZComponentTools : Component where T : Component {

        private bool allowReuse = false;
        /// 
        /// 允许复用
        /// 
        [Browsable(true), DefaultValue(false), Category("复用设置")]
        public bool AllowReuse {
            get {
                return allowReuse;
            }
            set {
                allowReuse = value;
            }
        }

        private T operationObject;
        [Category("对象引用")]
        /// 
        /// 操作对象
        /// 
        public T OperationObject {
            get {
                return this.operationObject;
            }
            set {
                if (this.operationObject == null) {
                    //LoadSettings
                    //若原来的操作对象为空则加载属性
                    this.LoadSettings(value);
                } else {
                    if (this.AllowReuse == true) {
                        //ReuseSettings
                        //若原来的操作对象不为空 且 Tools需要复用 则 复用属性
                        this.ReuseSettings(value);
                    } else {
                        //ResetSettings
                        //若原来的操作对象不为空 且 Tools不需要复用 则 重设属性
                        this.ResetSettings();
                    }
                }
                this.operationObject = value;
            }
        }

        /// 
        /// 复用Tools的设置
        /// 
        /// 
        public void ReuseSettings(T obj) {
            //1.取出对象中包含指令特性的成员属性
            List list = ZAttrGetter.GetPropertyInfosConformAttribute(this, typeof(ZComponentToolsSettingsAttribute));
            List piList = new List();
            List<object> temp = new List<object>();
            //2.遍历成员属性信息表判断是否复用,添加到属性值缓存表
            foreach (PropertyInfo pi in list) {
                ZComponentToolsSettingsAttribute attr = ZAttrGetter.GetPropertyAttr(pi, typeof(ZComponentToolsSettingsAttribute)) as ZComponentToolsSettingsAttribute;
                if (attr.Reuse == true) {
                    piList.Add(pi);
                    temp.Add(pi.GetValue(this));
                }
            }
            //3.将 属性值缓存表中的值 重新 赋给 Tools 的 成员属性
            this.operationObject = obj;
            for (int i=0; itry {
                    piList[i].SetValue(this, temp[i]);
                } catch (Exception) {

                }
            }
        }

        /// 
        /// 重设Tools的设置
        /// 
        public void ResetSettings() {
            this.operationObject = null;
            //1.取出对象中包含指令特性的成员属性
            List list = ZAttrGetter.GetPropertyInfosConformAttribute(this, typeof(ZComponentToolsSettingsAttribute));
            List piList = new List();
            List<object> temp = new List<object>();
            //2.遍历成员属性信息表判断是否复用,添加到属性值缓存表
            foreach (PropertyInfo pi in list) {
                ZComponentToolsSettingsAttribute attr1 = ZAttrGetter.GetPropertyAttr(pi, typeof(ZComponentToolsSettingsAttribute)) as ZComponentToolsSettingsAttribute;
                DefaultValueAttribute attr2 = ZAttrGetter.GetPropertyAttr(pi, typeof(DefaultValueAttribute)) as DefaultValueAttribute;
                if (attr1.Reset == true) {
                    if (attr2 != null) {
                        piList.Add(pi);
                        temp.Add(attr2.Value);
                    }
                }
            }
            //3.将 属性值缓存表中的值 重新 赋给 Tools 的 成员属性
            for (int i = 0; i < temp.Count; i++) {
                try {
                    piList[i].SetValue(this, temp[i]);
                } catch (Exception) {

                }
            }
        }

        /// 
        /// 加载Tools的设置
        /// 
        /// 
        public void LoadSettings(T obj) {
            //1.取出对象中包含指令特性的成员属性
            List list = ZAttrGetter.GetPropertyInfosConformAttribute(this, typeof(ZComponentToolsSettingsAttribute));
            List piList = new List();
            List<object> temp = new List<object>();

            //2.遍历成员属性信息表判断是否加载,添加到属性值缓存表
            foreach (PropertyInfo pi in list) {
                ZComponentToolsSettingsAttribute attr = ZAttrGetter.GetPropertyAttr(pi, typeof(ZComponentToolsSettingsAttribute)) as ZComponentToolsSettingsAttribute;
                if (attr.Load == true) {
                    piList.Add(pi);
                    temp.Add(pi.GetValue(this));
                }
            }
            //3.将 属性值缓存表中的值 重新 赋给 Tools 的 成员属性
            this.operationObject = obj;
            for (int i = 0; i < temp.Count; i++) {
                try {
                    piList[i].SetValue(this, temp[i]);
                } catch (Exception) {

                }
            }
        }
    }

    /// 
    /// 
    /// 
    [AttributeUsage(AttributeTargets.All)]
    public class ZComponentToolsSettingsAttribute : Attribute {

        private bool load = false;
        private bool reuse = false;
        private bool reset = false;

        public ZComponentToolsSettingsAttribute(bool Load = false, bool Reuse = false, bool Reset = true) {
            this.load = Load;
            this.reuse = Reuse;
            this.reset = Reset;
        }

        /// 
        /// 允许加载
        /// 
        public bool Load {
            get {
                return this.load;
            }
            set {
                this.load = value;
            }
        }

        /// 
        /// 复用
        /// 
        public bool Reuse {
            get {
                return this.reuse;
            }
            set {
                this.reuse = value;
            }
        }

        /// 
        /// 重设
        /// 
        public bool Reset {
            get {
                return this.reset;
            }
            set {
                this.reset = value;
            }
        }
    }
}

你可能感兴趣的:(C# DevExpress WinForm编程 针对一些控件重复度高的属性设置问题的解决方案)