注册 登录
编程论坛 ASP.NET技术论坛

新手看不懂这个程序,帮我解释一下!

zhouhouyang01 发布于 2011-09-06 15:50, 548 次点击
[JsonIgnore]
        [Browsable(false)]
        [EditorBrowsable(EditorBrowsableState.Never)]
        [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
        [XmlIgnore]
        public override ConfigOptionsCollection ConfigOptions { get; }
        [Category("0. About")]
        public override string InstanceOf { get; }
        [Themeable(false)]
        [ViewStateMember]
        [Description("Client-side JavaScript Event Handlers")]
        [ConfigOption("listeners", JsonMode.Object)]
        [NotifyParentProperty(true)]
        [PersistenceMode(PersistenceMode.InnerProperty)]
        [DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)]
        [Category("2. Observable")]
        public TreeNodeListeners Listeners { get; }
        [NotifyParentProperty(true)]
        [Category("3. TreeNode")]
        [PersistenceMode(PersistenceMode.InnerProperty)]
        [Description("The root node for the tree.")]
        [DefaultValue("")]
        public virtual TreeNodeCollection Nodes { get; }
        [DefaultValue("")]
        [ConfigOption]
        protected internal string NodeType { get; }
1 回复
#2
yms1232011-09-09 14:54
这些是某些代码的描述信息(描述跟注释是不一样的)
1