PropertyGridControl DevExpress 隐藏一些属性

PropertyGridControl DevExpress Hide some properties

如何在不使用 [Browsable(false)] 的情况下在 PropertyGridControl 中隐藏父 class 的一些非虚拟属性?我不能使用这个,因为我不能覆盖非虚拟属性。

如果您无法覆盖 属性,那么您可以使用 new 修饰符。
这是示例:

public class SomeChildClass : SomeParentClass
{
    [Browsable(false)]
    new public TypeOfProperty SomeProperty
    {
        get { return base.SomeProperty; }
        set { base.SomeProperty = value; }
    }
}