Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.PluginInfrastructure/Advanced/LicenseView.cs @ 3068

Last change on this file since 3068 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: 641 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.PluginInfrastructure.Advanced {
12  internal partial class LicenseView : InstallationManagerControl {
13
14    public LicenseView() {
15      InitializeComponent();
16      Name = "License";
17    }
18
19    public LicenseView(IPluginDescription plugin) {
20      InitializeComponent();
21      Name = "License of: " + plugin;
22      richTextBox.Text = plugin.LicenseText;
23    }
24  }
25}
Note: See TracBrowser for help on using the repository browser.