Click here to Skip to main content
15,881,588 members
Articles / Programming Languages / C#
Tip/Trick

Disable Close Button from Title bar of a Window

Rate me:
Please Sign up or sign in to vote.
4.17/5 (5 votes)
8 Dec 2009CPOL 34.4K   12   7
As a developer, you must have found few things that are really haven't thought of earlier. On that note, Say you want to disable Close Button of a window. It is easier to disable other button (using properties available with Form) from control box of the window, or even remove the control box...
As a developer, you must have found few things that are really haven't thought of earlier. On that note, Say you want to disable Close Button of a window. It is easier to disable other button (using properties available with Form) from control box of the window, or even remove the control box altogether. But If you still like to disable the Close button Just follow the steps :

1. Add this using Statement in the header :
using System.Runtime.InteropServices;


2. In the class add :
private const int MF_BYPOSITION = 0x400;

[DllImport("User32")]
private static extern int RemoveMenu(IntPtr hMenu, int nPosition, int wFlags);

[DllImport("User32")]
private static extern IntPtr GetSystemMenu(IntPtr hWnd, bool bRevert);

[DllImport("User32")]
private static extern int GetMenuItemCount(IntPtr hWnd);



3. Finally to disable the close button during runtime Use :
IntPtr hMenu = GetSystemMenu(this.Handle, false);
int menuItemCount = GetMenuItemCount(hMenu);
RemoveMenu(hMenu, menuItemCount - 1, MF_BYPOSITION);


You are done. You will actually see a window with disabled close button.

Cheers. :rose:

License

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


Written By
President
India India
Did you like his post?

Oh, lets go a bit further to know him better.
Visit his Website : www.abhisheksur.com to know more about Abhishek.

Abhishek also authored a book on .NET 4.5 Features and recommends you to read it, you will learn a lot from it.
http://bit.ly/EXPERTCookBook

Basically he is from India, who loves to explore the .NET world. He loves to code and in his leisure you always find him talking about technical stuffs.

Working as a VP product of APPSeCONNECT, an integration platform of future, he does all sort of innovation around the product.

Have any problem? Write to him in his Forum.

You can also mail him directly to abhi2434@yahoo.com

Want a Coder like him for your project?
Drop him a mail to contact@abhisheksur.com

Visit His Blog

Dotnet Tricks and Tips



Dont forget to vote or share your comments about his Writing

Comments and Discussions

 
GeneralReason for my vote of 5 More Stable and extendable Pin
Youzelin4-Jul-11 21:21
Youzelin4-Jul-11 21:21 
Reason for my vote of 5
More Stable and extendable
GeneralYes, I can not press the close button. But what about ALT+F4... Pin
johannesnestler30-Jun-11 23:12
johannesnestler30-Jun-11 23:12 
GeneralGood Job.. Pin
Sundeep Ganiga24-Mar-10 18:04
Sundeep Ganiga24-Mar-10 18:04 
GeneralRe: Good Job.. Pin
Abhishek Sur24-Mar-10 22:12
professionalAbhishek Sur24-Mar-10 22:12 
GeneralWorks in C++ Pin
Richard MacCutchan16-Dec-09 11:31
mveRichard MacCutchan16-Dec-09 11:31 
GeneralRe: Works in C++ Pin
Abhishek Sur16-Dec-09 22:05
professionalAbhishek Sur16-Dec-09 22:05 
Generalgood to see the alternate. Pin
Abhishek Sur16-Dec-09 6:42
professionalAbhishek Sur16-Dec-09 6:42 

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

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