68

を表示してウィンドウが閉じないようにするにはどうすればよいMessageBoxですか? (技術:WinFormsC#)

close イベントが発生したら、次のコードを実行します。

private void addFile_FormClosing( object sender, FormClosingEventArgs e ) {
    var closeMsg = MessageBox.Show( "Do you really want to close?", "Warning", MessageBoxButtons.YesNo, MessageBoxIcon.Question );

    if (closeMsg == DialogResult.Yes) {
        //close addFile form
    } else {
        //ignore closing event
    }
}
4

8 に答える 8

139
private void Form1_FormClosing(object sender, FormClosingEventArgs e) {
    var window = MessageBox.Show(
        "Close the window?", 
        "Are you sure?", 
        MessageBoxButtons.YesNo);

    e.Cancel = (window == DialogResult.No);
}
于 2012-10-13T13:49:02.367 に答える
29

FormClosing イベントをキャッチして設定するe.Cancel = true

private void AdminFrame_FormClosing(object sender, FormClosingEventArgs e)
{
    var res = MessageBox.Show(this, "You really want to quit?", "Exit",
            MessageBoxButtons.YesNo, MessageBoxIcon.Warning, MessageBoxDefaultButton.Button2);
    if (res != DialogResult.Yes)
    {
      e.Cancel = true;
      return;
    }
}
于 2012-09-13T15:18:15.247 に答える
7

イベント内でOnFormClosingダイアログを表示し、if答えが false (表示しない) の場合は、のCancelプロパティを に設定EventArgsしますtrue

于 2012-09-13T15:17:17.490 に答える
2

特定の状況でフォームが閉じるのを防止またはブロックするには、次の戦略を使用できます。

private void MyForm_FormClosing(object sender, FormClosingEventArgs e)
{

    if (FLAG_CONDITION == true)
    {
        MessageBox.Show("To exit save the change!!");
        e.Cancel = true;
    }

}
于 2016-12-01T10:35:33.847 に答える
1

MSDNから直接:

private void Form1_Closing(object sender, System.ComponentModel.CancelEventArgs e)
{
   // Determine if text has changed in the textbox by comparing to original text. 
   if (textBox1.Text != strMyOriginalText)
   {
      // Display a MsgBox asking the user to save changes or abort. 
      if(MessageBox.Show("Do you want to save changes to your text?", "My Application",
         MessageBoxButtons.YesNo) ==  DialogResult.Yes)
      {
         // Cancel the Closing event from closing the form.
         e.Cancel = true;
         // Call method to save file...
      }
   }
}

あなたの場合、フォームを明示的に閉じるために何もする必要はありません。キャンセルしない限り、自動的に閉じられるため、コードは次のようになります。

private void addFile_FormClosing( object sender, FormClosingEventArgs e ) {
    var closeMsg = MessageBox.Show( "Do you really want to close?", "Warning", MessageBoxButtons.YesNo, MessageBoxIcon.Question );

    if (closeMsg == DialogResult.Yes) {
        // do nothing
    } else {
        e.Cancel = true;
    }
}
于 2012-09-13T15:20:07.100 に答える
0
private void addFile_FormClosing( object sender, FormClosingEventArgs e ) {
var closeMsg = MessageBox.Show( "Do you really want to close?", "Warning", MessageBoxButtons.YesNo, MessageBoxIcon.Question );

if (closeMsg == DialogResult.Yes) {
    e.Cancel = false;
} else {
    e.Cancel = true;
}

e.Cancel は、フォームを閉じるイベントを有効または無効にします。たとえば、e.Cancel = true閉じるのを無効にします。

于 2019-03-24T04:38:02.590 に答える