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