* UITabControl: 修复了一个首页无法关闭的问题

This commit is contained in:
Sunny 2022-05-17 22:55:35 +08:00
parent fc77cb4751
commit 594fe19989

View File

@ -28,6 +28,7 @@
* 2022-04-18: V3.1.5
* 2022-04-20: V3.1.5
* 2022-05-11: V3.1.8 使
* 2022-05-17: V3.1.9
******************************************************************************/
using Sunny.UI.Win32;
@ -874,6 +875,12 @@ namespace Sunny.UI
}
}
protected override void OnVisibleChanged(EventArgs e)
{
base.OnVisibleChanged(e);
timer?.Start();
}
private int LastIndex;
public void Init()