Δένδρα
A tree control allows the user to inspect, manipulate or select from a hierarchichal list of items. Trees may have one or more columns, and contain text, graphics, simple controls, or a combination of all three.
Because of their complexity compared to other controls, novice and some intermediate users often have problems using and understanding tree controls. If your application is designed for that type of user, you might want to consider alternative ways of presenting the information, such as the Nautilus list or icon view, or the hierarchical browser lists found in GNUstep's File Viewer.

-
Always give tree controls a label, positioned above or to the left of the tree, in sentence capitalization. Provide an access key in the label that allows the user to give focus directly to the tree.
-
Χρήση επικεφαλίδων με στήλες όταν:
- το δένδρο έχει περισσότερες από μία στήλες
- το δένδρο έχει μόνο μία στήλη, αλλά ο χρήστης ενδεχομένως επιθυμεί να αναταξινομήσε το δένδρο. Αν σπάνια θα είναι αληθές σε απλά δένδρα στηλών.
In most other situations, column headers take up unnecessary space, and the extra label adds visual clutter.
-
Always label column headers when used. If the column is too narrow for a sensible label, provide a tooltip for the column instead. Apart from its obvious use, this will help ensure that assistive technologies can describe the use of the column to visually impaired users.
-
Consider using a check box tree for multiple-selection trees, as these make it more obvious that multiple selection is possible:
Φιγούρα 6-22 Ένα απλό δένδρο πεδίου ελέγχουIf you do this, you should normally set the tree control itself to be single-selection, but this depends on the particular task for which it will be used.
-
For multiple selection trees, show the number of items currently selected in a static text label below the tree, for example, Names selected: 3. Such a label also makes it more obvious that multiple selection is possible.
-
Consider providing
and buttons beside multiple selection trees, if appropriate to the task.
- 6.15.1. Δένδρα με δυνατότητα ταξινόμησης
6.15.1. Δένδρα με δυνατότητα ταξινόμησης
As with lists, the user may find it useful to sort long or multi-column trees. See the guidelines in Ενότητα 6.14.1 ― Λίστες με δυνατότητα ταξινόμησης for more information.