DevExpress RepositoryItemButton编辑
单击 ButtonEdit 的省略号按钮时,在 ButtonEdit 的 ButtonClick 事件中,我将启动另一个表单,用户可以从中进行选择。
该查找表单告知我所选值的原始形式。
当我的原始表单了解所选值时,它使用 SetCellValue 方法设置与 ButtonEdit 关联的单元格的值。但是,直到单元格失去焦点后才会显示该值。有什么方法可以使值显示,同时将 ButtonEdit 作为其就地 RowEdit 的单元格仍然具有焦点?
When the ellipsis button of the ButtonEdit is clicked, in the ButtonEdit's ButtonClick event I launch another form from which the user makes a choice.
That lookup form informs my original form of the chosen value.
When my original form learns the chosen value, it sets the value of the cell associated with the ButtonEdit, using SetCellValue method. However, the value does not display until the cell loses focus. Is there any way to cause the value to display while the cell with the ButtonEdit as its in-place RowEdit still has focus?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
设置view.ActiveEditor.EditValue。
Set
view.ActiveEditor.EditValue
.处理 ButtonClick 事件时,传递给事件处理程序的 sender 参数表示必须更改其值的编辑器实例。因此,我想发布一个附加解决方案,展示如何设置编辑器的值:
When handling the ButtonClick event, the sender parameter passed to the event handler represents the editor instance whose value must be changed. So, I would like to post an additional solution showing how to set the editor's value: