Untitled
unknown
csharp
2 years ago
268 B
2
Indexable
public ObservableCollection<LearnItem> Courses = new ObservableCollection<LearnItem>(CoursesDatabase.Courses);
public StartPage ()
{
InitializeComponent ();
Title = "Learn C# with me!";
BindingContext = this;
coursesListView.ItemsSource = Courses;
}Editor is loading...