I am trying to change the border background color to red if the child texblock gets value "0". I am trying to use GreaterThanZero Converter, but it fails to do anything. I am wondering if someone can help. I also need to change the texblock foreground color to white if value is greater than zero. Any ideas are highly appreciated. Thank you in advance.
Here is my XAML:
<Grid>
<Border x:Name="TextBoxBorder" BorderThickness="1" Width="30">
<TextBlock x:Name="TotalTileValue" Text="{Binding TotalItemCount}">
<TextBlock.Style>
<Style>
<Style.Triggers>
<DataTrigger Binding="{Binding Content, Converter={x:Static local:GreaterThanZeroConverter.Instance}, RelativeSource={RelativeSource Self}}" Value="True" >
<Setter Property="TextBlock.Foreground" Value="White" />
<Setter TargetName="TextBoxBorder" Property="Background" Value="#FFCC0000" />
</DataTrigger>
</Style.Triggers>
</Style>
</TextBlock.Style>
</TextBlock>
</Border>