如何在visual studio中自定义dataGridView单元格

时间:2017-12-31 23:13:25

标签: c# datagridview datagridviewtextboxcell

我想自定义dataGridView单元格的大小,我该怎么做?我想增加细胞的高度

1 个答案:

答案 0 :(得分:0)

这是我正在使用的样本:

    .Grid td { //these are data cells
        background-color: #d7e1e5;
        color: black;
        font-size: 10pt;
        line-height: 200% // Adjust the height here
    }

    .Grid th { //Header cells
        background-color: #007FFF;
        color: White;
        font-size: 10pt;
        line-height: 200% // Adjust the height here
    }