Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In my application I need to temporarily gray out the minimize button of the main form. Any ideas how this can be achieved? I don't mind doing p/invokes to Win32 dlls.

Edit: Graying out the minimize button would be the preferred solution, but is there any other way of preventing the form from becoming minimized?

share|improve this question

8 Answers

up vote 8 down vote accepted

I read your comment in regards to my response and was able to drum up a more complete solution for you. I ran this quickly and it seemed to have the behavior that you wanted. Instead of deriving your winforms from Form, derive from this class:


using System;
using System.Windows.Forms;
using System.ComponentModel;

namespace NoMinimizeTest
{
    public class MinimizeControlForm : Form
    {
        private const int WM_SYSCOMMAND = 0x0112;
        private const int SC_MINIMIZE = 0xf020;

        protected MinimizeControlForm()
        {
            AllowMinimize = true;
        }

        protected override void WndProc(ref Message m)
        {
            if (!AllowMinimize)
            {
                if (m.Msg == WM_SYSCOMMAND)
                {
                    if (m.WParam.ToInt32() == SC_MINIMIZE)
                    {
                        m.Result = IntPtr.Zero;
                        return;
                    }
                }
            }
            base.WndProc(ref m);
        }

        [Browsable(true)]
        [Category("Behavior")]
        [Description("Specifies whether to allow the window to minimize when the minimize button and command are enabled.")]
        [DefaultValue(true)]
        public bool AllowMinimize
        {
            get;
            set;
        }
    }
}

You could do a bit more if you wanted to be able to decide whether to allow minimizing at the time the click is sent, for instance:


using System;
using System.Windows.Forms;
using System.ComponentModel;

namespace NoMinimizeTest
{
    public class MinimizeControlForm : Form
    {
        private const int WM_SYSCOMMAND = 0x0112;
        private const int SC_MINIMIZE = 0xf020;

        protected MinimizeControlForm()
        {

        }

        protected override void WndProc(ref Message m)
        {
            if (m.Msg == WM_SYSCOMMAND)
            {
                if (m.WParam.ToInt32() == SC_MINIMIZE && !CheckMinimizingAllowed())
                {
                    m.Result = IntPtr.Zero;
                    return;
                }
            }
            base.WndProc(ref m);
        }

        private bool CheckMinimizingAllowed()
        {
            CancelEventArgs args = new CancelEventArgs(false);
            OnMinimizing(args);
            return !args.Cancel;
        }

        [Browsable(true)]
        [Category("Behavior")]
        [Description("Allows a listener to prevent a window from being minimized.")]
        public event CancelEventHandler Minimizing;

        protected virtual void OnMinimizing(CancelEventArgs e)
        {
            if (Minimizing != null)
                Minimizing(this, e);
        }
    }
}

For more information about this window notification, see the MSDN article about it.

share|improve this answer
form.MinimizeBox = false;

or if in the form scope

MinimizeBox = false;
share|improve this answer
This hides the minimize box, but does not gray it out. – Filip Nov 25 '08 at 22:43
Hmmm, strange. I tested it and it grays it out. It's still there, semi transparent and you can't click it. – Coincoin Nov 26 '08 at 15:42
1  
Depends on your windows theme. If the minimize button is enabled, you get one image. If disabled, you get a different image. That image might be nothing, so then you don't even see a greayed-out button. – Eyal Nov 29 '09 at 12:25

Just do MinimizeBox = false; in your form's code.

share|improve this answer

Put this code in your form's Resize event:

if (this.WindowState == FormWindowState.Minimized)
{
    this.WindowState = FormWindowState.Normal;
}

This will make your form un-minimizable (DISCLAIMER: I do not advocate altering the standard behavior of windows in this way).

share|improve this answer

Don't. Don't mess with my windows. They are mine, not yours. It is my computer and if I want to minimize, I should be able to. I can't think of, and have never been given, a good reason for doing this.

share|improve this answer
5  
I'm going to go with "nuclear power plant core monitoring software". If the author wants to make that window un-minimizable, I'm fine with it. – MusiGenesis Nov 25 '08 at 23:06
4  
until the monitoring software is showing everything red-lining and the "emergency shutdown" button is located behind the monitoring software window – Kevin Nov 26 '08 at 15:12
7  
For god's sake don't use C# WinForms for nuclear power stations! – Callum Rogers Jan 5 '10 at 16:14

You can also implement handle to the Minimize event to cancel the command

share|improve this answer
That would work if there were such an event. :) – MusiGenesis Nov 25 '08 at 23:00

Coincoin's answer is correct. MinimizeBox is also available as a property in the designer properties window.

@Kevin: While I appreciate the sentiment, that's not always a valid answer. If the application displays a modal dialog box by creating a new instance of a Form and then calling .ShowDialog() on it, you don't want the user to minimize that Form, because then all input on the main UI thread is blocked until that Form's modal status is satisfied. The user could potentially click on the main form and just get the "ding ding ding" unresponsive sound from Windows and not know what to do.

share|improve this answer
Setting MinimizeBox to false would usually suffice, but in my case the MaximizeBox is also hidden. When MinimizeBox is shown, the toolbar renders 3 buttons - minimize, grayed out maximize, close. But when when is set MinimizeBox to false, the minimize/maximize buttons aren't rendered anymore. – Filip Nov 25 '08 at 23:21
or they could need to see a piece of information behind the modal form to fill it out and want to minimize it to see that information better. Also, since this question may be viewed by newbie programmers, I wanted to put this advice out there for them. – Kevin Nov 26 '08 at 15:23

Read this from Joel Spolsky

share|improve this answer
Bah. What if you have 10 menu items and the user can only use 1? You want the user to have to click on 9 items and see "sorry, can't use that one either"? So, to reiterate: bah. – MusiGenesis Nov 26 '08 at 0:22
There are other ways to indicate status: tool tips or icons, or remove the menu item altogether. The instant the user sees a greyed out control they are going to be wondering what they need to do to get it available. – benPearce Nov 26 '08 at 0:27
Tool tips on a menu? Bah. Menus suck, but if you're going to use them at least take advantage of the fact that everybody in the world knows how to use them, and use them normally. Oh, one other thing: bah. – MusiGenesis Nov 26 '08 at 3:18
Why are we even talking about menus in a question about the minimize button? – MusiGenesis Nov 26 '08 at 3:18
Sorry, Joel Spolsky, while smart, isn't the end-all be-all authority on user interface design. Giving this as a blanket statement and then saying "Joel Spolsky says" doesn't address the problem. You don't know, and neither does Joel, the business case behind the UI design. – Rob Nov 26 '08 at 9:08
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.