//Spawn sell window
 private void askToolStripMenuItem_Click(object sender, EventArgs e)
 {
     placeAskOrderForm newMDIChild = new placeAskOrderForm(data);
     // Set the parent form of the child window.
     newMDIChild.MdiParent = this;
     // Display the new form.
     newMDIChild.Show();
 }
Exemple #2
0
        //Spawn sell window
        private void askToolStripMenuItem_Click(object sender, EventArgs e)
        {
            placeAskOrderForm newMDIChild = new placeAskOrderForm(data);

            // Set the parent form of the child window.
            newMDIChild.MdiParent = this;
            // Display the new form.
            newMDIChild.Show();
        }