[Solved] How to reuse a form ( and change its context when needed) to avoid multiple identical forms? C# [closed]
Why do you need a new form class for each country? The idea of a class is that it holds common behaviours. A form is a class. just instantiate an instance of the class with the data that it needs to display. Create a data class to encapsulate the data that the form shows (like … Read more