Do you know how to create a maximized form (a form without title and occupies the whole screen area) in a Pocket PC application using .Net Compact Framework 1.1?
There are couple properties you need to set to get it work. First, make sure the following properties are set inside InitializeComponent() or form's constructor:
form.Menu = null;
form.FormBorderStyle = FormBorderStyle.None;
Secondly, in form.Load event handler, set form.WindowState = FormWindowState.Maximized
This will give you a maximized form. Here is sample code:
public
{
}
#region
#endregion
Hope this helps.