1
我試圖打開MSPAINT最大化並同時打開一個文件。我知道如何用油漆打開一個文件並查看圖像,但我無法用圖像打開油漆並使油漆達到最大化。如何打開使用文件最大化的繪圖
這裏是我的代碼:
static void Butten1(object sender, EventArgs e) {
ProcessStartInfo Info = new ProcessStartInfo() {
FileName = "mspaint.exe",
WindowStyle = ProcessWindowStyle.Maximized
};
Process.Start(Info);
}