WPF XamDataGrid:当用户移动列或调整列大小时会触发哪些事件
WPF XamDataGrid:当用户移动或调整列大小时会触发什么事件?
我想知道用户是否已完成其中任何一项操作,以便我可以保存列位置和宽度的详细信息。然后,当用户稍后打开网格时,我可以恢复他选择的列宽和相对位置。
WPF XamDataGrid: What events fire when a user has moved or resized a column?
I would like to know if the user has done either of these things so that I can save details of the column positions and widths. Then, when the user opens the grid at a later point, I can restore his chosen column widths and relative positions.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
XamDataGrid.FieldPositionChanged/Changing 会告诉您字段何时移动。然后,您使用事件参数中 Field 的 ActualPosition 属性来获取其新位置。
我还没有找到宽度更改的公共事件,但 Field.OnPropertyChanged("Width") 被触发。
XamDataGrid.FieldPositionChanged/Changing will tell you when a field moves. Then you use ActualPosition property of the Field from the event args to get its new position.
I haven't found a public event for the Width changing yet, but Field.OnPropertyChanged("Width") is fired.