Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive_Milestone2/sources/HeuristicLab.Hive.Client.Console/3.2/EventLogEntryForm.cs @ 4539

Last change on this file since 4539 was 1530, checked in by gkronber, 15 years ago

Moved source files of plugins Hive ... Visualization.Test into version-specific sub-folders. #576

File size: 559 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;
9using System.Diagnostics;
10
11namespace 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.