gpt4 book ai didi

c# - 将 MediaElement 的源属性绑定(bind)到 FileInfo

转载 作者:太空狗 更新时间:2023-10-29 17:55:33 24 4
gpt4 key购买 nike

我有一个 View 模型类,它提供 FileInfo 类型的属性 MediaFile,我想将该属性绑定(bind)到 MediaElement 的 Source 属性。

问题是,MediaElement 的 Source 属性需要一个 Uri,但我无法访问 FileInfo 类的 FullName 属性(在绑定(bind)中定义的转换器中),因为这会引发 SecurityException。

对于图像没有问题,因为 Image 控件需要一个 ImageSource 对象,我可以使用 FileInfo 实例的流在转换器中创建该对象。

如何定义绑定(bind),以便我的 MediaElement 获得正确的源?或者我如何将 MediaElement 传递给转换器,以便我可以在 MediaElement 上调用 SetSource(Stream)。

ViewModel:

public class ViewModel {
// additional code omitted
public FileInfo MediaFile {get; set;}
}

转换器:

public class FileInfoToMediaConverter : IValueConverter {
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture) {
var file = value as System.IO.FileInfo;
if (MediaResourceFactory.IsImage(file.Extension)) {
System.Windows.Media.Imaging.BitmapImage image = new System.Windows.Media.Imaging.BitmapImage();
image.SetSource(file.OpenRead());
return image;
}
else if (MediaResourceFactory.IsVideo(file.Extension)) {
// create source for MediaElement
}
return null;
}

public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture) {
throw new NotImplementedException();
}
}

绑定(bind):

    <Image Source="{Binding MediaFile, Converter={StaticResource fileInfoToMediaConverter} }"/>
<MediaElement Source="{Binding MediaFile, Converter={StaticResource fileInfoToMediaConverter}}/>

最佳答案

您是否正在使用提升权限的浏览器?否则您将无法访问本地文件系统,并且您将收到安全异常。即使具有提升的权限(我的文档、我的图片等),您仍然只能访问您有权访问的目录。

假设您是权限提升的 OOB,您可以执行以下操作:

public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture) 
{
var file = value as System.IO.FileInfo;
if (MediaResourceFactory.IsImage(file.Extension)) {
System.Windows.Media.Imaging.BitmapImage image = new System.Windows.Media.Imaging.BitmapImage();
image.SetSource(file.OpenRead());
return image;
}
else if (MediaResourceFactory.IsVideo(file.Extension)) {
// create source for MediaElement
return new Uri(file.FullName).AbsoluteUri;
}
return null;
}

关于c# - 将 MediaElement 的源属性绑定(bind)到 FileInfo,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6055777/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com