2

我创建了一个包含(目前)2 个表单的程序。

在第一种形式中,我要求用户提供文件。在用户选择了一个文件后,调用另一个表单,然后关闭当前表单。

一条语句指示用户在按下Open Fileif按钮时是否插入了文件,如果没有,则不会加载第二个表单。

问题是,如果用户单击第一个表单(当前表单)上的关闭 按钮,表单将关闭并调用下一个表单。

下一个表单的选项是基于用户在第一个表单中的输入(要求用户选择一个文件),所以如果在用户取消第一个表单时调用了第二个表单,将会给方法中的方法带来问题第二种形式。

关于如何处理关闭按钮的任何想法?

4

5 回答 5

1

如果您想阻止关闭表单,您可以处理该事件

bool cancel = true;
protected override void OnFormClosing(FormClosingEventArgs e)
{
    e.Cancel = cancel;
    base.OnFormClosing(e);
}

cancel完成关闭表单后,请记住更改为 false。

于 2013-09-03T14:37:02.543 回答
1

我假设你有一个OpenfileDialog(允许用户选择一个文件)和一个可能名为Open File的按钮将文件名传递给下一个表单。如果是这种情况,那么你可以尝试禁用打开按钮如果没有选择文件。

将下面的代码视为所有逻辑发生的函数;

private void BrowseFile()
{
//dlgopenfile is the name of Openfiledialog that allows the user to browse for a file.
//string filename is the name of selected file if any.
//Form2 is the next form.

try
{

switch (dlgopenfile.ShowDialog())
{
case DialogResult.OK://If Ok(Yes) button is pressed on Openfiledialog.
filename = dlgopenfile.FileName;
break;

case DialogResult.Cancel://If Cancel button is pressed on Openfiledialog.
filename = "";
break;
}

if (filename.Length >= 1)
{
if (File.Exists(filename) == true)
{
ButtonOpenFile.Enabled = true;
}
else
{
ButtonOpenFile.Enabled = false;
throw new FileNotFoundException("The file you selected does not exist.");
}
}
}
catch (FileNotFoundException ex)
{
MessageBox.Show(ex.Message, "Form1", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}

如果用户尝试在会话中关闭表单,则会出现下一个功能。

private void Form1_FormClosing(object sender, FormClosingEventArgs e)
{
try
{
switch (MessageBox.Show("Do you want to exit ?", "Form1", MessageBoxButtons.YesNo, MessageBoxIcon.Asterisk))
{
case DialogResult.Yes:
this.Close();
break;

case DialogResult.No:
e.Cancel = true;
break;
}
}
catch (Exception)
{
//Exception handling code goes here.
}
}

最后,下面的函数以所选文件作为参数调用 Form2 的构造函数。

private void ButtonOpenFile_Click(object sender, EventArgs e)
{
//This Button is enabled only if the file has been selected and if its exists.
Form2 form2 = new Form2(filename);//filename is the name of selected file,as decided in function BrowseFile().
this.Close();//Close Form1.
form2.ShowDialog();//Show Form2 as modal dialog.
}

希望它能帮助你实现你所需要的。还有什么,请告诉我。

于 2013-09-03T16:02:51.567 回答
1

表单上有一个名为“FormClosing”的事件。

快速示例:

 private void Form1_FormClosing(object sender, FormClosingEventArgs e)
        {
            if (MessageBox.Show("Are you sure you want to quit?", MessageBoxButtons.YesNo) == DialogResult.No)
            {
                e.Cancel = true;
            }

        }
于 2013-09-03T14:40:02.197 回答
0

只是你可以用你自己的逻辑处理关闭事件

private void Form1_FormClosing_1(object sender, FormClosingEventArgs e)
        {
            if (MessageBox.Show(text:"Are you sure you want to quit?",caption:string.Empty,buttons: MessageBoxButtons.YesNo) == DialogResult.No)
            {
                e.Cancel = true;
            }
        }
于 2013-09-03T15:40:38.967 回答
0

建议您从表单开始form.ShowDialog(),然后返回DialogResult。你应该检查它是否是DialogResult.Ok或是否form.DialogResult != DialogResult.None。在表单中,如果用户插入文件,您可以将其form.DialogResult明确设置为DialogResult.Ok

于 2013-09-03T14:41:10.080 回答