4 references to DrawText
System.Windows.Forms (1)
System\Windows\Forms\VisualStyles\VisualStyleRenderer.cs (1)
365
DrawText
(dc, bounds, textToDraw, drawDisabled, TextFormatFlags.HorizontalCenter);
System.Windows.Forms.Tests (3)
System\Windows\Forms\VisualStyles\VisualStyleRendererTests.cs (3)
482
renderer.
DrawText
(graphics, bounds, textToDraw, drawDisabled, flags);
494
Assert.Throws<ArgumentNullException>("dc", () => renderer.
DrawText
(null, new Rectangle(1, 2, 3, 4), "text", true, TextFormatFlags.Default));
495
Assert.Throws<ArgumentNullException>("dc", () => renderer.
DrawText
(null, new Rectangle(1, 2, 3, 4), "text", false, TextFormatFlags.Default));