How to open form like PowerPoint Presentation

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Does anyone know how to open a form in .Net 2.0 similar to when you use
PowerPoint and put it in presentation mode. Basically, it takes up the
entire screen including the tool bar at the bottom.

Thanks
 
Simple..

Set the FormBorderStyle to None and WindowState to Maximize
and show the form..
 
using windows state maximize may not solve the problem.

try this

private void Form_Load(object sender, EventArgs e)
{
this.Location = new Point(0, 0);
this.FormBorderStyle = FormBorderStyle.None;
this.Size = Screen.PrimaryScreen.Bounds.Size;
this.TopMost = true;
}

________________________
(e-mail address removed)
http://www.openwinforms.com/
OpenWinForms - open source windows forms and controls
Google group - http://groups.google.com/group/open-winforms
 
Back
Top