我正在使用 Visual Studio 2012 在 C# 中创建一个基本的文本编辑软件。
我想在标签中显示打开文件的名称。
目前,我的OpenFileDialog
代码包括:
OpenFileDialog ofd = new OpenFileDialog();
ofd.ShowDialog();
try
{
richTextBoxPrintCtrl1.Text = ofd.FileName;
StreamReader sr = new StreamReader(richTextBoxPrintCtrl1.Text);
richTextBoxPrintCtrl1.Text = sr.ReadToEnd();
sr.Close();
richTextBoxPrintCtrl1.LoadFile(ofd.FileName, RichTextBoxStreamType.RichText);
}
catch { }
}
例如,我使用这个软件打开 Document.rtf。如何在标签(命名filename1
)中显示“Document.rtf”或任何其他打开的文件标题?