ScreenToGif.Modern.con_addCaption_Click C# (CSharp) Method

con_addCaption_Click() private method

private con_addCaption_Click ( object sender, EventArgs e ) : void
sender object
e EventArgs
return void
        private void con_addCaption_Click(object sender, EventArgs e)
        {
            if (!con_tbCaption.Text.Equals(String.Empty))
            {
                this.Cursor = Cursors.WaitCursor;

                ApplyActionToFrames("Caption", ActionEnum.Caption, 0, con_tbCaption.Text);

                this.Cursor = Cursors.Default;
            }
        }
Modern