■ FileOpenPicker 클래스의 PickSingleFileAsync 메소드를 사용해 파일을 선택하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 |
using Windows.Storage; using Windows.Storage.Pickers; FileOpenPicker picker = new FileOpenPicker { ViewMode = PickerViewMode.Thumbnail, SuggestedStartLocation = PickerLocationId.PicturesLibrary, FileTypeFilter = { ".jpg", ".jpeg", ".png", ".bmp" } }; StorageFile file = await picker.PickSingleFileAsync(); |