ComponentDesigner.PostFilterAttributes(IDictionary) 方法

定义

允许设计器从通过 TypeDescriptor 公开的特性集中更改或移除项。

protected:
 virtual void PostFilterAttributes(System::Collections::IDictionary ^ attributes);
protected virtual void PostFilterAttributes (System.Collections.IDictionary attributes);
abstract member PostFilterAttributes : System.Collections.IDictionary -> unit
override this.PostFilterAttributes : System.Collections.IDictionary -> unit
Protected Overridable Sub PostFilterAttributes (attributes As IDictionary)

参数

attributes
IDictionary

组件的类的特性。

注解

此方法提供了一种更改或删除通过 TypeDescriptor公开的属性字典中的项的方法。

属性字典中的键是属性的类型标识符,由属性 TypeId 的值指定。 对象的类型 PropertyDescriptor为 。 此方法在 方法之后 PreFilterAttributes 立即调用。

继承者说明

可以直接筛选可通过 attributes 参数访问的字典,也可以使其保持不变。 如果替代此方法,请在执行自己的筛选后调用基本实现。 此外,不得删除 方法中的 PostFilterAttributes(IDictionary) 项。 请改为更改属性以隐藏项。 还可以删除 方法中的 PreFilterAttributes(IDictionary) 项。

适用于

另请参阅