System.Windows.Forms.Control.OnChangeUICues C# (CSharp) Method

OnChangeUICues() private method

private OnChangeUICues ( System.Windows.Forms.UICuesEventArgs e ) : void
e System.Windows.Forms.UICuesEventArgs
return void
		protected virtual void OnChangeUICues(UICuesEventArgs e) {
			UICuesEventHandler eh = (UICuesEventHandler)(Events [ChangeUICuesEvent]);
			if (eh != null)
				eh (this, e);
		}
Control