System.Windows.Forms.Form.ProcessKeyPreview C# (CSharp) Method

ProcessKeyPreview() protected method

protected ProcessKeyPreview ( Message &m ) : bool
m Message
return bool
		protected override bool ProcessKeyPreview(ref Message m) {
			if (key_preview) {
				if (ProcessKeyEventArgs(ref m)) {
					return true;
				}
			}
			return base.ProcessKeyPreview (ref m);
		}
Form