DataGrid SelectionChanged 发生得太频繁
由于我有一个 DataGrid 作为另一个 DataGrid 的 RowDetailsTemplate,所以我得到了一个 stage effekt。如果我更改内部 DataGrid 中的选择,则外部 Grid 中的 SelectionChanged-Method 也会自动调用。我不知道为什么,但我想知道我能做些什么来应对这种情况。
谢谢
As I have a DataGrid as another DataGrid's RowDetailsTemplate, I've got a strage effekt. If I Change selection in my inner DataGrid, the SelectionChanged-Method in the outer Grid is automatically caled, too. I don't know why, but I would like to know, what I can do against this.
Thx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只是猜测,但这是因为 SelectionChanged 是一个路由事件并且只是通过外部 DataGrid 冒泡吗?如果是这样,请务必在处理之前检查
sender
参数以了解该事件实际属于哪个 DataGrid。Just a guess, but is it because SelectionChanged is a routed event and is just bubbling up through the outer DataGrid? If so, just be sure to check the
sender
parameter to see which DataGrid the event actually belongs to, before handling it.