Reputation: 1804
In Windows, is there a fairly reliable way to keep a window in front of another window?
The window in question would ideally always have a z-order of one greater than its target.
Upvotes: 2
Views: 569
Reputation: 27903
new FormToolbar().Show(this); // shows the toolbar on top of this window.
(when this
is the form that should remain 1 behind the toolbar window.
Upvotes: 4