I use Microsoft splitcontainer control in my WinForms desktop application (.net 4/c#/vs 2010).

I'd like to have a small button (or any nice UI element) between the panels of the spliiter control to collapse one of the panels. E.g. a 'button' with two parts, if I click one part, the right side panel collapses, if I click on the other part, the left side panel collapses.

How can I solva that?

Thx in advance!

link|improve this question

And UI framework is ... – Snowbear Jun 16 '11 at 23:40
I'll give you a clue, splitcontainer doesn't exist in the WPF framework... Its under forms: msdn.microsoft.com/en-us/library/… ;-) – Smudge202 Jun 16 '11 at 23:43
Just use two buttons, one in the left panel anchored to the right, the other in the right panel. – Hans Passant Jun 17 '11 at 1:20
feedback

2 Answers

up vote 2 down vote accepted

You will have to write your own event for that. You have to decide the design. Hope you need something like below.

private void radButton1_Click(object sender, EventArgs e) 
{ 
    splitPanel1.Collapsed = !splitPanel1.Collapsed; 
}

EDIT 1

There is no easy way as you think. Have a look here and here to get an idea.

EDIT 2

You can add two toolStrips to both panels which are Dock:Top and add two buttons as in the below image which looks quite good. Just a thought...

enter image description here

Edit3

Splitter is another option for you. Have a look here.

link|improve this answer
1  
Thx, my main question is about UI design. I hope there is a simple solution to show this kind of button. I have seen it on several UI, but as I see MS splitcontainer does not have it as a built-in feature. – Tom Jun 17 '11 at 0:21
1  
@Keller Zoltam: Unfortunately there is no such an easy way. Please see my edit for more details. – CharithJ Jun 17 '11 at 0:36
Sad news for me :( Thx, anyway! – Tom Jun 17 '11 at 0:40
@Keller Zoltam : Yes, quite dissapointed. You must have seen such controls from some third party control libraries but the VS standard SplitContainer doesn't have it. – CharithJ Jun 17 '11 at 0:47
@Keller Zoltam : Splitter is another option for you. But still no easy way... – CharithJ Jun 17 '11 at 0:54
feedback

I have used this solution in my implementation, it's probably too late for you but might help other people.

In my implementation I also moved controls from one panel to another, that's why I'm only changing the panel collapsed state as the last action.

Since I can't post any images, just try to figure it out according to the following diagram ( the [<] and [>] are the buttons):

 ╔════════════╤═════════════╗
 ║         [<]│[>]          ║ 
 ║            │             ║ 
 ║            │             ║ 
 ║            │             ║ 
 ║            │             ║ 
 ║            │             ║ 
 ╚════════════╧═════════════╝

Following is the implementation for the left panel (panel1), a similar function is also used for the right panel.

    private void setSplitterLeftPanelCollapsedState(bool collapse)
    {
        splitContainer1.SuspendLayout();

        // Collapse the left panel
        if (collapse)
        {
            if (!splitContainer1.Panel1Collapsed)
            {
                // restoring the panel in the end to apply layout changes
                buttonOpenPanel1.Text = ">";
                splitContainer1.Panel1Collapsed = true;
            }
        }
        // Open the left panel
        else
        {
            if (splitContainer1.Panel1Collapsed)
            {
                // collapsing the panel in the end to apply layout changes
                buttonOpenPanel1.Text = "<";
                splitContainer1.Panel1Collapsed = false;
            }
        }

        splitContainer1.ResumeLayout();

        comboBoxSearchText.Focus();
    }
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.