TypeConverter.SimplePropertyDescriptor 构造函数

定义

初始化 TypeConverter.SimplePropertyDescriptor 类的新实例。

重载

TypeConverter.SimplePropertyDescriptor(Type, String, Type)

初始化 TypeConverter.SimplePropertyDescriptor 类的新实例。

TypeConverter.SimplePropertyDescriptor(Type, String, Type, Attribute[])

初始化 TypeConverter.SimplePropertyDescriptor 类的新实例。

TypeConverter.SimplePropertyDescriptor(Type, String, Type)

Source:
TypeConverter.cs
Source:
TypeConverter.cs
Source:
TypeConverter.cs

初始化 TypeConverter.SimplePropertyDescriptor 类的新实例。

protected:
 SimplePropertyDescriptor(Type ^ componentType, System::String ^ name, Type ^ propertyType);
public:
 SimplePropertyDescriptor(Type ^ componentType, System::String ^ name, Type ^ propertyType);
protected SimplePropertyDescriptor (Type componentType, string name, Type propertyType);
public SimplePropertyDescriptor (Type componentType, string name, Type propertyType);
new System.ComponentModel.TypeConverter.SimplePropertyDescriptor : Type * string * Type -> System.ComponentModel.TypeConverter.SimplePropertyDescriptor
Protected Sub New (componentType As Type, name As String, propertyType As Type)
Public Sub New (componentType As Type, name As String, propertyType As Type)

参数

componentType
Type

一个 Type,表示此属性说明符绑定到的组件的类型。

name
String

属性的名称。

propertyType
Type

一个 Type,表示此属性的数据类型。

另请参阅

适用于

TypeConverter.SimplePropertyDescriptor(Type, String, Type, Attribute[])

Source:
TypeConverter.cs
Source:
TypeConverter.cs
Source:
TypeConverter.cs

初始化 TypeConverter.SimplePropertyDescriptor 类的新实例。

protected:
 SimplePropertyDescriptor(Type ^ componentType, System::String ^ name, Type ^ propertyType, cli::array <Attribute ^> ^ attributes);
public:
 SimplePropertyDescriptor(Type ^ componentType, System::String ^ name, Type ^ propertyType, cli::array <Attribute ^> ^ attributes);
protected SimplePropertyDescriptor (Type componentType, string name, Type propertyType, Attribute[] attributes);
protected SimplePropertyDescriptor (Type componentType, string name, Type propertyType, Attribute[]? attributes);
public SimplePropertyDescriptor (Type componentType, string name, Type propertyType, Attribute[] attributes);
new System.ComponentModel.TypeConverter.SimplePropertyDescriptor : Type * string * Type * Attribute[] -> System.ComponentModel.TypeConverter.SimplePropertyDescriptor
Protected Sub New (componentType As Type, name As String, propertyType As Type, attributes As Attribute())
Public Sub New (componentType As Type, name As String, propertyType As Type, attributes As Attribute())

参数

componentType
Type

一个 Type,表示此属性说明符绑定到的组件的类型。

name
String

属性的名称。

propertyType
Type

一个 Type,表示此属性的数据类型。

attributes
Attribute[]

一个 Attribute 数组,具有要与该属性关联的特性。

另请参阅

适用于