AdamsLair.WinForms.PropertyEditing.Templates.ComboBoxEditorTemplate.OnKeyUp(System.Windows.Forms.KeyEventArgs)

Here are the examples of the csharp api class AdamsLair.WinForms.PropertyEditing.Templates.ComboBoxEditorTemplate.OnKeyUp(System.Windows.Forms.KeyEventArgs) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

2 Examples 7

1. Example

Project: winforms
Source File: EnumPropertyEditor.cs
protected internal override void OnKeyUp(KeyEventArgs e)
		{
			base.OnKeyUp(e);
			this.stringSelector.OnKeyUp(e);
		}

2. Example

Project: winforms
Source File: ObjectSelectorPropertyEditor.cs
protected internal override void OnKeyUp(KeyEventArgs e)
		{
			base.OnKeyUp(e);
			this.objSelector.OnKeyUp(e);
		}