属性网格仅显示某些类别

发布于 2024-07-15 17:43:52 字数 173 浏览 3 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

胡大本事 2024-07-22 17:43:52

PropertyGrid 有一个属性 - BrowsableAttributes; 将此分配给您的类别:

        propGrid.BrowsableAttributes = new AttributeCollection(
            new CategoryAttribute("Calcul"));

并且(希望)它应该起作用。

PropertyGrid has a property - BrowsableAttributes; assign this your categories:

        propGrid.BrowsableAttributes = new AttributeCollection(
            new CategoryAttribute("Calcul"));

And (hopefully) it should work.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文