Exemplo n.º 1
0
        private void button1_Click(object sender, EventArgs e)
        {
            ResultOne r = new ResultOne();

            r.TextChanged += new TextChangedHandler1(this.EventResultChanged);
            ChildForm fc = new ChildForm(r);

            fc.ShowDialog();
        }
Exemplo n.º 2
0
 public ChildForm(ResultOne r)
     : this()
 {
     this.r = r;
 }