编辑在 mvvm 中自动滚动数据网格的正确方法是什么?
我看到了一些自动滚动的选项,但它们与 mvvm dp 不匹配,
我知道我可以在添加行时引发的事件后面的代码中编写,然后执行以下操作: myDatagrid.ScrollIntoView(row)
但我搜索更好的方法,
谢谢
编辑: 我在后面的代码中做到了,就像 Tendlon 建议一样 我做了 Joseph Melettukunnel 在这里回答的事情:解决方案
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我个人认为在代码后面完成这种任务是正确的方法。如果您想让它更加可重用,请创建一个包含该功能的附加属性。
附加财产是我之前所做的。我现在无法访问该代码,但如果您需要的话可以稍后编辑。
恕我直言,在数据网格中滚动是 GUI 特定的事情,因此很适合放在代码后面。
I personally think that doing this kind of task in code behind IS the right way. If you want to do it more reusable, create an attached property which contains the functionality.
Attached property is what I have done previously. I dont have access to the code right now, but can edit in later, if you should need it.
Scrolling in a datagrid is something that IMHO is a GUI-specific thing, and therefore belongs well in code behind.