如何阻止System.Windows.Forms.SaveFileDialog
两次提示替换所选文件,而只提示一次?
我丢失了某些东西,我的安装有问题,或者默认行为只是愚蠢的。
var saveFileDialog = new SaveFileDialog();
saveFileDialog.ShowDialog();
// User selects file and clicks "Save" within the dialog
我根本没有做任何特别的事情,这是在一个空的Windows Forms项目中,目标是.NET Framework 4.7.2。
编辑:添加了完整的Program.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApp1
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
var saveFileDialog = new SaveFileDialog();
saveFileDialog.ShowDialog();
}
}
}
答案 0 :(得分:6)
这似乎是最新.Net版本中的错误。 在Windows 10.0.17763之前的版本中不会发生这种情况