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 | using System.Diagnostics;
|
---|
10 |
|
---|
11 | namespace HeuristicLab.Hive.Client.Console {
|
---|
12 | public partial class EventLogEntryForm : Form {
|
---|
13 | public EventLogEntryForm(HiveEventEntry curEventEntry) {
|
---|
14 | InitializeComponent();
|
---|
15 | lbDate.Text = curEventEntry.EventDate;
|
---|
16 | lbId.Text = curEventEntry.ID;
|
---|
17 | txtMessage.Text = curEventEntry.Message;
|
---|
18 | }
|
---|
19 | }
|
---|
20 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.