Exemple #1
0
        private void button1_Click(object sender, EventArgs e)
        {
            FindForm ff = new FindForm(orderlist, this);

            this.Hide();
            ff.ShowDialog();
        }
Exemple #2
0
 public DetailForm(Order or, FindForm ff)
 {
     this.StartPosition = FormStartPosition.CenterScreen;
     InitializeComponent();
     listBindingSource.DataSource = or.orderDetails;
     this.f1 = ff;
     this.or = or;
     orderBindingSource.DataSource = or;
 }