0

我有一个datagridview,我用这种方式填充它:

DataGridViewRow^ row = gcnew DataGridViewRow;

        DataGridViewCheckBoxCell^ CBox = gcnew DataGridViewCheckBox;//DataGridViewCheckBoxCell();
        row->Cells->Add( CBox );
        CBox->Value = false;
        CBox->ReadOnly = false;

        DataGridViewTextBoxCell^ PName = gcnew DataGridViewTextBoxCell();
        row->Cells->Add( PName );
        PName->Value = strPackageName;
        PName->ReadOnly = true;

        DataGridViewTextBoxCell^ AppV = gcnew DataGridViewTextBoxCell();
        row->Cells->Add( AppV );
        AppV->Value = strAppVendor;
        AppV->ReadOnly = true;

        DataGridViewTextBoxCell^ AppN = gcnew DataGridViewTextBoxCell();
        row->Cells->Add( AppN );
        AppN->Value = strAppName;
        AppN->ReadOnly = true;

dataGridView1->Rows->Add( row );

我想做以下事情。如果我单击复选框,我想更改行颜色。不幸的是我没有找到数据网格的相应事件,因为每个事件都有一些问题。有人能告诉我应该使用哪个事件,或者我应该怎么做?

谢谢!

4

1 回答 1

0

我希望它会奏效。

  if (CBox->Checked)
  {
      PName->BackColor = Color::Red;
      AppV->BackColor = Color::Red;
      AppN->BackColor = Color::Red;

  }
于 2012-06-05T09:41:51.603 回答