I want to make a window topmost in a C# application. i need to make it so that while the window is loaded(the application is invoked by a third party software) it will be on top and user can browse to other windows if he needed.
I used
this.Topmost = true;
this.TopMost=false;
but it dont have any effect.