如何将关闭按扭换成最小化按扭
我设置了窗体
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
怎么样将右上角的关闭按扭换成最小化按扭
或则自己做张最小化的图片替代也可以
------解决方案--------------------在closing事件中寫如下代碼:
e.Cancel = true;
this.WindowState = FormWindowState.Minimized;
------解决方案--------------------同意楼上!~
干嘛要换!