IDesignerFilter.PreFilterEvents(IDictionary) 方法

定义

当在派生类中被重写时,允许设计器将项添加到它通过 TypeDescriptor 公开的事件集中。

public:
 void PreFilterEvents(System::Collections::IDictionary ^ events);
public void PreFilterEvents (System.Collections.IDictionary events);
abstract member PreFilterEvents : System.Collections.IDictionary -> unit
Public Sub PreFilterEvents (events As IDictionary)

参数

events
IDictionary

EventDescriptor 对象,它表示组件的类的事件。 事件字典中的关键字是事件名。

注解

此方法提供了一种向设计器通过 TypeDescriptor公开的事件字典添加项的方法。

事件字典中的键是事件的名称。 对象的类型 EventDescriptor为 。 此方法紧接在 之前 PostFilterEvents调用。

实施者说明

可以直接修改可通过 events 参数访问的字典,也可以使其保持不变。 如果要重写此方法,请在执行自己的筛选之前调用基本实现。

适用于

另请参阅