views:

470

answers:

2

I enjoy working with WPF but I need a little more of "designer's touch" to my applications. I have been unable to find a good resource for WPF layout examples and color schemes along with the corresponding resource files.Are there any good resources out there to help developers make their applications really "pop".

+1  A: 

Windows User Experience Interaction Guidelines is a good place to start. If you're using a set of proprietary controls (like the WPF controls from Telerik), they usually have built in skins/styles that you can change just like flipping a switch. Codeplex always has a lot of useful things, I wouldn't be surprised to see some WPF-related styling resources.

Hope that helps a little!

EDIT

From Codeplex: WPF Themes, WPF Contrib

From Microsoft: Expression Blend

From Adobe: Kuler (for picking colors schemes)

Other: Reuxables (neat-o theme I just stumbled upon)

Pwninstein
Great list but a few of those were broken links. I was particularly disappointed in the WPF themes link. Exactly what I'm looking for but there are no downloads available on that project.
Jim Beam
Hmm, all those links worked fine for me just now. Odd. Also, the WPF Themes Codeplex page doesn't have anything under the "Downloads" tab, but you can download the source from the "Source Code" tab. You can surely get additional information from the "Discussion" tab.
Pwninstein
+2  A: 

The Microsoft Expression Community Gallery provides a community site for sharing WPF and Silverlight resources.

In particular, look under "Themes", "Samples", and "Art / Design" for templates, styles, and other visually appealing things you can use in your applications.

Reed Copsey
Very close to what I'm looking for but most stuff seems to be for Silverlight and not WPF.
Jim Beam
Most themes are easily converted from Silverlight to WPF, since the XAML can be left nearly unchanged. (Going the other way isn't as easy, though, since WPF is mostly a superset of SL...)
Reed Copsey