Dialog Boxes

  • Thread starter Thread starter Drew
  • Start date Start date
D

Drew

I'm trying to get a nice looking dialog box.

It seems that the only way I can get one that does
not fill up the whole screen of the device is by setting this:

this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;

But that doesn't look so good without the border.

Did I miss something?

Drew
 
No, you are not missing anything. What you might be able to do is draw a
rectangle around your dialogbox, making up for a border. An alternative
could be using a panel instead of a dialog box and making it hidden when not
needed.

--
Regards,

Maarten Struys, eMVP
PTS Software bv

www.opennetcf.org | www.dotnetfordevices.com
 
Back
Top