WPF XamDataGrid:当用户移动列或调整列大小时会触发哪些事件

发布于 2024-10-11 18:42:34 字数 122 浏览 3 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

漆黑的白昼 2024-10-18 18:42:34

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文