Product Bundles
DevCraft
All Telerik .NET and Kendo UI JavaScript components and AI Tools in one package.
Kendo UI
Bundle of AI Tools plus four JavaScript UI libraries built natively for jQuery, Angular, React and Vue.
Build JavaScript UI
Javascript
Telerik
Build modern .NET business apps
.Net Web
Cross-Platform
Desktop
Reporting and Documents
AI for Developers & IT
Ensure AI program success
AI Coding
AI Engineering
Additional Tools
Enhance the developer and designer experience
Testing & Mocking
Debugging
AI-Enhanced UI Tools
CMS
Free Tools
Support and Learning
Productivity and Design Tools
Hi
How can I put elements in a RadListBox side by side instead of one above other
Thank you
Luigi
I found by myself looking at first look sample of ListBox in Wpf Control Examples.
<t:RadListBox ItemsPanel="{DynamicResource RadListBoxItemsPanel}" ItemContainerStyle="{DynamicResource HorizontalItemsStyle}" Style="{DynamicResource CustomRadListBox}" ItemsSource="{Binding Reports}"> <t:RadListBox.ItemTemplate> <DataTemplate> <local:AnalisiLivelliAmbientaliControl/> </DataTemplate> </t:RadListBox.ItemTemplate> <t:RadListBox.Resources> <ItemsPanelTemplate x:Key="RadListBoxItemsPanel"> <StackPanel Orientation="Horizontal" HorizontalAlignment="Left" VerticalAlignment="Stretch"/> </ItemsPanelTemplate> </t:RadListBox.Resources> </t:RadListBox>
I found by myself looking at first look sample of ListBox in Wpf Control Examples.
<t:RadListBox ItemsPanel="{DynamicResource RadListBoxItemsPanel}" ItemContainerStyle="{DynamicResource HorizontalItemsStyle}" Style="{DynamicResource CustomRadListBox}" ItemsSource="{Binding Reports}"> <t:RadListBox.ItemTemplate> <DataTemplate> <local:AnalisiLivelliAmbientaliControl/> </DataTemplate> </t:RadListBox.ItemTemplate> <t:RadListBox.Resources> <ItemsPanelTemplate x:Key="RadListBoxItemsPanel"> <StackPanel Orientation="Horizontal" HorizontalAlignment="Left" VerticalAlignment="Stretch"/> </ItemsPanelTemplate> </t:RadListBox.Resources> </t:RadListBox>