コード例 #1
0
        public void SetupBackward()
        {
            PropertySet.RemoveProperty("zipfile");
            m_form.AddTitleUC("导入安装包");
            ImportSetupFileCommand command = new ImportSetupFileCommand(m_form);

            m_form.AddBodyUC(command);
            m_form.SetBeforeButtonEnabled(false);
            m_form.CurrentCommand = command;
        }
コード例 #2
0
        private void SetupForm_Load(object sender, System.EventArgs e)
        {
            btnBefore.Enabled = false;
            btnNext.Enabled   = true;
            btnCancle.Enabled = true;

            AddTitleUC("导入安装包");
            ImportSetupFileCommand command = new ImportSetupFileCommand(this);

            AddBodyUC(command);
            this.CurrentCommand = command;
        }