When do I derive from UIElement and FrameworkElement considering FrameworkElement inherits UIElement. Can anyone give real life examples?.
feedback
|
|
This is a good page for learning about WPF Architecture, and this answer only applies to WPF. Check out the UIElement and FrameworkElement sections, as well as the rest if you have time. Here's a quote from the linked page explaining why the 2 levels exist:
In short, UIElements know how to draw themselves (because they are derived from Visual). They can also use the routed events system by providing virtual methods like FrameworkElements extend the layout system by implementing some of the virtual methods defined in In answer to your question, if you need any of the extra abilities that Also, you should have a look at the Familiarising yourself with the inheritance hierarchy is also a good idea, you might want to derive from other classes in it (though probably no higher up the chain than | |||
|
feedback
|
|
I don't have any examples right now, but I can refer you to links that might help. UIElement is a base class for most of the objects that have visual appearance and can process basic input in Silverlight. FrameworkElement provides a framework of common APIs for objects that participate in Silverlight layout. FrameworkElement also defines APIs related to data binding, object tree, and object lifetime feature areas in Silverlight. So what additional capabilities do you get? See http://forums.silverlight.net/p/205863/482651.aspx | |||
|
feedback
|