Hi this is my first week in vb.net
I m using visual studio 2010, I am trying to show the week days in Combo box but its not showing when i run it. plz help!
Class MainWindow
Private Sub ComboBox1_SelectionChanged(sender As System.Object, e As System.Windows.Controls.SelectionChangedEventArgs) Handles ComboBox1.SelectionChanged
Dim listofdays As New List(Of String)
listofdays.Add("Monday")
listofdays.Add("Tuesday")
listofdays.Add("Wednesday")
listofdays.Add("Thursday")
listofdays.Add("Friday")
listofdays.Add("Saturday")
listofdays.Add("Sunday")
ComboBox1.ItemsSource = listofdays
End Sub
End Class