This commit is contained in:
EugeneTes
2026-03-19 09:03:37 +01:00
parent 14fe822962
commit 83597b8763
55 changed files with 2136 additions and 32 deletions

View File

@@ -17,7 +17,7 @@ public class WindowsSettingsService: ISettingsService
}
public void ShowSettingsDialog()
public Task ShowSettingsDialogAsync()
{
Thread th = new Thread(() =>
{
@@ -30,5 +30,6 @@ public class WindowsSettingsService: ISettingsService
});
th.SetApartmentState(ApartmentState.STA);
th.Start();
return Task.CompletedTask;
}
}