AddonHelper.Addon.cProgressBar.Done C# (CSharp) Метод

Done() публичный Метод

Close the progressbar window
public Done ( ) : void
Результат void
            public void Done()
            {
                Addon.SetShortcuts(true);

                if (!Canceled && this.Form != null) {
                    this.done = true;
                    try {
                        this.Form.Invoke(new Action(delegate {
                            this.Form.Close();
                        }));
                    } catch { }
                }
            }