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


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;
     }

© 2001-2010 Copyright Syncfusion Inc. All rights reserved.  |  Privacy Policy  |  Contact  |  Sitemap