我希望我的程序在退出之前请求用户保存文件。我发布的代码我确实知道不起作用,但总的来说我想要发生什么:
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;
}
}
答案 0 :(得分:0)
为表单的OnClosing
事件编写处理程序。那里你可以问一下典型的"是的,没有取消"题。不要将此与OnClosed
事件混淆。