Completed
Last Updated: 07 Nov 2014 09:25 by ADMIN
ADMIN
George
Created on: 03 Sep 2014 08:11
Category: GroupBox
Type: Bug Report
0
FIX. RadGroupBox - Showing and hiding a panel inside the groupbox when its AutoSize property is set to true causes it to change its size
To reproduce:

 1. drag a radgroupbox into form
 2. drag 3 radpanels into radgroupbox
 3. set the 3 radpanels' dock = dockstyle.top
 4. set radgroupbox. autosize = true
 5. drag a radbutton into form and out of radgroupbox
 6. add click eventhandler to radbotton with below code

private void Button1_Click(object sender, EventArgs e)
{
       RadPanel2.Visible = !RadPanel2.Visible;
}

7. run app,  click the button continuously,  you will see that the width of the RadGroupBoxwill increase.

Workaround:

Set the AutoSize property to false and prior to hiding/showing the panel modify the size of the RadGroupBox
0 comments