상속: System.EventArgs
예제 #1
0
파일: KeyPad.cs 프로젝트: Manoharsai/IoT-2
 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);
			}
		}