Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DeploymentServer Prototype/HeuristicLab.Services/HeuristicLab.DeploymentService.AdminClient/LicenseView.cs @ 2816

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

Worked on plugin deployment GUI.
Added contact info and license text to DB schema.
#860

File size: 713 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;
9using HeuristicLab.MainForm;
10using HeuristicLab.PluginInfrastructure;
11
12namespace HeuristicLab.DeploymentService.AdminClient {
13  public partial class LicenseView : HeuristicLab.MainForm.WindowsForms.View {
14
15    public LicenseView() {
16      InitializeComponent();
17      Caption = "License";
18    }
19
20    public LicenseView(string name, string version, string licenseText) {
21      InitializeComponent();
22      Caption = "License of: " + name + " " + version;
23      textBox.Text = licenseText;
24    }
25  }
26}
Note: See TracBrowser for help on using the repository browser.