private void 撤单ToolStripMenuItem_Click(object sender, EventArgs e)
 {
     string str = this.dgv_Reservation_Manager.SelectedCells[0].Value.ToString();
     RevokeForm rf = new RevokeForm(str, "Reservation");
     rf.Owner = this;
     rf.ShowDialog();
 }
Exemple #2
0
 private void 撤单ToolStripMenuItem_Click(object sender, EventArgs e)
 {
     string str = this.dgv_Statistics_SellCast_Manager.SelectedCells[1].Value.ToString();
     RevokeForm rf = new RevokeForm(str, "SellCast");
     rf.Owner = this;
     rf.ShowDialog();
 }