source:
trunk/sources/HeuristicLab.Hive.Server/MainForm.cs
@
771
Last change on this file since 771 was 741, checked in by svonolfe, 16 years ago | |
---|---|
File size: 462 bytes |
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 address) { |
14 | InitializeComponent(); |
15 | if(address != null) |
16 | this.lblAddress.Text = address.ToString(); |
17 | } |
18 | } |
19 | } |
Note: See TracBrowser
for help on using the repository browser.