コード例 #1
0
        public void InstallPlugin(string filepath)
        {
            try
            {
                string ErrorText = string.Empty;

                InstallUserControl pi = new InstallUserControl(filepath);
                pi.ShowDialog();

                if (pi.install)
                {
                    if (!InstallPlugin(filepath, ref ErrorText))
                    {
                        MessageBox.Show("Package was not successfully installed.");
                    }

                    else if (!string.IsNullOrEmpty(ErrorText))
                    {
                        MessageBox.Show("Package installed.");

                    }

                    else
                    {
                        MessageBox.Show("Package installed.");

                    }
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show("Error installing user control: " + ex.Message);
            }
        }
コード例 #2
0
        public void InstallPlugin(string filepath)
        {
            try
            {
                string ErrorText = string.Empty;

                InstallUserControl pi = new InstallUserControl(filepath);
                pi.ShowDialog();

                if (pi.install)
                {
                    if (!InstallPlugin(filepath, ref ErrorText))
                    {
                        MessageBox.Show("Package was not successfully installed.");
                    }
                    else if (!string.IsNullOrEmpty(ErrorText))
                    {
                        MessageBox.Show("Package installed.");
                    }
                    else
                    {
                        MessageBox.Show("Package installed.");
                    }
                }
            }
            catch (Exception ex)
            { MessageBox.Show("Error installing user control: " + ex.Message); }
        }