2

我有一个 PropertyGrid 用于具有以下属性类别的对象:样式、计算和杂项

我想要的只是向用户显示 Calcul 类别,但我不想使用 browsable 属性,因为我希望所有这些属性都在 Visual Studio 中可见。

所以,我需要的是一个代码内解决方案。

我使用.Net 3.5 c#

4

1 回答 1

3

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

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

并且(希望)它应该工作。

于 2009-04-01T18:50:07.467 回答