12 references to 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);