Exemplo n.º 1
0
        internal void Start()
        {
            if (ProcessCallback == null)
            {
                throw new InvalidOperationException("You can't load the form without a ProcessCallback");
            }

            if (AbortCallback == null)
            {
                Abort.Visible = false;
            }

            StartPosition = FormStartPosition.CenterParent;

            TaskbarProgress.SetIndeterminate();

            Reset();
            ProcessCallback(this);
        }