WPF DataGrid 在用户键入时获取单元格值

发布于 2024-09-29 08:28:48 字数 98 浏览 1 评论 0原文

我有一个 WPF DataGrid,我想在当前正在编辑的单元格下方显示一个完成列表。我似乎找不到一种方法来获得未承诺的价值。我尝试捕获所有按键事件,但在提交之前找不到该值的存储位置。

I have a WPF DataGrid and i want to show a completion list below the cell currently being edited. I cannot seem to find a way to get the uncommitted value. I tryed catching all key down events but cannot find where the value is stored until it is committed.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

心在旅行 2024-10-06 08:28:48

在 DataGridTemplateColumn 中使用 WPF 工具包 中的 AutoCompleteBox 怎么样? (听起来它解决了你的问题)。

How about using the AutoCompleteBox from the WPF Toolkit in a DataGridTemplateColumn? (Sounds like it addresses your problem).

山川志 2024-10-06 08:28:48

使用 PreviewKeyDown 事件获取按下的键的实际值。然后,您可以从发送对象中提取 DataRowView 和 CurrentCell.Column.DisplayIndex,这将为您提供当前单元格内容,而无需按下新键。

Use the PreviewKeyDown event to get the actual value of the key that was pressed. You can then extract the DataRowView and the CurrentCell.Column.DisplayIndex from the sending object, that will give you the current cell contents without the new key that was pressed.

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