'Declaration
<C1CategoryAttribute("Action")> <C1DescriptionAttribute("C1TaskDialog.ButtonClick", "Occurs when a button or a command link is clicked in the task dialog.")> Public Event ButtonClick As TaskDialogButtonClickEventHandler
[C1Category("Action")] [C1Description("C1TaskDialog.ButtonClick", "Occurs when a button or a command link is clicked in the task dialog.")] public event TaskDialogButtonClickEventHandler ButtonClick
Event Data
The event handler receives an argument of type TaskDialogButtonClickEventArgs containing data related to this event. The following TaskDialogButtonClickEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Cancel | (Inherited from System.ComponentModel.CancelEventArgs) |
CustomButton | Gets the custom button if the DialogResult is equal to 'Custom'. |
DialogResult | Gets the proposed dialog result. |
See Also