我试图在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;
}
}
}
答案 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
的屏幕截图:
答案 1 :(得分:2)
如果您对具有网格线颜色的空间感到满意,则可以为除最后Columns
和Rows
之外的所有人设置分隔符的大小:
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;
请注意,Dividers
是Rows
&amp;的一部分。 Columns
,以便控制您需要在计算中考虑它们的Cell
大小,否则右/底单元格会看起来更大一个分隔符大小!