TI83 Keypad - implement the 0 button, somehow it was missed

This commit is contained in:
andres.delikat 2012-02-21 03:45:25 +00:00
parent a92865a13d
commit 56febbf142
2 changed files with 312 additions and 306 deletions

View File

@ -1639,6 +1639,7 @@
this.ZERO.TabIndex = 114; this.ZERO.TabIndex = 114;
this.ZERO.Text = "0"; this.ZERO.Text = "0";
this.ZERO.UseVisualStyleBackColor = false; this.ZERO.UseVisualStyleBackColor = false;
this.ZERO.Click += new System.EventHandler(this.ZERO_Click);
// //
// ON // ON
// //
@ -1778,7 +1779,7 @@
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
this.ClientSize = new System.Drawing.Size(363, 554); this.ClientSize = new System.Drawing.Size(363, 547);
this.Controls.Add(this.label81); this.Controls.Add(this.label81);
this.Controls.Add(this.label80); this.Controls.Add(this.label80);
this.Controls.Add(this.label79); this.Controls.Add(this.label79);

View File

@ -374,5 +374,10 @@ namespace BizHawk.MultiClient
else else
StopToolTips(); StopToolTips();
} }
private void ZERO_Click(object sender, EventArgs e)
{
Global.ClickyVirtualPadController.Click("0");
}
} }
} }