Skip to content

Instantly share code, notes, and snippets.

@santanor
Last active December 17, 2018 22:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save santanor/1ade59360e9d6a1891e888fb1c08f7de to your computer and use it in GitHub Desktop.
Save santanor/1ade59360e9d6a1891e888fb1c08f7de to your computer and use it in GitHub Desktop.
<!-- For simplicity just one list is being displayed -->
<StackPanel Orientation="Horizontal">
<ListBox Items="{Binding TenBytesHeaderCount}" VirtualizationMode="Simple" BorderThickness="0" Width="300">
<ListBox.ItemTemplate>
<DataTemplate>
<!-- Here, the elements should appear one next to the other but they don't. They align vertically-->
<VirtualizingStackPanel Orientation="Horizontal">
<ListBox Items="{Binding WordCodes}"></ListBox>
</VirtualizingStackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
</StackPanel>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment