Interface IWindowAction
The interface for an action button in the Window titlebar.
Namespace: Telerik.Blazor.Components.Window
Assembly: Telerik.Blazor.dll
Syntax
public interface IWindowAction
Properties
Hidden
Whether the action button is hidden.
Declaration
bool Hidden { get; set; }
Property Value
System.Boolean
|
Icon
The predefined Telerik icon that will be used.
Declaration
object Icon { get; set; }
Property Value
System.Object
|
Name
The name of the action. Predefined Action Names are: Close, Minimize, Maximize.
Declaration
string Name { get; set; }
Property Value
System.String
|
OnClick
The EventCallback that will be executed when the action is clicked.
Declaration
EventCallback<MouseEventArgs> OnClick { get; set; }
Property Value
Microsoft.AspNetCore.Components.EventCallback<Microsoft.AspNetCore.Components.Web.MouseEventArgs>
|
Title
The title of the action button.
Declaration
string Title { get; set; }
Property Value
System.String
|