2016-03-07 59 views
1

我試圖打開MSPAINT最大化並同時打開一個文件。我知道如何用油漆打開一個文件並查看圖像,但我無法用圖像打開油漆並使油漆達到最大化。如何打開使用文件最大化的繪圖

這裏是我的代碼:

static void Butten1(object sender, EventArgs e) { 
     ProcessStartInfo Info = new ProcessStartInfo() { 
     FileName = "mspaint.exe", 
     WindowStyle = ProcessWindowStyle.Maximized 
     }; 
     Process.Start(Info); 
     } 

回答

4

傳中,文件名作爲參數。

var filePath = @"C:\icon.png"; 
ProcessStartInfo Info = new ProcessStartInfo() 
{ 
    FileName = "mspaint.exe", 
    WindowStyle = ProcessWindowStyle.Maximized, 
    Arguments = filePath 
}; 
Process.Start(Info); 

請注意,它只能是因爲畫圖解釋的第一個參數是要打開的文件。這意味着此解決方案僅適用於Paint和其他試圖打開傳入內容的應用程序作爲第一個參數。

相關問題