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;
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top