300x250 Binding1 DevExpress / Winform GridControl의 DataSource에 List<T> 를 바인딩 하기. 클래스에 있는 ID, Subject, CreateDate 를 List를 이용하여 바인딩 하는 방법 입니다. 컬럼 이름들이 위의 객체에 있는 값의 이름으로 설정이 되며 객체를 생성하면서 추가 / 삭제 / 수정 이 가능합니다. 지금은 바인딩 하여 컬럼 이름만 출력되도록 하였습니다. 12345678910111213141516171819202122public partial class MainForm : Form{ private List sourceList; public MainForm() { InitializeComponent(); #region 그리드 컨트롤을 초기화 합니다. this.sourceList = new List(); this.resultGridControl.DataSource = this.sour.. 2019. 4. 2. 이전 1 다음 300x250