Simple Tooltips
<MudTooltip Text="Delete"> <MudIconButton Icon="@Icons.Material.Filled.Delete" /> </MudTooltip> <MudTooltip Text="Add"> <MudFab StartIcon="@Icons.Material.Filled.Add" Color="Color.Secondary" /> </MudTooltip>
Arrow Tooltips
The tooltip can display arrows pointing to its activator, set the Arrow property to true to show them.
<MudTooltip Text="Arrow Left" Arrow="true" Placement="Placement.Left"> <MudButton>Arrow Left</MudButton> </MudTooltip> <MudTooltip Text="Arrow Top" Arrow="true" Placement="Placement.Top"> <MudButton>Arrow Top</MudButton> </MudTooltip> <MudTooltip Text="Arrow Bottom" Arrow="true" Placement="Placement.Bottom"> <MudButton>Arrow Bottom</MudButton> </MudTooltip> <MudTooltip Text="Arrow Right" Arrow="true" Placement="Placement.Right"> <MudButton>Arrow Right</MudButton> </MudTooltip>