Looking for Rad Control that is Windows ListView horizontal like attached Pic.

1 Answer 130 Views
ListView
Roger
Top achievements
Rank 2
Iron
Iron
Iron
Roger asked on 02 Jun 2021, 09:06 PM

All,

I am looking for Rad Control that is Windows ListView horizontal like attached Pic.

 

It is a windows ListView in List mode but items show up sorted, with checkbox and in a horizontal manor. 

I have tried the RadListView but it only allows a column to go horizontal or verticle.  No wrap around once 

control is filled like you see in the attached pic.

 

I really want to use a rad control liking the themes, but in this case the win listview control works well, but not able to use the rad theme on it.

 

Thanks....

 

1 Answer, 1 is accepted

Sort by
1
Accepted
Dess | Tech Support Engineer, Principal
Telerik team
answered on 03 Jun 2021, 06:20 AM
Hello, Roger,
 
RadListView offers IconsView which would be appropriate for achieving your requirement: https://docs.telerik.com/devtools/winforms/controls/listview/views#iconsview 

I have prepared a sample code snippet for your reference which result is illustrated in the below screenshot: 
            for (int i = 0; i < 20; i++)
            {
                this.radListView1.Items.Add("Item"+i);
            }

            this.radListView1.ShowCheckBoxes = true;
            this.radListView1.ViewType = ListViewType.IconsView;
            IconListViewElement iconView = this.radListView1.ListViewElement.ViewElement as IconListViewElement;
            iconView.Orientation = Orientation.Vertical;
            this.radListView1.ItemSize = new Size(100,20);

I hope this information helps. If you need any further assistance please don't hesitate to contact me. 

Regards,
Dess | Tech Support Engineer, Sr.
Progress Telerik

Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.

Roger
Top achievements
Rank 2
Iron
Iron
Iron
commented on 03 Jun 2021, 12:50 PM

Dess. This is great. It did work our perfect. Thanks so much for the code and picture too.
Roger
Top achievements
Rank 2
Iron
Iron
Iron
commented on 03 Jun 2021, 12:52 PM

This would be a great example to add to the "DEMO" Winform ListView along with the others there.
Dess | Tech Support Engineer, Principal
Telerik team
commented on 03 Jun 2021, 12:55 PM

Roger, I am glad to hear that the suggested solution was helpful. Please have in mind that we already have an appropriate example in our Demo application showing this functionality:

Tags
ListView
Asked by
Roger
Top achievements
Rank 2
Iron
Iron
Iron
Answers by
Dess | Tech Support Engineer, Principal
Telerik team
Share this question
or