怎么将关闭按扭换成最小化按扭

如何将关闭按扭换成最小化按扭我设置了窗体this.FormBorderStyleSystem.Windows.Forms.FormBorderStyle.F

如何将关闭按扭换成最小化按扭
我设置了窗体
this.FormBorderStyle   =   System.Windows.Forms.FormBorderStyle.FixedToolWindow;

怎么样将右上角的关闭按扭换成最小化按扭
或则自己做张最小化的图片替代也可以

[解决办法]
在closing事件中寫如下代碼:
e.Cancel = true;
this.WindowState = FormWindowState.Minimized;
[解决办法]
同意楼上!~
干嘛要换!