mirror of
https://github.com/yaobiao131/downkyicore.git
synced 2025-08-10 00:52:31 +00:00
11 lines
344 B
C#
11 lines
344 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
using Prism.Services.Dialogs;
|
|
|
|
namespace DownKyi.PrismExtension.Dialog;
|
|
|
|
public interface IDialogService : Prism.Services.Dialogs.IDialogService
|
|
{
|
|
public Task ShowDialogAsync(string name, IDialogParameters? parameters, Action<IDialogResult>? callback = null,
|
|
string? windowName = null);
|
|
} |