Live Chat Icon For mobile
Live Chat Icon

How do I display a splash screen type form, one with only client area (no border or titlebar)

Platform: WinForms| Category: Form

You can download a working project that uses this code.

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

Share with

Related FAQs

Couldn't find the FAQs you're looking for?

Please submit your question and answer.