【发布时间】:2014-03-09 23:07:29
【问题描述】:
如何更改 Word.Insert 中“_”的字体大小?
string Word = "yellow";
Word.Insert(2, " _ ");
【问题讨论】:
-
strings 没有字体大小? -
@OutlawLemur 即使我把它放在标签中?
如何更改 Word.Insert 中“_”的字体大小?
string Word = "yellow";
Word.Insert(2, " _ ");
【问题讨论】:
strings 没有字体大小?
假设它在一个标签中(来自 cmets):
yourformName.YourLabel.Content = Word;
yourformName.YourLabel.Font = new Font("Arial", fontSize ,FontStyle.Bold);
【讨论】: