■ DataGridView 클래스에서 커스텀 컨트롤 컬럼을 만드는 방법을 보여준다.
▶ CalendarColumn.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
using System; using System.Windows.Forms; namespace TestProject { /// <summary> /// 캘린더 컬럼 /// </summary> public class CalendarColumn : DataGridViewColumn { //////////////////////////////////////////////////////////////////////////////////////////////////// Property ////////////////////////////////////////////////////////////////////////////////////////// Public #region 셀 템플리트 - CellTemplate /// <summary> /// 셀 템플리트 /// </summary> public override DataGridViewCell CellTemplate { get { return base.CellTemplate; } set { if(value != null && !value.GetType().IsAssignableFrom(typeof(CalendarCell))) { throw new InvalidCastException("CalendarCell 타입이어야 합니다."); } base.CellTemplate = value; } } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - CalendarColumn() /// <summary> /// 생성자 /// </summary> public CalendarColumn() : base(new CalendarCell()) { } #endregion } } |
▶ CalendarCell.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 |
using System; using System.Windows.Forms; namespace TestProject { /// <summary> /// 캘린더 셀 /// </summary> public class CalendarCell : DataGridViewTextBoxCell { //////////////////////////////////////////////////////////////////////////////////////////////////// Property ////////////////////////////////////////////////////////////////////////////////////////// Public #region 편집 타입 - EditType /// <summary> /// 편집 타입 /// </summary> public override Type EditType { get { return typeof(CalendarEditingControl); } } #endregion #region 값 타입 - ValueType /// <summary> /// 값 타입 /// </summary> public override Type ValueType { get { return typeof(DateTime); } } #endregion #region 디폴트 신규 행 값 - DefaultNewRowValue /// <summary> /// 디폴트 신규 행 값 /// </summary> public override object DefaultNewRowValue { get { return DateTime.Now; } } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - CalendarCell() /// <summary> /// 생성자 /// </summary> public CalendarCell() : base() { this.Style.Format = "d"; } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Public #region 편집 컨트롤 초기화 하기 - InitializeEditingControl(rowIndex, initialFormattedValue, dataGridViewCellStyle) /// <summary> /// 편집 컨트롤 초기화 하기 /// </summary> /// <param name="rowIndex">행 인덱스</param> /// <param name="initialFormattedValue">초기 포맷 값</param> /// <param name="dataGridViewCellStyle">그리드 데이터 뷰 셀 스타일</param> public override void InitializeEditingControl(int rowIndex, object initialFormattedValue, DataGridViewCellStyle dataGridViewCellStyle) { base.InitializeEditingControl(rowIndex, initialFormattedValue, dataGridViewCellStyle); CalendarEditingControl control = DataGridView.EditingControl as CalendarEditingControl; if(this.Value == null) { control.Value = (DateTime)this.DefaultNewRowValue; } else { control.Value = (DateTime)this.Value; } } #endregion } } |
▶ CalendarEditingControl.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 |
using System; using System.Windows.Forms; namespace TestProject { /// <summary> /// 캘린더 편집 컨트롤 /// </summary> public class CalendarEditingControl : DateTimePicker, IDataGridViewEditingControl { //////////////////////////////////////////////////////////////////////////////////////////////////// Field ////////////////////////////////////////////////////////////////////////////////////////// Private #region Field /// <summary> /// 데이터 그리드 뷰 /// </summary> private DataGridView dataGridView; /// <summary> /// 값 변경 여부 /// </summary> private bool valueChanged = false; /// <summary> /// 행 인덱스 /// </summary> private int rowIndex; #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Property ////////////////////////////////////////////////////////////////////////////////////////// Public #region 편집 컨트롤 데이터 그리드 뷰 - EditingControlDataGridView /// <summary> /// 편집 컨트롤 데이터 그리드 뷰 /// </summary> public DataGridView EditingControlDataGridView { get { return this.dataGridView; } set { this.dataGridView = value; } } #endregion #region 편집 패널 커서 - EditingPanelCursor /// <summary> /// 편집 패널 커서 /// </summary> public Cursor EditingPanelCursor { get { return base.Cursor; } } #endregion #region 편집 컨트롤 행 인덱스 - EditingControlRowIndex /// <summary> /// 편집 컨트롤 행 인덱스 /// </summary> public int EditingControlRowIndex { get { return this.rowIndex; } set { this.rowIndex = value; } } #endregion #region 편집 컨트롤 포맷 값 - EditingControlFormattedValue /// <summary> /// 편집 컨트롤 포맷 값 /// </summary> public object EditingControlFormattedValue { get { return this.Value.ToShortDateString(); } set { if(value is string) { try { this.Value = DateTime.Parse((string)value); } catch { this.Value = DateTime.Now; } } } } #endregion #region 편집 컨트롤 값 변경 여부 - EditingControlValueChanged /// <summary> /// 편집 컨트롤 값 변경 여부 /// </summary> public bool EditingControlValueChanged { get { return this.valueChanged; } set { this.valueChanged = value; } } #endregion #region 값 변경시 편집 컨트롤 재위치 여부 - RepositionEditingControlOnValueChange /// <summary> /// 값 변경시 편집 컨트롤 재위치 여부 /// </summary> public bool RepositionEditingControlOnValueChange { get { return false; } } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - CalendarEditingControl() /// <summary> /// 생성자 /// </summary> public CalendarEditingControl() { this.Format = DateTimePickerFormat.Short; } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Public #region 편집 컨트롤 포맷 값 구하기 - GetEditingControlFormattedValue(context) /// <summary> /// 편집 컨트롤 포맷 값 구하기 /// </summary> /// <param name="context">컨텍스트</param> /// <returns>편집 컨트롤 포맷 값</returns> public object GetEditingControlFormattedValue(DataGridViewDataErrorContexts context) { return EditingControlFormattedValue; } #endregion #region 셀 스타일 편집 컨트롤 적용하기 - ApplyCellStyleToEditingControl(dataGridViewCellStyle) /// <summary> /// 셀 스타일 편집 컨트롤 적용하기 /// </summary> /// <param name="dataGridViewCellStyle">데이터 그리드 뷰 셀 스타일</param> public void ApplyCellStyleToEditingControl(DataGridViewCellStyle dataGridViewCellStyle) { this.Font = dataGridViewCellStyle.Font; this.CalendarForeColor = dataGridViewCellStyle.ForeColor; this.CalendarMonthBackground = dataGridViewCellStyle.BackColor; } #endregion #region 편집 컨트롤 입력 키 요청 여부 구하기 - EditingControlWantsInputKey(key, dataGridViewWantsInputKey) /// <summary> /// 편집 컨트롤 입력 키 요청 여부 구하기 /// </summary> /// <param name="key">키</param> /// <param name="dataGridViewWantsInputKey">데이터 그리드 뷰 입력 키 요청 여부</param> /// <returns>편집 컨트롤 입력 키 요청 여부 구하기</returns> public bool EditingControlWantsInputKey(Keys key, bool dataGridViewWantsInputKey) { switch(key & Keys.KeyCode) { case Keys.Left : case Keys.Up : case Keys.Down : case Keys.Right : case Keys.Home : case Keys.End : case Keys.PageDown : case Keys.PageUp : return true; default : return !dataGridViewWantsInputKey; } } #endregion #region 편집용 편집 컨트롤 준비하기 - PrepareEditingControlForEdit(selectAll) /// <summary> /// 편집용 편집 컨트롤 준비하기 /// </summary> /// <param name="selectAll">전체 선택 여부</param> public void PrepareEditingControlForEdit(bool selectAll) { } #endregion ////////////////////////////////////////////////////////////////////////////////////////// Protected #region 값 변경시 처리하기 - OnValueChanged(e) /// <summary> /// 값 변경시 처리하기 /// </summary> /// <param name="e">이벤트 인자</param> protected override void OnValueChanged(EventArgs e) { this.valueChanged = true; this.EditingControlDataGridView.NotifyCurrentCellDirty(true); base.OnValueChanged(e); } #endregion } } |
▶ MainForm.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
using System; using System.Windows.Forms; namespace TestProject { /// <summary> /// 메인 폼 /// </summary> public partial class MainForm : Form { //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - MainForm() /// <summary> /// 생성자 /// </summary> public MainForm() { InitializeComponent(); CalendarColumn calendarColumn = new CalendarColumn(); calendarColumn.Width = 120; this.dataGridView.Columns.Add(calendarColumn); this.dataGridView.RowCount = 5; foreach(DataGridViewRow row in this.dataGridView.Rows) { row.Cells[0].Value = DateTime.Now; } } #endregion } } |