WinForms DataGridView 자동 데이터 갱신 기법
방법 1: BindingList와 INotifyPropertyChanged 조합 (권장)
public class InventoryItem : INotifyPropertyChanged
{
private string _itemName;
private double _itemValue;
public string ItemName
{
get => _itemName;
set { _itemName = value; OnPropertyChanged(); }
}
public double ItemValue
{
get => _i ...
6월 11일 01:06에 게시됨