Blend 不会为 VM 生成样本数据
在 Blend 4 中,我尝试从 VM 类生成示例数据源。该类有一个返回接口的 observablecollection 的属性和另一个带有类的 observablecollection 的属性。生成示例数据源时,Blend 生成类属性的数据,但不生成接口的数据。有办法解决这个问题吗?我的代码绝对需要具有界面,但同时我希望能够看到为设计时生成的示例数据。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这里的问题是 Blend 不知道要创建什么样的对象作为 IDataInterface 的具体实现。我建议创建两个设计时数据源,一个用于 MyVM,另一个用于具体的 IDataInterface 实现:
然后 XAML 将是:
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: