在将字体加载到richTextBox 之前,我需要在.txt 文件(或.rtf)中设置字体。如果我不这样做,则会设置默认字体,并且richTextBox.Text 的字体与原始 .txt 文件中设置的字体不同...
我正在处理从 RichTextBox 继承的自定义 TextPanel。
if (File.Exists(file))
{
if (Path.GetExtension(file) == ".txt")
{
// I need to get the font here from the path "file" .txt document
textPanel = new TextPanel(file, this);
textPanel.LoadFile(file, RichTextBoxStreamType.PlainText);
我确定有一种简单的方法可以做到这一点,只是找不到:(