如何用c#中的图形绘制字符串?我尝试使用此代码,但它不起作用。感谢。
g.DrawString("STRING", new Font(this.Font, FontStyle.Bold),
new Brush(), new Point(100, 100));
错误:
错误1无法创建抽象类或接口的实例'System.Drawing.Brush'C:\ Users \ Mihai \ AppData \ Local \ Temporary Projects \ Graphics Drawtext \ Form1.cs 33 73 Graphics Drawtext
答案 0 :(得分:2)
而不是抽象Brush
,你必须创建具体的一个 - 例如SolidBrush
(或您选择的任何其他)。
有关您可以使用的画笔实施列表(来自Brush
的类),请参阅MSDN。