zoukankan      html  css  js  c++  java
  • C# 特性Attributes 和反射

    一,Attributes 类新建一个子类,DetailAttributes
    View Code
    二, 在类的属性声明上面加Attributes
    public class testAttributes
    {
        [Detail(AttrName = "宽度", Html = "<input type='text' />", DefaultValue = "50", DataSource = null)]
        public string username {get;set;}
    
        public class FactoryDetail
        {
            [Detail(AttrName = "宽度", Html = "<input type='text' />", DefaultValue = "50", DataSource = null)]
            public string Width { set; get; }
    
            [Detail(AttrName = "高度", Html = "<input type='text' />", DefaultValue = "50", DataSource = null)]
            public string Height { set; get; }
    
            [Detail(AttrName = "状态", Html = "<select></select>", DefaultValue = null, DataSource = "select text,value from status")]
            public string Status { set; get; }
    
            [Detail(AttrName = "Tag值", Html = "<input type='text' />", DefaultValue = "", DataSource = null)]
            public string Tag { set; get; }
            [Detail(AttrName = "描述", Html = "<input type='text' />", DefaultValue = "", DataSource = null)]
            public string Desc { set; get; }
    
            public string test()
            {
                string s = "";
                Type oType = this.GetType();
                foreach (PropertyInfo opi in oType.GetProperties())
                {
                    object [] peratt =     opi.GetCustomAttributes(true);
                    foreach (var tmp in peratt)
                    {
                        if (tmp.GetType() == typeof(FactoryDetail))
                        {
                            DetailAttribute detailAtt = (DetailAttribute)tmp;
    
                            s += "AttrName: " + detailAtt.AttrName + " ";
                        }
                    }
                }
                return s;
            }
        }
    }
  • 相关阅读:
    jquery在表格中的全选、不选,下面全选,全选勾选中,下面一项没有选,全选勾未选中,并且带出请求值。
    比较好的插件
    js预加载loading的canvas写法
    div居中方法
    WEB14-未完
    WEB13
    WEB12
    WEB11-黑客入侵 后门问题
    WEB-10 头等舱
    WEB9-神奇的超全局变量-文件包含
  • 原文地址:https://www.cnblogs.com/sxypeace/p/4867425.html
Copyright © 2011-2022 走看看