In my current app I have a Tree control on a page of a TabControl which is inside a panel of a SplitContainer control. The tree control can thus be hidden by either hiding the SplitContainer panel, or switching to another TabPage in the TabControl.

In the Form's menus there are commands which act on the currently selected Node in the tree. I do not want these options to be enabled when the user can not see what is selected.

Is there a simple way of determining when the TreeView goes out of view with out subscribing to the events of both the TabControl and the SplitContainer separately?

link|improve this question

78% accept rate
feedback

3 Answers

up vote 1 down vote accepted

You can create a boolean member variable. In the tabchanged event, test to see if the treeview tab is selected and set the variable appropriately. Also, subscribe to the event that is fired when the splitter view size is changed. Test the width or height of the splitter to see if your treeview is hidden. If it is, set the variable here to. Then all you need to do is test your new member variable.

link|improve this answer
feedback

Test the TreeView's Visible property. There is also a VisibleChanged event.

link|improve this answer
feedback
if(!myControl.Visible)
{
   // Control is not visible.
}

or

if(myControl.Visible == false)
{
   // Control is not visible.
}

Or, probably the better option would be to add a handler to the VisibleChanged event, in the code (or using the Events tab in Designer view):

void myControl_VisibleChanged(object sender, EventArgs e)
{
            TreeView tView = sender as TreeView ;
            if (tView.Visible)
            {
                  // Do something.
            }
            else
            {
                 // Do something.
            }
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.