Class DropDownButtonEvents
Inheritance
System.Object
Syncfusion.Blazor.SfBaseComponent
DropDownButtonEvents
Namespace: Syncfusion.Blazor.SplitButtons
Assembly: Syncfusion.Blazor.dll
Syntax
public class DropDownButtonEvents : SfBaseComponent
Constructors
DropDownButtonEvents()
Declaration
public DropDownButtonEvents()
Properties
Closed
Triggers while closing the DropDownButton popup.
Declaration
public EventCallback<OpenCloseMenuEventArgs> Closed { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<OpenCloseMenuEventArgs> |
Created
Triggers once the component rendering is completed.
Declaration
public EventCallback<object> Created { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<System.Object> |
ItemSelected
Triggers while selecting action item in DropDownButton popup.
Declaration
public EventCallback<MenuEventArgs> ItemSelected { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<MenuEventArgs> |
OnClose
Triggers before closing the DropDownButton popup.
Declaration
public EventCallback<BeforeOpenCloseMenuEventArgs> OnClose { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<BeforeOpenCloseMenuEventArgs> |
OnItemRender
Triggers while rendering each Popup item of DropDownButton.
Declaration
public EventCallback<MenuEventArgs> OnItemRender { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<MenuEventArgs> |
OnOpen
Triggers before opening the DropDownButton popup.
Declaration
public EventCallback<BeforeOpenCloseMenuEventArgs> OnOpen { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<BeforeOpenCloseMenuEventArgs> |
Opened
Triggers while opening the DropDownButton popup.
Declaration
public EventCallback<OpenCloseMenuEventArgs> Opened { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<OpenCloseMenuEventArgs> |
Methods
OnInitializedAsync()
Declaration
protected override Task OnInitializedAsync()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task |
Overrides
Syncfusion.Blazor.SfBaseComponent.OnInitializedAsync()