views:

34

answers:

2

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?

+1  A: 

I haven't found anything wrong with SelectionChangeCommitted

Task
In this case it seems it means that the selection was not done programmatically, but by user interaction instead. However, something with `Committed` might be a solution indeed.
herzmeister der welten
Yeah, I like "Committed" too. Definitely gives the impression of "this is my final answer!" 8 D
Task
+1  A: 

The wxWidgets framework uses the term activated to describe what you're talking about. So, the method could be called onActivated.

gooli