c# – 在VS属性窗口中将UserControl属性设置为不显示

前端之家收集整理的这篇文章主要介绍了c# – 在VS属性窗口中将UserControl属性设置为不显示前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的 Asp.net项目中有一个UserControl,它有一个公共属性.当用户在IDE中突出显示UserControl的实例时,我不希望此属性显示在Visual Studio属性窗口中.我应该使用什么属性(或其他方法)来防止它出现?
class MyControl : System.Web.UI.UserControl {
  // Attribute to prevent property from showing in VS Property Window?
  public bool SampleProperty { get; set; }

  // other stuff
}

解决方法

使用以下属性
using System.ComponentModel;

[Browsable(false)]
public bool SampleProperty { get; set; }

在VB.net中,这个will be

<System.ComponentModel.Browsable(False)>
原文链接:https://www.f2er.com/csharp/98213.html

猜你在找的C#相关文章