Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.PluginInfrastructure/Advanced/InstallationManagerControl.cs @ 3006

Last change on this file since 3006 was 3006, checked in by gkronber, 14 years ago

Implemented deployment service on servdev.heuristiclab.com and changed all service references and configurations to point to the service address. Improved GUI of installation manager. Implemented user name authentication and authorization for the deployment service. #860 (Deployment server for plugin installation from web locations)

File size: 639 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.ComponentModel;
4using System.Drawing;
5using System.Data;
6using System.Linq;
7using System.Text;
8using System.Windows.Forms;
9
10namespace HeuristicLab.PluginInfrastructure.Advanced {
11  internal partial class InstallationManagerControl : UserControl {
12    public InstallationManagerControl() {
13      InitializeComponent();
14    }
15
16    internal virtual void ShowInForm() {
17      Form form = new Form();
18      form.Size = this.Size;
19      form.Text = this.Name;
20      this.Dock = DockStyle.Fill;
21      form.Controls.Add(this);
22      form.Show();
23    }
24  }
25}
Note: See TracBrowser for help on using the repository browser.