Hide Command Window in C# Application

前端 未结 4 1467
温柔的废话
温柔的废话 2020-12-10 03:50

Before you say its a duplicate question, please let me explain (as I\'ve read all similar threads).

My application has both of these settings:

  proc         


        
4条回答
  •  独厮守ぢ
    2020-12-10 04:14

    You can try adding

    process.StartInfo.UseShellExecute = false; 
    

    to your process

提交回复
热议问题