Completed
Last Updated: 06 Jun 2019 13:31 by ADMIN
Release R2 2019 SP1 (LIB 2019.2.610)
ADMIN
Hristo
Created on: 26 Oct 2015 16:05
Category:
Type: Bug Report
3
FIX. RadCollapsiblePanel - when there are a number of collapsible panels stacked on top of each other and they are added to a RadPanel, the last panel is cut off if it is docked to Fill and the other
How to reproduce: check the attached project

Workaround: resize the size of the hosting RadPanel
private void radCollapsiblePanel_Expanding(object sender, CancelEventArgs e)
{
    this.radPanel1.Size = new Size(this.radPanel1.Size.Width, this.radPanel1.Size.Height - 1);
}

private void radCollapsiblePanel_Expanded(object sender, EventArgs e)
{
    this.radPanel1.Size = new Size(this.radPanel1.Size.Width, this.radPanel1.Size.Height + 1);
}

0 comments