C#/Winform
(C#) 그림판 실행하기
kjun.kr
2018. 3. 22. 23:51
728x90
ProcessStartInfo startInfo = new ProcessStartInfo(filePath);
startInfo.Verb = "edit";
startInfo.Verb = "edit";
Process.Start(startInfo);
728x90