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

Disabling Close Button (X in top right corner of ControlBox)

Rate me:
Please Sign up or sign in to vote.
4.73/5 (15 votes)
4 Apr 2011CPOL 19.9K   13   7
private const int disableX = 0x200;
        protected override CreateParams CreateParams
        {
            get
            {
                CreateParams ObjClose = base.CreateParams;
                ObjClose.ClassStyle = ObjClose.ClassStyle | disableX;
                return ObjClose;
            }
        }

License

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


Written By
United States United States
I do not claim to be wrong! I just rarely ever write.

Comments and Discussions

 
GeneralReason for my vote of 5 nice share Pin
Ridho Anggoro4-Apr-11 23:11
Ridho Anggoro4-Apr-11 23:11 
GeneralRe: thanks Pin
charles henington6-Apr-11 4:42
charles henington6-Apr-11 4: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.