mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-07-08 18:16:08 +00:00
10 lines
335 B
Plaintext
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);
|
|
}
|