12 instantiations of StandardValuesCollection
PresentationCore (1)
System\Windows\Input\CursorConverter.cs (1)
82this._standardValues = new TypeConverter.StandardValuesCollection(list1.ToArray());
PresentationFramework (1)
System\Windows\NullableBoolConverter.cs (1)
60return _standardValues ??= new TypeConverter.StandardValuesCollection(new Nullable<bool>[]
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)
50return s_values ??= new StandardValuesCollection(new object[] { true, false });
System\ComponentModel\CultureInfoConverter.cs (1)
204_values = new StandardValuesCollection(array);
System\ComponentModel\EnumConverter.cs (1)
307Values = new StandardValuesCollection(arr);
System\ComponentModel\NullableConverter.cs (1)
207return new StandardValuesCollection(wrappedValues);
System\ComponentModel\ReferenceConverter.cs (1)
167return new StandardValuesCollection(components);
System\ComponentModel\TypeListConverter.cs (1)
106_values = new StandardValuesCollection(objTypes);
System\Drawing\ColorConverter.cs (1)
21return new StandardValuesCollection(set.OrderBy(c => c, new ColorComparer()).ToList());
System.Data.Common (1)
System\Data\ColumnTypeConverter.cs (1)
148_values = new StandardValuesCollection(objTypes);
24 references to StandardValuesCollection
PresentationCore (2)
System\Windows\Input\CursorConverter.cs (2)
70public override TypeConverter.StandardValuesCollection GetStandardValues(ITypeDescriptorContext context) 241private TypeConverter.StandardValuesCollection _standardValues;
PresentationFramework (2)
System\Windows\NullableBoolConverter.cs (2)
58public override TypeConverter.StandardValuesCollection GetStandardValues(ITypeDescriptorContext context) 70private static TypeConverter.StandardValuesCollection _standardValues;
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 (16)
System\ComponentModel\BooleanConverter.cs (2)
13private static volatile StandardValuesCollection? s_values; 48public override StandardValuesCollection GetStandardValues(ITypeDescriptorContext? context)
System\ComponentModel\CultureInfoConverter.cs (2)
20private StandardValuesCollection? _values; 174public override StandardValuesCollection GetStandardValues(ITypeDescriptorContext? context)
System\ComponentModel\EnumConverter.cs (2)
36protected StandardValuesCollection? Values { get; set; } 231public override StandardValuesCollection GetStandardValues(ITypeDescriptorContext? context)
System\ComponentModel\NullableConverter.cs (2)
190public override StandardValuesCollection? GetStandardValues(ITypeDescriptorContext? context) 194StandardValuesCollection? values = UnderlyingTypeConverter.GetStandardValues(context);
System\ComponentModel\ReferenceConverter.cs (1)
124public override StandardValuesCollection GetStandardValues(ITypeDescriptorContext? context)
System\ComponentModel\TypeConverter.cs (2)
272public virtual StandardValuesCollection? GetStandardValues(ITypeDescriptorContext? context) => null; 424/// Initializes a new instance of the <see cref='System.ComponentModel.TypeConverter.StandardValuesCollection'/> class.
System\ComponentModel\TypeListConverter.cs (2)
16private StandardValuesCollection? _values; 90public override StandardValuesCollection GetStandardValues(ITypeDescriptorContext? context)
System\Drawing\ColorConverter.cs (3)
17private static readonly Lazy<StandardValuesCollection> s_valuesLazy = new Lazy<StandardValuesCollection>(() => 140public override StandardValuesCollection GetStandardValues(ITypeDescriptorContext? context)
System.Data.Common (2)
System\Data\ColumnTypeConverter.cs (2)
55private StandardValuesCollection? _values; 132public override StandardValuesCollection GetStandardValues(ITypeDescriptorContext? context)