Silverlight DataGrid 像 Excel 一样工作
在使用 Silverlight DataGrid 时,我希望它像 Excel 一样工作,我假设
如果我不使用 DomainDataSource,最好的方法就是将 itemsource 绑定到 observablecollection,
这将是添加新行的最佳方法。 ..我应该暂时向可观察集合中添加一个项目吗?
有没有办法移动到该行并将其置于编辑模式?
谢谢
In using the Silverlight DataGrid and I wanted it to work like Excel, I assume the best way
if I was not using a DomainDataSource was to and was just binding the itemsource to an observablecollection,
what would be the best way to add a new row...Should I just temporarily add an item to the observablecollection?
Would there be a way to move to that row and place it in edit mode?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Datagrid 不支持可移动行,因此您必须自己实现。
看看下面的项目:
http://www.codeproject.com/KB/silverlight/DataGridWithMovableRow.aspx
您可以按原样使用它,也可以使用它的逻辑来构建最适合您的东西。
Datagrid does not support movable rows, so you'll have to implement it by yourself.
Have a look on the following project:
http://www.codeproject.com/KB/silverlight/DataGridWithMovableRow.aspx
You can either use it as is, or use its logic to build something that best suites you.