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 {