DataGridViewComboBoxCell이 클릭 되었을 때, 콤보박스 내용들을 확인하는 코드입니다.
this.grid.CellClick += MultiHeaderGrid_CellClick; |
void grid_CellClick(object sender, DataGridViewCellEventArgs e) { if (this.CurrentCell.EditType == typeof(DataGridViewComboBoxEditingControl)) { SendKeys.Send("{F4}"); } } |
'.Net > Winform' 카테고리의 다른 글
C# Visual Studio와 같은 컨트롤 배치 컨트롤 (2) | 2015.07.10 |
---|---|
C# Winform 멀티 UI 쓰레드 (0) | 2015.05.06 |
C# Excel 2007 추가기능 - 엑셀 Cell의 스크린 위치 구하기 (0) | 2014.08.22 |
C# TabControl 안에 윈도우 추가하기 (2) | 2014.08.19 |
C# 멀티 헤더 DataGridView (0) | 2014.08.14 |