private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e) { if (DialogResult.Cancel == MessageBox.Show("確定,?", "提示", MessageBoxButtons.OKCancel, MessageBoxIcon.Asterisk, MessageBoxDefaultButton.Button2)) { return; } int a=dataGridView1.CurrentCell.RowIndex; string stock_date= dataGridView1.Rows[a].Cells["stock_date"].Value.ToString();//出庫日期 string fk_goods_pk = dataGridView1.Rows[a].Cells["fk_goods_pk"].Value.ToString();//貨物編號(hào) string move_tarlocation = dataGridView1.Rows[a].Cells["move_tarlocation"].Value.ToString();//目標(biāo)庫位 string fk_location_pk = dataGridView1.Rows[a].Cells["fk_location_pk"].Value.ToString();//原始庫位 } |
|