Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
  1. Home
  2. General Programming
  3. C#
  4. how to disable close button of windows form

how to disable close button of windows form

Scheduled Pinned Locked Moved C#
helptutorial
5 Posts 5 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • V Offline
    V Offline
    Vivek Vijayan
    wrote on last edited by
    #1

    how to disable close button of windows form. i donnot want any one to close the application. or In my application i want to disable the closing of the applciation by user. only the administrator can close. can any one help ..............

    This code was posted by me...

    L W P 3 Replies Last reply
    0
    • V Vivek Vijayan

      how to disable close button of windows form. i donnot want any one to close the application. or In my application i want to disable the closing of the applciation by user. only the administrator can close. can any one help ..............

      This code was posted by me...

      L Offline
      L Offline
      Lost User
      wrote on last edited by
      #2

      Property ControlBox=false Use event FormClosing and set e.Cancel=true.

      OriginalGriffO 1 Reply Last reply
      0
      • L Lost User

        Property ControlBox=false Use event FormClosing and set e.Cancel=true.

        OriginalGriffO Offline
        OriginalGriffO Offline
        OriginalGriff
        wrote on last edited by
        #3

        You can set

        Form.ControlBox=false;

        but this also removes the Min, Max, and system menu from the form as well. To grey out the Close box, override the CreateParms getter:

            protected override CreateParams CreateParams
                {
                get
                    {
                    CreateParams parms = base.CreateParams;
                    parms.ClassStyle |= 0x200;  // CS\_NOCLOSE
                    return parms;
                    }
                }
        

        No trees were harmed in the sending of this message; however, a significant number of electrons were slightly inconvenienced. This message is made of fully recyclable Zeros and Ones

        "I have no idea what I did, but I'm taking full credit for it." - ThisOldTony
        "Common sense is so rare these days, it should be classified as a super power" - Random T-shirt

        1 Reply Last reply
        0
        • V Vivek Vijayan

          how to disable close button of windows form. i donnot want any one to close the application. or In my application i want to disable the closing of the applciation by user. only the administrator can close. can any one help ..............

          This code was posted by me...

          W Offline
          W Offline
          wjp_auhtm
          wrote on last edited by
          #4

          you can do it like this

          this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;

          but, you need to write methods such as 'MovingForm'or 'ResizeForm' or something else by yourself.

          1 Reply Last reply
          0
          • V Vivek Vijayan

            how to disable close button of windows form. i donnot want any one to close the application. or In my application i want to disable the closing of the applciation by user. only the administrator can close. can any one help ..............

            This code was posted by me...

            P Offline
            P Offline
            PIEBALDconsult
            wrote on last edited by
            #5

            See this[^] thread.

            1 Reply Last reply
            0
            Reply
            • Reply as topic
            Log in to reply
            • Oldest to Newest
            • Newest to Oldest
            • Most Votes


            • Login

            • Don't have an account? Register

            • Login or register to search.
            • First post
              Last post
            0
            • Categories
            • Recent
            • Tags
            • Popular
            • World
            • Users
            • Groups