Table of Contents

Class MudToolBar

Namespace
MudBlazor
Assembly
MudBlazor.dll

A set of action buttons.

public class MudToolBar : MudComponentBase, IComponent, IHandleEvent, IHandleAfterRender, IMudStateHasChanged
Inheritance
MudToolBar
Implements
Inherited Members
Extension Methods

Constructors

MudToolBar()

public MudToolBar()

Properties

ChildContent

The content of the toolbar.

[Parameter]
[Category("Behavior")]
public RenderFragment? ChildContent { get; set; }

Property Value

RenderFragment

Remarks

Typically a set of MudIconButton components.

Classname

protected string Classname { get; }

Property Value

string

Dense

Uses compact vertical padding.

[Parameter]
[Category("Appearance")]
public bool Dense { get; set; }

Property Value

bool

Remarks

Defaults to false.

Gutters

Adds left and right padding.

[Parameter]
[Category("Appearance")]
public bool Gutters { get; set; }

Property Value

bool

Remarks

Defaults to true.

WrapContent

Allows the toolbar's content to wrap.

[Parameter]
[Category("Behavior")]
public bool WrapContent { get; set; }

Property Value

bool

Remarks

Defaults to false.

Methods

BuildRenderTree(RenderTreeBuilder)

protected override void BuildRenderTree(RenderTreeBuilder __builder)

Parameters

__builder RenderTreeBuilder

See Also