ComponentDesigner.PostFilterEvents(IDictionary) 方法

定义

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

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

参数

events
IDictionary

组件的类的事件。

注解

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

事件字典中的键是事件的名称。 对象的类型 PropertyDescriptor为 。 此方法在 方法之后 PreFilterEvents 立即调用。

继承者说明

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

适用于

另请参阅