Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Server/MainForm.cs @ 855

Last change on this file since 855 was 800, checked in by msteinbi, 16 years ago

Added additional WCF endpoint for the server management console - fixed #381

File size: 571 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.ComponentModel;
4using System.Data;
5using System.Drawing;
6using System.Linq;
7using System.Text;
8using System.Windows.Forms;
9
10namespace HeuristicLab.Hive.Server
11{
12    public partial class MainForm : Form {
13        public MainForm(Uri address1, Uri address2) {
14          InitializeComponent();
15          if(address1 != null)
16            this.lblAddress1.Text = address1.ToString();
17          if (address2 != null)
18            this.lblAddress2.Text = address2.ToString();
19        }
20    }
21}
Note: See TracBrowser for help on using the repository browser.