How to hide toolbar?

  • Thread starter Thread starter JustMe
  • Start date Start date
J

JustMe

I'm able to hide/remove the menu, but I'm not able to hide/remove the
toolbar off of my form at runtime.

Any suggestions?

--Terry
 
Sorry, I haven´t read properly.

for fullscreen app, just hide the menu, and then set the window as
maximized:

this.Menu = null;
this.WindowState = FormWindowState.Maximized;

I have read that on version 1.0 of the .NET CF, you must change the
WindowState property inside the Form's Load event.
 
Back
Top