DataGridView 이벤트에서 RowPostPaint를 추가하고
아래와 같이 코드를 넣으면 된다.
// 주석은 16진수 (4자리)
private void Gridview_RowPostPaint(object sender, DataGridViewRowPostPaintEventArgs e) { DataGridView grid = sender as DataGridView; //String rowIdx = (e.RowIndex + 1).ToString("X4"); String rowIdx = (e.RowIndex + 1).ToString(); StringFormat centerFormat = new StringFormat() { Alignment = StringAlignment.Center, LineAlignment = StringAlignment.Center }; Rectangle headerBounds = new Rectangle(e.RowBounds.Left, e.RowBounds.Top, grid.RowHeadersWidth, e.RowBounds.Height); e.Graphics.DrawString(rowIdx, this.Font, SystemBrushes.ControlText, headerBounds,centerFormat); }
'Programming > C#' 카테고리의 다른 글
DataTable 사용방법 (0) | 2016.08.14 |
---|---|
ComboBox에 항목별로 Tag를 사용하는 방법 (DataTable) (0) | 2016.08.14 |
xml Element (0) | 2016.08.02 |
TrayIcon 좌클릭, 우클릭 메뉴 가능하게 하기 (0) | 2016.04.25 |
메시지박스 자동 종료하기 (0) | 2016.04.24 |