vote up 7 vote down star
9

I'm a long-time C#/.NET programmer but totally new to WPF and the System.Windows.Controls namespace and XAML. The more I learn about it the more I realize that you can do pretty much all of your GUI initialization and event handling glue in either XAML or in code (say C# code or VB.Net code).

My question is to those who have been working on WPF for longer and ideally those who have shipped apps with it -- where did you find was the best place to 'draw the line' between XAML and code? Did you use XAML wherever you could? Only where interfacing with non-coding UI designers?

Any tips in this area would be extremely helpful to myself and other coders who are just getting into WPF programming and are kind of paralyzed by all the choices we can make!

flag

6 Answers

vote up 10 vote down

One thing that I would look at is the model-view-view model pattern. It is a very elegant pattern which naturally separates everything into nice buckets ... including your xaml.

For example, it helps you keep a clear boundary between the developer and the designer and even allows for test driven development.

There is a whole bunch of info out there on it, but I would start with John Gossman's blog posts:

Update: Just want to point people to another StackOverflow post with lots of good info on M-V-VM in it.

link|flag
vote up 8 vote down

One tip is to not declare event handlers in XAML. Instead, name your elements and attach events handlers in the code-behind. That helps keep a clean separation between the designer and developer.

link|flag
vote up 5 vote down

As others have suggested, try following the Model-View-ViewModel pattern. However, it's OK to put stuff in the codebehind! The rule is that if it's "View" related, you put it in the Xaml or the codebehind (whichever is more convenient for you). If it's more business logic related to how the user interacts with the system, then it belongs in the ViewModel. If it's just business logic not concerned with interaction, it belongs in the Model.

Examples of each would be:

  • Model: defines a property called ModifiedDate that stores the last time it was modified.

  • ViewModel: converts the ModifiedDate into an enumeration property called ModifiedAge, based on when it was modified: Yesterday, In the Last Week, In the Last Month, In the Last Year, etc.

  • View: converts the ModifiedAge property to a background color where more recently accessed data is highlighted bright yellow, and less recently accessed data is more of a beige-khaki-gray that your designer insists is called "Meadow Lark Lilly Flowerpot".

link|flag
1  
I would add that I consider ValueConverters to be part of the View as well. – Scott W. Jun 3 at 15:56
1  
Nice example illustrating where things 'fit'. And, I also like the advice to not get too 'rigid' about avoiding code behind ... avoiding code behind isn't the goal ... putting things into the correct buckets is! – cplotts Sep 14 at 15:29
vote up 3 vote down

Another tip is to separate XAML into functional and aesthetic. Developers would typically work in the functional XAML whilst designers care primarily about the aesthetic. This keeps the functional XAML very easy to grok, which is important because developers often need to edit such XAML. Aesthetic XAML is typically edited by designers using tools, so its neatness and verbosity is less of an issue.

I did a bit of a blog post on this a while ago here.

link|flag
Great answer, and in my experience, it kind of happens naturally. Meaning, you end up putting your style, templates, and resources in external resource dictionaries and what is left is the functional xaml ... which is concise and more readable. Nice answer! +1 – cplotts Sep 14 at 15:31
vote up 3 vote down

When you follow a proper pattern like Mode-View-ViewModel you will get opportunity to do more on XAML side and less on code behind. Maximize the usage of RoutedEvents and Commands in WPF code.

link|flag
vote up 1 vote down

When building UserControls I try to Xamlize as much as possible.

One tip I found in the field is that creating ControlTemplate and DataTemplates by hand is really a pain in the ***... I always write those in XAML....

link|flag

Your Answer

Get an OpenID
or

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