当用户“终于”访问时如何调用事件选择列表中的一个项目?
当用户单击 Grid 或 ListBox 中的某个项目时,该项目通常被选中,因此大多数 UI 框架都有一个 onSelected
事件或类似事件。
然而,当用户“最终”通过双击条目“最终”选择一个项目时,我们通常如何调用下一步?您知道某些弹出窗口何时可能出现在所选项目的上下文中,并且用户可以执行进一步的操作。
奇怪的是,我想我从未在任何 UI 框架中看到过这个词。
onPicked
、onAccepted
、onChosen
、onFinallySelected
、onResult
?一切都有点尴尬或太特别。还有其他想法吗?
When a user clicks once on an item in a Grid or a ListBox, that item is usually selected, hence most UI frameworks have a onSelected
event or the like for that.
However, how can we generally call the next step when a user "finally" selects an item by e.g. double clicking an entry? You know when some popup might appear in the context of the selected item and the user can do further stuff.
Strangely enough, I think I have never seen a word for that in any UI framework.
onPicked
, onAccepted
, onChosen
, onFinallySelected
, onResult
? All kinda awkward or too special. Any other ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我没有发现 选择更改已提交
I haven't found anything wrong with SelectionChangeCommitted
wxWidgets
框架使用术语activated
来描述您所讨论的内容。因此,该方法可以被称为onActivated
。The
wxWidgets
framework uses the termactivated
to describe what you're talking about. So, the method could be calledonActivated
.