如何在ICSharp文本编辑器中更改字体?

时间:2011-07-26 16:22:54

标签: c#

我想问你如何在C#.Net中更改ICSharp TextEditor中的字体。 我来自Thai.So我想在ICSharp TextEditor中显示我的语言。 我还更改了属性框中的字体属性,但它不起作用。 它唯一的展示广场。 我怎么能这样做..

谢谢你的时间......

1 个答案:

答案 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