WPF에서 MVVM 패턴 사용시 데이터그리드 내 Column에 값을 Binding할때 보통 어떻게 하시나요? 보통 이런 식으로 데이터 그리드의 각 Column마다 바인딩을 해준 후 ViewModel 쪽에 클래스를 생성해주는 게 일반적일텐데요 public class ItemSet : BindableBase { private int id = 0; public int ID { get => id; set => SetProperty(ref id, value); } private string name = ""; public string Name { get => name; set => SetProperty(ref name, value); } private string part = ""; public string Pa..