I've separated my data code from my display code through the use of interfaces so that my gui assembly and my data assembly are not dependent on one another at all. This should also allow me to bind a different object in the future as long as it presents the same interface.
However, I'm trying to setup some design-time binding with the interface as my model. It would seem that generating an xaml source file to describe the required fields form the interface doesn't work. I thought it would create the design-type object on the fly and populate it the same way it would with a class.
Do I have to implement a basic class for each interface just to provide a design time xaml data source?
Thanks,
-Ryan