FECipherVit.FECipherVit.buttonMsgSend_Click C# (CSharp) Method

buttonMsgSend_Click() private method

private buttonMsgSend_Click ( object sender, EventArgs e ) : void
sender object
e EventArgs
return void
        private void buttonMsgSend_Click(object sender, EventArgs e)
        {
            if (textBoxMsgSend.Text != "")
            {
                if (!WatchingMode)
                {
                    msgProcessor.Send("Text", ">>  " + textBoxMsgSend.Text);
                }
                else
                {
                    msgProcessor.Send("WatcherText", ">>  " + textBoxMsgSend.Text);
                }
                textBoxMsgSend.Text = "";
            }
        }
FECipherVit