FileAttributes到ImageSource:IValueConverter不工作

时间:2014-09-13 13:25:14

标签: c# windows-runtime windows-phone-8.1 win-universal-app

所以,我在我的音乐播放器(Universal App)中创建了一个“小”文件浏览器页面,我需要放置一个图像,通知目录或文件。但是代码不起作用。 这是转换器本身:命名空间myApp在它自己的命名空间之前。

namespace Converters
{
    public sealed class AttributesToImageConverter : Windows.UI.Xaml.Data.IValueConverter
    {
        public object Convert ( object value, Type targetType, object parameter, string language )
        {
            FileAttributes f = (FileAttributes)value;
            Windows.UI.Xaml.Media.Imaging.BitmapImage img = new Windows.UI.Xaml.Media.Imaging.BitmapImage ( );
            img.DecodePixelWidth = 50;
            if ( f == FileAttributes.Directory )
            {
                img.UriSource = new Uri ( "ms-appx:/Asstes/folder.png", UriKind.Absolute );
            }
            else
                img.UriSource = new Uri ( "ms-appx:/Asstes/file.png", UriKind.Absolute );
            return img;
        }

        public object ConvertBack ( object value, Type targetType, object parameter, string language )
        {
            throw new NotImplementedException ( );
        }
    }
}

这是XAML:

<Page
    ...
    xmlns:converter="using:myApp.Converters" >

    <Page.Resources>
        <converter:AttributesToImageConverter x:Key="AttributesToImageConverter" />
    </Page.Resources>

    ...
    <Grid x:Name="LayoutRoot" DataContext="">
    ...
        <ListView x:Name="ContentRoot" ItemsSource="{Binding List}" Height="500" Margin="10,-10,10,15" Background="Transparent" BorderBrush="Transparent" >
            <ListView.ItemTemplate>
                <DataTemplate>
                    <StackPanel Orientation="Horizontal" Margin="2,2,2,2">
                        <Image Width="50" Height="50" Margin="5,0,5,0" Source="{Binding Attributes, Converter={StaticResource AttributesToImageConverter}}" />
                        <TextBlock Text="{Binding Name}" Foreground="White" />
                    </StackPanel>
                </DataTemplate>
            </ListView.ItemTemplate>
        </ListView>
    ...
    </Grid>

此上下文的其他绑定工作,绑定到同一IStorageItem中的Name属性工作正常,但这不是。此外,使用ListView导致应用程序在显示加载的数据后几秒钟关闭,没有任何调试信息或异常,但代码为-2147483645(0x80000003)。我很感激任何帮助。

1 个答案:

答案 0 :(得分:0)

“属性”是ItemsSource“List”中每个项目的实际属性,还是视图模型中的单独属性?

使用您列出的文件路径创建存储文件,然后利用以下示例:

var imageFile = args.Files[0] as StorageFile;

// Ensure the stream is disposed once the image is loaded
using (IRandomAccessStream fileStream = await imageFile.OpenAsync(Windows.Storage.FileAccessMode.Read))
{
    // Set the image source to the selected bitmap
    var bitmapImage = new BitmapImage();

    await bitmapImage.SetSourceAsync(fileStream);
    return bitmapImage;
}