Free cookie consent management tool by TermsFeed Policy Generator

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

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

Improved dialogs in plugin manager. #891 (Refactor GUI for plugin management)

File size: 645 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.ClientSize = 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.