New to Telerik UI for BlazorStart a free 30-day trial

Definition

Constructors

C#
public WindowAction()

Methods

C#
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters:__builderRenderTreeBuilder

Overrides: ComponentBase.BuildRenderTree(RenderTreeBuilder)

C#
public void Dispose()

Implements: IDisposable.Dispose()

C#
protected override void OnInitialized()

Overrides: ComponentBase.OnInitialized()

Properties

Defines whether the action should be hidden

C#
[Parameter]
public bool Hidden { get; set; }

Implements: IWindowAction.Hidden

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: IWindowAction.Icon

Defines the name of the Action. Predefined Action Names are: Close, Minimize, Maximize

C#
[Parameter]
public string Name { get; set; }

Implements: IWindowAction.Name

Defines a click handler of the Action

C#
[Parameter]
public EventCallback<MouseEventArgs> OnClick { get; set; }

Implements: IWindowAction.OnClick

Defines the title of the Action.

C#
[Parameter]
public string Title { get; set; }

Implements: IWindowAction.Title