Accord.Controls.DataSeriesBox.Hold C# (CSharp) 메소드

Hold() 공개 메소드

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

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

            formThread.Join();
        }