我正在尝试在 datagridview 的列中设置图标的大小:
// .. previous code to fill a dataset with rows of data ...
// Assign dataset into the DataGridView
this.dataGridView1.DataSource = thisDataSet.Tables[0];
// Create icon resource
Icon icon1 = new Icon(SystemIcons.Exclamation, 8, 8);
// Create a column to hold an icon
DataGridViewImageColumn img = new DataGridViewImageColumn(true);
// Set icon for all rows in the column
img.Icon = icon1;
// Add column to right side of the DataGridView
this.dataGridView1.Columns.Add(img);
// Move it to the beginning (left side)
this.dataGridView1.Columns[this.dataGridView1.Columns.Count - 1].DisplayIndex = 0;
我的 DataGridView 显示良好,左侧有一列,每行都有一个图标。所有图标的大小都与预期相同,但即使我指定了自己的大小,它们看起来也太大而不能达到 8x8 像素。如何控制图标大小?