forked from thedeemon/gep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
EventLogForm.cs
52 lines (45 loc) · 1.21 KB
/
EventLogForm.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace gep
{
partial class EventLogForm : Form
{
Graph graph;
Timer timer = new Timer();
public EventLogForm(Graph _graph)
{
graph = _graph;
InitializeComponent();
Text = "Event log for " + graph.Form.Text;
timer.Interval = 1000;
timer.Tick += OnTimer;
timer.Start();
}
private void OnTimer(object sender, EventArgs e)
{
Refresh(null, null);
}
private void Refresh(object sender, EventArgs e)
{
textBox.Text = graph.GetEventLog();
}
private void OnClear(object sender, EventArgs e)
{
graph.ClearEventLog();
textBox.Clear();
}
private void OnLoad(object sender, EventArgs e)
{
Refresh(null, null);
}
private void OnClosing(object sender, FormClosingEventArgs e)
{
graph.Form.eventlogform = null;
}
}
}