* IFrame: 增加两个接口

This commit is contained in:
Sunny 2022-04-02 23:04:20 +08:00
parent a3a327b971
commit 7a9aad616c

View File

@ -20,6 +20,7 @@
******************************************************************************/ ******************************************************************************/
using System; using System;
using System.Collections.Generic;
namespace Sunny.UI namespace Sunny.UI
{ {
@ -58,5 +59,9 @@ namespace Sunny.UI
bool SetParamToPage(Guid toPageGuid, Guid fromPageGuid, params object[] objects); bool SetParamToPage(Guid toPageGuid, Guid fromPageGuid, params object[] objects);
void Init(); void Init();
void Final(); void Final();
T GetPage<T>() where T : UIPage;
List<T> GetPages<T>() where T : UIPage;
} }
} }