在 WPF 中将示例数据获取到 ListView/GridView 的最快/最简单的方法是什么?
我正在使用 WPF 进行一些快速设计工作/快速原型制作。我很好奇是否有人有一个好的策略将示例数据放入 ListView
/GridView
(或者实际上任何 ItemsControl
)。示例数据要么是即时创建的,要么是从某处(例如 Excel 文件)粘贴的。
I'm doing some quick design work/rapid prototyping with WPF. I'm curious if anyone has a good strategy for getting example data into a ListView
/GridView
(or really any ItemsControl
for that matter). The example data would either be made up on the fly, or pasted in from somewhere (e.g., an Excel file).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一种选择是 XMLDataProvider。
这样您就可以将数据直接键入到 XAML 中。
有关示例,请参阅此问题。
One option is the XMLDataProvider..
This way you can type the data directly into the XAML.
See this question for an example.