Ejemplo n.º 1
0
 private void btnWithdrawAlt_Click(object sender, EventArgs e)
 {
     SimpleSwap tmp = new SimpleSwap(ExchangeType.withdraw, CurrentSite.Currency);
     tmp.Withdraw += Tmp_Withdraw;
     tmp.Show();
 }
Ejemplo n.º 2
0
 private void btnDepositAlt_Click(object sender, EventArgs e)
 {
     SimpleSwap tmp = new SimpleSwap(ExchangeType.deposit, CurrentSite.Currency, txtApiAddress.Text);
     tmp.Show();
 }