Accord.Controls.DataSeriesBox.Hold C# (CSharp) Method

Hold() public method

Holds the execution until the window has been closed.
public Hold ( ) : void
return void
        public void Hold()
        {
            if (Thread.CurrentThread == formThread)
                return;

            this.SetTitle(this.Text + " [on hold]");

            formThread.Join();
        }