MonoDevelop.Components.Commands.CommandManager.NotifyIncompleteKeyPressed C# (CSharp) Method

NotifyIncompleteKeyPressed() private method

private NotifyIncompleteKeyPressed ( Gdk ev ) : void
ev Gdk
return void
		void NotifyIncompleteKeyPressed (Gdk.EventKey ev)
		{
			if (IncompleteKeyPressed != null)
				IncompleteKeyPressed (this, new KeyPressArgs () { Key = ev.Key, KeyValue = ev.KeyValue, Modifiers = ev.State });
		}