* UIPage: 修复OnLoad在加载时重复加载两次的问题

This commit is contained in:
Sunny 2021-08-24 13:44:32 +08:00
parent f8d48b8c87
commit 37aacb0c13
7 changed files with 10 additions and 2 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -21,6 +21,7 @@
* 2021-06-20: V3.0.4 UITitlePage
* 2021-07-18: V3.0.5 OnLoad在加载时重复加载两次的问题Final函数退
* 2021-08-17: V3.0.6 TitleFont属性
* 2021-08-24: V3.0.3 OnLoad在加载时重复加载两次的问题
******************************************************************************/
using System;
@ -256,10 +257,17 @@ namespace Sunny.UI
Init();
}
private bool IsShown;
protected override void OnShown(EventArgs e)
{
base.OnShown(e);
IsShown = true;
}
public void ReLoad()
{
OnLoad(EventArgs.Empty);
//EventLoad();
if (IsShown) OnLoad(EventArgs.Empty);
}
// private void EventLoad()