DataGridViewCellStyle.Padding属性不填充?

时间:2016-07-01 21:49:30

标签: c# winforms visual-studio-2010 datagridview

我试图在DataGridView的单元格之间添加一些填充。使用此MSDN link,我尝试使用DataGridViewCellStyle.Padding添加填充。但它没有显示出来。

我包含了代码。我没有约束DataGridView但是通过dataGridView1_CellFormatting填充它,所以也许这可能是问题?

感谢任何帮助。感谢。

public FormDgv()
{
    InitializeComponent();
    FillTable();
    SetDgvProperties();

}

public void SetDgvProperties()
{
    this.dataGridView1.DataSource = null;
    this.dataGridView1.Rows.Clear();
    this.dataGridView1.AllowUserToAddRows = false;
    this.dataGridView1.AllowUserToDeleteRows = false;
    this.dataGridView1.ReadOnly = true;
    this.dataGridView1.RowHeadersVisible = false;
    this.dataGridView1.ColumnHeadersVisible = false;
    this.dataGridView1.SelectionMode = DataGridViewSelectionMode.CellSelect;
    this.dataGridView1.RowTemplate.Height = 64;
    this.dataGridView1.CellFormatting += dataGridView1_CellFormatting;
    this.dataGridView1.ColumnCount = (int)table.Compute("Max(columnCount)", "");
    this.dataGridView1.RowCount = 8;
    dataGridView1.Refresh();
    Padding newPadding = new Padding(10, 10, 10, 10);
    this.dataGridView1.RowTemplate.DefaultCellStyle.Padding = newPadding;
}

DataTable table;
public void FillTable()
{
    table = GetData(connString);
}

void dataGridView1_CellFormatting(object sender, DataGridViewCellFormattingEventArgs e)
{

    if (e.RowIndex >= 0 & e.ColumnIndex >= 0)
    {
        string filter = string.Format("orderNum={0} AND ZeroBasedCol={1}", e.RowIndex + 1, e.ColumnIndex);
        var row = table.Select(filter).FirstOrDefault();
        if (row != null)
        {
            var color = (Color)new ColorConverter().ConvertFrom(row["ColorNotFilled"]);
            e.CellStyle.BackColor = color;
            e.CellStyle.SelectionBackColor = color;
            e.CellStyle.SelectionForeColor = Color.White;
            e.CellStyle.ForeColor = Color.White;
            e.CellStyle.Alignment = DataGridViewContentAlignment.MiddleCenter;
        }
    }

}

2 个答案:

答案 0 :(得分:2)

填充的使用是在单元格边缘和它的内容之间提供一些空间。它对细胞之间的空间没有任何影响。

如果要在单元格之间绘制更粗的网格线,可以处理CellPainting事件并在单元格周围绘制边框:

void dataGridView1_CellPainting(object sender, DataGridViewCellPaintingEventArgs e)
{
    e.Paint(e.CellBounds, DataGridViewPaintParts.All);
    using (var pen = new Pen(this.dataGridView1.GridColor, e.CellStyle.Padding.All))
        e.Graphics.DrawRectangle(pen, e.CellBounds);
    e.Handled = true;
}

不要忘记将这些代码行添加到Load事件:

this.dataGridView1.DefaultCellStyle.Padding = new Padding(5);
this.dataGridView1.BackgroundColor = SystemColors.Control;
this.dataGridView1.GridColor = SystemColors.Control;
this.dataGridView1.CellPainting += dataGridView1_CellPainting;

以下是DataGridView的屏幕截图:

enter image description here

答案 1 :(得分:2)

如果您对具有网格线颜色的空间感到满意,则可以为除最后ColumnsRows之外的所有人设置分隔符的大小:

int space = 10;
for (int i = 0; i < dataGridView1.RowCount - 1; i++)
                    dataGridView1.Rows[i].DividerHeight = space;
for (int i = 0; i < dataGridView1.ColumnCount - 1; i++) 
                    dataGridView1.Columns[i].DividerWidth = space;
dataGridView1.GridColor = Color.White;

enter image description here

请注意,DividersRows&amp;的一部分。 Columns,以便控制您需要在计算中考虑它们的Cell大小,否则右/底单元格会看起来更大一个分隔符大小!