V
Vincent Mouton
Hi,
I am looking for a way to force an application (windows form) on top of
all running applications. I'm not only talking about TopMost = true ,
but about forcing all other windows to start drawing from the bottom of
that form, as if that form is a toolbar set on top of the screen, or at
the bottom, above the windows toolbar.
In the Constructor of the Form, I'm docking the form on top of the
screen, and defining it's width based on the Bounds.Width property.
this.Dock = DockStyle.Top;
this.Width = Screen.PrimaryScreen.Bounds.Width;
This positions my form as i want it, but of course, all other
applications open on the machine just draw beneath that form.
Is there a way to achieve this?
thank you for any insights,
vincent
I am looking for a way to force an application (windows form) on top of
all running applications. I'm not only talking about TopMost = true ,
but about forcing all other windows to start drawing from the bottom of
that form, as if that form is a toolbar set on top of the screen, or at
the bottom, above the windows toolbar.
In the Constructor of the Form, I'm docking the form on top of the
screen, and defining it's width based on the Bounds.Width property.
this.Dock = DockStyle.Top;
this.Width = Screen.PrimaryScreen.Bounds.Width;
This positions my form as i want it, but of course, all other
applications open on the machine just draw beneath that form.
Is there a way to achieve this?
thank you for any insights,
vincent