Lettuce.Debugger.SetUIWarning C# (CSharp) Method

SetUIWarning() public method

public SetUIWarning ( string text ) : void
text string
return void
        void SetUIWarning(string text)
        {
            if (InvokeRequired)
                Invoke(new Action(() => SetUIWarning(text)));
            else
            {
                pictureBox1.Visible = true;
                warningLabel.Text = text;
                warningLabel.Visible = true;
                ResetLayout();
            }
        }
Debugger