我有一种可怕的感觉,我想做的事情无法完成,但就是这样。也许有更好的方法。
我在一个单独的文件中有一个 ResourceDictionary,被拉入一个 UserControl(视图):
<UserControl.Resources>
<ResourceDictionary Source="..\Resources.xaml"/>
</UserControl.Resources>
在 RD 中,我定义了一些按钮样式,其中一个包括条件,如果“IsCurrentFilter”转换器返回 True,则将前景设置为红色:
<Style x:Key="FilterButton" TargetType="Button" BasedOn="{StaticResource ButtonBase}">
<Style.Triggers>
<MultiDataTrigger>
<MultiDataTrigger.Conditions>
<Condition Binding="{Binding Converter={StaticResource IsCurrentFilter}}" Value="True"/>
</MultiDataTrigger.Conditions>
<Setter Property="Foreground" Value="Red" />
</MultiDataTrigger>
</Style.Triggers>
</Style>
转换器在同一个 RD 中定义,进一步向上:
<util:IsCurrentFilterConverter x:Key="IsCurrentFilter" ViewModel="{Binding}"/>
问题是转换器无法访问视图模型(它需要进行比较),并且该ViewModel
属性只是拒绝绑定到任何东西。错误是...
System.Windows.Data Error: 2 : Cannot find governing FrameworkElement or FrameworkContentElement for target element. BindingExpression:(no path); DataItem=null; target element is 'IsCurrentFilterConverter' (HashCode=50804710); target property is 'ViewModel' (type 'Object')
...这有点道理,因为我知道它不在视觉树中。
那么,我怎样才能绑定到这个 ResourceDictionary 中的视图模型呢?