1. 程式人生 > >Winform中的dataGridView新增自動編號

Winform中的dataGridView新增自動編號

新建一個WinForm專案,在工具欄裡拖一個dataGriView到窗體中,預設名稱為dataGridView1,把資料來源新增到dataGridView1中,執行,看到dataGriView1有資料顯示,但沒有行編號,所以我們需要新增一列,用來顯示行號,以便我們知道這是第幾條記錄。選中dataGriView1,然後在屬性列表的事件選擇RowPostPaint事件,雙擊後新增事件處理函式,程式碼如下:

複製程式碼
privatevoid dataGridView1_RowPostPaint(object sender, DataGridViewRowPostPaintEventArgs e)
{
    
//自動編號,與資料無關 Rectangle rectangle = new Rectangle(e.RowBounds.Location.X, e.RowBounds.Location.Y, dataGridView1.RowHeadersWidth - 4, e.RowBounds.Height); TextRenderer.DrawText(e.Graphics, (e.RowIndex + 1).ToString(), dataGridView1.RowHeadersDefaultCellStyle.Font, rectangle, dataGridView1.RowHeadersDefaultCellStyle.ForeColor, TextFormatFlags.VerticalCenter
| TextFormatFlags.Right); }
複製程式碼

再次執行程式,就能看到多了一個標題列,顯示資料的行號!!嘻嘻。。。