Button Constructor (EventHandlerEventArgs) |
Initializes a new instance of the
Button class with the specified
click handler.
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public Button(
EventHandler<EventArgs> click
)
Public Sub New (
click As EventHandler(Of EventArgs)
)
new :
click : EventHandler<EventArgs> -> Button
Parameters
- click
- Type: SystemEventHandlerEventArgs
Delegate to handle when the button is clicked.
Remarks
This is a convenience constructor to set up the click event.
See Also