Base:
method
GetStandardValues
System.ComponentModel.TypeConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext)
3 overrides of GetStandardValues
System.Drawing.Common (1)
Special\NotSupported.cs (1)
392
public override System.ComponentModel.TypeConverter.StandardValuesCollection
GetStandardValues
(System.ComponentModel.ITypeDescriptorContext? context) { throw new System.PlatformNotSupportedException(System.SR.SystemDrawingCommon_PlatformNotSupported); }
System.Windows.Forms (2)
System\Windows\Forms\Controls\TextBox\TextBoxAutoCompleteSourceConverter.cs (1)
18
public override StandardValuesCollection
GetStandardValues
(ITypeDescriptorContext? context)
System\Windows\Forms\Dialogs\CommonDialogs\SpecialFolderEnumConverter.cs (1)
21
public override StandardValuesCollection
GetStandardValues
(ITypeDescriptorContext? context)
3 references to GetStandardValues
System.Windows.Forms (2)
System\Windows\Forms\Controls\TextBox\TextBoxAutoCompleteSourceConverter.cs (1)
20
StandardValuesCollection values = base.
GetStandardValues
(context);
System\Windows\Forms\Dialogs\CommonDialogs\SpecialFolderEnumConverter.cs (1)
23
StandardValuesCollection values = base.
GetStandardValues
(context);
System.Windows.Forms.Tests (1)
System\Windows\Forms\TextBoxAutoCompleteSourceConverterTests.cs (1)
17
StandardValuesCollection valuesCollection = converter.
GetStandardValues
(mockContext.Object);