.NET - WindowStyle = hidden vs. CreateNoWindow = true?

后端 未结 3 1648
半阙折子戏
半阙折子戏 2020-11-27 12:55

When I start a new process, what difference does it make if I use the

WindowStyle = Hidden

or the

CreateNoWindow = true
<         


        
3条回答
  •  猫巷女王i
    2020-11-27 13:07

    As Hans said, WindowStyle is a recommendation passed to the process, the application can choose to ignore it.

    CreateNoWindow controls how the console works for the child process, but it doesn't work alone.

    CreateNoWindow works in conjunction with UseShellExecute as follows:

    To run the process without any window:

    ProcessStartInfo info = new ProcessStartInfo(fileName, arg); 
    info.CreateNoWindow = true; 
    info.UseShellExecute = false;
    Process processChild = Process.Start(info); 
    

    To run the child process in its own window (new console)

    ProcessStartInfo info = new ProcessStartInfo(fileName, arg); 
    info.UseShellExecute = true; // which is the default value.
    Process processChild = Process.Start(info); // separate window
    

    To run the child process in the parent's console window

    ProcessStartInfo info = new ProcessStartInfo(fileName, arg); 
    info.UseShellExecute = false; // causes consoles to share window 
    Process processChild = Process.Start(info); 
    

提交回复
热议问题