Always on top
C / C++ / MFC
3
Posts
3
Posters
0
Views
1
Watching
-
We can set task manager always on top by check options -> always on top is that possible we can set our application window always on top
Trioum
You could create the window using
WS_EX_TOPMOST
, or use SetWindowPos()[^] to make an existing window have the always-on-top style. -
We can set task manager always on top by check options -> always on top is that possible we can set our application window always on top
Trioum