WinForms

Code Examples Upgrade Guide User Guide Demos Support Forums Download
  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class ButtonClickedEventArgs

    Show / Hide Table of Contents

    Class ButtonClickedEventArgs

    The event data for ButtonClicked event.

    Inheritance
    System.Object
    System.EventArgs
    ButtonClickedEventArgs
    Inherited Members
    System.EventArgs.Empty
    System.Object.ToString()
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    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 Description
    ButtonEditChildButton
    Remarks

    The ButtonClicked event handler will be able to use this to get the ButtonEditChildButton that was clicked.

    Back to top Generated by DocFX
    Copyright © 2001 - 2023 Syncfusion Inc. All Rights Reserved