-
C# DataGridView 추가행에 기본값 설정하기 (DefaultValuesNeeded 이벤트)닷넷/WinForms 2018. 12. 10. 14:43반응형// DataGridView 이벤트 중에 DefaultValuesNeeded를 이용한다.private void dataGridView1_DefaultValuesNeeded(object sender, DataGridViewRowEventArgs e){// 이벤트로 넘어 온 DataGridView Row의 칼럼에 값을 넣는다.e.Row.Cells["Name"].Value = value;// 예제 코드e.Row.Cells["City"].Value = "Seoul";e.Row.Cells["Country"].Value = "Korea";}
cs 테스트 영상
행이 추가될 때 DefaultValuesNeeded 이벤트에 입력한 기본값이 바로 적용되지 않는다.
영상을 보면 알 수 있듯이 기본값은 추가행을 클릭하거나 다른 칼럼을 편집하기 위해 클릭을 했을 때 자동으로 입력된다.
반응형'닷넷 > WinForms' 카테고리의 다른 글
C# 윈폼을 단순하지만 예쁜 디자인으로 탈바꿈 해주는 메트로폼 feat.Visual Studio에서 Metro UI Framework 추가하기 (0) 2019.03.04 C# DataGridView 열 전체 선택, 선택 풀기 (select row all or unselect row) (0) 2018.12.12 C# [펌] 윈도우 Timer와 스레드 Timer의 차이점 및 사용할 때 주의할 점 (0) 2018.10.01 C# MDI폼의 자식폼 최대화시 메뉴바에 나타나는 아이콘 없애기 (0) 2018.08.20 C# DataGridView 엑셀 출력 빠르게 하기 (복사&붙여넣기) (8) 2018.07.20