diff options
| author | lempamo <[email protected]> | 2017-08-03 09:44:42 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-08-03 09:44:42 -0500 |
| commit | 970dabaa90a39623c7a8271239861a09af7b2b54 (patch) | |
| tree | be800478122fb3909c40699b1e879d333afdb536 /TimeHACK.Main/OS/Win95/Win95Apps/MineSweeper/WinClassicMinesweeper.Designer.cs | |
| parent | a3b48880bf4136cb8033305fde052727e24ab8b1 (diff) | |
| parent | 3e53975325a4f398150207c9362b8d63ef927f7c (diff) | |
| download | histacom2-970dabaa90a39623c7a8271239861a09af7b2b54.tar.gz histacom2-970dabaa90a39623c7a8271239861a09af7b2b54.tar.bz2 histacom2-970dabaa90a39623c7a8271239861a09af7b2b54.zip | |
Merge pull request #146 from jtsshieh/master
Minesweeper Scoring System
Diffstat (limited to 'TimeHACK.Main/OS/Win95/Win95Apps/MineSweeper/WinClassicMinesweeper.Designer.cs')
| -rw-r--r-- | TimeHACK.Main/OS/Win95/Win95Apps/MineSweeper/WinClassicMinesweeper.Designer.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/MineSweeper/WinClassicMinesweeper.Designer.cs b/TimeHACK.Main/OS/Win95/Win95Apps/MineSweeper/WinClassicMinesweeper.Designer.cs index e1e0d32..7337c83 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/MineSweeper/WinClassicMinesweeper.Designer.cs +++ b/TimeHACK.Main/OS/Win95/Win95Apps/MineSweeper/WinClassicMinesweeper.Designer.cs @@ -28,6 +28,7 @@ /// </summary> private void InitializeComponent() { + this.components = new System.ComponentModel.Container(); this.labelBombs = new System.Windows.Forms.Label(); this.labelTime = new System.Windows.Forms.Label(); this.panel1 = new System.Windows.Forms.Panel(); @@ -51,6 +52,7 @@ this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator(); this.aboutMinesweeperToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.button1 = new System.Windows.Forms.Button(); + this.timer1 = new System.Windows.Forms.Timer(this.components); this.menuStrip1.SuspendLayout(); this.SuspendLayout(); // @@ -209,6 +211,7 @@ this.bestTimesToolStripMenuItem.Text = "Best Times"; this.bestTimesToolStripMenuItem.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; this.bestTimesToolStripMenuItem.TextImageRelation = System.Windows.Forms.TextImageRelation.TextBeforeImage; + this.bestTimesToolStripMenuItem.Click += new System.EventHandler(this.bestTimesToolStripMenuItem_Click); // // toolStripSeparator4 // @@ -223,6 +226,7 @@ this.exitToolStripMenuItem.Text = "Exit"; this.exitToolStripMenuItem.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; this.exitToolStripMenuItem.TextImageRelation = System.Windows.Forms.TextImageRelation.TextBeforeImage; + this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click); // // helpToolStripMenuItem // @@ -264,6 +268,11 @@ this.button1.UseVisualStyleBackColor = true; this.button1.Click += new System.EventHandler(this.button1_Click); // + // timer1 + // + this.timer1.Interval = 1; + this.timer1.Tick += new System.EventHandler(this.timer1_Tick); + // // WinClassicMinesweeper // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); @@ -308,5 +317,6 @@ private System.Windows.Forms.ToolStripSeparator toolStripSeparator5; private System.Windows.Forms.ToolStripMenuItem aboutMinesweeperToolStripMenuItem; private System.Windows.Forms.Button button1; + private System.Windows.Forms.Timer timer1; } } |
