正在验证用户';s输入,然后再继续执行程序

本文关键字:输入 然后 再继续 执行程序 验证 用户 | 更新日期: 2023-09-27 18:29:58

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

在第一个表单中,我向用户请求一个文件。用户选择一个文件后,会调用另一个表单,然后关闭当前表单

if语句指示当按下打开文件按钮时用户是否已插入文件,如果没有,则不会加载第二个表单。

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

下一个表单的选项基于用户在第一个表单中的输入(要求用户选择文件),因此,如果用户取消第一个表单时调用第二个表单,则会给第二个表格中的方法带来问题

关于如何处理关闭按钮,有什么想法吗?

正在验证用户';s输入,然后再继续执行程序

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

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

关闭表单时,请记住将cancel更改为false。

表单上有一个名为"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;
            }
        }

我假设您有一个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.
}

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

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

您可以使用自己的逻辑处理关闭事件

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;
            }
        }
相关文章: