Click here to Skip to main content
Licence CPOL
First Posted 15 Oct 2011
Views 10,131
Downloads 799
Bookmarked 29 times

C# Close Button Disable Example

By | 17 Oct 2011 | Article
A simple application that shows how to change the status of the close (X) button in Windows Forms.

Close button example

Introduction

The main purpose of this application is to enable and disable the "Close" button of any Windows Form on your application by using Windows APIs.

In some of my applications, I had to prevent users from clicking the close button to exit an application. Of course, there are various ways to exit an application. But in some cases, clicking the close button may not be the nicest option.

The application uses user32.dll Windows API to invoke some methods. Of course, there are other methods that can be invoked in the same library in order to perform different actions.

Using the Code

There are plenty of ways to enable and disable the close button in Windows Forms. This one is a simple and probably the most effective of all.

To manipulate the state of the close button in your form, as mentioned before, a Windows API named user32.dll is needed. By including user32.dll in your project, you will be able to invoke the methods in the "user32.dll" library. There are two main methods we need to use to change the state of the close button, which are: EnableMenuItem() and GetSystemMenu().

As you can see, these methods are located in the user32.dll file.

After adding using System.Runtime.InteropServices; to your using section, you can start importing functions to your project.

After this step, it's time to create the methods and invoke them in your project. Now, you can invoke those methods in any way you want, like using it in a timer, or any kind of other events. In the demo application, you'll notice that the button events call the custom created void functions which contain other methods for enabling and disabling the close button. The snippet below shows invoking the DLL methods.

In order to change the status of the close button, we need to tell the API the current and target addresses of the button's states. These three values represent the states of the button. All of the values can be found on the internet, if you are interested in manipulating other controls.

internal const int SC_CLOSE = 0xF060;           //close button's code in Windows API
internal const int MF_ENABLED = 0x00000000;     //enabled button status
internal const int MF_GRAYED = 0x1;             //disabled button status (enabled = false)
internal const int MF_DISABLED = 0x00000002;    //disabled button status

Now it's time to call our DLL's methods:

[DllImport("user32.dll")]
private static extern IntPtr GetSystemMenu(IntPtr HWNDValue, bool isRevert);

[DllImport("user32.dll")]
private static extern int EnableMenuItem(IntPtr tMenu, int targetItem, int targetStatus);

Here are two others that I didn't have a chance to try, but I don't see any reason for them to not work properly...

internal const int SC_MINIMIZE = 0xF020; //for minimize button on forms
internal const int SC_MAXIMIZE = 0xF030; //for maximize button on forms

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Selim Sertaç BALCI

Software Developer

Turkey Turkey

Member

Follow on Twitter Follow on Twitter
Software Engineer, has been working on multiple platforms such as Apple, PHP and .NET Framework. Addicted to iOS development.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionInteresting code but... Pinmembers.kleinschmidt23:33 25 Oct '11  
AnswerRe: Interesting code but... PinmemberSelim Sertaç BALCI21:35 28 Oct '11  
GeneralNice Pinmemberkiran dangar2:37 17 Oct '11  
QuestionThanks PinmemberBarış Bp9:39 16 Oct '11  
AnswerRe: Thanks PinmemberSelim Sertaç BALCI9:40 16 Oct '11  
QuestionIt Seems this doesn't work on Mininum and Maximum button? PinmemberEason_Wu3:45 16 Oct '11  
AnswerRe: It Seems this doesn't work on Mininum and Maximum button? PinmemberSelim Sertaç BALCI9:04 16 Oct '11  
GeneralRe: It Seems this doesn't work on Mininum and Maximum button? PinmemberEason_Wu5:31 17 Oct '11  
AnswerThanks! Pinmembertrofimchyk3:04 16 Oct '11  
GeneralRe: Thanks! PinmemberSelim Sertaç BALCI9:05 16 Oct '11  
QuestionNot an article PinmemberPIEBALDconsult18:45 15 Oct '11  
AnswerRe: Not an article PinmemberSelim Sertaç BALCI9:06 16 Oct '11  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120517.1 | Last Updated 17 Oct 2011
Article Copyright 2011 by Selim Sertaç BALCI
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid