WP7 Listbox& gif绑定

时间:2011-04-28 08:43:13

标签: windows-phone-7 listbox

我的.xaml喜欢这个

<ListBox.ItemTemplate> 
    <DataTemplate>
        <Image Width="90" Height="90" Source="{Binding ImgUri}" Name="codeimage"/>
    </DataTemplate>
</ListBox.ItemTemplate>

我已经将.gif转换为writeableBitmap。 但是不知道如何绑定writeableBitmap 与列表框。

有人可以给我一些提示吗?

非常感谢

1 个答案:

答案 0 :(得分:2)

如果您将图像的路径绑定到Uri是gif,则必须应用转换器来管理转换为支持的格式(png of jpg)。

查看this answer to a similar question