views:

37

answers:

1

I have tried adding an about box in blend using the method described here:

http://stackoverflow.com/questions/3411952/about-window-or-about-box-in-wpf-3-5-vs2008

However, I end up getting an error saying that the namespace System.Windows.Forms doesn't exist.

Does blend not support this namespace? if so, is there another method for adding an about box?

+1  A: 

Just create a normal WPF Window and make it look like an about box (add text blocks for product name, version, copyright ...)

There is nothing special about the WinForms about box, it's just a normal form preloaded with common about box controls, there is no reason to use it from WPF.

Nir
This makes sense. I'm not really sure why I didn't do this in the first place. Thank you for the help.
BigPete