gpt4 book ai didi

c# - 在 C# 中创建 RTF 文件的正确方法是什么?

转载 作者:太空宇宙 更新时间:2023-11-03 11:24:23 24 4
gpt4 key购买 nike

来自 here 我看到它建议创建一个 RichTextBox 实例,然后使用它的 SaveFile(string path) 方法将文件放到硬盘上:

RichTextBox rtb = new RichTextBox();

rtb.SaveFile(@"\MyFileName.rtf");

它有效,但是,.....这是应该如何完成的,我问它似乎有点老套?如果不是,那么正确的做法是什么。

最佳答案

MSDN documentation说这正是你应该做的。

他们还有下面的例子here :

public void SaveMyFile()
{
// Create a SaveFileDialog to request a path and file name to save to.
SaveFileDialog saveFile1 = new SaveFileDialog();

// Initialize the SaveFileDialog to specify the RTF extension for the file.
saveFile1.DefaultExt = "*.rtf";
saveFile1.Filter = "RTF Files|*.rtf";

// Determine if the user selected a file name from the saveFileDialog.
if(saveFile1.ShowDialog() == System.Windows.Forms.DialogResult.OK &&
saveFile1.FileName.Length > 0)
{
// Save the contents of the RichTextBox into the file.
richTextBox1.SaveFile(saveFile1.FileName, RichTextBoxStreamType.PlainText);
}
}

关于c# - 在 C# 中创建 RTF 文件的正确方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9951159/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com