This is a migrated thread and some comments may be shown as answers.

UI issue

1 Answer 36 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Deepak
Top achievements
Rank 1
Deepak asked on 15 Jul 2014, 09:47 AM
Hi all,

I am trying to achieve the attached. I have a list of records (filenames) which I want to show in a list. 
Anybody has any idea as to which control to use.

Regards,
Deepak

1 Answer, 1 is accepted

Sort by
0
Masha
Telerik team
answered on 16 Jul 2014, 06:24 AM
Hello Deepak,

I suggest that you use a simple ItemsControl and set as an ItemsPanel telerik:RadUniformGrid as follow:

<DataTemplate x:Key="SomeItemTemplate">
    ...
</DataTemplate>
 
<ItemsControl ItemsSource="{Binding Controls}" ItemTemplate="{StaticResource SomeItemTemplate}">
    <ItemsControl.ItemsPanel>
        <ItemsPanelTemplate>
            <telerik:RadUniformGrid Columns="1" MaxHeight="450"/>
        </ItemsPanelTemplate>
    </ItemsControl.ItemsPanel>
</ItemsControl>

I hope this helps.

Regards,
Masha
Telerik
 
Check out Telerik Analytics, the service which allows developers to discover app usage patterns, analyze user data, log exceptions, solve problems and profile application performance at run time. Watch the videos and start improving your app based on facts, not hunches.
 
Tags
General Discussions
Asked by
Deepak
Top achievements
Rank 1
Answers by
Masha
Telerik team
Share this question
or