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.
form.MinimizeBox = false;
or if in the form scope
MinimizeBox = false;