datagridview을 사용하여 이것 저것 해보았다.
서로 다른 datagridview을 이용하여 데이터 이동하는 방법이다.
인터넷에서 소스를 찾아서 했는데.. 사용을 안 하다가 다시 쓰려고 하니 다 잊어 버려서 이렇게 메모.
// data
string strNo = dataGridView_lineup1.SelectedRows[0].Cells[0].Value.ToString();
string strSrt = dataGridView_lineup1.SelectedRows[0].Cells[1].Value.ToString();
string strCutoffNo = dataGridView_lineup1.SelectedRows[0].Cells[2].Value.ToString();
string strPcs = dataGridView_lineup1.SelectedRows[0].Cells[3].Value.ToString();
string strVolCBM = dataGridView_lineup1.SelectedRows[0].Cells[4].Value.ToString();
string strVolMBF = dataGridView_lineup1.SelectedRows[0].Cells[5].Value.ToString();
// add datagrivew
dataGridView_lineup2.Rows.Add(strNo, strSrt, strCutoffNo, strPcs, strVolCBM, strVolMBF, "", "");
// remove datagrivew
dataGridView_lineup1.Rows.Remove(dataGridView_lineup1.SelectedRows[0]);
// sort
// this.dataGridView_lineup2.Sort(this.noDataGridViewTextBoxColumn, ListSortDirection.Descending);
// total cnt
this.label_totalrows.Text = "Total : " + this.dataGridView_lineup2.Rows.Count;