19 references to GetConverter
PresentationCore (1)
Core\CSharp\System\Windows\Duration.cs (1)
518return TypeDescriptor.GetConverter(_timeSpan).ConvertToString(_timeSpan);
PresentationFramework (3)
src\Framework\System\Windows\Markup\Primitives\ElementMarkupObject.cs (3)
382TypeConverter converter = TypeDescriptor.GetConverter(instance); 829TypeConverter converter = TypeDescriptor.GetConverter(value); 930TypeConverter converter = TypeDescriptor.GetConverter(value);
System.Drawing (1)
commonui\System\Drawing\FontConverter.cs (1)
238args[nArg++] = TypeDescriptor.GetConverter(font.Size).ConvertToString(context, culture, font.Size) + GetGraphicsUnitText(font.Unit);
System.Web.Extensions (1)
Script\Serialization\ObjectConverter.cs (1)
377TypeConverter propertyConverter = TypeDescriptor.GetConverter(o);
System.Windows.Forms (6)
winforms\Managed\System\WinForms\PropertyGridInternal\GridEntry.cs (1)
992converter = TypeDescriptor.GetConverter(value);
winforms\Managed\System\WinForms\PropertyGridInternal\MergePropertyDescriptor.cs (1)
198TypeConverter converter = TypeDescriptor.GetConverter(value);
winforms\Managed\System\WinForms\PropertyGridInternal\PropertiesTab.cs (1)
91TypeConverter tc = (context.PropertyDescriptor == null ? TypeDescriptor.GetConverter(component) : context.PropertyDescriptor.Converter);
winforms\Managed\System\WinForms\SelectionRangeConverter.cs (1)
120args[i] = TypeDescriptor.GetConverter(propValue).ConvertToString(context, culture, propValue);
winforms\Managed\System\WinForms\TableLayoutSettings.cs (2)
53TypeConverter converter = TypeDescriptor.GetConverter(this); 434TypeConverter converter = TypeDescriptor.GetConverter(this);
System.Workflow.ComponentModel (7)
AuthoringOM\Design\ActivityDesignerLayoutSerializers.cs (2)
378TypeConverter converter = TypeDescriptor.GetConverter(value); 428TypeConverter converter = TypeDescriptor.GetConverter(value);
AuthoringOM\Design\ComponentSerializationService.cs (2)
505TypeConverter converter = TypeDescriptor.GetConverter(this.obj); 698TypeConverter converter = TypeDescriptor.GetConverter(propertySegment.Object);
AuthoringOM\Design\DesignerHelpers.cs (3)
1346TypeConverter converter = TypeDescriptor.GetConverter(component1); 1740PropertyDescriptor namePropertyDescriptor = TypeDescriptor.GetConverter(value).GetProperties(new TypeDescriptorContext(activity.Site, null, value), value)["ConditionName"]; 1741PropertyDescriptor expressionPropertyDescriptor = TypeDescriptor.GetConverter(value).GetProperties(new TypeDescriptorContext(activity.Site, null, value), value)["Expression"];