From 7c7cfb592d0333b6212e9e9008ffd540cdcbe100 Mon Sep 17 00:00:00 2001 From: Sunny Date: Thu, 30 Nov 2023 22:08:47 +0800 Subject: [PATCH] =?UTF-8?q?*=20=E4=BF=AE=E6=94=B9=E4=BA=86=E4=B8=80?= =?UTF-8?q?=E4=BA=9B=E6=B3=A8=E9=87=8A=E6=96=87=E5=AD=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SunnyUI/Controls/UIDataGridView.cs | 4 ++-- SunnyUI/Controls/UIThermometer.cs | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/SunnyUI/Controls/UIDataGridView.cs b/SunnyUI/Controls/UIDataGridView.cs index 4d0f2d1d..7f3dd3e5 100644 --- a/SunnyUI/Controls/UIDataGridView.cs +++ b/SunnyUI/Controls/UIDataGridView.cs @@ -147,7 +147,7 @@ namespace Sunny.UI private int scrollBarHeight = 0; - [DefaultValue(0), Category("SunnyUI"), Description("垂直滚动条宽度,最小为原生滚动条宽度")] + [DefaultValue(0), Category("SunnyUI"), Description("水平滚动条高度,最小为原生滚动条宽度")] public int ScrollBarHeight { get => scrollBarHeight; @@ -160,7 +160,7 @@ namespace Sunny.UI private int scrollBarHandleHeight = 6; - [DefaultValue(6), Category("SunnyUI"), Description("垂直滚动条滑块宽度,最小为原生滚动条宽度")] + [DefaultValue(6), Category("SunnyUI"), Description("水平滚动条滑块高度,最小为原生滚动条宽度")] public int ScrollBarHandleHeight { get => scrollBarHandleHeight; diff --git a/SunnyUI/Controls/UIThermometer.cs b/SunnyUI/Controls/UIThermometer.cs index 02910b58..b80bf382 100644 --- a/SunnyUI/Controls/UIThermometer.cs +++ b/SunnyUI/Controls/UIThermometer.cs @@ -135,7 +135,7 @@ namespace Sunny.UI private int lineSize = 6; [DefaultValue(6)] - [Description("球大小"), Category("SunnyUI")] + [Description("温度计管大小"), Category("SunnyUI")] public int LineSize { get => lineSize; @@ -149,7 +149,7 @@ namespace Sunny.UI private int ballSize = 20; [DefaultValue(20)] - [Description("球大小"), Category("SunnyUI")] + [Description("温度计球大小"), Category("SunnyUI")] public int BallSize { get => ballSize; @@ -174,7 +174,7 @@ namespace Sunny.UI /// /// 边框颜色 /// - [Description("边框颜色"), Category("SunnyUI")] + [Description("温度计颜色"), Category("SunnyUI")] [DefaultValue(typeof(Color), "80, 160, 255")] public Color ThermometerColor {