0
我正在使用DataGridView CellFormating來格式化指定的單元格。 我試圖代碼:
CellFormating獲取行數
private void dgwPart_CellFormatting(object sender, DataGridViewCellFormattingEventArgs e)
{
if (this.arts.Type == ArtType.Pak)
{
if (dgwPart.Columns[e.ColumnIndex].Name == "Discount")
e.Value = "";
}
}
的問題是,它改變了所有列的值,但我只希望它改變指定行的值。我如何管理它?