vote up 35 vote down star
49

What should every WPF developer know?

Entry Level

  • Strong .NET 2.0 Background & willing to learn!
  • Explain dependency properties?
  • What's a style?
  • What's a template?
  • Binding
  • Differences between base classes: Visual, UIElement, FrameworkElement, Control
  • Visual vs Logical tree?
  • Property Change Notification (INotifyPropertyChange and ObservableCollection)
  • ResourceDictionary - Added by a7an
  • UserControls - Added by a7an
  • difference between bubble and tunnel routing strategies - added by Carlo

Mid-level

  • Routed Events & Commands
  • Converters - Added by Artur Carvalho
  • Explain WPF's 2-pass layout engine?
  • How to implement a panel?
  • Interoperability (WPF/WinForms)
  • Blend/Cider - Added by a7an
  • animations and storyboarding
  • ClickOnce Deployment
  • Skinning/Themeing
  • Custom Controls
  • How can worker threads update the UI?

Senior

  • Example of attached behavior?
  • What is PRISM,CAL & CAG?
  • How can worker threads update the UI?
  • WPF 3D - Added by a7an
  • Differences between Silverlight 2 and WPF
  • MVVM/MVP - Added by a7an
  • WPF Performance tuning
  • Pixel Shaders
  • Purpose of Freezables

Any other "trick" questions to ask?

Do you expect your WPF developer to know blend?

flag
2  
I disagree on the "Strong .NET 2.0 Background".. Actually WPF does a lot of things different than .NET 2.0, and knowing less actually lets you master WPF faster... – Arcturus Oct 7 '08 at 14:31
2  
How about some links pointing to each of these topics as well! – Binoj Antony Mar 16 at 15:39
I think this is a pretty high bar for "entry level". I would bet that if the job position is described as "entry level", you will not get many (any) people that can meet your standard. Good things to know, certainly, but not what most people would call "entry level." – Beska Mar 16 at 15:43

16 Answers

vote up 13 vote down

I'm surprised no one has mentioned basic knowledge of XAML yet. Knowing what XAML is, and the ability to do some basic editing using XAML rather than a graphical design tool. Mid-level developers should be able to knock up form / graphic prototypes using a tool like XAMLPad.

link|flag
vote up 9 vote down

I'd put binding and converters at entry level, since that is how you spend a lot of time in WPF.

link|flag
vote up 4 vote down

Entry Level

  • Property Change NOtification (INotifyPropertyChange and ObservableCollection)
  • ResourceDictionary
  • UserControls

Mid Level

  • Blend/Cider
  • animations and storyboarding
  • ClickOnce Deployment

Senior

  • WPF 3D
  • Differences between Silverlight 2 and WPF
  • MVVM/MVP
  • WPF Performance tuning
  • Pixel Shaders
link|flag
vote up 4 vote down

What about GUI programming/graphics experience in general and cs knowledge? If it's for a full time jobs, it does not matter IMHO if the guy has to spend the first few months some time with learning WPF, if he (or she) has a strong background.

link|flag
vote up 3 vote down
  • Converters(simple and multi).
  • Interoperability.

I think I would prefer a dev that would know Blend. He/She could communicate easily with the designer and also do some basic designer stuff faster than just writing in xaml.

The list is interesting, maybe links to the topics would help.

Cheers

link|flag
vote up 3 vote down

Personally, I'd put 'How can worker threads update the UI' right under entry-level. Mid-level, if you really need to. If an entry-level programmer can understand the difference between the logical tree and the visual tree, they should understand how to update the UI from a background thread.

At my organization, we do a lot of WPF development without Blend. I don't particularly like Blend, so I'm a bit biased, but Blend skills should be a nice-to-have, I think.

link|flag
vote up 3 vote down

Personally I would sit them down in front of a standard developer build machine and ask them to complete some task. No questions, just see what their code is like after a couple of hours (or more if the task is longer).

I have had a zero failure rate on making a hiring descision based on the results of an actual real life programming test.

The task doesn't have to be too difficult. I've used a simple message of the day application in the past with the messages being held in a database or XML file and a simple user interface. Ensure you ask them to structure it well (as the task is sufficiently small that it could all be done in one class if they felt inclinded).

Of the questions above I'd say you cannot get a good idea of whether they are really any good or not. A potential candicate could actually just read these and create canned answers that sound great. All this shows is that the candidate can talk-the-talk, but what matters in the job itself is if they can walk-the-walk.

link|flag
I totally agree, make people do stuff, not just talking about it. @Colin, after your help on spelling (the self diagnostic app questions) I just had to upvote you to the 4 digits realm.... By the way, there is a type there: doen instead of done. :) – raoulsson Jul 20 at 1:52
argh, typo, i meant, funny :) – raoulsson Jul 20 at 1:53
Typo fixed, thanks! :) – Colin Mackay Jul 20 at 2:13
vote up 2 vote down

Pretty good list in my opinion.
However I wouldn't ask tricky questions on interview. Interview gives enough stress itself, trick question can confuse even highly skilled person.

link|flag
I agree ... the point of an interview is to assess ... not to trip the fellow up. – cplotts Oct 4 '08 at 16:17
I disagree with this one, IMO a programmer must handle tough stuff, much worser than interviews. So a tricky question is good to see how the programmer solves a problem under stress. A simple "I don't know" goes a long way. – Artur Carvalho Oct 5 '08 at 10:51
vote up 2 vote down

Mid or maybe Senior: WinForms and WPF InterOp.

link|flag
This one is already their... – rudigrobler Sep 16 '08 at 7:35
Opps, missed that one – Nidonocu Sep 16 '08 at 12:16
vote up 2 vote down

Mid or maybe Senior

  • Skinning/Themeing
  • Custom Controls
link|flag
vote up 2 vote down

A WPF developer should have a firm grasp of separating the XAML from the code-behind, and be able to discuss at length where that line is to be drawn.

Being able to set up a model in the language of her choice, and then using XAML to display views on that model through data binding, data templates, control templates, styles, triggers, value converters and UserControls is a fairly basic task for the mid-level programmer. (Though a small amount of leeway should be granted if asking someone to create something like a control template "from heart.")

Really, there is a lot in WPF, and if it weren't for the MSDN forums and in-depth books on the subject, it'd be quite the task to "just pick it up." For that reason, I would rate perseverance and the ability to learn from others as a top requirement for any level.

For an entry-level WPF programmer, I wouldn't expect any knowledge of WPF per se, but I would demand knowledge of object-oriented principles, separation of UI from business logic, and comfort with a similar event model. Experience laying out UI elements in a style similar to WPF (with DockPanel containers, etc.) is a plus.

Edit: Also, what Colin Mackay said.

link|flag
vote up 1 vote down

I think lifecycle of WPF application - from creation to runtime should be included in the Beginner level of questions. Without knowing it, its hard to believe one is a real WPF dev.

link|flag
I have no idea what you mean here. – cplotts Oct 4 '08 at 16:30
I think he means this: msdn.microsoft.com/en-us/library/… – HappyNomad Sep 28 at 17:29
vote up 1 vote down

I'd extend the ClickOnce deployment with WPF Deployment in general, since it's good to know the limitations and peculiarities of each model (ClickOnce, XBAP, browser only). Placing it at mid-level seems fair though.

link|flag
vote up 1 vote down

-Relationship between threads and Dispatchers

-Purpose of Freezables

link|flag
vote up 1 vote down
  • DataTemplate vs HierarchicalDataTemplate
  • ItemsControl vs ItemsPresenter vs ContentControl vs ContentPresenter
  • Different types of Triggers
  • How to do Animations through StoryBoards
link|flag
vote up 1 vote down

Another really basic thing would be the difference between bubble and tunnel routing strategies.

link|flag

Your Answer

Get an OpenID
or

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