来自Url \ Device的DataTemplate中的图像

时间:2013-02-07 08:19:54

标签: c# .net silverlight windows-phone-7

我的DataTemplate中有ListBox

<local:SearchTemplateSelector.VideoTemplate>
  <DataTemplate>
    <Grid>
      <Rectangle Height="1" HorizontalAlignment="Stretch" VerticalAlignment="Top" Fill="Black" Opacity="0.3" />
      <Grid>
        <Grid.ColumnDefinitions>
          <ColumnDefinition Width="100" />
          <ColumnDefinition Width="*" />
        </Grid.ColumnDefinitions>
        <Image Margin="0" HorizontalAlignment="Left" Source="{Binding Path=ImgUrl}" Width="100" Height="100" />
        <Grid Grid.Column="1" Margin="10,0,8,0">
          <Grid.RowDefinitions>
            <RowDefinition Height="60"/>
            <RowDefinition Height="*"/>
            <RowDefinition Height="*"/>
          </Grid.RowDefinitions>
          <TextBlock Text="{Binding Name}" FontSize="20" Foreground="Black" TextWrapping="Wrap" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" />
          <StackPanel Orientation="Horizontal" Margin="0,-5,0,0" Grid.Row="1">
            <TextBlock Text="Views:  " FontSize="20" Foreground="Black"/>
            <TextBlock Text="{Binding ViewCount}" FontSize="20" Foreground="Black"/>
          </StackPanel>
          <TextBlock Text="{Binding TimeStr}" FontSize="20" Foreground="Black" Grid.Row="2" Margin="0,0,0,0" />
        </Grid>
      </Grid>
    </Grid>
  </DataTemplate>
</local:SearchTemplateSelector.VideoTemplate>

现在我有了我从我的对象的ImgUrl绑定的图像。我想知道是否有可能做出这样的事情: 如果设备中的图像从设备中取出,如果没有将其下载并将其保存在设备上,则每个图像都有唯一的ID,因此我可以使用id.png保存它

1 个答案:

答案 0 :(得分:1)

如果我理解你的错误,你必须向ImgUrl属性添加逻辑。您必须在Set{}中添加一些方法,try将加载来自isolatedStorage的图像和catch异常,其中将使用方法加载并将图像保存到{ {1}}。