I have an "afterSelect" event as so:
private
void activeMalfunctions_treeView_AfterSelect(object sender, System.Windows.Forms.TreeViewEventArgs e)
Within this event I have:
if
(activeMalfunctions_treeView.SelectedNode.IsSelected == true)
Essentially what I need is this; I need a set of buttons to become Enabled ONLY when the user selects on a node within the treeview. The method I have used doesn't seem to care if there is a node selected or not. Any help would be much appreciated. Thanks in advance.