Pergunta

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?

Foi útil?

Solução

I haven't found anything wrong with SelectionChangeCommitted

Outras dicas

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

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top