I am creating a project structure for a new application with new fields. Our initial release will only support the WPF client, but we want to eventually deploy the Metro and Silverlight clients. I decided the following:
The main library is a portable class library focused on .NET for the metro, .NET 4.5, SL4, Windows Phone 7.5
WPF Application - .NET 4.5 Orientation
Our Model / ViewModel level is defined in the base library, the view defined in the WPF application. I chose .NET 4.5 to support the definition of the view model in the main library in a way that can be used by both WPF and Metro.
This works fine in the beta version of Visual Studio 11 running Windows 7 Pro. I have a working view that is bound to the ViewModel defined in the base library. My problem is Blend. When I open View in Blend, I have no designer. I suspect the problem is WPF support on .NET 4.5. I tried Blend 4 and Blend for VS11 Beta.
Does anyone know how to get a designer to work in Blend views for WPF as described above?
* Status on 2012-05-10: No combination of VS11 and Blend supports WPF 4.5.
Patrickv
source share