リストボックスに15個ではなく3個の列を取得しようとしていますが、どうすればよいですか?特定の列をDataGridviewからリストボックスに移動する方法
これはすべての列を取得するコードです。
private void testlist()
{
string[,] Datavalue = new string[dataGridView1.Rows.Count, dataGridView1.Columns.Count];
foreach (DataGridViewRow row in dataGridView1.Rows)
{
foreach (DataGridViewColumn col in dataGridView1.Columns)
{
Datavalue[row.Index, col.Index] = dataGridView1.Rows[row.Index].Cells[col.Index].Value.ToString();
}
}
int i = 1;
string strval = "";
foreach (string ss in Datavalue)
{
strval += ss + " ";
if (i == 15)
{
listBox1.Items.Add(strval);
strval = "";
i = 0;
}
i++;
}
}
私は2〜3日と15列 – Luka