Esempio n. 1
0
        private void StartBtn_Click(object sender, EventArgs e)
        {
            var inputFile = new InputFile(new FileInfo(PathTBx.Text));

            _drawer.Clear(BackColor);
            ResultTBx.Clear();
            _manager.Start(inputFile);
        }
Esempio n. 2
0
 private void TextUpdateEvent(object sender, string message)
 {
     ResultTBx.Invoke(new UpdateTextBox(UpdateTextBoxMethod), message);
 }