前景を特別な値にバインドして変更するコンバーターを作成しましたが、常に val を null として使用します。
public class PositionConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
//string vall;
//TextBlock txt= TextBlock.TextProperty(
var val = value as TextBlock;
if (val != null)
{
if (val.Text.StartsWith("-"))
{
return new SolidColorBrush(Colors.Red);
}
else
{
return new SolidColorBrush(Colors.Green);
}
}
return new SolidColorBrush(Colors.Red);
}
public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
throw new NotImplementedException();
}
<TextBlock FontSize="28" x:Name="solde" TextWrapping="Wrap" >
<Run Text=" Solde : " Foreground="Black"/>
<Run Text="{Binding amount}" Foreground="{Binding amount, Converter= {StaticResource PositionConverter}}" Language="fr-FR"/>
</TextBlock>