Custom MarkupExtension && Nested Extensions == Bug
Posted in WPF on Apr 16th, 2008
I’m currently working on a custom markup extension and came over a pretty nasty issue. Here’s the working XAML of a dummy extension:
<TextBox Name=”txtCity”
Foreground=”{local:ColorExtension Color=Red}”
/>
This works like a charm - the fore color is set to red as expected. However - as soon as I try to set the Color property through [...]