diff --git a/SunnyUI/Controls/UITabControl.cs b/SunnyUI/Controls/UITabControl.cs index 320ee148..d0a51575 100644 --- a/SunnyUI/Controls/UITabControl.cs +++ b/SunnyUI/Controls/UITabControl.cs @@ -29,6 +29,7 @@ * 2022-04-20: V3.1.5 不显示标签页时屏蔽左右键 * 2022-05-11: V3.1.8 修复屏蔽左右键后其他控件无法使用左右键的问题 * 2022-05-17: V3.1.9 修复了一个首页无法关闭的问题 + * 2022-06-19: V3.2.0 多页面框架关闭页面时执行UIPage的FormClosed事件 ******************************************************************************/ using Sunny.UI.Win32; @@ -818,6 +819,7 @@ namespace Sunny.UI if (AutoClosePage) { pages[i].Final(); + pages[i].Close(); pages[i].Dispose(); pages[i] = null; }