[Blazor] Implement importing DAT folder.

This commit is contained in:
2025-07-27 03:30:51 +01:00
parent 122e397d0a
commit cf7186adbb
6 changed files with 143 additions and 2 deletions

View File

@@ -0,0 +1,13 @@
using Microsoft.AspNetCore.Components;
using Microsoft.FluentUI.AspNetCore.Components;
using RomRepoMgr.Blazor.Components.Dialogs;
namespace RomRepoMgr.Blazor.Components.Pages;
public partial class Home : ComponentBase
{
async Task ImportDatsAsync()
{
IDialogReference dialog = await DialogService.ShowDialogAsync<ImportDats>(new DialogParameters());
}
}