摘要:using System.Runtime.InteropServices.WindowsRuntime;FileOpenPicker fileOpenPicker = new FileOpenPicker();fileOpenPicker.CommitButtonText = "打开";fileOpenPicker.FileTypeFilter.Insert(0, ".jpg");StorageFile file = await fileOpenPicker.PickSingleFileAsync();if (file == null) return;/ 阅读全文
浙公网安备 33010602011771号