AdamsLair.WinForms.PropertyEditing.Templates.ComboBoxEditorTemplate.OnMouseDown(System.Windows.Forms.MouseEventArgs)

Here are the examples of the csharp api class AdamsLair.WinForms.PropertyEditing.Templates.ComboBoxEditorTemplate.OnMouseDown(System.Windows.Forms.MouseEventArgs) 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 OnMouseDown(MouseEventArgs e)
		{
			base.OnMouseDown(e);
			this.stringSelector.OnMouseDown(e);
		}

2. Example

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