This question is locked. New answers and comments are not allowed.
Greetings Telerik -
I'm having trouble getting a horizontal scrollbar to appear in a horizontal list box. This works fine with the standard list box, but not with the Telerik one. Here is the standard listbox.
I've simply replaced the ListBox with telerik.RadListBox
Any thoughts?
I'm having trouble getting a horizontal scrollbar to appear in a horizontal list box. This works fine with the standard list box, but not with the Telerik one. Here is the standard listbox.
<
ListBox Width="900"
Grid.Row
=
"1"
ItemsSource
=
"{Binding Tiles}"
Background
=
"Transparent"
SelectedItem
=
"{Binding SelectedTile, Mode=TwoWay}"
>
<
ListBox.ItemTemplate
>
<
DataTemplate
>
<
helpers:DataTemplateSelector2
Content
=
"{Binding}"
DataContext
=
"{Binding}"
GridView
=
"{StaticResource GridView}"
ChartView
=
"{StaticResource ChartView}"
Height
=
"175"
Width
=
"200"
/>
</
DataTemplate
>
</
ListBox.ItemTemplate
>
<
ListBox.ItemsPanel
>
<
ItemsPanelTemplate
>
<
VirtualizingStackPanel
Orientation
=
"Horizontal"
/>
</
ItemsPanelTemplate
>
</
ListBox.ItemsPanel
>
</
ListBox
>
I've simply replaced the ListBox with telerik.RadListBox
<
telerik:RadListBox Width="900"
Grid.Row
=
"1"
ItemsSource
=
"{Binding Tiles}"
Background
=
"Transparent"
SelectedItem
=
"{Binding SelectedTile, Mode=TwoWay}"
>
<
telerik:RadListBox.ItemTemplate
>
<
DataTemplate
>
<
helpers:DataTemplateSelector2
Content
=
"{Binding}"
DataContext
=
"{Binding}"
GridView
=
"{StaticResource GridView}"
ChartView
=
"{StaticResource ChartView}"
Height
=
"175"
Width
=
"200"
/>
</
DataTemplate
>
</
telerik:RadListBox.ItemTemplate
>
<
telerik:RadListBox.ItemsPanel
>
<
ItemsPanelTemplate
>
<
VirtualizingStackPanel
Orientation
=
"Horizontal"
/>
</
ItemsPanelTemplate
>
</
telerik:RadListBox.ItemsPanel
>
</
telerik:RadListBox
>
Any thoughts?