public MainForm() { InitializeComponent(); Data = new AppData(); // Create the application data object Data.OnChange += delegate { ExchangeData(false); }; // Track data changes to keep the form synchronized Enroller = new EnrollmentForm(Data); Verifier = new VerificationForm(Data); ExchangeData(false); // fill data with default values from controls }
public Creat_Staff() { InitializeComponent(); Data = new AppData(); // Create the application data object Data.OnChange += delegate { ExchangeData(false); }; // Track data changes to keep the form synchronized Enroller = new EnrollmentForm(Data); ExchangeData(false); }