Unplanned
Last Updated: 30 Mar 2016 13:11 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 19 Sep 2013 09:39
Category: SplitContainer
Type: Bug Report
1
FIX. RadSplitContainer - does not perform correctly its layout when some of its split panels are collapsed
To reproduce:
-add RadSplitContainer (horizontal) and add one left and one right split panel
-add two RadButtons to collapse and show one of the panels
private void radButton1_Click(object sender, EventArgs e)
{
    this.splitPanel1.Collapsed = true;
}

private void radButton2_Click(object sender, EventArgs e)
{          
    this.splitPanel1.Visible = true;
}
-click the first button to collapse the left panel; as a result the second panel fills the entire container size
-click the second button to show again the left panel; as a result the panels overlap each other
0 comments