vote up 11 vote down star
7

I've been using Winforms since .NET 1.1 and I want to start learning WPF.

I'm looking for good resources for a beginner in WPF. What should I read, what Tools I need and what are the best practices I need to follow.

flag

10 Answers

vote up 7 vote down check

Please have a look at this StackOverflow post, which has a list of book recommendations.

In terms of best practices, get familiar with the M-V-VM pattern. It seems to have gained the most traction in WPF-land.

Check out this post for what tools you can use for WPF development.

The MSDN Forum is a great place for resources, as is the MSDN help files on WPF.

My personal recommendation is for you to forget everything you have learnt about WinForms. WPF is a totally different model, and once I finally dropped my "I did it this way in WinForms, but that way doesn't work in WPF" I had one of those "lightbulb" moments.

Hope this helps!

link|flag
vote up 1 vote down

Teach Yourself WPF in 24 Hours

http://Teach Yourself WPF in 24 Hours

link|flag
vote up 1 vote down

Although already listed above, I wanted to reiterate one point.

Kaxaml is bar none, the best loose xaml editor out there. It has a snippet library, IntelliSense, split view, a xaml scrubber (pretty print), and more.

I only wish we could hook up some assemblies (that you could reference from the xaml) ...

Robby Ingebretsen, you rock.

link|flag
vote up 3 vote down

The learning curve is high, but there are a lot of really good resources out there. And, the MSDN documentation and SDK samples (as some have already mentioned) are really good.

One thing that will help you though, is just to acknowledge the learning curve up front, and to not get discouraged when it doesn't make sense. There really are a lot of concepts to 'grok' before you can do some even basic things.

The WPF books already mentioned are all valuable in their own way. My personal experience was that I got a copy of WPF Unleashed first and tried reading it to no avail. It wasn't until I picked up Charles Petzold's Application = Code + Markup and read through some of that ... before I could even begin to understand WPF Unleashed. However, my brain needs detail before concepts actually sink in ...

Tim Sneath has an excellent list of WPF bloggers that I have found valuable to get hooked into the WPF community: WPF Bloggers

A few blogs on my must read list:

Another thing I would do is get Dr. WPF's snippet library (located here). This is an extremely good way to learn some of the basic plumbing type concepts like Dependency Properties, Routed Events, and Routed Commands.

Finally, I would get a copy of Blend (v2.5 is still in beta and free) and use that to generate xaml and then dive into that generated xaml to understand what you did in Blend, maps to the WPF API.

Hope this helps. Good luck.

link|flag
Thanks for the answer I'll look into it – Dror Helper Sep 28 '08 at 6:34
vote up 4 vote down

I would also highly recommend using Blend together with VS 2008. Blend is great for creating animations.

The Blend 2.5 Preview can be freely downloaded.

I like the Designer WPF Blog, which has some good tutorials on how to do WPF stuff in Blend.

link|flag
vote up 4 vote down

1 Start understanding the XAML - UI markup and the new terms and features around it. KaXaml is a great tool to learn XAML, It is free to download http://www.kaxaml.com/

2 Since you have already got a long .NET experience, go directly to the SDK Samples and start running in it and see what is happeing, play with it. http://msdn.microsoft.com/en-us/library/ms771449.aspx

3 If you are looking for Blog resources here is my best suggestion

But selecting a simple UI scenario which you already implemented or saw somewhere and try implementing it in WPF - That is probably the best approach to learn a new technology.

link|flag
vote up 2 vote down

Microsoft actually has a decent introduction on MSDN: http://msdn.microsoft.com/en-us/library/aa970268.aspx

link|flag
vote up 2 vote down

Adam Nathan's - WPF Unleashed, book is very good.

link|flag
vote up 2 vote down

Visual Studio 2008 (there's a free Express version). That's all the tools you need.

Then try some How-to videos. Here's a good start: http://windowsclient.net/learn/videos_wpf.aspx

link|flag
vote up 5 vote down

I'd recommend the book Windows Presentation Foundation Unleashed by Adam Nathan

Then I'd recommend you write an application. Like every other dev environment, there are no perfect guidelines. You have to find the ones that make the most sense for your circumstance. The only way to do that is to just start coding.

As for tools, Visual Studio 2008 [Express] is your best bet. Or you might be able to limp along with XamlPad.

link|flag
I've read both WPF Unleashed, as well as Teach Yourself in 24 Hours. I prefer Teach Yourself. – GordonG Aug 24 at 7:21

Your Answer

Get an OpenID
or

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