|
32.26 How do I display a splash screen type form, one with only client area (no border or titlebar)?
|
public void CreateMyBorderlessWindow()
|
this.FormBorderStyle = FormBorderStyle.None;
|
this.MaximizeBox = false;
|
this.MinimizeBox = false;
|
this.StartPosition = FormStartPosition.CenterScreen;
|
|
|
|