7 writes to UseCompatibleTextRenderingInternal
System.Windows.Forms (6)
System\Windows\Forms\Controls\Buttons\ButtonBase.cs (1)
1322set => UseCompatibleTextRenderingInternal = value;
System\Windows\Forms\Controls\GroupBox\GroupBox.cs (1)
278set => UseCompatibleTextRenderingInternal = value;
System\Windows\Forms\Controls\Labels\Label.cs (1)
757UseCompatibleTextRenderingInternal = value;
System\Windows\Forms\Controls\ListBoxes\CheckedListBox.cs (1)
247set => UseCompatibleTextRenderingInternal = value;
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (1)
4207UseCompatibleTextRenderingInternal = value;
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridErrorDialog.cs (1)
54control.UseCompatibleTextRenderingInternal = _ownerGrid.UseCompatibleTextRendering;
System.Windows.Forms.Tests (1)
System\Windows\Forms\ControlTests.Internals.cs (1)
154UseCompatibleTextRenderingInternal = given
10 references to UseCompatibleTextRenderingInternal
System.Windows.Forms (8)
System\Windows\Forms\Control.cs (2)
3488if (SupportsUseCompatibleTextRendering && UseCompatibleTextRenderingInternal != value) 3505/// <see cref="UseCompatibleTextRenderingInternal"/> to the same value if the child control supports it.
System\Windows\Forms\Controls\Buttons\ButtonBase.cs (1)
1321get => UseCompatibleTextRenderingInternal;
System\Windows\Forms\Controls\GroupBox\GroupBox.cs (1)
277get => UseCompatibleTextRenderingInternal;
System\Windows\Forms\Controls\Labels\Label.cs (2)
747return UseCompatibleTextRenderingInternal; 755if (UseCompatibleTextRenderingInternal != value)
System\Windows\Forms\Controls\ListBoxes\CheckedListBox.cs (1)
246get => UseCompatibleTextRenderingInternal;
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (1)
4204get => UseCompatibleTextRenderingInternal;
System.Windows.Forms.Tests (2)
CheckedListBoxTests.cs (1)
691checkedListBox.UseCompatibleTextRenderingInternal.Should().Be(value);
System\Windows\Forms\ControlTests.Internals.cs (1)
157Assert.Equal(expected, control.UseCompatibleTextRenderingInternal);