I'm using MarkupExtension inheritance in my WPF app, which I'd like to port under Silverlight.
I've made a "Locale" markup extension which can be used like this in xaml
<TextBlock Text="{ui:Locale aRandomId,'My default translation'}" />
In fact, this MarkupExtension is binding the property its applied on to the string "My default translation", or, if found, to a sentence stored in a database named "aRandomId".
This MarkupExtension allows me to dynamicaly change my UI's locale (the markupextension is registering to a weak event 'LocaleChanged' which triggers update of every property bound with it)
As we cannot inherit from MarkupExtension in Silverlight, I'd like to know if there is some mechanism which could replace it.
Thanks.
PS : I can provide the source of this MarkupExtension if needed.