Skip to content

Latest commit

 

History

History
17 lines (9 loc) · 1.08 KB

readme.md

File metadata and controls

17 lines (9 loc) · 1.08 KB

About

When working with a DataGridView with a DataTable as the data source there is change notification built-in while when working with classes/models with controls a developer must implement INotifyPropertyChanged or use a third-party library like PostScript (a paid for library) or Fody.

This project shows conventional INotifyPropertyChanged and Fody for implementation of property change notification.

Note That for controls such as ComboBox and ListBox where the underlying data may change, consider not using a DataTable but instead the same methods used for this code sample by replacing the DataGridView with a ComboBox or ListBox which works same as the DataGridView as the first iteration of this project used ListBox controls.

Overview

Examples for conventional property change notification using INotifyPropertyChanged and PropertyChanged.Fody.

See

Readme file in the project for more details.