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 RomCheater.Logging; |
10 |
|
11 |
namespace RomCheater |
12 |
{ |
13 |
public partial class Main : Form |
14 |
{ |
15 |
#region LogWriterSupport |
16 |
static LogWriter _LoggerInstance; |
17 |
static LogWriter LoggerInstance |
18 |
{ |
19 |
get { return _LoggerInstance; } |
20 |
set { _LoggerInstance = value; } |
21 |
} |
22 |
#endregion |
23 |
|
24 |
|
25 |
public Main() |
26 |
{ |
27 |
InitializeComponent(); |
28 |
LoggerInstance = logwriter; |
29 |
} |
30 |
|
31 |
private void mnuItemExit_Click(object sender, EventArgs e) |
32 |
{ |
33 |
this.Close(); |
34 |
} |
35 |
|
36 |
private void btnCopyLogToClipboard_Click(object sender, EventArgs e) |
37 |
{ |
38 |
|
39 |
} |
40 |
|
41 |
private void Main_Load(object sender, EventArgs e) |
42 |
{ |
43 |
logger.WriteLine("logged message"); |
44 |
} |
45 |
} |
46 |
} |