What are the top 3 main concepts in WPF? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T00:28:53Z http://stackoverflow.com/feeds/question/438285 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/438285/what-are-the-top-3-main-concepts-in-wpf 4 What are the top 3 main concepts in WPF? gyurisc 2009-01-13T08:11:20Z 2009-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#438333 1 Answer by alexmac for What are the top 3 main concepts in WPF? alexmac 2009-01-13T08:36:20Z 2009-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#438369 1 Answer by Arcturus for What are the top 3 main concepts in WPF? Arcturus 2009-01-13T08:53:48Z 2009-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#438410 2 Answer by rudigrobler for What are the top 3 main concepts in WPF? rudigrobler 2009-01-13T09:13:30Z 2009-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#438415 9 Answer by Stefano Driussi for What are the top 3 main concepts in WPF? Stefano Driussi 2009-01-13T09:19:04Z 2009-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#441123 2 Answer by Micah for What are the top 3 main concepts in WPF? Micah 2009-01-13T22:35:26Z 2009-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>