You've already forked taptap2024_GJ_chidouren
31 lines
712 B
C#
31 lines
712 B
C#
namespace IcecreamView {
|
|
/// <summary>
|
|
/// icecream页面接口
|
|
/// </summary>
|
|
public interface IC_IView
|
|
{
|
|
/// <summary>
|
|
/// 页面被初始化时触发
|
|
/// </summary>
|
|
void OnInitView();
|
|
/// <summary>
|
|
/// 页面被打开时触发
|
|
/// </summary>
|
|
void OnOpenView(params IC_ViewData[] values);
|
|
/// <summary>
|
|
/// 页面被关闭时触发
|
|
/// </summary>
|
|
void OnCloseView();
|
|
/// <summary>
|
|
/// 页面被销毁时触发
|
|
/// </summary>
|
|
void OnDestoryView();
|
|
/// <summary>
|
|
/// 关闭当前页面
|
|
/// </summary>
|
|
void CloseView();
|
|
}
|
|
|
|
}
|
|
|