[Browsable(false)]

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[Browsable(false)]相关的知识,希望对你有一定的参考价值。

1.c#方法上面的[Browsable(false)]是干吗用的?

答案:标明此对象不可被浏览,这样它就不会出现在设计器的属性窗口里了

看如下代码:

   /// <include file=‘AspNetPagerDocs.xml‘ path=‘AspNetPagerDoc/Property[@name="ImagePath"]/*‘/>
        [Browsable(true), Category("Appearance"), ANPDescription("desc_ImagePath"), DefaultValue(null)]
        public string ImagePath
        {
            get
            {
                if (null != cloneFrom)
                    return cloneFrom.ImagePath;
                string imgPath = (string)ViewState["ImagePath"];
                if (imgPath != null)
                    imgPath = ResolveUrl(imgPath);
                return imgPath;
            }
            set
            {
                string imgPath = value.Trim().Replace("\\", "/");
                ViewState["ImagePath"] = (imgPath.EndsWith("/")) ? imgPath : imgPath + "/";
            }
        }

 

以上是关于[Browsable(false)]的主要内容,如果未能解决你的问题,请参考以下文章

DRF Browsable API 仅显示一个路由器

片段管理访问错误可见 return false

类属性的几个特性的含义

在Browsable活动中查找意图发件人的URL

PHP常用代码片段

如何隐藏用户控件并删除它的空间