ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/RomCheater/Main.cs
Revision: 23
Committed: Wed May 9 08:51:38 2012 UTC (11 years, 6 months ago) by william
File size: 1146 byte(s)
Log Message:

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 private const string t = "RomCheater";
16 #region LogWriterSupport
17 static LogWriter _LoggerInstance;
18 static LogWriter LoggerInstance
19 {
20 get { return _LoggerInstance; }
21 set { _LoggerInstance = value; }
22 }
23 #endregion
24
25
26 public Main()
27 {
28 InitializeComponent();
29 LoggerInstance = logwriter;
30 LoggerInstance.CreateNewLog(false);
31 }
32
33 private void mnuItemExit_Click(object sender, EventArgs e)
34 {
35 this.Close();
36 }
37
38 private void btnCopyLogToClipboard_Click(object sender, EventArgs e)
39 {
40
41 }
42
43 private void Main_Load(object sender, EventArgs e)
44 {
45 //AppConsts.LogApplicationStatup();
46 }
47 }
48 }