private void MyListBox_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
//selectedFerry = (Ferry)MyListBox.SelectedItem;
if (MyListBox.SelectedItem != null)
{
Console.WriteLine("Hey");
}
}
private void MyListBox_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
//selectedFerry = (Ferry)MyListBox.SelectedItem;
if (MyListBox.SelectedItem != null)
{
Console.WriteLine("Hey");
}
}