Ejemplo n.º 1
0
 private void btnSelect_Click(object sender, EventArgs e)
 {
     if (bdgOutput.Current != null)
     {
         OutputForm of = new OutputForm((output)bdgOutput.Current);
         desk.AddTab(of, "Editar Saida", true);
     }
 }
Ejemplo n.º 2
0
 private void btnNewOutput_ItemClick(object sender, ItemClickEventArgs e)
 {
     OutputForm of = new OutputForm(null);
     AddTab(of, "Nova Saida", false);
 }