Declined
Last Updated: 06 Apr 2016 15:23 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 30 Dec 2014 10:57
Category:
Type: Bug Report
0
FIX. RadCollapsiblePanel - no vertical scroll-bar is displayed when the inner controls are docked to Bottom
To reproduce:

public Form1()
{
    InitializeComponent();

    for (int i = 0; i < 15; i++)
    {
        RadButton btn = new RadButton();
        btn.Text = "Item" + i;
        btn.Dock = DockStyle.Bottom;
        this.radCollapsiblePanel1.PanelContainer.Controls.Add(btn);
    }
}

Please refer to the attached screenshot.
1 comment
ADMIN
Stefan
Posted on: 29 Mar 2016 11:27
When controls are docked, the scroll bar will not be shown. To show the scroll bars, assign Location to the controls and when it is outside the control bounds, scrollbars will be shown.