G
Guest
I write an .NET CF Application in C# which should show an additional form in
a not full screen window.
The first question:
Only if I set FormBorderStyle= None I get a not full screen form.
I can center it if I set its Location
this.Location = new Point((screen.Width - this.Width) / 2, (screen.Height -
this.Height ) / 2);
But is has absolutely no frame, because I set it to none.
Is there an other way, I do not see, to get the form not full screened?
If there's no pssibility here is my second question:
Can I use an other control which is showing afrem in the background? It has
to be moveable and resizable.
MessageBox which shows a small window dosn't work because it has only the
static Show() method and is no object. An inputbox dosn't exist in C#.
Is there some window- control?
a not full screen window.
The first question:
Only if I set FormBorderStyle= None I get a not full screen form.
I can center it if I set its Location
this.Location = new Point((screen.Width - this.Width) / 2, (screen.Height -
this.Height ) / 2);
But is has absolutely no frame, because I set it to none.
Is there an other way, I do not see, to get the form not full screened?
If there's no pssibility here is my second question:
Can I use an other control which is showing afrem in the background? It has
to be moveable and resizable.
MessageBox which shows a small window dosn't work because it has only the
static Show() method and is no object. An inputbox dosn't exist in C#.
Is there some window- control?