How do I go about changing what happens when a user clicks the close (red X) button in a Windows Forms application (in C#)?
|
|
You can override OnFormClosing to do this. Just be careful you don't do anything too unexpected, as clicking the 'X' to close is a well understood behavior.
|
|||||||||||||
|
|
Override the OnFormClosing method. CAUTION: You need to check the CloseReason and only alter the behaviour if it is UserClosing. You should not put anything in here that would stall the Windows shutdown routine. Application Shutdown Changes in Windows Vista This is from the Windows 7 logo program requirements:
|
||||
|
|
Either override the OnFormClosing or register for the event FormClosing. This is an example of overriding the OnFormClosing function in the derived form:
This is an example of the handler of the event to stop the form from closing which can be in any class:
To get more advanced, check the CloseReason property on the FormClosingEventArgs to ensure the appropriate action is performed. You might want to only do the alternative action if the user tries to close the form. |
||||
|
|
|
One thing these answers lack, and which newbies are probably looking for, is that while it's nice to have an event:
It's not going to do anything at all unless you register the event. Put this in the class constructor:
|
|||
|
|
|
Override OnFormClosing? |
|||
|
|
|
One situation where it is quite useful to be able to handle the x-button click event is when you are using a Form that is an MDI container. The reason is that the closeing and closed events are raised first with children and lastly with the parent. So in one scenario a user clicks the x-button to close the application and the MDI parent asks for a confirmation to proceed. In case he decides to not close the application but carry on whatever he is doing the children will already have processed the closing event potentially lost information/work whatever. One solution is to intercept the WM_CLOSE message from the Windows message loop in your main application form (i.e. which closed, terminates the application) like so:
|
|||
|
|
|
This is a pretty commonly asked question. One good answer is here: If you don't feel comfortable putting your code in the Form_Closing event, the only other option I am aware of is a "hack" that I've used once or twice. It should not be necessary to resort to this hack, but here it is: Don't use the normal close button. Instead, create your form so that it has no ControlBox. You can do this by setting ControlBox = false on the form, in which case, you will still have the normal bar across the top of the form, or you can set the form's FormBorderStyle to "None. If you go this second route, there will be no bar across the top, or any other visible border, so you'll have to simulate those either by drawing on the form, or by artistic use of Panel controls. Then you can add a standard button and make it look like a close button, and put your clean-up code in there. At the end of the button event, just call |
|||||||
|
