tags:

views:

4996

answers:

10

What is the best way to disable Alt + F4 in a c# win form to prevent the user from closing the form?

I am using a form as a popup dialog to display a progress bar and I do not want the user to be able to close it.

Thanks.

+10  A: 

You could handle the FormClosing event and set FormClosingEventArgs.Cancel to true.

Timbo
+30  A: 

This does the job:

private void Form1_FormClosing(object sender, FormClosingEventArgs e)
{
    e.Cancel = true;
}

Edit: In response to pix0rs concern - yes you are correct that you will not be able to programatically close the app. However, you can simply remove the event handler for the form_closing event before closing the form:

this.FormClosing -= new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
this.Close();
Martin
Thanks Martin.This worked great!
Aros
A: 

Within the FormClosing event handler could you not interrogate the keyboard buffer (do you even have access to this?) to se if [Alt] + [F4] was pressed, cancel if true, continue if not?

TK
+1  A: 

Would FormClosing be called even when you're programatically closing the window? If so, you'd probably want to add some code to allow the form to be closed when you're finished with it (instead of always canceling the operation)

pix0r
+8  A: 

Note that it is considered bad form for an application to completely prevent itself from closing. You should check the event arguments for the Closing event to determine how and why your application was asked to close. If it is because of a Windows shutdown, you should not prevent the close from happening.

Lasse V. Karlsen
+9  A: 

I am using a form as a popup dialog to display a progress bar and I do not want the user to be able to close it.

If the user is determined to close your app (and knowledgeable) enough to press alt+f4, they'll most likely also be knowledgeable enough to run task manager and kill your application instead.

At least with alt+f4 your app can do a graceful shutdown, rather than just making people kill it. From experience, people killing your app means corrupt config files, broken databases, half-finished tasks that you can't resume, and many other painful things.

At least prompt them with 'are you sure' rather than flat out preventing it.

Orion Edwards
+15  A: 

@TK

If you look at the value of FormClosingEventArgs e.CloseReason, it will tell you why the form is being closed. You can then decide what to do, the possible values are:

Member name - Description


None - The cause of the closure was not defined or could not be determined.

WindowsShutDown - The operating system is closing all applications before shutting down.

MdiFormClosing - The parent form of this multiple document interface (MDI) form is closing.

UserClosing - The user is closing the form through the user interface (UI), for example by clicking the Close button on the form window, selecting Close from the window's control menu, or pressing ALT+F4.

TaskManagerClosing - The Microsoft Windows Task Manager is closing the application.

FormOwnerClosing - The owner form is closing.

ApplicationExitCall - The Exit method of the Application class was invoked.

Matt Warren
If only they broke out UserClosing to be more granular so you could target Alt+F4 specifically...
blak3r
+6  A: 

I believe this is the right way to do it:

protected override void OnFormClosing(FormClosingEventArgs e)
{
  switch (e.CloseReason)
  {
    case CloseReason.UserClosing:
      e.Cancel = true;
      break;
  }

  base.OnFormClosing(e);
}
antsyawn
A: 

My name is deepak tailong from panna m.p. india

Private Sub Form1_Closing(ByVal sender As Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles MyBase.Closing

    e.Cancel = True

End Sub

this is the coding is used to if we close the form alt + f4 then open form is not closing

DEEPAK TAILONG
A: 

My name is deepak tailong from panna m.p. india

Private Sub Form1_Closing(ByVal sender As Object, ByVal e As system.ComponentModel.CancelEventArgs) Handles MyBase.Closing

e.Cancel = True

End Sub

this is the coding is used to if we close the form alt + f4 then open form is not closing

DEEPAK TAILONG