24 overrides of GetStandardValuesSupported
PresentationCore (2)
System\Windows\Ink\StrokeCollectionConverter.cs (1)
175public override bool GetStandardValuesSupported(ITypeDescriptorContext context)
System\Windows\Input\CursorConverter.cs (1)
89public 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;
System.Drawing.Common (2)
Special\NotSupported.cs (2)
385public override bool GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext? context) { throw new System.PlatformNotSupportedException(System.SR.SystemDrawingCommon_PlatformNotSupported); } 839public override bool GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext? context) { throw new System.PlatformNotSupportedException(System.SR.SystemDrawingCommon_PlatformNotSupported); }
System.Windows.Forms (7)
System\Windows\Forms\ComponentModel\COM2Interop\COM2EnumConverter.cs (1)
55public override bool GetStandardValuesSupported(ITypeDescriptorContext? context) => true;
System\Windows\Forms\ComponentModel\COM2Interop\COM2ExtendedTypeConverter.cs (1)
104public override bool GetStandardValuesSupported(ITypeDescriptorContext? context)
System\Windows\Forms\Controls\ListView\ListViewGroupConverter.cs (1)
146public override bool GetStandardValuesSupported(ITypeDescriptorContext? context)
System\Windows\Forms\ImageIndexConverter.cs (1)
193public override bool GetStandardValuesSupported(ITypeDescriptorContext? context)
System\Windows\Forms\ImageKeyConverter.cs (1)
204public override bool GetStandardValuesSupported(ITypeDescriptorContext? context)
System\Windows\Forms\Input\CursorConverter.cs (1)
185public override bool GetStandardValuesSupported(ITypeDescriptorContext? context)
System\Windows\Forms\Input\KeysConverter.cs (1)
393public override bool GetStandardValuesSupported(ITypeDescriptorContext? context)
System.Windows.Forms.Design (2)
System\ComponentModel\Design\EventBindingService.EventPropertyDescriptor.cs (1)
386public override bool GetStandardValuesSupported(ITypeDescriptorContext? context) => true;
System\ComponentModel\Design\Serialization\CodeDomDesignerLoader.ModifierConverter.cs (1)
139public override bool GetStandardValuesSupported(ITypeDescriptorContext? context)
WinFormsControlsTest (1)
Dialogs.ClientGuidConverter.cs (1)
19public override bool GetStandardValuesSupported(ITypeDescriptorContext? context) => true;
14 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);
System.Windows.Forms (3)
System\Windows\Forms\ComponentModel\COM2Interop\COM2ExtendedTypeConverter.cs (2)
106? _innerConverter.GetStandardValuesSupported(context) 107: base.GetStandardValuesSupported(context);
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntry.cs (1)
374if (converter.GetStandardValuesSupported(this))
System.Windows.Forms.Design (4)
System\ComponentModel\Design\DesignerActionPanel.cs (1)
676bool standardValuesSupported = pd.Converter.GetStandardValuesSupported(context);
System\ComponentModel\Design\DesignerActionPanel.EditorPropertyLine.cs (1)
164PropertyDescriptor.Converter.GetStandardValuesSupported(TypeDescriptorContext) &&
System\ComponentModel\Design\DesignerActionPanel.TextBoxPropertyLine.cs (1)
179converter.GetStandardValuesSupported(TypeDescriptorContext))
System\ComponentModel\Design\Serialization\CodeDomDesignerLoader.ModifierConverter.cs (1)
140=> GetConverter(context).GetStandardValuesSupported(context);
System.Windows.Forms.Tests (4)
System\Windows\Forms\ColumnHeaderConverterTests.cs (1)
175Assert.False(converter.GetStandardValuesSupported(null));
System\Windows\Forms\ListViewGroupConverterTests.cs (1)
304Assert.True(converter.GetStandardValuesSupported(null));
System\Windows\Forms\ListViewItemConverterTests.cs (1)
328Assert.False(converter.GetStandardValuesSupported(null));
System\Windows\Forms\ListViewSubItemConverterTests.cs (1)
141Assert.False(converter.GetStandardValuesSupported(null));