当图像为空时,设置另一个默认图像吗?

问题描述 投票:1回答:2

您能看到这个标签:

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

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

<!-- 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>
c# wpf xaml styles datatemplate
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>

提防本地值]的precedence


0
投票

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

© www.soinside.com 2019 - 2024. All rights reserved.