C# checkBox_CheckedChanged Referencing in different files
See the question and my original answer on StackOverflowYou need to make sure addzipdir_checkBox is public. For this, you need to use the form editor, select the addzipdir_Checkbox and change the property grid 'Modifiers' item to
publicorinternal.Then, you need to find a way to reference the instance of this form, something like this:
if (myForm.addzipdir_checkBox.Equals(true)) { ... ... }