If you want to show items horizontally using Listbox its quite easy and straightforward. What you all need to do is all
<ListBox>
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel Orientation="Horizontal" />
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
</ListBox>
And you will see the list now horizontally :)
Cheers!
Vinod
<ListBox>
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel Orientation="Horizontal" />
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
</ListBox>
And you will see the list now horizontally :)
Cheers!
Vinod