Inheritance: System.EventArgs
示例#1
0
 protected virtual void OnKeyEvent(KeyPadEventArgs e)
 {
     if (this.KeyEvent != null)
     {
         this.KeyEvent(this, e);
     }
 }
示例#2
0
		private void Keypad_KeyEvent(object sender, KeyPadEventArgs e)
		{
			System.Diagnostics.Debug.WriteLine(string.Format("Key = {0}, Event Type = {1}", e.KeyValue, e.KeyDownEventType));
		}
示例#3
0
文件: KeyPad.cs 项目: h82258652/iot
		protected virtual void OnKeyEvent(KeyPadEventArgs e)
		{
			if (this.KeyEvent != null)
			{
				this.KeyEvent(this, e);
			}
		}