Class RadzenFabMenuItem
RadzenFabMenuItem component.
Inherited Members
Namespace: Radzen.Blazor
Assembly: Radzen.Blazor.dll
Syntax
public class RadzenFabMenuItem : RadzenButton, IComponent, IHandleEvent, IHandleAfterRender, IDisposable
Examples
<RadzenFabMenuItem Text="Folder" Icon="folder" Click=@(args => Console.WriteLine("Item clicked")) />
Constructors
RadzenFabMenuItem()
RadzenFabMenuItem component.
Declaration
public RadzenFabMenuItem()
Examples
<RadzenFabMenuItem Text="Folder" Icon="folder" Click=@(args => Console.WriteLine("Item clicked")) />
Properties
Shade
Gets or sets the color intensity shade for the button. Works in combination with ButtonStyle to adjust the color darkness/lightness.
Declaration
[Parameter]
public override Shade Shade { get; set; }
Property Value
| Type | Description |
|---|---|
| Shade | The color shade. Default is Default. |
Overrides
Size
Gets or sets the button size. Controls the padding, font size, and overall dimensions of the button.
Declaration
[Parameter]
public override ButtonSize Size { get; set; }
Property Value
| Type | Description |
|---|---|
| ButtonSize | The button size. Default is Medium. |
Overrides
Variant
Gets or sets the design variant that controls the button's visual appearance. Options include Filled (solid background), Flat (subtle background), Outlined (border only), and Text (minimal styling).
Declaration
[Parameter]
public override Variant Variant { get; set; }
Property Value
| Type | Description |
|---|---|
| Variant | The button variant. Default is Filled. |