20 references to ClearTypeHint
PresentationCore (19)
Core\CSharp\System\Windows\Media\Generated\DrawingGroup.cs (4)
640data.ClearTypeHint = (ClearTypeHint)GetValue(RenderOptions.ClearTypeHintProperty); 874internal const ClearTypeHint c_ClearTypeHint = ClearTypeHint.Auto; 911new UIPropertyMetadata(ClearTypeHint.Auto,
Core\CSharp\System\Windows\Media\RenderOptions.cs (5)
104typeof(ClearTypeHint), 106new UIPropertyMetadata(ClearTypeHint.Auto), 113public static ClearTypeHint GetClearTypeHint(DependencyObject target) 116return (ClearTypeHint)target.GetValue(ClearTypeHintProperty); 122public static void SetClearTypeHint(DependencyObject target, ClearTypeHint clearTypeHint)
Core\CSharp\System\Windows\Media\Visual.cs (5)
1706ClearTypeHint clearTypeHint = ClearTypeHintField.GetValue(this); 1707if (isOnChannel || (clearTypeHint != ClearTypeHint.Auto)) 3661protected internal ClearTypeHint VisualClearTypeHint 5411private static readonly UncommonField<ClearTypeHint> ClearTypeHintField = new UncommonField<ClearTypeHint>();
Graphics\include\Generated\wgx_commands.cs (1)
1094[FieldOffset(48)] internal ClearTypeHint ClearTypeHint;
Shared\MS\Internal\Generated\ClearTypeHintValidation.cs (4)
40ClearTypeHint value = (ClearTypeHint) valueObject; 42return (value == ClearTypeHint.Auto) || 43(value == ClearTypeHint.Enabled);
PresentationFramework (1)
src\Framework\System\Windows\Controls\DatePicker.cs (1)
1082RenderOptions.SetClearTypeHint(_calendar, ClearTypeHint.Enabled);