属性网格仅显示某些类别
我有一个 PropertyGrid,用于具有以下属性类别的对象:样式、计算和杂项
我想要的是仅向用户显示计算类别,但我不想使用可浏览属性,因为我想要所有这些属性在 Visual Studio 中都是可见的。
所以,我需要的是一个代码内解决方案。
我使用 .Net 3.5 c#
I got a PropertyGrid that is use on an object that have the following property category : Style, Calcul and Misc
What I want is to only show to the user the Calcul category, but I don't want to use the browsable attribute because I want all these property to be visible in Visual studio.
So, what I need, is an in-code solution.
I use .Net 3.5 c#
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
PropertyGrid
有一个属性 -BrowsableAttributes
; 将此分配给您的类别:并且(希望)它应该起作用。
PropertyGrid
has a property -BrowsableAttributes
; assign this your categories:And (hopefully) it should work.