Has anyone ever created a custom markup extension in WPF or Silverlight? When would you ever want or need to do this? Any tips or sources on how to do it?
|
|
Another example would be for Localization Note: You can not write custom markup extensions in silverlight. |
|||||
|
|
Yes it is handy and I have created one myself. I created a markup extension called EvalBinding that takes a set of bindings as children and a C# evaluation string. It evaluates the C# to process the values from the child bindings so that I do not need to create many simple TypeConverter classes. For example I can do this...
Where this is a reference to the array of child binding results. For resources on implementing a MarkupExtension... |
||||
|
|
|
Hooray!! This is implemented in Silverlight 5!! And furthermore, now it's a generic interface instead of a class!! Read this for an example. |
|||
|
|
|
I know this is al oldish post, but I use a markup extension to standardise my validation bindings. So the benefit here is small, 4 of the defaults I don't have to set anymore, and if I wish to change them in the future, I do it here only.
|
|||
|
|