1

你能看到这个标签:

<Image Source="{Binding Image}" Stretch="UniformToFill"/>

但在下面?我想要做的是,当 Image 为空时,设置另一个默认图像。这可能吗?

<!-- Grid-appropriate 250 pixel square item template as seen in the GroupedItemsPage and ItemsPage -->
<DataTemplate x:Key="Standard250x250ItemTemplate">
    <Grid HorizontalAlignment="Left" Width="320" Height="240">
        <Border Background="{StaticResource ListViewItemPlaceholderRectBrush}">
            <Image Source="{Binding Image}" Stretch="UniformToFill"/>
        </Border>
        <StackPanel VerticalAlignment="Bottom" Background="{StaticResource ListViewItemOverlayBackgroundBrush}">
            <TextBlock Text="{Binding ShortTitle}" Foreground="{StaticResource ListViewItemOverlayTextBrush}" Style="{StaticResource TitleTextStyle}" Height="48" Margin="15,0,15,0"/>
        </StackPanel>
    </Grid>
</DataTemplate>
4

2 回答 2

2

用. Style_ DataTrigger例如类似的东西

<Image Stretch="UniformToFill">
     <Image.Style>
         <Style TargetType="Image">
             <Setter Property="Source" Value="{Binding Image}"/>
             <Style.Triggers>
                 <DataTrigger Binding="{Binding Image}" Value="{x:Null}">
                     <Setter Property="Source" Value="Images/Default.png"/>
                 </DataTrigger>
             </Style.Triggers>
         </Style>
    </Image.Style>
</Image>

注意局部值优先级

于 2012-04-08T03:11:46.903 回答
0

我不确定您是否需要一个触发器,当我需要在绑定值不会转换时指定一个值时,我通常使用如下所示的后备值。

<Image Source="{Binding Path=ImageURI, FallbackValue='SomeImageURI'}" />

Microsoft FallbackValue 属性

于 2012-04-09T14:09:29.913 回答