tbridge
tbridge

Reputation: 1804

Keep window in front of another window (not on top) in Windows

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

Answers (1)

agent-j
agent-j

Reputation: 27903

Owner window.

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

Related Questions