如何改变字体在ICSharp TextEditor
本文关键字:字体 ICSharp TextEditor 改变 何改变 | 更新日期: 2023-09-27 18:03:40
我想问你如何在c# . net中改变ICSharp TextEditor的字体。我来自泰国。所以我想在ICSharp TextEditor中显示我的语言。我还更改了属性框中的字体属性,但没有效果。这是唯一的展示广场。我怎么能那样做呢?
确实,似乎设置字体需要在代码中完成:
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,请参阅github上的这个项目