我知道P / invoke可以做,但有管理方式吗?
答案 0 :(得分:10)
您应该可以切换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;
}
答案 1 :(得分:1)
是的...只需在表单属性上禁用控件框即可。