diff --git a/Bin/net40/SunnyUI.Demo.exe b/Bin/net40/SunnyUI.Demo.exe index e2105d1c..86788d3d 100644 Binary files a/Bin/net40/SunnyUI.Demo.exe and b/Bin/net40/SunnyUI.Demo.exe differ diff --git a/Bin/net40/SunnyUI.dll b/Bin/net40/SunnyUI.dll index 360e8ce8..6f974ac9 100644 Binary files a/Bin/net40/SunnyUI.dll and b/Bin/net40/SunnyUI.dll differ diff --git a/Bin/net45/SunnyUI.dll b/Bin/net45/SunnyUI.dll index 069c289c..1f63b889 100644 Binary files a/Bin/net45/SunnyUI.dll and b/Bin/net45/SunnyUI.dll differ diff --git a/Bin/net5.0-windows/SunnyUI.dll b/Bin/net5.0-windows/SunnyUI.dll index 3a8002b7..9a153efd 100644 Binary files a/Bin/net5.0-windows/SunnyUI.dll and b/Bin/net5.0-windows/SunnyUI.dll differ diff --git a/Bin/netcoreapp3.1/SunnyUI.dll b/Bin/netcoreapp3.1/SunnyUI.dll index 625097c2..daca6d1e 100644 Binary files a/Bin/netcoreapp3.1/SunnyUI.dll and b/Bin/netcoreapp3.1/SunnyUI.dll differ diff --git a/SunnyUI/Controls/UIImageListBox.cs b/SunnyUI/Controls/UIImageListBox.cs index 6726b61a..0fcf4748 100644 --- a/SunnyUI/Controls/UIImageListBox.cs +++ b/SunnyUI/Controls/UIImageListBox.cs @@ -593,7 +593,7 @@ namespace Sunny.UI if (!otherState) { e.Graphics.FillRectangle(BackColor, e.Bounds); - e.Graphics.FillRoundRectangle(backColor, rect, 5); + e.Graphics.FillRectangle(backColor, rect); } else { @@ -610,7 +610,7 @@ namespace Sunny.UI } e.Graphics.FillRectangle(BackColor, e.Bounds); - e.Graphics.FillRoundRectangle(backColor, rect, 5); + e.Graphics.FillRectangle(backColor, rect); } Graphics g = e.Graphics; diff --git a/SunnyUI/Controls/UIListBox.cs b/SunnyUI/Controls/UIListBox.cs index 0bde3b71..2b542784 100644 --- a/SunnyUI/Controls/UIListBox.cs +++ b/SunnyUI/Controls/UIListBox.cs @@ -672,7 +672,7 @@ namespace Sunny.UI if (!otherState) { e.Graphics.FillRectangle(BackColor, e.Bounds); - e.Graphics.FillRoundRectangle(backColor, rect, 5); + e.Graphics.FillRectangle(backColor, rect); e.Graphics.DrawString(showText, e.Font, foreColor, e.Bounds, sStringFormat); } else @@ -690,7 +690,7 @@ namespace Sunny.UI } e.Graphics.FillRectangle(BackColor, e.Bounds); - e.Graphics.FillRoundRectangle(backColor, rect, 5); + e.Graphics.FillRectangle(backColor, rect); e.Graphics.DrawString(showText, e.Font, foreColor, e.Bounds, sStringFormat); }