我想使用There.is.already.a.file.with.the.same.name对话框

本文关键字:with file the same 对话框 name already There is | 更新日期: 2023-09-27 18:02:44

是否有一个内置的对话框在visual studio这个?还是我必须自己定制表单?

我想使用There.is.already.a.file.with.the.same.name对话框

您可以使用内置此功能的SaveFileDialog,但是如果这不适合您的项目,您可以使用MessageBox向用户显示通知。

如果您想从对话框中获得用户反馈,并且您的需求不适合可用的MessageBoxButtons选项,您可以通过创建带有所需标签/按钮的表单来创建自定义对话框。

没有具体的对话。SaveFileDialog已经可以处理这种情况了。否则只需输入;

 MessageBox.ShowDialog("A file with that name already exists.");
 // showdialogue forces focus to the messagebox until it's dismissed