7
私はC#で書かれたWindowsメトロアプリを持っています。ここでシステムファイルへの保存ファイル?
は、私は地元の音楽ライブラリからファイルを選択するために使用していたコードです:
FileOpenPicker openPicker = new FileOpenPicker();
openPicker.ViewMode = PickerViewMode.Thumbnail;
openPicker.SuggestedStartLocation = PickerLocationId.MusicLibrary;
openPicker.FileTypeFilter.Add(".mp3");
openPicker.FileTypeFilter.Add(".wav");
StorageFile file = await openPicker.PickSingleFileAsync();
if (file != null)
{
myMediaElement.Source = file; //error here
}
else
{
//error here
}
それはStorageFile
はのMediaElementのソースを変更するために使用System.Uri
に変換することはできませんと言っています。ファイルをuriリンクにするにはどうすればよいですか? Uri("...")
は、ファイルの場所がString
のものしか受け付けていないようです。
本当に非常に助かりました! –