c#之datagridview列表与oracle数据库的交互测试

 继续学习datagridview如何与数据库(此处只论oracle)
上文链接
     在c#中把oracle表展示在datagridview

学习功能:
               启禁用添加或删除列表行及列表列标题样式配置

 //属性是否允许用户在列表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;

请使用浏览器的分享功能分享到微信等