System.Windows.Automation.Peers.ButtonAutomationPeer.IInvokeProvider C# (CSharp) 메소드

IInvokeProvider() 공개 메소드

public IInvokeProvider ( ) : void
리턴 void
		void IInvokeProvider.Invoke ()
		{
			if (!IsEnabled ())
				throw new ElementNotEnabledException ();

			((Button) Owner).OnClickInternal ();
		}
	}