UWP 041 | Keeping Data Controls Updated with ObservableCollection

943
0

Binding to a simple collection like a List[T] is find when all you need to do is bind the data once and never expect it to change. In this lesson we’ll learn about a different collection that will notify all controls that are bound to it that it has new data to be displayed.

Lesson source code: https://github.com/Windows-Readiness/…

Full series source code: https://github.com/Windows-Readiness/…

Previous articleUWP 040 | Data Binding to the GridView and ListView Controls
Next articleUWP 042 | Utilizing User Controls as Data Templates