TypeDescriptor.GetDefaultProperty 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回组件的默认属性。
重载
GetDefaultProperty(Type) |
返回指定类型组件的默认属性。 |
GetDefaultProperty(Object, Boolean) |
使用自定义类型描述符返回指定组件的默认属性。 |
GetDefaultProperty(Object) |
返回指定组件的默认属性。 |
GetDefaultProperty(Type)
- Source:
- TypeDescriptor.cs
- Source:
- TypeDescriptor.cs
- Source:
- TypeDescriptor.cs
返回指定类型组件的默认属性。
public:
static System::ComponentModel::PropertyDescriptor ^ GetDefaultProperty(Type ^ componentType);
public static System.ComponentModel.PropertyDescriptor GetDefaultProperty (Type componentType);
public static System.ComponentModel.PropertyDescriptor? GetDefaultProperty (Type componentType);
static member GetDefaultProperty : Type -> System.ComponentModel.PropertyDescriptor
Public Shared Function GetDefaultProperty (componentType As Type) As PropertyDescriptor
参数
返回
具有默认属性的 PropertyDescriptor;如果没有属性,则为 null
。
注解
仅当没有 对象的实例时,才调用此方法的此版本。
componentType
如果 参数为 null
,则此方法返回 null
。
另请参阅
适用于
GetDefaultProperty(Object, Boolean)
- Source:
- TypeDescriptor.cs
- Source:
- TypeDescriptor.cs
- Source:
- TypeDescriptor.cs
使用自定义类型描述符返回指定组件的默认属性。
public:
static System::ComponentModel::PropertyDescriptor ^ GetDefaultProperty(System::Object ^ component, bool noCustomTypeDesc);
public static System.ComponentModel.PropertyDescriptor GetDefaultProperty (object component, bool noCustomTypeDesc);
public static System.ComponentModel.PropertyDescriptor? GetDefaultProperty (object component, bool noCustomTypeDesc);
static member GetDefaultProperty : obj * bool -> System.ComponentModel.PropertyDescriptor
Public Shared Function GetDefaultProperty (component As Object, noCustomTypeDesc As Boolean) As PropertyDescriptor
参数
- component
- Object
要获取其默认属性的组件。
- noCustomTypeDesc
- Boolean
若不考虑自定义类型描述信息时,为 true
;否则为 false
。
返回
具有默认属性的 PropertyDescriptor;如果没有属性,则为 null
。
例外
component
是一个跨进程进行远程处理的对象。
注解
component
如果 参数为 null
,则此方法返回 null
。
另请参阅
- DefaultPropertyAttribute
- PropertyDescriptor
- ICustomTypeDescriptor
- CreateProperty
- GetProperties
- GetDefaultEvent
适用于
GetDefaultProperty(Object)
- Source:
- TypeDescriptor.cs
- Source:
- TypeDescriptor.cs
- Source:
- TypeDescriptor.cs
返回指定组件的默认属性。
public:
static System::ComponentModel::PropertyDescriptor ^ GetDefaultProperty(System::Object ^ component);
public static System.ComponentModel.PropertyDescriptor GetDefaultProperty (object component);
public static System.ComponentModel.PropertyDescriptor? GetDefaultProperty (object component);
static member GetDefaultProperty : obj -> System.ComponentModel.PropertyDescriptor
Public Shared Function GetDefaultProperty (component As Object) As PropertyDescriptor
参数
- component
- Object
要获取其默认属性的组件。
返回
具有默认属性的 PropertyDescriptor;如果没有属性,则为 null
。
例外
component
是一个跨进程进行远程处理的对象。
注解
component
如果 参数为 null
,则此方法返回 null
。