コード例 #1
0
ファイル: Form1.cs プロジェクト: ssd777/c-sharp-homework
        }  //排序

        private void dataGridView1_CellMouseDoubleClick(object sender, DataGridViewCellMouseEventArgs e)
        {
            Form_showDetails showDetails = new Form_showDetails(bindingSource1);

            showDetails.ShowDialog();
        }
コード例 #2
0
        }  //排序

        private void dataGridView1_CellMouseDoubleClick(object sender, DataGridViewCellMouseEventArgs e)
        {
            Form_showDetails showDetails = new Form_showDetails((int)dataGridView1.Rows[e.RowIndex].Cells[0].Value);

            showDetails.ShowDialog();
        }