c# 用xml文件顯示到richtextbox中修改之後 發現用寫字板打開之後是亂碼 不能恢復原來的文件編碼嗎?
同樣保存之後 用記事本打開 格式全部都亂了 不是之前的xml那樣整齊的格式了 怎麼弄呢
btn_save_Click方法修改下
StreamWriter sw = new StreamWriter(FileName, false, Encoding.UTF8);
TextRange textRange = new TextRange(richTextBox1.Document.ContentStart, richTextBox1.Document.ContentEnd);
sw.Write(textRange.Text);
sw.Close();