我想问你如何在C#.Net中更改ICSharp TextEditor中的字体。 我来自Thai.So我想在ICSharp TextEditor中显示我的语言。 我还更改了属性框中的字体属性,但它不起作用。 它唯一的展示广场。 我怎么能这样做..
谢谢你的时间......
答案 0 :(得分:0)
实际上,设置字体似乎需要在代码中完成:
textEditorControl1.Font = new Font("Courier New", 8.25f, FontStyle.Regular);
为了清除文本,我使用以下帮助方法:
/// <summary>
/// Sets the text and refreshes the control.
/// </summary>
/// <param name="text">The text.</param>
public void SetTextAndRefresh(string text)
{
ResetText();
Text = text;
Refresh();
}
对于修改过的ICSharp TextEditor,请参阅this project on github。