Beispiel #1
0
 private void TransactionCB_SelectedIndexChanged(object sender, System.EventArgs e)
 {
     if (TransactionCB.Text == "Normal")
     {
         CurrentTransaction = PrinterTransactionControl.Normal;
     }
     else
     {
         CurrentTransaction = PrinterTransactionControl.Transaction;
     }
 }
 public override void TransactionPrint(PrinterStation station, PrinterTransactionControl control)
 {
     VerifyResult(_cco.TransactionPrint((int)station, (int)control));
 }
 private void TransactionCB_SelectedIndexChanged(object sender, System.EventArgs e)
 {
     if (TransactionCB.Text == "Normal")
         CurrentTransaction = PrinterTransactionControl.Normal;
     else
         CurrentTransaction = PrinterTransactionControl.Transaction;
 }