ComponentDesigner.PostFilterProperties 方法

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

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

语法

声明
Protected Overridable Sub PostFilterProperties ( _
    properties As IDictionary _
)
用法
Dim properties As IDictionary

Me.PostFilterProperties(properties)
protected virtual void PostFilterProperties (
    IDictionary properties
)
protected:
virtual void PostFilterProperties (
    IDictionary^ properties
)
protected void PostFilterProperties (
    IDictionary properties
)
protected function PostFilterProperties (
    properties : IDictionary
)

参数

  • properties
    组件的类的属性。

备注

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

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

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

.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
IDesigner