Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
21行のグリッドビューがあります。私の要件は、行の背景色の一部をライトグリーン(1、5、13行など)に設定することです。これは達成可能です。
はい、可能です。
viewerDataGrid.Rows[0].DefaultCellStyle.BackColor = myColor;
グリッドビューの各行を反復処理し、行の背景色を割り当てます。
foreach (GridViewRow row in yourGridView.Rows) { row.BackColor = Color.Green; }