DataGridView 某一列单元格内容居中显示



dataGridView.Columns[0].DefaultCellStyle.Alignment = DataGridViewContentAligent.MiddleRight;

//必须设置SortMode 为NotSortable,否则设置的单元格样式不会生效

dataGridView.Columns[0].SortMode= DataGridViewColumnSortMode.NotSortable;


'DataGridView右键点击行时选中行

 用 事件CellMouseDown


GridView1.Rows(e.RowIndex).Selected = True;



你可能感兴趣的:(DataGridView 某一列单元格内容居中显示)