質問編集履歴
2
編集
test
CHANGED
File without changes
|
test
CHANGED
@@ -10,7 +10,7 @@
|
|
10
10
|
|
11
11
|
```c#
|
12
12
|
|
13
|
-
DataGridView1.Rows
|
13
|
+
DataGridView1.Rows[0].Visible = false;
|
14
14
|
|
15
15
|
```
|
16
16
|
|
1
編集
test
CHANGED
File without changes
|
test
CHANGED
@@ -38,7 +38,7 @@
|
|
38
38
|
|
39
39
|
|
40
40
|
|
41
|
-
for (int i = 0; i < dataGridView
|
41
|
+
for (int i = 0; i < dataGridView1.RowCount; i++)
|
42
42
|
|
43
43
|
{
|
44
44
|
|