dataGridView常见用法

            // 禁止编辑
            dataGridView1.ReadOnly = true ;
            // 设定列数及行数
            dataGridView1.ColumnCount = 4;
            dataGridView1.RowCount = 5;
            dataGridView1.ColumnHeadersVisible = true;
            dataGridView1.RowHeadersVisible = true;


            //设置列标题
            dataGridView1.Columns[0].Name = "Recipe";
            dataGridView1.Columns[1].Name = "Category";


            //填充单元格
            dataGridView1.Rows[1].Cells[0].Value = "1";  

            dataGridView1.Rows[1].Cells[2].Value = "1,2";  

            //设置单元格字体颜色

            dataGridView1.Rows[1].Cells[0].Style.ForeColor= System.Drawing.Color.Red;

             //单元格背景色变色

            dataGridView1.Rows[1].Cells[0].Style.BackColor = Color.FromName("1");    //灰色

           dataGridView1.Rows[1].Cells[0].Style.BackColor = 

                                                                           Color.FromName(dataGridView1.Rows[1].Cells[0].Value.ToString());


1、selectionMode 属性中的fullRowselect选中就可以选中一行了。
2、RowTemplate属性的加号点开,你会看到DefualtCellStyle属性,然后打开它,修改其中的相应属性就可以设置默认属性。






你可能感兴趣的:(dataGridView常见用法)