Ejemplo n.º 1
0
 private void tsmiExportSelected_Click(object sender, EventArgs e)
 {
     using (DialogAttackExport dialog = new DialogAttackExport(SelectedOrders))
     {
         dialog.ShowDialog();
     }
 }
Ejemplo n.º 2
0
 private void btnExportAll_Click(object sender, EventArgs e)
 {
     using (DialogAttackExport dialog = new DialogAttackExport(m_AttackHandler.CurrentAttackPlan.AttackOrders))
     {
         dialog.ShowDialog();
     }
 }