Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 1120 was 1120, checked in by svonolfe, 15 years ago

Added execution engine facade (#465)

File size: 678 bytes
RevLine 
[713]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{
[741]12    public partial class MainForm : Form {
[1120]13        public MainForm(Uri address1, Uri address2, Uri address3) {
[741]14          InitializeComponent();
[800]15          if(address1 != null)
16            this.lblAddress1.Text = address1.ToString();
17          if (address2 != null)
18            this.lblAddress2.Text = address2.ToString();
[1120]19          if (address3 != null)
20            this.lblAddress3.Text = address3.ToString();
[713]21        }
[1120]22
[713]23    }
24}
Note: See TracBrowser for help on using the repository browser.