Skip to content

Instantly share code, notes, and snippets.

@rulyotano
Created October 3, 2024 08:36
How to display the Landmarks in a ListBox
<ListBox x:Name="landMarks" ItemsSource="{Binding Landmarks}">
<ListBox.Template>
<ControlTemplate>
<Canvas IsItemsHost="True"/>
</ControlTemplate>
</ListBox.Template>
</ListBox>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment