如何在运行时操作c#中的字体属性

时间:2014-06-04 05:22:34

标签: c# .net windows winforms charts

我真的很想尝试在c#windows窗体中操作文本或图表标题的字体属性

到目前为止,我试过这些:

Font font = new System.Drawing.Font(FontStyle.Bold) <-- it wouldn't do debugging

Chart1.Title[0].Font = new Font(Chart1.Title[0].Font, 
Chart1.Title[0].Font.Style | FontStyle.Bold); <-- this got pass to debugging by no effect

Chart1.Title[0].Font(FontStyle.Bold); <-- so is this one pass debugging but no effect.

我试图将它的文本设置为以Windows格式加粗,但我只是在一个非常简单的网页应用标题/或某些文字

如何设置它的属性标题字体以将文本更改为粗体而不是普通的fontstyle?

1 个答案:

答案 0 :(得分:0)

试试这个:

   Title title = Chart1.Titles.Add("Test");
   title.Font = new System.Drawing.Font("Arial", 16, FontStyle.Bold);
   title.ForeColor = System.Drawing.Color.FromArgb(0, 0, 205);