Coin.CtlRecipients.OnSendMoney C# (CSharp) Method

OnSendMoney() public method

public OnSendMoney ( object sender, RoutedEventArgs e ) : void
sender object
e System.Windows.RoutedEventArgs
return void
        void OnSendMoney(object sender, RoutedEventArgs e)
        {
            Address a = GetRecipientSelectedAddress();
            if (SendToRecipient != null)
                SendToRecipient(this, Wallet, a.Value, null, a.Comment);
        }