原则上,我开发了一种将RadioButtons绑定到几乎任何东西的简洁方法:
/// <summary>Converts an value to 'true' if it matches the 'To' property.</summary>
/// <example>
/// <RadioButton IsChecked="{Binding VersionString, Converter={local:TrueWhenEqual To='1.0'}}"/>
/// </example>
public class TrueWhenEqual : MarkupExtension, IValueConverter
{
public override object ProvideValue(IServiceProvider serviceProvider)
{
return this;
}
public object To { get; set; }
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
return object.Equals(value, To);
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
if ((bool)value) return To;
throw new NotSupportedException();
}
}
例如,您可以使用它将RadioButtons绑定到字符串属性,如下所示(这是一个众所周知的错误,您必须为每个RadioButton使用唯一的GroupName):
<RadioButton GroupName="G1" Content="Cat"
IsChecked="{Binding Animal, Converter={local:TrueWhenEqual To='CAT'}}"/>
<RadioButton GroupName="G2" Content="Dog"
IsChecked="{Binding Animal, Converter={local:TrueWhenEqual To='DOG'}}"/>
<RadioButton GroupName="G3" Content="Horse"
IsChecked="{Binding Animal, Converter={local:TrueWhenEqual To='HORSE'}}"/>
现在,我想使用名为public static readonly
和Filter1
的{{1}}个对象作为我的RadioButtons的值。所以我试过了:
Filter2
但这给了我一个错误:
未知属性'To'表示类型 'MS.Internal.Markup.MarkupExtensionParser + UnknownMarkupExtension' 在解析标记扩展时遇到。
如果删除引号,则仍会出现错误。我做错了什么?
答案 0 :(得分:9)
这是嵌套MarkupExtensions可能出现的错误。尝试将自定义标记放入单独的DLL / Project或使用属性元素语法。
答案 1 :(得分:6)
WPF不能很好地处理嵌套标记扩展。要解决此问题,您可以使用标记扩展作为元素。它有点笨拙,难以阅读,但它有效:
<RadioButton GroupName="F1" Content="Filter Number One">
<RadioButton.IsChecked>
<Binding Path="Filter">
<Binding.Converter>
<local:TrueWhenEqual To={x:Static local:ViewModelClass.Filter1} />
</Binding.Converter>
</Binding>
</RadioButton.IsChecked>
</RadioButton>
另一种方法是声明转换器并将其用作静态资源:
<Window.Resources>
<local:TrueWhenEqual To={x:Static local:ViewModelClass.Filter1} x:Key="myConverter" />
</Window.Resources>
<RadioButton GroupName="F1" Content="Filter Number One"
IsChecked="{Binding Filter, Converter={StaticResource myConverter}}" />
答案 2 :(得分:0)
我在安装.NET 4.6的计算机上遇到了相同的错误。一旦我更新到.NET 4.7(开发人员包),此错误就消失了,而没有任何代码更改。