DataGridView
編集中のセルの背景色を変更したい。私が試したすべてのソリューションは、セルから出るときに色を適用します。ユーザーに何かを入力してもらいたいのでCell_Validating
、値がルールに合格しない場合は、セルに色を付けて、ユーザーがセルから出られないようにします。以下は私が試したコードです:
DataGridViewCellStyle CellStyle = new DataGridViewCellStyle();
CellStyle.BackColor = Color.Red;
dgvAddAssets.CurrentCell.Style = CellStyle;