WindowAction
Class
Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Syntax:
C#
public class WindowAction : ComponentBase, IComponent, IHandleEvent, IHandleAfterRender, IDisposable, IWindowAction
Inheritance: objectComponentBaseWindowAction
Implements:
Inherited Members
Constructors
C#
public WindowAction()
Methods
C#
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Overrides:
C#
public void Dispose()
Implements:
C#
protected override void OnInitialized()
Overrides:
Properties
Defines whether the action should be hidden
C#
[Parameter]
public bool Hidden { get; set; }
Implements:
Specifies an icon rendered in the action. You can use either a predefined Telerik Icon or a custom one. Refer to Icons - Documentation for more information on how icons work.
C#
[Parameter]
public object Icon { get; set; }
Implements:
Defines the name of the Action. Predefined Action Names are: Close, Minimize, Maximize
C#
[Parameter]
public string Name { get; set; }
Implements:
Defines a click handler of the Action
C#
[Parameter]
public EventCallback<MouseEventArgs> OnClick { get; set; }
Implements: