DataGridVeiw이벤트에 EditingControlShowing추가
e.Control.KeyPress이벤트 연결
KeyPress와 연결한 함수에서
if (((DataGridViewTextBoxEditingControl)sender).Text.Length >= 제한할 길이 수
&& ((DataGridViewTextBoxEditingControl)sender).SelectedText.Length <= 0)
e.Handled = true;
SelectedTextLength는 블록 지정했을때 수정이 가능하게끔 하기 위함
'Programming > C#' 카테고리의 다른 글
DataGridview 컬럼헤더 체크박스를 눌렀을때 Sel, DeSel하기 (0) | 2016.12.01 |
---|---|
DataGridView컬럼헤더에 Checkbox넣기 (0) | 2016.12.01 |
bool 배열 한번에 초기화 하기 (0) | 2016.11.23 |
DataTable 사용방법 (0) | 2016.08.14 |
ComboBox에 항목별로 Tag를 사용하는 방법 (DataTable) (0) | 2016.08.14 |