Last change
on this file since 3069 was
3069,
checked in by gkronber, 15 years ago
|
Improved dialogs in plugin manager. #891 (Refactor GUI for plugin management)
|
File size:
645 bytes
|
Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.ComponentModel;
|
---|
4 | using System.Drawing;
|
---|
5 | using System.Data;
|
---|
6 | using System.Linq;
|
---|
7 | using System.Text;
|
---|
8 | using System.Windows.Forms;
|
---|
9 |
|
---|
10 | namespace 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.