You've already forked taptap2024_GJ_chidouren
init
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
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();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user