what is the most common way for the selection of multiple elements on the GUI by clicking the elements with the mousebutton and holding a key. What is the "right" key shift or ctrl or both?
thx TomK.
|
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
Usually, Shift is for selecting ranges (e.g. all letters, or files, between the first and last click) and Ctrl is for selecting individual items, so it would be best to implement both. |
|||
|
|
|
For Windows control is used for non contiguous selection. Shift is used for a contiguous range. Java I think does the same in its UI elements. Not sure about MAC or Linux but your question is tagged Windows so I presume that is what you are interested in. You can check this in Windows by selecting multiple files in Windows Explorer |
|||
|
|
|
On Windows, Shift is for contiguous ranges and Ctrl is for individual multiple selections (which may or may not be adjacent). On Mac Shift is the same as on Windows for selecting a range, but individual selections use Cmd instead of Ctrl.
|
|||
|
|