Binding to a property of a custom converter
问题 I've written a converter BoolToStringConverter. The converter has two properties TrueString and FalseString. Here's how I've used it in XAML <UserControl.Resources> <local:BooleanToStringConverter x:Key="BooleanToStringConverter" TrueString="{Binding Strings.Open, Source={StaticResource MyStrings}}"></local:BooleanToStringConverter> </UserControl.Resources> This compiles ok, but I get an xml parse exception when running it. If I change the setting of the TrueString property to TrueString =