Welcome to the Xceed Community | Help
Community Search  
More Search Options

Disable collapsing on ExplorerTaskPane

Sort Posts: Previous Next
  •  09-22-2006, 2:00 PM Post no. 5862

    Disable collapsing on ExplorerTaskPane

    We have a sidebar with several explorertaskpanes. What I'd like to do is disable the ability to have them expand or collapse. is there any way by default to do this?

    Or is there another control I could use that would look and act similar, but not collapse?
  •  10-03-2006, 10:22 AM Post no. 5863 in reply to 5862

    Re: Disable collapsing on ExplorerTaskPane

    private void Form1_Load(object sender, System.EventArgs e)
    {
    group1.Click +=new Xceed.SmartUI.SmartItemClickEventHandler(group1_Click);
    }

    private void group1_Click(object sender, Xceed.SmartUI.SmartItemClickEventArgs e)
    {
    ((Xceed.SmartUI.Controls.ExplorerTaskPane.Group)sender).Expanded = false;

    }

    This will force the Group of the explorer taskpane to stay opened.

    Mathieu Drimonakos
    -Technical Designer-
View as RSS news feed in XML
Contact | Site Map | Reviews | Legal Terms of Use | Trademarks | Privacy Statement Copyright 2011 Xceed Software Inc.