要求保存关闭

时间:2014-03-22 08:19:58

标签: c# forms file-io save

我希望我的程序在退出之前请求用户保存文件。我发布的代码我确实知道不起作用,但总的来说我想要发生什么:

if (richTextBox1.TextChanged = true)
        {
            SaveFileDialog op = new SaveFileDialog();
            op.Title = "Save";
            op.Filter = "Text Documents(*.txt)|*.txt|All Files(*.*)|*.*";
            if (op.ShowDialog() == DialogResult.OK)
            {
                richTextBox1.SaveFile(op.FileName, RichTextBoxStreamType.PlainText);
                this.Text = op.FileName;
            }
        } 

1 个答案:

答案 0 :(得分:0)

为表单的OnClosing事件编写处理程序。那里你可以问一下典型的"是的,没有取消"题。不要将此与OnClosed事件混淆。