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.
|
feedback
|
|
There`s a more easy solution. If Panel1 is set as the fixed panel in SplitContainer.FixedPanel property it all behaves as expected. | |||||
|
feedback
|
|
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. | |||
|
feedback
|
|
For handling all cases of FixedPanel and orientation, something like the following should work:
Then do the same when restoring
| |||
|
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. | |||
|
feedback
|