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 121 views
1 answer 114 views
1 answer 121 views
121 views asked Jul 27, 2023 by avibootz
1 answer 143 views
143 views asked Jul 27, 2023 by avibootz
1 answer 140 views
1 answer 228 views
1 answer 295 views
...