Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Communication between different forms

In C#, using winforms, what is the best way to make forms talk to each other? Sending data, messages, strings, whatever, from on to the other?

Delegates?

Ideas?

like image 589
Pedro Luz Avatar asked Jun 14 '10 00:06

Pedro Luz


1 Answers

We'ved used something called the Event Pattern successfully in several Winform applications. Here's a good link that will help you get started.

like image 55
Walter Avatar answered Sep 24 '22 19:09

Walter