如何在C#中繪製字符串與圖形?我試着用這個代碼,但它不工作。謝謝。繪圖字符串與圖形c#
g.DrawString("STRING", new Font(this.Font, FontStyle.Bold),
new Brush(), new Point(100, 100));
錯誤:
Error 1 Cannot create an instance of the abstract class or interface 'System.Drawing.Brush' C:\Users\Mihai\AppData\Local\Temporary Projects\Graphics Drawtext\Form1.cs 33 73 Graphics Drawtext
而不是傳遞新的刷子()傳遞新的SolidBrush(Color.Black) – Adil
這是它的感謝! – Mihai
或使用標準的Brushes.Black筆刷。如果您創建一個自己的(只有在使用特殊顏色時纔有意義,尤其是半透明顏色),請不要忘記處理它! – TaW