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