예제 #1
0
파일: Form1.cs 프로젝트: kilel/Study
        public Form1()
        {
            InitializeComponent();

            iw = new ImageWriter(pic, "controller_"+comboBox.Text);
            current = 0;
        }
예제 #2
0
파일: Form1.cs 프로젝트: kilel/Study
        public Form1()
        {
            InitializeComponent();

            iw      = new ImageWriter(pic, "controller_" + comboBox.Text);
            current = 0;
        }
예제 #3
0
파일: Form1.cs 프로젝트: 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();
 }
예제 #4
0
파일: Form1.cs 프로젝트: 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();
 }