728x90
728x170
string filePath = "그림파일위치";
/// <summary> /// 그림판을 실행합니다. /// </summary> private void RunMSPaint() { ProcessStartInfo startInfo = new ProcessStartInfo(this.filePath); startInfo.Verb = "edit";
Process.Start(startInfo); } |
728x90
그리드형
'C# > Winform' 카테고리의 다른 글
[C#] 배경에 따른 글자색(흰색,검은색) 변경하기 (0) | 2020.07.06 |
---|---|
[C#] 사진 날짜 정보 가져오기 (0) | 2020.07.05 |
[C#] 참조한 dll 들 exe 파일로 통합하기 (0) | 2020.06.02 |
[C#] 마우스 후킹하기 (0) | 2020.06.02 |
[C#] 폴더에서 이미지 파일만 가져오기 (0) | 2020.06.02 |