Is there a way to have my form staying on top of all other windows in C#, like in java with
setAlwaysOnTop(true);
Is there a way to have my form staying on top of all other windows in C#, like in java with
setAlwaysOnTop(true);
You could use the TopMost property:
this.TopMost = true;
You can set this property in code, like above. This can be done using the designer as well:
Note: Make sure to click the form once.
MSDN: MSDN TopMost
Gets or sets a value that indicates whether a window appears in the topmost z-order.
Take a look at this
this.TopMost = true;