Making a form fullscreen

  • Thread starter Thread starter Flare
  • Start date Start date
F

Flare

Hi

Anyone know how to make a form fullscreen with no startbar etc.?

Regards
Anders, Denmark
 
Hi Anders,

Add these 3 lines:

this.FormBorderStyle = FormBorderStyle.None;
this.WindowState = FormWindowState.Maximized;
this.TopMost = true;
 
Back
Top