4
我知道P/invoke可以,但是有沒有管理方式?如何在c#中沒有最大/最小/關閉按鈕的情況下創建表單?
我知道P/invoke可以,但是有沒有管理方式?如何在c#中沒有最大/最小/關閉按鈕的情況下創建表單?
您應該能夠切換ControlBox
屬性。
public void CreateMyBorderlessWindow()
{
this.FormBorderStyle = FormBorderStyle.None;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.StartPosition = FormStartPosition.CenterScreen;
// Remove the control box so the form will only display client area.
this.ControlBox = false;
}
是的......只要禁用窗體屬性上的控件框即可。
很酷。永遠不知道這個屬性的含義。 – Benny 2009-12-04 09:28:23