Example #1
0
 public FieldChecker(string[] toArray)
 {
     InitializeComponent();
     AllCheck.Focus();
     if (toArray != null)
     {
         foreach (var naryad in toArray)
         {
             NarydsPanel.Children.Add(new CheckBox {
                 Content = naryad, IsChecked = false
             });
         }
     }
 }
Example #2
0
 private void allCheckNew_Click(object sender, EventArgs e)
 {
     MainForm._MainFormInstance = this;
     AllCheck.Run(book);
 }