ComponentDesigner.PostFilterEvents 方法

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

**命名空间:**System.ComponentModel.Design
**程序集:**System.Design(在 system.design.dll 中)

语法

声明
Protected Overridable Sub PostFilterEvents ( _
    events As IDictionary _
)
用法
Dim events As IDictionary

Me.PostFilterEvents(events)
protected virtual void PostFilterEvents (
    IDictionary events
)
protected:
virtual void PostFilterEvents (
    IDictionary^ events
)
protected void PostFilterEvents (
    IDictionary events
)
protected function PostFilterEvents (
    events : IDictionary
)

参数

  • events
    组件的类的事件。

备注

利用此方法,可以在通过 TypeDescriptor 公开的事件字典中更改或移除项。

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

给实现者的说明 对于可通过 events 参数访问的字典,可直接进行筛选,或者将其保留原样。如果重写此方法,请在执行您自己的筛选后调用基实现。另外,切勿移除 PostFilterEvents 方法中的项。而是更改属性以隐藏项。还可以在 PreFilterEvents 方法中移除项。

.NET Framework 安全性

  • 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见。

平台

Windows 98、Windows 2000 SP4、Windows Millennium Edition、Windows Server 2003、Windows XP Media Center Edition、Windows XP Professional x64 Edition、Windows XP SP2、Windows XP Starter Edition

.NET Framework 并不是对每个平台的所有版本都提供支持。有关受支持版本的列表,请参见系统要求

版本信息

.NET Framework

受以下版本支持:2.0、1.1、1.0

请参见

参考

ComponentDesigner 类
ComponentDesigner 成员
System.ComponentModel.Design 命名空间
TypeDescriptor 类
IDesignerFilter