ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/RomCheater/Main.cs
Revision: 20
Committed: Wed May 9 08:41:36 2012 UTC (11 years, 7 months ago) by william
File size: 1095 byte(s)
Log Message:
+ add support to log startup 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 }
31
32 private void mnuItemExit_Click(object sender, EventArgs e)
33 {
34 this.Close();
35 }
36
37 private void btnCopyLogToClipboard_Click(object sender, EventArgs e)
38 {
39
40 }
41
42 private void Main_Load(object sender, EventArgs e)
43 {
44 AppConsts.LogApplicationStatup();
45 }
46 }
47 }