ScreenToGif.Modern.con_addText_Click C# (CSharp) Method

con_addText_Click() private method

private con_addText_Click ( object sender, EventArgs e ) : void
sender object
e EventArgs
return void
        private void con_addText_Click(object sender, EventArgs e)
        {
            if (pictureBitmap.Cursor == Cursors.Cross)
            {
                pictureBitmap.Cursor = Cursors.Default;
                return;
            }

            StopPreview(true);
            ResetUndoProp();

            var tip = new ToolTip();
            tip.Show(Resources.Tooltip_SelectPoint,
                this, PointToClient(MousePosition), 5 * 1000);

            //Displays a Cross cursor, to indicate a point selection
            pictureBitmap.Cursor = Cursors.Cross;
        }
Modern