Files
radzen-blazor/RadzenBlazorDemos/Pages/TooltipString.razor
2023-02-17 11:02:40 +02:00

10 lines
335 B
Plaintext

@inject TooltipService tooltipService
<div class="rz-p-12 rz-text-align-center">
<RadzenButton Text="Show tooltip" MouseEnter="@(args => ShowTooltip(args) )" />
</div>
@code {
void ShowTooltip(ElementReference elementReference, TooltipOptions options = null) => tooltipService.Open(elementReference, "Hello!", options);
}