Full Screen

  • Thread starter Thread starter Rob
  • Start date Start date
R

Rob

Can someone tell me how to get a windows form to be displayed in full
screen mode (without the title bar, etc). A solution in c# on the
..NET 1.1 framework would be great!
 
Hi,

Try setting the FormBorderStyle property of the form to
FormBorderStyle.None; this will remove the border and title bar. It then
only remains to set the form's WindowState to Maximized and it should occupy
the entire screen - though depending on what you need to achieve, you may
wish to also set TopMost to true and perhaps ShowInTaskbar to false.


Jonathan Holmes
 
Back
Top