Class ButtonClickedEventArgs
The event data for ButtonClicked event.
Inheritance
Inherited Members
Namespace: Syncfusion.Windows.Forms.Tools
Assembly: Syncfusion.Tools.Windows.dll
Syntax
public class ButtonClickedEventArgs : EventArgs
Remarks
The ButtonClicked event is raised when any of the ButtonEditChildButton child controls of the ButtonEdit class are clicked.
One of the members of the event data is the actual ButtonEditChildButton that was clicked.
Constructors
ButtonClickedEventArgs()
Initializes a new instance of the ButtonClickedEventArgs class.
Declaration
public ButtonClickedEventArgs()
Remarks
Needs to set the ClickedButton property with the ButtonEditChildButton that was clicked.
ButtonClickedEventArgs(ButtonEditChildButton)
Initializes a new instance of the ButtonClickedEventArgs class.
Declaration
public ButtonClickedEventArgs(ButtonEditChildButton value)
Parameters
Type | Name | Description |
---|---|---|
ButtonEditChildButton | value | The button that was clicked. |
Remarks
This version of the constructor sets the ClickedButton property with the ButtonEditChildButton that was clicked.
Properties
ClickedButton
Gets or sets the clicked ButtonEditChildButton object.
Declaration
public ButtonEditChildButton ClickedButton { get; set; }
Property Value
Type |
---|
ButtonEditChildButton |
Remarks
The ButtonClicked event handler will be able to use this to get the ButtonEditChildButton that was clicked.