How to disable minimize in windows form with C#

1 Answer

0 votes
namespace WinFormsApp1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
            MinimizeBox = false;
        }
    }
}




/*
 * run:
 *
 * 
 * 
 */


 



answered Aug 14, 2023 by avibootz

Related questions

1 answer 117 views
1 answer 111 views
1 answer 119 views
119 views asked Jul 27, 2023 by avibootz
1 answer 139 views
139 views asked Jul 27, 2023 by avibootz
1 answer 135 views
1 answer 225 views
1 answer 291 views
...