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.
バインドして12行を提供するデータグリッドがあります。7行目以降の行をすべて非表示にしたい。
助言がありますか?
これを試して:
if (e.Row.RowType == DataControlRowType.DataRow) { int index = e.Row.RowIndex; if(index>7) { dataGridView1.Rows(index ).Visible = False } }