IShowDialog.cs 265 B

123456789101112131415
  1. using Prism.Services.Dialogs;
  2. namespace SKMC.Api.Client.UI
  3. {
  4. /// <summary>
  5. /// 可外部关闭的Dialog接口
  6. /// </summary>
  7. public interface IShowDialog : IDialogAware
  8. {
  9. string Id { get; set; }
  10. void CloseDialog();
  11. }
  12. }