DetailsView.IsBindableType(Type) 方法

定义

确定指定的数据类型是否可以绑定到 DetailsView 控件中的字段。

public:
 virtual bool IsBindableType(Type ^ type);
public virtual bool IsBindableType (Type type);
abstract member IsBindableType : Type -> bool
override this.IsBindableType : Type -> bool
Public Overridable Function IsBindableType (type As Type) As Boolean

参数

type
Type

表示要检查的数据类型的 Type

返回

如果指定的数据类型可以绑定到 DetailsView 控件中的字段,则为 true;否则为 false

注解

方法 IsBindableType 是由控件调用的帮助程序方法, DetailsView 用于确定是否可以将指定的数据类型绑定到控件中的字段。 控件 DetailsView 支持以下数据类型:

所有基元数据类型,例如 BooleanByteInt32

DateTime

Decimal

Guid

String

继承者说明

扩展 DetailsView 类时,可以重写此方法以添加或限制可在控件中使用的 DetailsView 数据类型。

适用于

另请参阅