0
で特定ButtonColumnを選択します。私はそれButtonColumnを作る( 'チェックアウト' をREDとForestGreen、また、CELLどのように私は2色でのDataGridViewを持つC#の
任意のCELL CECKに私をクリックしたとき。 -OUTボタン、私が持っている:
これはコードです:
private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
if (MessageBox.Show("Check-out?",
"Message de confirmation",
MessageBoxButtons.YesNo) == DialogResult.Yes)
{ // non
MessageBox.Show("Opération éffectuée");
}
しかし、色が赤いCELLボタンをクリックするとjsutが欲しい!
私はこのコードを試してみてください。
private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
foreach (DataGridViewRow dr in dataGridView1.Rows)
{
if (dataGridView1.DefaultCellStyle.BackColor == Color.Red)
{
if (MessageBox.Show("Check-out?",
"Message de confirmation",
MessageBoxButtons.YesNo) == DialogResult.Yes)
{ // non
MessageBox.Show("Opération éffectuée");
}
}
}
私は何も持っていません!
どうすれば修正できますか?
おかげで、
はあなたが唯一の赤の行大丈夫メッセージポップアップを表示もしかして? –