using BPA.UIControl.Commons; using System; namespace BPA.UIControl { /// /// 对话框适配接口 /// public interface IDialogDataContext { /// /// 标题 /// string Title { get; } /// /// 请求关闭委托 /// event Action RequestClose; /// /// 当对话框打开完成方法 /// /// 参数 void OnDialogOpened(object parameters); } }