Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DeploymentServer Prototype/HeuristicLab.Services/HeuristicLab.DeploymentService.AdminClient/MainForm.cs @ 2802

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

Worked on administration front-end for deployment service. #860 (Deployment server for plugin installation from web locations)

File size: 424 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using HeuristicLab.MainForm.WindowsForms;
6
7namespace HeuristicLab.DeploymentService.AdminClient {
8  class MainForm : DockingMainForm {
9    public MainForm(Type type) : base(type) { }
10
11    protected override void OnInitialized(EventArgs e) {
12      base.OnInitialized(e);
13      (new PluginListView()).Show();
14    }
15  }
16}
Note: See TracBrowser for help on using the repository browser.