diff --git a/Bin/SunnyUI.dll b/Bin/SunnyUI.dll index f3efb68b..62d0ed68 100644 Binary files a/Bin/SunnyUI.dll and b/Bin/SunnyUI.dll differ diff --git a/SunnyUI/Controls/UIFlowLayoutPanel.cs b/SunnyUI/Controls/UIFlowLayoutPanel.cs index 8b86569b..edde88de 100644 --- a/SunnyUI/Controls/UIFlowLayoutPanel.cs +++ b/SunnyUI/Controls/UIFlowLayoutPanel.cs @@ -92,6 +92,11 @@ namespace Sunny.UI Panel.Controls.Add(ctrl); } + public void RemoveControl(Control ctrl) + { + Panel.Controls.Remove(ctrl); + } + public void Clear() { Panel.Controls.Clear();