In Blend 4, i am trying to generate sample data source from my VM class. The class has a property that returns observablecollection of an interface and another property with observablecollection of a class. When generating sample data source, Blend generates data for the class property but not the interface. Is there a way around this? My code absolutely requires to have the interface, but at the same i want to able to see the sample data generated for design time.
|
feedback
|
|
The problem here is that Blend doesn't know what kind of object to create as the concrete implementation of IDataInterface. I would suggest creating two design-time data sources, one for the MyVM and one for the concrete IDataInterface implementation:
and then the XAML would be:
| |||||||
feedback
|
public class PartialViewModel<M> { public M Model {get; private set;} }and then my DataContext ispublic class MyVM { public PartialViewModel<IDataInterface> Partial {get; private set;} }and of coursepublic interface IDataInterface { string Stuff {get;set;}}And my goal is to see the Partial.Model.Stuff property in blend. But Stuff doesn't show up, and as the original question mentioned doesn't get sample data either! – TDaver Apr 5 '11 at 6:09