Example #1
0
File: Form1.cs Project: kilel/Study
        public Form1()
        {
            InitializeComponent();

            iw = new ImageWriter(pic, "controller_"+comboBox.Text);
            current = 0;
        }
Example #2
0
File: Form1.cs Project: kilel/Study
        public Form1()
        {
            InitializeComponent();

            iw      = new ImageWriter(pic, "controller_" + comboBox.Text);
            current = 0;
        }
Example #3
0
File: Form1.cs Project: kilel/Study
 private void bStart_Click(object sender, EventArgs e)
 {
     try
     {
         iw = new ImageWriter(pic, "controller_" + comboBox.Text);
     }
     catch (Exception exc)
     {
         MessageBox.Show("Такой команды нет", "Ошибка");
         return;
     }
     current = 0;
     timer.Start();
 }
Example #4
0
File: Form1.cs Project: kilel/Study
 private void bStart_Click(object sender, EventArgs e)
 {
     try
     {
         iw = new ImageWriter(pic, "controller_" + comboBox.Text);
     }
     catch (Exception exc)
     {
         MessageBox.Show("Такой команды нет", "Ошибка");
         return;
     }
     current = 0;
     timer.Start();
 }