SIL.FieldWorks.Common.Framework.DetailControls.AtomicRefTypeAheadSlice.AtomicRefTypeAheadView.OnKeyPress C# (CSharp) Méthode

OnKeyPress() protected méthode

Give type-ahead helper a chance to handle keypress.
protected OnKeyPress ( KeyPressEventArgs e ) : void
e System.Windows.Forms.KeyPressEventArgs
Résultat void
			protected override void OnKeyPress(KeyPressEventArgs e)
			{
				using (new HoldGraphics(this))
				{
					if (m_vc.TasVc.OnKeyPress(EditingHelper, e, ModifierKeys, m_graphicsManager.VwGraphics))
						return;
				}
				base.OnKeyPress(e);
			}