RadzenButton 에서 아래와 같이 버튼에 ToolTip 을 표시하려면
title 속성을 사용하면됩니다.
<RadzenButton Text="Clear selected rows" title="Clear Selection" />
아래와 같이 아이콘으로 되어있는 경우 해당 버튼의 기능을 설명할 때 유용하게 사용됩니다.
Busy Indicator 는 버튼 클릭 시 사용자의 더블 클릭을 방지하고 진행 중 표시를 하려고 할 때 사용됩니다.
<RadzenButton Icon="play_arrow" title="play" IsBusy=@busy Click=@OnBusyClick />
@code {
bool busy;
async Task OnBusyClick()
{
busy = true;
// Use await and Task.Delay to yield execution to Blazor and refresh the UI
await Task.Delay(2000);
// Set the busy flag to false after the long task is done
busy = false;
}
}
결과
(기본)
(진행중)
C# LINQ Zip 을 이용해 3개 List 번갈아 섞기 (0) | 2024.04.03 |
---|---|
C# 두 List 를 번갈아 섞기 - LINQ ZIP (0) | 2024.04.02 |
C# Balzor Page 에서 NavMenu 로 데이터 전달하기 (0) | 2024.03.23 |
C# Dynamic Linq 처리하기 (0) | 2024.03.22 |
C# DataSet ReadXML 오류 '경로에 잘못된 문자가 있습니다.' (0) | 2024.03.13 |