CyrusBuilt.MonoPi.Components.Button.ButtonEventArgs.ButtonEventArgs C# (CSharp) Method

ButtonEventArgs() public method

Initializes a new instance of the CyrusBuilt.MonoPi.Components.Button.ButtonEventArgs class with the button that is changing state.
public ButtonEventArgs ( IButton button ) : System
button IButton /// The button that is changing state. ///
return System
		public ButtonEventArgs(IButton button)
			: base() {
			this._button = button;
		}