示例#1
0
        public BizTalkApplicationDeployment()
        {
            InitializeComponent();
            treeViewBizTalkApplications.DoubleBuffered(true);
            appCollection = explorerHelper.GetApplicationCollection();
            msiDeploy.ExecutionStarted        += new EventHandler(MsiDeployStarted_Eventhandler);
            msiDeploy.ExecutionComplete       += new EventHandler(MsiDeployComplete_Eventhandler);
            btHostInstances.ExecutionStarted  += new EventHandler(HostInstancesStarted_Eventhandler);
            btHostInstances.ExecutionComplete += new EventHandler(HostInstancesComplete_Eventhandler);

            btdfmsiDeploy.ExecutionStarted  += new EventHandler(BtdfMsiDeployStarted_Eventhandler);
            btdfmsiDeploy.ExecutionComplete += new EventHandler(BtdfMsiDeployComplete_Eventhandler);
        }
        private void LoadApplications()
        {
            appCollection = explorerHelper.GetApplicationCollection();
            List <string> appList = explorerHelper.GetApplicationList(appCollection);

            comboBoxAppList.Items.AddRange(RemoveSystemApplication(appList).ToArray());
        }