InterviewSolution
Saved Bookmarks
| 1. |
What is the difference between clicking and double clicking a mouse? |
|
Answer» Explanation: Typically, a single CLICK initiates a user interface (UI) action and a double-click extends the action. For example, ONE click usually SELECTS an ITEM, and a double-click edits the SELECTED item. ... One solution is to handle the double-click event and roll back the actions in the handling of the click event. |
|