21 references to ClearTypeHint
PresentationCore (20)
src\Microsoft.DotNet.Wpf\src\Common\Graphics\Generated\wgx_commands.cs (1)
1089[FieldOffset(48)] internal ClearTypeHint ClearTypeHint;
src\Microsoft.DotNet.Wpf\src\Common\Graphics\wgx_core_types.cs (1)
582internal ClearTypeHint ClearTypeHint;
src\Microsoft.DotNet.Wpf\src\Shared\MS\Internal\Generated\ClearTypeHintValidation.cs (4)
27ClearTypeHint value = (ClearTypeHint) valueObject; 29return (value == ClearTypeHint.Auto) || 30(value == ClearTypeHint.Enabled);
System\Windows\Media\Generated\DrawingGroup.cs (4)
610data.ClearTypeHint = (ClearTypeHint)GetValue(RenderOptions.ClearTypeHintProperty); 838internal const ClearTypeHint c_ClearTypeHint = ClearTypeHint.Auto; 874new UIPropertyMetadata(ClearTypeHint.Auto,
System\Windows\Media\RenderOptions.cs (5)
98typeof(ClearTypeHint), 100new UIPropertyMetadata(ClearTypeHint.Auto), 107public static ClearTypeHint GetClearTypeHint(DependencyObject target) 110return (ClearTypeHint)target.GetValue(ClearTypeHintProperty); 116public static void SetClearTypeHint(DependencyObject target, ClearTypeHint clearTypeHint)
System\Windows\Media\Visual.cs (5)
1674ClearTypeHint clearTypeHint = ClearTypeHintField.GetValue(this); 1675if (isOnChannel || (clearTypeHint != ClearTypeHint.Auto)) 3612protected internal ClearTypeHint VisualClearTypeHint 5339private static readonly UncommonField<ClearTypeHint> ClearTypeHintField = new UncommonField<ClearTypeHint>();
PresentationFramework (1)
System\Windows\Controls\DatePicker.cs (1)
1085RenderOptions.SetClearTypeHint(_calendar, ClearTypeHint.Enabled);