Form without titlebar

  • Thread starter Thread starter PR
  • Start date Start date
P

PR

I am developing a Windows CE (not Pocket PC or Smartphone) application using
Compact Framework. How do I create a form without a titlebar. I would
still like to have a menu, toolbar and the minimize/maximize/close buttons.
But they should all line up in the same row horizontally. The standard
application shiiped with Windows CE 4.2 emulator (for example, Microsoft
Wordpad) do this. Is there a way to accomplish that from Compact Framework?

Thanks
PR
 
Not having the titlebar but still having mainmenu and toolbar is easy: just
set the ControlBox to false and the FormBorderStyle to None.

As for showing minimise/maximise/close buttons, you might have to implement
them yourself on the toolbar...

Cheers
Daniel
 
Back
Top