public override void StartUp()
        {
            copyManager = new CopyManager(ShowError);
            //this.AddMenuItemTo("Copy Projects To...", ShowFileWindowForCopy, "Project");
            this.InitializeBottomTabHandler += AddControlToTab;

            this.ReactToLoadedGlux += HandleGluxLoad;
        }
        public override void StartUp()
        {
            copyManager = new CopyManager();
            //this.AddMenuItemTo("Copy Projects To...", ShowFileWindowForCopy, "Project");
            this.InitializeBottomTabHandler += AddControlToTab;

            this.ReactToLoadedGlux += HandleGluxLoad;
        }
示例#3
0
        public CopyToProjectControl(CopyManager copyManager)
        {
            InitializeComponent();
            UpdateCopyFromUiEnabledState();
            mCopyManager = copyManager;
            mCopyManager.AfterCopyFinished += HandleAfterCopyFinished;

            mTimer          = new System.Windows.Forms.Timer();
            mTimer.Enabled  = true;
            mTimer.Interval = 250;
            mTimer.Tick    += HandleTimerTick;

            PercentageCompleteLabel.Text = "";
        }
        public CopyToProjectControl(CopyManager copyManager)
        {
            InitializeComponent();
            UpdateCopyFromUiEnabledState();
            mCopyManager = copyManager;
            mCopyManager.AfterCopyFinished += HandleAfterCopyFinished;

            mTimer = new System.Windows.Forms.Timer();
            mTimer.Enabled = true;
            mTimer.Interval = 250;
            mTimer.Tick += HandleTimerTick;

            PercentageCompleteLabel.Text = "";

        }