■ OpenFileDialog 클래스를 사용해 이미지 파일 열기 대화 상자를 표시하는 방법을 보여준다.
▶ OpenFileDialog 클래스 : 이미지 파일 열기 대화 상자 표시하기 예제 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 |
string filePath = ShowOpenImageFileDialog("image", ".jpg"); if(string.IsNullOrEmpty(filePath)) { MessageBox.Show("파일 선택을 취소하였습니다."); } else { MessageBox.Show(filePath + "가 선택되었습니다."); } |
▶ OpenFileDialog 클래스 : 이미지 파일 열기 대화 상자 표시하기 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
#region 이미지 파일 열기 대화 상자 보여주기 - ShowOpenImageFileDialog(defaultFileName, defaultExtension) /// <summary> /// 이미지 파일 열기 대화 상자 보여주기 /// </summary> /// <param name="defaultFileName">디폴트 파일명</param> /// <param name="defaultExtension">디폴트 확장자</param> /// <returns>파일 경로</returns> public string ShowOpenImageFileDialog(string defaultFileName, string defaultExtension) { return ShowOpenFileDialog // "OpenFileDialog 클래스 : 파일 열기 대화 상자 보여주기" 참조 ( "비트맵 (*.bmp)|*.bmp|JPEG (*.jpg;*.jpeg;*.jpe)|*.jpg;*.jpeg;*.jpe|GIF (*.gif)|*.gif|TIFF (*.tif;*.tiff)|*.tif;*.tiff|PNG (*.png)|*.png|모든 그림 파일|*.bmp;*.jpg;*.jpeg;*.jpe;*.gif;*.tif;*.tiff;*.png", 1, defaultFileName, defaultExtension ); } #endregion |