我有一個richtextbox將覆蓋之前已保存的文件。清除richtextbox並覆蓋以前的條目
如果我需要啓動一個新文件,然後將其另存爲一個新文件,它只是覆蓋保存的第一個文件。
這怎麼辦?
String fileLocation;
private void SaveMyFile_Click(object sender, EventArgs e)
{
var performSave = true;
if (String.IsNullOrEmpty(fileLocation))
{
performSave = SetFileLocation();
}
if (performSave)
richTextBox1.SaveFile(fileLocation, RichTextBoxStreamType.PlainText);
}
private bool SetFileLocation()
{
SaveFileDialog saveFile1 = new SaveFileDialog();
saveFile1.DefaultExt = "*.txt";
saveFile1.Filter = "Text files (*.txt)|*.txt|All files (*.*)|*.*|RTF Files|*.rtf";
if (saveFile1.ShowDialog() == System.Windows.Forms.DialogResult.OK &&
saveFile1.FileName.Length > 0)
{
fileLocation = saveFile1.FileName;
return true;
}
return false;
}
用戶正在做什麼操作來確定什麼是新文件? – LarsTech 2012-02-01 17:16:56