System.Windows.Forms.Control.OnImeModeChanged C# (CSharp) Méthode

OnImeModeChanged() protected méthode

protected OnImeModeChanged ( EventArgs e ) : void
e System.EventArgs
Résultat void
		protected virtual void OnImeModeChanged(EventArgs e) {
			EventHandler eh = (EventHandler)(Events [ImeModeChangedEvent]);
			if (eh != null)
				eh (this, e);
		}
		[EditorBrowsable(EditorBrowsableState.Advanced)]
Control