Completed
Last Updated: 24 Oct 2014 07:04 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 22 Sep 2014 11:48
Category:
Type: Bug Report
0
FIX. RadListView - Horizontal scroll bar's arrows are not responsive when the ListViewElement.ViewElement.Orientation property is set to Horizontal
To reproduce:
public Form1()
{
    InitializeComponent();
    this.radListView1.ViewType = Telerik.WinControls.UI.ListViewType.IconsView;
}

private void Form1_Load(object sender, EventArgs e)
{   
    radListView1.ListViewElement.ViewElement.Orientation = Orientation.Horizontal;
    radListView1.Items.Add("Item 1");
    radListView1.Items.Add("Item 2");
    radListView1.Items.Add("Item 3");
    radListView1.Items.Add("Item 4");  
}

Workaround: set the ListViewElement.ViewElement.Orientation property to Horizontal in the form's constructor.
Attached Files:
0 comments