Accord.Controls.DataGridBox.Hold C# (CSharp) Méthode

Hold() public méthode

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

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

            formThread.Join();
        }