CNCGUI.MainForm.StatusText C# (CSharp) Method

StatusText() private method

private StatusText ( string text ) : void
text string
return void
        private void StatusText(string text)
        {
            if (this.InvokeRequired)
            {
                this.BeginInvoke(new EventLogAppendHandler(StatusText), new object[] { text });
            }
            else
            {
                Status.Text = text;
            }
        }