We need a context menu button to appear next to nodes in the tree. They will need the following options to be in the context menu:
Each of these three controls should have logic that accomplishes things in the tree control, whether that affects a single node or multiple.
- Select: Should display a check next to the node, denoting that it has been selected. When asking for selected nodes, this node should be included in the list
- Select All: Should display a check with the word "All" next to the node, and also set the state of all of its children to "selected". These nodes should all be included when requesting the selected nodes back from the control.
- Deselect: Should remove the check from the node. The node should no longer be returned when the control returns the selected nodes.
We need a context menu button to appear next to nodes in the tree. They will need the following options to be in the context menu:
Each of these three controls should have logic that accomplishes things in the tree control, whether that affects a single node or multiple.