DataGridView에서 선택한 행의 객체 가져오기 입니다.
foreach (DataGridViewRow row in this.mainGridView.SelectedRows)
{
MainModel item = row.DataBoundItem as MainModel;
UpdateMainControlData(item);
}
728x90
'C# > Winform' 카테고리의 다른 글
C# / SQLITE Database is not open 에러 발생했을 때 해결 방법 (0) | 2019.11.11 |
---|---|
C# / Winform DataGridView에 데이터 삭제하는 메서드 (0) | 2019.11.10 |
C# / Winform 프로그레스바(Progress Bar) 입니다. (1) | 2019.10.27 |
C# / Winform 폴더 브라우저 출력하기 입니다. (0) | 2019.07.11 |
C# / Winform 다른 객체의 속성을 ListBox로 불러올 때 정상적으로 값이 출력 안될 때 해결방법 입니다. (0) | 2019.06.02 |
댓글