c#之datagridview列表與oracle資料庫的互動測試

wisdomone1發表於2012-02-24
 繼續學習datagridview如何與資料庫(此處只論oracle)
上文連結
    

學習功能:
               啟禁用新增或刪除列表行及列表列標題樣式配置

 //屬性是否允許使用者在列表datagridview中新增或刪除資料
            dataGridView1.AllowUserToAddRows = false;
            dataGridView1.AllowUserToDeleteRows = false;

            //學習如何顯示不顯示列表的列標題
            dataGridView1.ColumnHeadersVisible = true;

            //學習設定列表的列標題的樣式格式設定(字型及大小及其它,粗細體等)
            DataGridViewCellStyle. columnheaderstyle. = new DataGridViewCellStyle();
            columnheaderstyle.BackColor = Color.Brown;
            //font.bold返回型別為布林bool
            columnheaderstyle.Font = new Font("Verdana",10,FontStyle.Bold);

            //此步很重要,就讓列表的列表頭以上述設定的樣式進行顯示
            dataGridView1.ColumnHeadersDefaultCellStyle. = columnheaderstyle;


                 選中列表不同行以不同色調顯示
  //學習多種不同選中列表datagridview不同行的區別及選中不同行突出以其它色調顯示
            //selectionmode指示如何選擇不同的單元格
            dataGridView1.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
            //defaultcellstyle為控制單元格的不同樣式
            //selectionbackcolor為選中單元格時的色調
            dataGridView1.DefaultCellStyle.SelectionBackColor = Color.Yellow;

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/9240380/viewspace-717098/,如需轉載,請註明出處,否則將追究法律責任。

相關文章