using Prism.Services.Dialogs;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CapMachine.Wpf.Services
{
///
/// 对话主机服务接口
///
public interface IHostDialogService : IDialogService
{
///
/// 显示Dialog
///
///
///
///
///
Task ShowDialogAsync(
string name,
IDialogParameters parameters = null,
string IdentifierName = "Root");
IDialogResult ShowWindow(string name);
void Close(string IdentifierName, DialogResult dialogResult);
}
}