已显示savefiledialog的对话框结果

已显示savefiledialog的对话框结果

本文介绍了已显示savefiledialog的对话框结果的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如果我试试这个:



saveDialog1 ....和fileName,ext ...和saveDialog.ShowDialog();

  if (saveDialog1.ShowDialog()== DialogResult.OK)
{
...
}

显示另外一个对话框,我不想要那个。

我需要这样的东西:

  if (saveDialog1 == DialogResult.OK)已经显示的对话框
{
...
}
解决方案

If i try this:

saveDialog1.... and fileName,ext... and saveDialog.ShowDialog();
and

if (saveDialog1.ShowDialog() == DialogResult.OK)
{
...
}

shows one more dialog and i don`t want that.
I need something like:

if (saveDialog1 == DialogResult.OK) on already shown dialog
{
...
}
解决方案


这篇关于已显示savefiledialog的对话框结果的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-29 04:17