aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Engine/Template
diff options
context:
space:
mode:
authorAShifter <[email protected]>2017-03-26 15:16:44 -0600
committerAShifter <[email protected]>2017-03-26 15:16:44 -0600
commit3d5745cbfcf6019dc9f864b59dd05d60bea770b3 (patch)
treef0c24d96a6b49fa5b5436377cac6a2617dd13c9f /TimeHACK.Engine/Template
parentf16f3a8a3df33f46c4ec6c864447cced97c0f034 (diff)
downloadhistacom2-3d5745cbfcf6019dc9f864b59dd05d60bea770b3.tar.gz
histacom2-3d5745cbfcf6019dc9f864b59dd05d60bea770b3.tar.bz2
histacom2-3d5745cbfcf6019dc9f864b59dd05d60bea770b3.zip
Added TimeHACK.Engine...
i had an anal screw, honeyfry
Diffstat (limited to 'TimeHACK.Engine/Template')
-rw-r--r--TimeHACK.Engine/Template/WinClassic.Designer.cs6
-rw-r--r--TimeHACK.Engine/Template/WinClassic.cs6
2 files changed, 6 insertions, 6 deletions
diff --git a/TimeHACK.Engine/Template/WinClassic.Designer.cs b/TimeHACK.Engine/Template/WinClassic.Designer.cs
index 6fc4a78..1240979 100644
--- a/TimeHACK.Engine/Template/WinClassic.Designer.cs
+++ b/TimeHACK.Engine/Template/WinClassic.Designer.cs
@@ -93,7 +93,7 @@
this.programtopbar.Name = "programtopbar";
this.programtopbar.Size = new System.Drawing.Size(292, 18);
this.programtopbar.TabIndex = 0;
- this.programtopbar.MouseDown += new System.Windows.Forms.MouseEventHandler(this.programtopbar_drag);
+ this.programtopbar.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Programtopbar_drag);
//
// maximizebutton
//
@@ -104,7 +104,7 @@
this.maximizebutton.Size = new System.Drawing.Size(16, 14);
this.maximizebutton.TabIndex = 6;
this.maximizebutton.TabStop = false;
- this.maximizebutton.Click += new System.EventHandler(this.maximizebutton_Click);
+ this.maximizebutton.Click += new System.EventHandler(this.Maximizebutton_Click);
//
// minimizebutton
//
@@ -136,7 +136,7 @@
this.closebutton.Size = new System.Drawing.Size(16, 14);
this.closebutton.TabIndex = 4;
this.closebutton.TabStop = false;
- this.closebutton.Click += new System.EventHandler(this.closebutton_Click);
+ this.closebutton.Click += new System.EventHandler(this.Closebutton_Click);
//
// toprightcorner
//
diff --git a/TimeHACK.Engine/Template/WinClassic.cs b/TimeHACK.Engine/Template/WinClassic.cs
index 1bd11e3..820bbb8 100644
--- a/TimeHACK.Engine/Template/WinClassic.cs
+++ b/TimeHACK.Engine/Template/WinClassic.cs
@@ -20,7 +20,7 @@ namespace TimeHACK.Engine.Template
[DllImportAttribute("user32.dll")]
public static extern bool ReleaseCapture();
- private void programtopbar_drag(object sender, MouseEventArgs e)
+ private void Programtopbar_drag(object sender, MouseEventArgs e)
{
if (e.Button == MouseButtons.Left)
{
@@ -29,14 +29,14 @@ namespace TimeHACK.Engine.Template
}
}
- private void closebutton_Click(object sender, EventArgs e)
+ private void Closebutton_Click(object sender, EventArgs e)
{
this.Close();
}
public Boolean max = false;
- private void maximizebutton_Click(object sender, EventArgs e)
+ private void Maximizebutton_Click(object sender, EventArgs e)
{
if (max == false)
{