前端之家收集整理的这篇文章主要介绍了
c# – 在VS属性窗口中将UserControl属性设置为不显示,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的
Asp.net项目中有一个UserControl,它有一个公共
属性.当
用户在IDE中突出
显示UserControl的实例时,我不希望此
属性显示在Visual Stu
dio属性窗口中.我应该使用什么
属性(或其他
方法)来防止它出现?
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