Ejemplo n.º 1
0
        private void btnSetPatterns4_Click(object sender, EventArgs e)
        {
            PantoCells pcs = new PantoCells();

            pcs.PantographId = 3;
            pcs.ShowDialog();
        }
Ejemplo n.º 2
0
 private void btnSetPatterns1_Click(object sender, EventArgs e)
 {
     if (!Globals.Lite)
     {
         var pcs = new NewPantoCells();
         pcs.PantographId = 0;
         pcs.ShowDialog();
     }
     else
     {
         var pcs = new PantoCells();
         pcs.PantographId = 0;
         pcs.ShowDialog();
     }
 }