IShowDialog.cs 384 B

1234567891011121314151617181920
  1. using Prism.Services.Dialogs;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace SKMC.Api.Client.Views
  8. {
  9. /// <summary>
  10. /// 可外部关闭的Dialog接口
  11. /// </summary>
  12. public interface IShowDialog : IDialogAware
  13. {
  14. string Id { get; set; }
  15. void CloseDialog();
  16. }
  17. }