I have AItems and BItems, want to bind to AListBox in a PanoramaItem and BListBox in another PanoramamItem.
I specified ItemsSource in each ListBox
<controls:PanoramaItem>
<ListBox ItemsSource="{Binding AItems}" >
...
</ListBox>
</controls:PanoramaItem>
<controls:PanoramaItem
<ListBox ItemsSource="{Binding BItems}" >
...
</ListBox>
</controls:PanoramaItem>
How do I bind the data to each ListBox from code behind?
I have the Constructor method
public MainPage()
{
InitializeComponent();
}
and page load method
private void MainPage_Loaded(object sender, RoutedEventArgs e)
{
}
Thank you.