有没有办法在运行时使用 d:DesignData xaml?
我正在使用 SampleData 文件夹中的 d:DesignData 构建 Windows Phone 7 应用程序的原型。我希望在运行时出现相同的设计数据,因为这只是一个原型。有没有办法在运行时将 DataContext 设置为与 DesignData 相同的数据 xaml?
I am building a prototype of a windows phone 7 app using d:DesignData in the SampleData folder. I would like the same design data to appear at runtime since this is just a prototype. Is there a way to set the DataContext to the same data xaml as the DesignData at runtime?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您在项目中包含示例数据文件,则可以像任何其他 XML 文件一样在运行时加载它。不过,您需要自己反序列化或解析它。
If you included the sample data file in the project you could load it at runtime like any other XML file. You would need to deserialize or parse it yourself though.