ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/RomCheater/Main.cs
Revision: 17
Committed: Wed May 9 08:02:18 2012 UTC (11 years, 6 months ago) by william
File size: 1049 byte(s)
Log Message:
implement basic logging support

File Contents

# Content
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 }