11 overrides of GetStandardValues
PresentationCore (1)
System\Windows\Input\CursorConverter.cs (1)
70public override TypeConverter.StandardValuesCollection GetStandardValues(ITypeDescriptorContext context)
System.CodeDom (2)
Microsoft\CSharp\CSharpModifierAttributeConverter.cs (1)
65public override StandardValuesCollection GetStandardValues(ITypeDescriptorContext context) => new StandardValuesCollection(Values);
Microsoft\VisualBasic\VBModifierAttributeConverter.cs (1)
63public override StandardValuesCollection GetStandardValues(ITypeDescriptorContext context) => new StandardValuesCollection(Values);
System.ComponentModel.TypeConverter (7)
System\ComponentModel\BooleanConverter.cs (1)
48public override StandardValuesCollection GetStandardValues(ITypeDescriptorContext? context)
System\ComponentModel\CultureInfoConverter.cs (1)
174public override StandardValuesCollection GetStandardValues(ITypeDescriptorContext? context)
System\ComponentModel\EnumConverter.cs (1)
231public override StandardValuesCollection GetStandardValues(ITypeDescriptorContext? context)
System\ComponentModel\NullableConverter.cs (1)
190public override StandardValuesCollection? GetStandardValues(ITypeDescriptorContext? context)
System\ComponentModel\ReferenceConverter.cs (1)
124public override StandardValuesCollection GetStandardValues(ITypeDescriptorContext? context)
System\ComponentModel\TypeListConverter.cs (1)
90public override StandardValuesCollection GetStandardValues(ITypeDescriptorContext? context)
System\Drawing\ColorConverter.cs (1)
140public override StandardValuesCollection GetStandardValues(ITypeDescriptorContext? context)
System.Data.Common (1)
System\Data\ColumnTypeConverter.cs (1)
132public override StandardValuesCollection GetStandardValues(ITypeDescriptorContext? context)
3 references to GetStandardValues
System.ComponentModel.TypeConverter (3)
System\ComponentModel\NullableConverter.cs (2)
194StandardValuesCollection? values = UnderlyingTypeConverter.GetStandardValues(context); 211return base.GetStandardValues(context);
System\ComponentModel\TypeConverter.cs (1)
267public ICollection? GetStandardValues() => GetStandardValues(null);