| 1234567891011121314151617181920 |
- using Prism.Services.Dialogs;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace SKMC.Api.Client.Views
- {
- /// <summary>
- /// 可外部关闭的Dialog接口
- /// </summary>
- public interface IShowDialog : IDialogAware
- {
- string Id { get; set; }
- void CloseDialog();
- }
- }
|