Pata

Pata

  • NA
  • 7
  • 0

Refresh drawing on another child form

Jun 1 2010 9:26 AM
In MDI parent form (MDIForm) I declare two child forms:

// child form1
ClassForm1 frmForm1 = new ClassForm1();
frmForm1.MdiParent = this;
frmForm1.Show();

// child form2
ClassForm2 frmForm2 = new ClassForm2();
frmForm2.MdiParent = this;
frmForm2.Show();

frmForm2  contains "graph drawing".
How do I refresh "graph drawing" on  frmForm2 , if I, for example, click on a button on frmForm1.

thx

Answers (1)