Completed
Last Updated: 16 Oct 2015 13:09 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 05 Oct 2015 10:23
Category: Panorama
Type: Bug Report
1
FIX.RadPanorama - horizontal scroll-bar can not be moved when the TileGroupElement.RowsCount property is set to a larger value than the actual RadPanorama's height.
To reproduce:
public Form1()
{
    InitializeComponent();

    this.radPanorama1.ShowGroups = true;
    TileGroupElement group = new TileGroupElement();
    group.Name = "Group1";
    this.radPanorama1.Groups.Add(group);
    for (int i = 0; i < 20; i++)
    {
        group.Items.Add(new RadTileElement());
    }
    group.RowsCount = 5;

    this.radPanorama1.ScrollBarAlignment = HorizontalScrollAlignment.Bottom;
}

Workaround: set the ScrollBarAlignment property to HorizontalScrollAlignment.Top
0 comments