private void openRotoItem_Click(object sender, EventArgs e)
 {
     if (openDlgRoto.ShowDialog() == DialogResult.OK)
     {
         //TODO
         if (maker != null)
         {
             maker.OnOpenRotoscope(openDlgRoto.FileName);
         }
     }
     UpdateMenuBar();
 }
Exemple #2
0
 private void openRotoItem_Click(object sender, EventArgs e)
 {
     if (maker == null)
     {
         MessageBox.Show("Need an opened video first!");
         return;
     }
     if (openDlgRoto.ShowDialog() == DialogResult.OK)
     {
         maker.OnOpenRotoscope(openDlgRoto.FileName);
     }
     UpdateMenuBar();
 }