ComponentDesigner.PreFilterAttributes 方法

允许设计器在通过 TypeDescriptor 公开的属性集中添加项。

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

语法

声明
Protected Overridable Sub PreFilterAttributes ( _
    attributes As IDictionary _
)
用法
Dim attributes As IDictionary

Me.PreFilterAttributes(attributes)
protected virtual void PreFilterAttributes (
    IDictionary attributes
)
protected:
virtual void PreFilterAttributes (
    IDictionary^ attributes
)
protected void PreFilterAttributes (
    IDictionary attributes
)
protected function PreFilterAttributes (
    attributes : IDictionary
)

参数

  • attributes
    组件的类的属性。

备注

利用此方法,可以在设计器通过 TypeDescriptor 公开的属性字典中添加项。

属性 (Attribute) 字典中的键是属性的类型标识符,这是其 TypeId 属性 (Property) 的值所指定的。该对象为 PropertyDescriptor 类型。紧接在 PostFilterAttributes 方法之前调用此方法。

给实现者的说明 对于可通过 attributes 参数访问的字典,可直接进行修改,或者将其保留原样。如果重写此方法,请在执行您自己的筛选之前调用基实现。

.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