I am currently opening a folder for the user using Process.Start("C:\\Some\\Path")
.
Because of the calling form's TopMost
property being set to true, the new window shows up behind that form and remains behind that form even if the user interacts with the new window.
How can this new window be defined so that its TopMost
property is set to true? Otherwise, is there another way to put this window on top?
I've gone through many different properties of Process, looking for something that can set TopMost to true, or some other property that might have the same effect.
I could not find any options that work with explorer in command line that can force the window to be on top, that can be used as a parameter.