Welcome to WindowsClient.net | Sign in | Join

Here are some frequently asked questions about Windows Forms and their answers.

Windows Forms FAQs

How do I create a splash screen style form, i.e., with no border or titlebar?

You can download a working project that uses this code.

public void CreateMyBorderlessWindow() 
{ 
  FormBorderStyle = FormBorderStyle.None; 
  MaximizeBox = false; 
  MinimizeBox = false; 
  StartPosition = FormStartPosition.CenterScreen; 
  ControlBox = false; 
}

Contributed from George Shepherd's Windows Forms FAQ



Page view counter