完成导出后,“保存对话框”窗口会多次显示

时间:2019-02-22 01:31:22

标签: c# wpf

我看到一个问题,在导出到excel后,“保存”对话框再次显示给用户,我们询问用户是否要查看文件。

如果他们选择是或否,则将再次弹出“保存对话框”窗口。如果单击保存,该代码甚至不会再次运行。

有人在Windows计算机上看到过类似的东西吗?

只是想看看是否有人在帖子中跑来跑去,看看是否看到过类似的东西。当再次出现“保存对话框”窗口时,代码中的断点不会出现两次。

                            if (WinUIMessageBox.Show("Would you like to view the exported file?", "Open File", MessageBoxButton.YesNo) == MessageBoxResult.Yes)
                        {
                            // open the exported document
                            ProcessStartInfo startInfo = new ProcessStartInfo(SaveFileDialogService.GetFullFileName());
                            Process.Start(startInfo);
                        }

0 个答案:

没有答案