Click here to Skip to main content
15,890,579 members
Please Sign up or sign in to vote.
1.00/5 (3 votes)
See more:
hello i want to know how is possible to make a form that pulls overt other applications and goes to the top of the applications even the desktop,exactly like windows taskbar.

thank you .
like the image below.
https://i.imgur.com/wdffPu5.png

What I have tried:

I have tired all of form settings in visual studio
Posted
Updated 19-Dec-17 4:42am
v2

Take a look:
c# - How to make a window always stay on top in .Net? - Stack Overflow[^]


Form.TopMost will work unless the other program is creating topmost windows.

There is no way to create a window that is not covered by new topmost windows of another process. Raymond Chen explained why.
 
Share this answer
 
v2
Comments
Member 13565065 19-Dec-17 8:09am    
could you please check that link?
I'm not absolutely sure if I understand you correctly but setting your form's
C#
TopMost = true;
should place it on top of all normal forms.
 
Share this answer
 
Comments
Member 13565065 19-Dec-17 8:09am    
could you please check that link?
What you want to do is create an AppBar[^] . See this CP article: AppBar using C#[^].

/ravi
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900