Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 3015 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: 654 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.PluginInfrastructure;
10
11namespace HeuristicLab.DeploymentService.AdminClient {
12  public partial class LicenseView : HeuristicLab.MainForm.WindowsForms.View {
13
14    public LicenseView() {
15      InitializeComponent();
16      Caption = "License";
17    }
18
19    public LicenseView(IPluginDescription plugin) {
20      InitializeComponent();
21      Caption = "License of: " + plugin;
22      textBox.Text = plugin.LicenseText;
23    }
24  }
25}
Note: See TracBrowser for help on using the repository browser.