How do you learn WPF and Silverlight? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-09T03:18:08Z http://stackoverflow.com/feeds/question/401014 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/401014/how-do-you-learn-wpf-and-silverlight 2 How do you learn WPF and Silverlight? Craig Shearer 2008-12-30T18:14:12Z 2009-01-17T00:17:59Z <p>I've been doing some WPF development for the last few months, and I've recently started Silverlight development.</p> <p>Most of the time things go OK, especially for the simple stuff, but frequently I get stumped by seemingly simple things - especially in XAML. As an example, yesterday I was trying to use a Grid to lay out the items in a ListBox. This worked, but I couldn't get the grid to stretch to fill the width of the ListBox. Only after some hours of searching, forum posts, and experimentation was I able to get it working, but I can't say I have it figured out.</p> <p>So, my question is how do you <strong>learn</strong> WPF or Silverlight? - XAML in particular, really. What techniques do you use to understand how controls achieve what they do on the screen, how they are structured, etc. Is there something I'm missing?</p> <p>Really, this is a major sticking point, and something that Microsoft needs to address to get the hordes of developers up and running with WPF/Silverlight efficiently!</p> http://stackoverflow.com/questions/401014/how-do-you-learn-wpf-and-silverlight/401047#401047 3 Answer by perryneal for How do you learn WPF and Silverlight? perryneal 2008-12-30T18:28:12Z 2008-12-30T18:28:12Z <p>Bill Steele, from Microsoft, has a multi-part webcast series that takes you from the absolute beginning of WPF. I think there are something like 15 episodes. You should be able to find it at Microsoft events by searching WPF Soup To Nuts.</p> http://stackoverflow.com/questions/401014/how-do-you-learn-wpf-and-silverlight/401125#401125 3 Answer by foson for How do you learn WPF and Silverlight? foson 2008-12-30T19:06:42Z 2008-12-30T21:56:04Z <p>I bought <a href="http://www.apress.com/book/view/1590599551" rel="nofollow">Pro WPF in C# 2008</a> and found it very useful for WPF, but found it immediately frustrating to deal with differences in binding, VSM, etc. between WPF and Silverlight </p> <p>Have you had any success with the videos on the <a href="http://silverlight.net/Learn/" rel="nofollow">http://silverlight.net/Learn/</a> site? Does anyone have comments on Apress' <a href="http://www.apress.com/book/view/1590599497" rel="nofollow">Pro Silverlight 2 in C# 2008</a></p> http://stackoverflow.com/questions/401014/how-do-you-learn-wpf-and-silverlight/401657#401657 0 Answer by Perpetualcoder for How do you learn WPF and Silverlight? Perpetualcoder 2008-12-30T22:03:03Z 2008-12-30T22:03:03Z <p>Go <a href="http://windowsclient.net/learn/" rel="nofollow">here</a> for WPF stuff. Go <a href="http://silverlight.net/Learn/" rel="nofollow">here</a> for Silverlight. </p> <p>Both are reliable sources.</p> http://stackoverflow.com/questions/401014/how-do-you-learn-wpf-and-silverlight/407617#407617 1 Answer by mindmodel for How do you learn WPF and Silverlight? mindmodel 2009-01-02T18:18:17Z 2009-01-02T18:18:17Z <p>Check the web site for your local library.</p> <p>I live in Boston, MA. Buried deep in their web site is a free subscription to Safari Books Online, which has thousands of tech and business books from top publishers including O'Reilly, etc.</p> <p>Buried on another page is a web form you can fill out to have them send you a library card number via email. The library card number gets you access to the tech books.</p> <p>There are also free audiobooks on another page. Not for tech, but there is life after programming!</p> <p>Adam Leffert</p> http://stackoverflow.com/questions/401014/how-do-you-learn-wpf-and-silverlight/412742#412742 0 Answer by indyfromoz for How do you learn WPF and Silverlight? indyfromoz 2009-01-05T10:23:41Z 2009-01-05T10:23:41Z <p>I have worked my way through "Pro Silverlight 2" and I found every chapter very detailed and thorough. I also referred to SAMS "Silverlight 2 Unleashed", that book is a good complement to "Pro Silverlight 2". Also, have a look at "<a href="http://silverlight.net/blogs/msnow/archive/2009/01/02/silverlight-tips-of-the-day-summary-outline.aspx" rel="nofollow">Silverlight Tip Of The Day</a>" and Jesse Liberty's blog for some handy tips.</p> <p>HTH, Indy</p> http://stackoverflow.com/questions/401014/how-do-you-learn-wpf-and-silverlight/452527#452527 1 Answer by texmex5 for How do you learn WPF and Silverlight? texmex5 2009-01-17T00:17:59Z 2009-01-17T00:17:59Z <p>I think that Expression Blend is an important tool when starting out with Silverlight as the xaml writing doesn't come easy in the beginning and you have to concentrate more on the xaml errors than on the overall system of things and actual visual results.</p> <p>Later on one will definitely end up tweaking (ok cleaning) the massive code that Blend creates and from there to writing XAML by hand as developers like to live in VS and firing Blend is an extra move. </p> <p>This was the beginning and I hope that after a few months you are past that. Although to this day (8 months in) I still have some stuff I feel more comfortable doing in Blend.</p> <p>From there on I moved to msdn documentation - although intellisense gives us all possible properties and their values the documentation can give us answers what it actually is. For me it was kind of a step to come to to first open the e.g DockPanel documentation in msdn not to start guessing what parameter x does. </p> <p>This reminds me of another problem I had with Silverlight - as I was completely new to Microsoft technologies then at first I had real trouble navigating the msdn documentation. Seems silly now, but I couldn't find anything from there. So important part of learning new technologies is to learn the structure of the documentation :).</p>