7 writes to UseCompatibleTextRenderingInternal
System.Windows.Forms (6)
System\Windows\Forms\Controls\Buttons\ButtonBase.cs (1)
1319set => UseCompatibleTextRenderingInternal = value;
System\Windows\Forms\Controls\GroupBox\GroupBox.cs (1)
278set => UseCompatibleTextRenderingInternal = value;
System\Windows\Forms\Controls\Labels\Label.cs (1)
759UseCompatibleTextRenderingInternal = value;
System\Windows\Forms\Controls\ListBoxes\CheckedListBox.cs (1)
247set => UseCompatibleTextRenderingInternal = value;
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (1)
4205UseCompatibleTextRenderingInternal = 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)
3462if (SupportsUseCompatibleTextRendering && UseCompatibleTextRenderingInternal != value) 3479/// <see cref="UseCompatibleTextRenderingInternal"/> to the same value if the child control supports it.
System\Windows\Forms\Controls\Buttons\ButtonBase.cs (1)
1318get => UseCompatibleTextRenderingInternal;
System\Windows\Forms\Controls\GroupBox\GroupBox.cs (1)
277get => UseCompatibleTextRenderingInternal;
System\Windows\Forms\Controls\Labels\Label.cs (2)
749return UseCompatibleTextRenderingInternal; 757if (UseCompatibleTextRenderingInternal != value)
System\Windows\Forms\Controls\ListBoxes\CheckedListBox.cs (1)
246get => UseCompatibleTextRenderingInternal;
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (1)
4202get => 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);