I am unclear on when you would use a UIElement as opposed to a FrameworkElement, and whey is there a FrameworkElement class at at all. Essentially, what is the extra functionality that a FrameworkElement provides as opposed to UIElement?

link|improve this question

70% accept rate
possible duplicate of UIELement vs Frameworkelement in WPF/Silverlight – BoltClock Sep 5 '11 at 19:26
@mihajlv: The fact that the answer on that question may be wrong has nothing to do with whether it is a duplicate or not. – H.B. Sep 5 '11 at 19:35
@mihajlv: Also binding has nothing to do with the dispatcher... – H.B. Sep 5 '11 at 19:36
feedback

1 Answer

up vote 0 down vote accepted

You should never inherit from UIElement (no class besides FrameworkElement does), among other properties it has no DataContext, whose lack can land you in some troubles.

link|improve this answer
so just to be clear UIElement provides none of the layout, data binding, styling, templates, and resources. – mihajlv Sep 5 '11 at 19:36
@mihajlv: FrameworkElements do, UIElements don't. – H.B. Sep 5 '11 at 19:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.