0

内で Converter を使用しようとしていますResourceDictionary。それは私が持っているコードです:

<Window x:Class="Metro.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:cnv="clr-namespace:Metro.converters">
    <Window.Resources>
        <cnv:DarkenColorConverter x:Key="Darken" />
        <Color x:Key="Red">#FF0000</Color>
        <SolidColorBrush Color="{StaticResource Red}"
                         x:Key="Accent" />
        <SolidColorBrush Color="{Binding Source={StaticResource Red}, Converter={StaticResource ResourceKey=Darken}}"
                         x:Key="DarkAccent" />
    </Window.Resources>
    <StackPanel>
        <Grid Background="{StaticResource Accent}">
            <TextBlock>grid 1</TextBlock>
        </Grid>
        <Grid Background="{StaticResource DarkAccent}">
            <TextBlock>grid 2</TextBlock>
        </Grid>
    </StackPanel>
</Window>

コンバーターは次のとおりです。

public class DarkenColorConverter : IValueConverter
{
    public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
    {
        return Brushes.Blue;
    }

    public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
    {
        return Brushes.Gray;
    }
}

しかし、どういうわけかそれは機能していません。内部でコンバーターをGrid直接使用するとすぐに、すべてが正常に機能します。

    <Grid Background="{Binding Source={StaticResource Red}, Converter={StaticResource ResourceKey=Darken}}">
        <TextBlock>grid 2</TextBlock>
    </Grid>

最初の xaml サンプルの何が問題になっていますか?

4

2 に答える 2

1

最初の変換では を変換していますが、Colorの変換でGridは を変換していSolidColorBrushます。

Color も受け入れるようにコンバーターを変更する必要があります。

public class DarkenColorConverter : IValueConverter
{
    public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
    {
        double percentage = 0.8;
        if (parameter != null)
        {
            double.TryParse(parameter.ToString(), out percentage);
        }

        if (value is SolidColorBrush)
        {
            Color color = (value as SolidColorBrush).Color;
            return new SolidColorBrush(Color.FromRgb((byte)(color.R * percentage), (byte)(color.G * percentage), (byte)(color.B * percentage)));
        }
        else if (value is Color)
        {
            Color color = (Color)value;
            return Color.FromRgb((byte)(color.R * percentage), (byte)(color.G * percentage), (byte)(color.B * percentage));
        }
        return value;
    }

    public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
    {
        throw new NotSupportedException();
    }
}
于 2013-03-02T21:56:44.547 に答える
0

問題は、コンバーターの戻りタイプが間違っていたことです。

動作中のコンバーター:

public class DarkenColorConverter : IValueConverter
{
    public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
    {
        return Colors.Blue;
    }

    public object ConvertBack(object value, Type targetType, object parameter,     System.Globalization.CultureInfo culture)
    {
        return Colors.Gray;
    }
}
于 2013-03-02T21:36:51.053 に答える