从转换器返回动态资源

时间:2011-09-30 11:56:26

标签: wpf ivalueconverter dynamicresource

我想根据bool的状态更改WPF控件的颜色,在这种情况下是复选框的状态。 只要我使用StaticResources:

,这样就可以正常工作

我的控制

<TextBox Name="WarnStatusBox" TextWrapping="Wrap" Style="{DynamicResource StatusTextBox}" Width="72" Height="50" Background="{Binding ElementName=WarnStatusSource, Path=IsChecked, Converter={StaticResource BoolToWarningConverter}, ConverterParameter={RelativeSource self}}">Status</TextBox>

我的转换器:

[ValueConversion(typeof(bool), typeof(Brush))]

public class BoolToWarningConverter : IValueConverter
{
    public FrameworkElement FrameElem = new FrameworkElement();

    public object Convert(object value, Type targetType,
        object parameter, CultureInfo culture)
    {                      
        bool state = (bool)value;
        try
        {              
            if (state == true)
                return (FrameElem.TryFindResource("WarningColor") as Brush);
            else
                return (Brushes.Transparent);
        }

        catch (ResourceReferenceKeyNotFoundException)
        {
            return new SolidColorBrush(Colors.LightGray);
        }
    }

    public object ConvertBack(object value, Type targetType,
        object parameter, CultureInfo culture)
    {
        return null;
    }
}

问题是我有几个资源“WarningColor”的定义,取决于设置日模式或夜间模式。这些事件不会触发要更改的WarningColor。 有没有办法让返回值动态,还是需要重新考虑我的设计?

2 个答案:

答案 0 :(得分:2)

您无法从转换器返回动态内容,但如果您的唯一条件是bool,则可以使用Style轻松替换整个转换器Triggers

e.g。

<Style TargetType="TextBox">
    <Setter Property="Background" Value="Transparent" />
    <Style.Triggers>
        <DataTrigger Binding="{Binding IsChecked, ElementName=WarnStatusSource}" Value="True">
            <Setter Property="Background" Value="{DynamicResource WarningColor}" />
        </DataTrigger>
    </Style.Triggers>
</Style>

如果现在具有该键的资源被更改,则后台也应该更改。

答案 1 :(得分:0)

使用DynamicResourceExtension构造函数并为其提供资源键,返回动态资源引用的方法非常简单。

用法:

return new DynamicResourceExtension(Provider.ForegroundBrush);

Provider类的定义应包含密钥:

public static ResourceKey ForegroundBrush 
{ 
    get 
    { 
        return new ComponentResourceKey(typeof(Provider), "ForegroundBrush"); 
    } 
}

密钥的值将在资源字典中声明:

<ResourceDictionary
     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
     xmlns:theme="clr-namespace:Settings.Appearance;assembly=AppearanceSettingsProvider">

<Color x:Key="{ComponentResourceKey TypeInTargetAssembly={x:Type theme:Provider}, ResourceId=ForegroundColor}">#FF0000FF</Color>

<SolidColorBrush x:Key="{ComponentResourceKey {x:Type theme:Provider}, ForegroundBrush}" Color="{DynamicResource {ComponentResourceKey {x:Type theme:Provider}, ForegroundColor}}" />
</ResourceDictionary>

这样,转换器会根据提供的资源键动态地将DynamicResource分配给bound属性。