BooleanConverter.GetStandardValuesExclusive(ITypeDescriptorContext) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取一个值,该值指示从 GetStandardValues(ITypeDescriptorContext) 方法返回的标准值的列表是否为独占列表。
public:
override bool GetStandardValuesExclusive(System::ComponentModel::ITypeDescriptorContext ^ context);
public override bool GetStandardValuesExclusive (System.ComponentModel.ITypeDescriptorContext context);
public override bool GetStandardValuesExclusive (System.ComponentModel.ITypeDescriptorContext? context);
override this.GetStandardValuesExclusive : System.ComponentModel.ITypeDescriptorContext -> bool
Public Overrides Function GetStandardValuesExclusive (context As ITypeDescriptorContext) As Boolean
参数
- context
- ITypeDescriptorContext
一个 ITypeDescriptorContext,用于提供格式上下文。
返回
返回 true
,因为从 TypeConverter.StandardValuesCollection 返回的 GetStandardValues(ITypeDescriptorContext) 是可能的值的穷举列表。 此方法从不返回 false
。
注解
布尔数据类型只有两个标准值, true
即 false
。 TypeConverter.StandardValuesCollection此方法返回的 具有所有可能的值。 因此,此方法始终返回 true
。