12 overrides of GetStandardValuesSupported
PresentationCore (2)
System\Windows\Ink\StrokeCollectionConverter.cs (1)
175public override bool GetStandardValuesSupported(ITypeDescriptorContext context)
System\Windows\Input\CursorConverter.cs (1)
96public override bool GetStandardValuesSupported(ITypeDescriptorContext context)
System.CodeDom (2)
Microsoft\CSharp\CSharpModifierAttributeConverter.cs (1)
63public override bool GetStandardValuesSupported(ITypeDescriptorContext context) => true;
Microsoft\VisualBasic\VBModifierAttributeConverter.cs (1)
62public override bool GetStandardValuesSupported(ITypeDescriptorContext context) => true;
System.ComponentModel.TypeConverter (7)
System\ComponentModel\BooleanConverter.cs (1)
67public override bool GetStandardValuesSupported(ITypeDescriptorContext? context) => true;
System\ComponentModel\CultureInfoConverter.cs (1)
220public override bool GetStandardValuesSupported(ITypeDescriptorContext? context) => true;
System\ComponentModel\EnumConverter.cs (1)
326public override bool GetStandardValuesSupported(ITypeDescriptorContext? context) => true;
System\ComponentModel\NullableConverter.cs (1)
233public override bool GetStandardValuesSupported(ITypeDescriptorContext? context)
System\ComponentModel\ReferenceConverter.cs (1)
180public override bool GetStandardValuesSupported(ITypeDescriptorContext? context) => true;
System\ComponentModel\TypeListConverter.cs (1)
121public override bool GetStandardValuesSupported(ITypeDescriptorContext? context) => true;
System\Drawing\ColorConverter.cs (1)
145public override bool GetStandardValuesSupported(ITypeDescriptorContext? context) => true;
System.Data.Common (1)
System\Data\ColumnTypeConverter.cs (1)
163public override bool GetStandardValuesSupported(ITypeDescriptorContext? context) => true;
3 references to GetStandardValuesSupported
System.ComponentModel.TypeConverter (3)
System\ComponentModel\NullableConverter.cs (2)
237return UnderlyingTypeConverter.GetStandardValuesSupported(context); 240return base.GetStandardValuesSupported(context);
System\ComponentModel\TypeConverter.cs (1)
291public bool GetStandardValuesSupported() => GetStandardValuesSupported(null);