I'm writing a WinForms application and one of the tabs in my TabControl has a SplitContainer. I'm saving the SplitterDistance in the user's application settings, but the restore is inconsistent. If the tab page with the splitter is visible, then the restore works and the splitter distance is as I left it. If some other tab is selected, then the splitter distance is wrong.

link|improve this question

feedback

4 Answers

There`s a more easy solution. If Panel1 is set as the fixed panel in SplitContainer.FixedPanel property it all behaves as expected.

link|improve this answer
Interesting. I'll have to experiment with it. – Don Kirkby Jan 8 '09 at 6:14
+1 Thanks. Setting FixedPanel was the solution. – Chuck Savage Oct 31 '11 at 21:31
feedback
up vote 4 down vote accepted

I found the problem. Each tab page doesn't get resized to match the tab control until it gets selected. For example, if the tab control is 100 pixels wide in the designer, and you've just set it to 500 pixels during load, then setting the splitter distance to 50 on a hidden tab page will get resized to a splitter distance of 250 when you select that tab page.

I worked around it by recording the SplitterDistance and Width properties of the SplitContainer in my application settings. Then on restore I set the SplitterDistance to recordedSplitterDistance * Width / recordedWidth.

link|improve this answer
feedback

For handling all cases of FixedPanel and orientation, something like the following should work:

        var fullDistance = 
           new Func<SplitContainer, int>(
               c => c.Orientation == 
                  Orientation.Horizontal ? c.Size.Height : c.Size.Width);

        // Store as percentage if FixedPanel.None
        int distanceToStore =
           spl.FixedPanel == FixedPanel.Panel1 ? spl.SplitterDistance :
           spl.FixedPanel == FixedPanel.Panel2 ? fullDistance(spl) - spl.SplitterDistance :
           (int)(((double)spl.SplitterDistance) / ((double)fullDistance(spl))) * 100;

Then do the same when restoring

        // calculate splitter distance with regard to current control size
        int distanceToRestore =
           spl.FixedPanel == FixedPanel.Panel1 ? storedDistance:
           spl.FixedPanel == FixedPanel.Panel2 ? fullDistance(spl) - storedDistance :
           storedDistance * fullDistance(spl) / 100;
link|improve this answer
feedback

I tried to swap everything out making my Panel1 the static panel. SplitContainer.FixedPanel did not do the trick for me. Even though the left panel was the Fixed one, Panel2 still had issues on the right side. I ended up trying the following...

Using a PictureBox within Panel2 and making it Dock to parent (meaning I made the PictureBox dock to the parent Panel2), that seemed to be my salvation.

It seems there is a bug in the SplitContainer and in the design view I simply could NOT ever get it to stick on the far right side. Every time I put anything close to the right side of the Panel2 it would get really close to the edge or even worse, go past the shown area of Panel2.

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.