从包含新行的富文本框写入C#中的文本文件

时间:2015-12-14 06:55:36

标签: c# file-io

我正在尝试将文本写入文本文件。我google了很多,并尝试了很多。我可以让它写一个文件,这不是问题。但是它显然不包括新的线条角色。我有一个Windows窗体。它上面有一个富文本框。用户输入他们想要的任何内容,然后将该文本传递给变量" plainText"。我想然后将该变量中的任何内容保存到文本文件中。这是我现在拥有的。

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.IO;

namespace Keep_it_Private
{
   public partial class Form1 : Form
  {
    string plainText = null;
    string path = @"C:\Users\Brannon\Desktop\temp.txt";

       public Form1()
      {
        InitializeComponent();
      }

     private void button1_Click(object sender, EventArgs e)
    {
        plainText = richTextBox1.Text;
        File.WriteAllText(path, plainText);
    }
  }
}

我目前正在使用Visual Studios 2012和Windows 10。

1 个答案:

答案 0 :(得分:1)

您可以使用RichTextBox.SaveFile方法。

richTextBox1.SaveFile(path, RichTextBoxStreamType.RichText);

RichTextBoxStreamType指定用于在RichTextBox控件中加载和保存数据的输入和输出流的类型。