What are the top 3 main concepts in WPF? - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T00:28:53Zhttp://stackoverflow.com/feeds/question/438285http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/438285/what-are-the-top-3-main-concepts-in-wpf4What are the top 3 main concepts in WPF? gyurisc2009-01-13T08:11:20Z2009-01-13T22:35:26Z
<p>What are the top 3 main concepts in WPF that you need to understand in order to write good WPF code? </p>
http://stackoverflow.com/questions/438285/what-are-the-top-3-main-concepts-in-wpf/438333#4383331Answer by alexmac for What are the top 3 main concepts in WPF? alexmac2009-01-13T08:36:20Z2009-01-13T08:36:20Z<p>I duno about top 3 but Attached/Dependency properties is pretty important. </p>
http://stackoverflow.com/questions/438285/what-are-the-top-3-main-concepts-in-wpf/438369#4383691Answer by Arcturus for What are the top 3 main concepts in WPF? Arcturus2009-01-13T08:53:48Z2009-01-13T08:53:48Z<p>I can only think of two big main concepts in WPF</p>
<p>In no particular order: </p>
<ul>
<li>Bindings </li>
<li>Templating and Styles</li>
</ul>
<p>When you have learned those two concepts, you will be able to write decent WPF code...</p>
<p>Oh, and the third would be XAML.. but that is the language... however, you might want to try to put as little in the code behind and as much in your XAML file... </p>
<p>Its quite easy to choose the code behind approach, but try to do it in XAML in stead...</p>
http://stackoverflow.com/questions/438285/what-are-the-top-3-main-concepts-in-wpf/438410#4384102Answer by rudigrobler for What are the top 3 main concepts in WPF? rudigrobler2009-01-13T09:13:30Z2009-01-13T09:13:30Z<p>The real basics that you have to grok is:</p>
<ul>
<li>XAML</li>
<li>Layout</li>
<li>Content model</li>
<li>Data binding</li>
</ul>
<p>Their are loads more but these are the ones that has changed the most from winforms...</p>
<p>Also check out this thread: <a href="http://stackoverflow.com/questions/58739/interview-questions-wpf-developer">http://stackoverflow.com/questions/58739/interview-questions-wpf-developer</a></p>
http://stackoverflow.com/questions/438285/what-are-the-top-3-main-concepts-in-wpf/438415#4384159Answer by Stefano Driussi for What are the top 3 main concepts in WPF? Stefano Driussi2009-01-13T09:19:04Z2009-01-13T09:19:04Z<p>I think the most important aspects of WPF concepts are:</p>
<ul>
<li>Templates and Styles (the way you define the behaviour and appearence of your application)</li>
<li>Databinding (the way you should glue together your UI with your business objects</li>
<li>Declarative UI definition through XAML</li>
</ul>
<p>Maybe there are other elements but in my opinion those are foundamental for WPF thinking.</p>
http://stackoverflow.com/questions/438285/what-are-the-top-3-main-concepts-in-wpf/441123#4411232Answer by Micah for What are the top 3 main concepts in WPF? Micah2009-01-13T22:35:26Z2009-01-13T22:35:26Z<p>I would say the single most important concept is the UI pattern Model-View-ViewModel, or as I like to call <a href="http://codingcontext.wordpress.com" rel="nofollow">Model-View-ModelController</a>. This is crucial to building apps successfully in WPF. Besides that, the real conerstones are Databinding, Templating, and Styles as others have mentioned. There is a nice post <a href="http://stackoverflow.com/questions/322612/what-are-the-most-common-mistakes-made-in-wpf-development">here</a> on some common pitfalls to avoid when developing in wpf.</p>