I have a ListBox as defined below. How can I provide a name for each item in the ListBox via the xaml code?
<ListBox Grid.Row="0" Grid.Column="0" Margin="17,8,15,26" Name="listBox1" Height="Auto" ItemsSource="{Binding Tables[0]}" DisplayMemberPath="ownerName" SelectedValuePath="ownerID" ScrollViewer.VerticalScrollBarVisibility="Auto" />
Rob E.