DataBindingComplete 이벤트에
ClearSelection() 매서드 호출하시면 됩니다
예)
// 열이 추가된 후 그리드 선택된것 해제하기
private void MessageGrid_DataBindingComplete(object sender, DataGridViewBindingCompleteEventArgs e)
{
MessageGrid.ClearSelection();
}
'C# Programming' 카테고리의 다른 글
c# SortableBindingList<T> (0) | 2018.12.17 |
---|---|
C# 마우스로 폼이동하기 (0) | 2018.12.08 |
C# 텔레그렘 봇 (0) | 2018.07.13 |
C# Mutex 를 이용한 프로그램 중복 실행 방지 (0) | 2018.07.06 |
C# datagridview 에 바인딩할 때 컬럼이름 재설정하기 (0) | 2018.07.04 |