C# 属性控件的应用(备忘)

时间:2022-08-10 01:50:08

自己定义的控件属性:
[Browsable(true),Bindable(true),Category("数据"),DefaultValue(""),Localizable(true),
        Description("Items列表项集合"), DesignerSerializationVisibility(DesignerSerializationVisibility.Content),//指定集合属性可序列化
        Editor(typeof(DropTextEditor), typeof(UITypeEditor)),
       PersistenceMode(PersistenceMode.InnerDefaultProperty)]//指定属性在服务器控件中保持为内部文本。还指示将该属性定义为元素的默认属性。只能指定一个属性为默认属性
        public DropList Items
        {
            get
            {
                if (ViewState["_items"] == null)
                {
                    ViewState["_items"] = new DropList();
                }
                return (DropList)ViewState["_items"];
            }
            set { ViewState["_items"] = value; }
        }
//Items属性编辑器相关类
#region Items属性编辑器

#region DropText属性编辑器
    /// <summary>
    /// 可编辑下拉列表框的Items属性编辑器
    /// 提供一个用户界面,该界面可以在设计时编辑大多数类型(此处为DropItem)的集合。
    /// </summary>
    public class DropTextEditor : System.ComponentModel.Design.CollectionEditor
    {
        /// <summary>
        /// 构造函数
        /// </summary>
        /// <param name="type"></param>
        public DropTextEditor(Type type)
            : base(type)
        {
        }

/// <summary>
        /// 指示是否可一次选择多个集合项
        /// </summary>
        /// <returns>如果可以同时选择多个集合成员,则为 true;否则,为 false。此处默认情况返回 false</returns>
        protected override bool CanSelectMultipleInstances()
        {
            return false;
        }
        /// <summary>
        /// 获取此集合需包含的数据类型
        /// </summary>
        /// <returns>类型:System.Type(此 Type 指示集合需包含的数据类型。)</returns>
        protected override Type CreateCollectionItemType()
        {
            return typeof(DropItem);
        }
    }
    #endregion

#region DropItem类
    /// <summary>
    /// 可编辑下拉列表框的Items属性类
    /// </summary>
    [TypeConverter(typeof(ExpandableObjectConverter))]
    [Serializable]//将DropItem类指示为可以序列化
    public class DropItem
    {
        /// <summary>
        /// 构造函数
        /// </summary>
        public DropItem()
        {
        }
        /// <summary>
        /// 构造函数
        /// </summary>
        /// <param name="str_Text">文本内容</param>
        /// <param name="str_Value">文本值</param>
        public DropItem(string str_Text,string str_Value)
        {
            Text = str_Text;
            Value = str_Value;
        }
        private string text;
        private string _value;
        /// <summary>
        /// 文本
        /// </summary>
        public string Text
        {
            get { return text; }
            set { text = value; if (string.IsNullOrEmpty(Value)) { Value = value; } }
        }
        /// <summary>
        /// 文本所对应值
        /// </summary>
        public string Value
        {
            get { return _value; }
            set { _value = value; if (string.IsNullOrEmpty(Text)) { Text = value; } }
        }
    }
    #endregion

#region DropList类,继承自ArrayList
    /// <summary>
    /// 下拉列表框Items属性的基类继承自System.Collections.ArrayList
    /// </summary>
    [Serializable]
    public class DropList : ArrayList
    {
        /// <summary>
        /// 将DropItem添加到DropList结尾处
        /// </summary>
        /// <param name="value"></param>
        /// <returns></returns>
        public int Add(DropItem value)
        {
            return base.Add(value);
        }
    }
    #endregion

#endregion

C# 属性控件的应用(备忘)的更多相关文章

  1. vb6中webbrowser控件树转换备忘

    Dim doc As HTMLDocument Set doc = WebBrowser1.Document Dim inputs As IHTMLElementCollection Set inpu ...

  2. jquery上传控件uploadify使用备忘

    我简单修改了js和样式,效果如下 使用起来也是超简单,将文件下载并解压到你网站目录下,然后 .在使用位置插入代码 ============================= <iframe wi ...

  3. 在C&num;中使用属性控件添加属性窗口

    转自原文 在C#中使用属性控件添加属性窗口 第一步,创建在应用程序中将要展现的字段属性为public公有属性.其中,所有的属性必须有get和set的方法(如果不设置get方法,则要显示的属性不会显示在 ...

  4. 属性控件CMFCPropertyGridCtrl简单用法

    这是我的原创! 用一堆的编辑框下拉框做配置界面,很是繁琐,还要对齐排版……用这个属性控件 CMFCPropertyGridCtrl 就可以统一风格了. //初始化 CMFCPropertyGridCt ...

  5. C&num; 属性控件2

    PropertyGrid,.net框架下的一个控件,这是一个软件升级的项目,原来的软件用的是C++,控件用的还是第三方,这次升级到visual studio .net4.0版本,原以为.net的东西用 ...

  6. Extjs 属性控件&lbrack;转载&rsqb;

    Ext.form.TimeField: 配置项:            maxValue:列表中允许的最大时间            maxText:当时间大于最大值时的错误提示信息          ...

  7. delphi控件属性大全-详解-简介

    http://blog.csdn.net/u011096030/article/details/18716713 button 组件: CAPTION 属性 :用于在按钮上显示文本内容 Cancel ...

  8. VB6 仿&period;netWinfrom控件 Anchor属性类

    vb6中控件没有anchor与dock属性,窗体变大后原来要在resize中调整控件的move属性,否则就面目全非了.网上找到一些调整控件大小的代码,发现并不太适合自己,于是按照思路自己做了一个类似a ...

  9. &lbrack;转&rsqb;Delphi 控件属性和事件

    常用[属性] Action:该属性是与组件关联的行为,允许应用程序集中响应用户命令 Anchors:与组件连接的窗体的位置点 Align:确定组件的对齐方式 AutoSize:确定组件是否自动调整其大 ...

随机推荐

  1. Optimal Logging

    by Anthony Vallone How long does it take to find the root cause of a failure in your system? Five mi ...

  2. page-object使用(3)---元素嵌套

    很可能我们要定位的元素位于其他的元素里面,所有的元素都有一个*_element方法需找元素自身的上下文.例如,如果我想找一个unordered_list嵌套在一个div里面,可以这么做: div(:e ...

  3. BZOJ 3585&colon; mex&lpar; 离线 &plus; 线段树 &rpar;

    离线, 询问排序. 先处理出1~i的答案, 这样可以回答左端点为1的询问.完成后就用seq(1)将1到它下一次出现的位置前更新. 不断这样转移就OK了 ------------------------ ...

  4. ADO&period;NET之1-数据库连接---ShinePans

    ADO.NET技术主要包含Connection,Command,DataReader,DataAdapter,DateSet,DataTable等六种对象 1).Connection 对象的主要功能是 ...

  5. iOS-联系人应用(一)

    环境:xcode6,iphone 4s simulator with iOS8.0 一.功能界面介绍 1.1 应用启动进入联系人列表页面,数据为模拟数据,来源与一个plist文件: 1.2 点击右上角 ...

  6. C&plus;&plus; gui程序附加dos输出窗口

    C++ gui程序附加console qtcreator 1:在.pro文件中加入一句: CONFIG+= console 2:在运行设置里勾选在终端运行的选项 vs 1.新建gui项目 2.连接器( ...

  7. MyBatis源码解析【7】接口式编程

    前言 这个分类比较连续,如果这里看不懂,或者第一次看,请回顾之前的博客 http://www.cnblogs.com/linkstar/category/1027239.html 修改例子 在我们实际 ...

  8. crosstab&lpar;unknown&comma; unknown&rpar; does not exist

    在pgadminIII用到交叉表时,给报了函数不存在 解决方法: 执行sql CREATE EXTENSION tablefunc; 结果 Query returned successfully wi ...

  9. 02&colon; SocketServer服务

    网络编程其他篇 目录: 1.1 SocketServer四种基本流及 异步处理理论部分 1.2 创建socketserver实现: 多客户端并发 1.3 SocketServer实现多并发FTP 部分 ...

  10. oc NSLog输出格式大全

    本文的内容是总结了一下iOS开发中NSLog输出格式大全,虽然比较基础,但有总结毕竟会各位正在学习iOS开发的朋友们一些小小的帮助. %@                   对象 %d, %i    ...