Completed
Last Updated: 12 Jun 2019 08:17 by ADMIN
Release R2 2019 SP1
ADMIN
Dimitar
Created on: 15 Jul 2015 05:51
Category:
Type: Bug Report
0
FIX. RadCollapsiblePanel - the header is hidden when the Dock property is set to Fill and the header is at the bottom.
To reproduce:
- Add to collapsible panels to a form.
- Dock the first to the top and set the Dock property of the second to Fill.
- Set the ExpandDirection of the second to Up.
- Start the application and collapse and then expand the second panel.
- You will notice that the header button is no longer visible.

Workaround:
void radCollapsiblePanel1_Expanded(object sender, EventArgs e)
{
    radCollapsiblePanel2.CollapsiblePanelElement.InvalidateMeasure(true);
}
0 comments