From 4f75336ed5884efaa862c73f04ea9910379467e4 Mon Sep 17 00:00:00 2001 From: Sunny Date: Tue, 18 Mar 2025 22:12:54 +0800 Subject: [PATCH] =?UTF-8?q?*=20=E5=A2=9E=E5=8A=A0=E6=8E=A7=E4=BB=B6?= =?UTF-8?q?=E5=9C=A8=E5=B7=A5=E5=85=B7=E7=AE=B1=E8=AF=B4=E6=98=8E=E6=96=87?= =?UTF-8?q?=E5=AD=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SunnyUI/Charts/UIBarChart.cs | 1 + SunnyUI/Charts/UIDoughnutChart.cs | 2 +- SunnyUI/Charts/UILineChart.cs | 1 + SunnyUI/Charts/UIPieChart.cs | 1 + SunnyUI/Controls/UIHorScrollBar.cs | 1 + SunnyUI/Controls/UIHorScrollBarEx.cs | 1 + SunnyUI/Controls/UIProgressIndicator.cs | 1 + SunnyUI/Controls/UIRadioButton.cs | 1 + SunnyUI/Controls/UIRadioButtonGroup.cs | 1 + SunnyUI/Controls/UIRichTextBox.cs | 1 + SunnyUI/Controls/UIRoundMeter.cs | 3 ++- SunnyUI/Controls/UIRoundProcess.cs | 1 + SunnyUI/Controls/UIRuler.cs | 1 + SunnyUI/Controls/UIScrollBar.cs | 1 + SunnyUI/Controls/UIScrollingText.cs | 1 + SunnyUI/Controls/UISignal.cs | 1 + SunnyUI/Controls/UISmoothLabel.cs | 1 + SunnyUI/Controls/UISplitContainer.cs | 1 + SunnyUI/Controls/UIStatusBox.cs | 1 + SunnyUI/Controls/UISwitch.cs | 1 + SunnyUI/Controls/UISymbolButton.cs | 1 + SunnyUI/Controls/UISymbolLabel.cs | 1 + SunnyUI/Controls/UITabControl.cs | 1 + SunnyUI/Controls/UITabControlMenu.cs | 1 + SunnyUI/Controls/UITableLayoutPanel.cs | 1 + SunnyUI/Controls/UITextBox.cs | 1 + SunnyUI/Controls/UIThermometer.cs | 1 + SunnyUI/Controls/UITimePicker.cs | 1 + SunnyUI/Controls/UITitlePanel.cs | 1 + SunnyUI/Controls/UIToolTip.cs | 1 + SunnyUI/Controls/UITrackBar.cs | 1 + SunnyUI/Controls/UITransfer.cs | 1 + SunnyUI/Controls/UITreeView.cs | 1 + SunnyUI/Controls/UITurnSwitch.cs | 1 + SunnyUI/Controls/UIUserControl.cs | 1 + SunnyUI/Controls/UIValve.cs | 1 + SunnyUI/Controls/UIVerScrollBarEx.cs | 1 + SunnyUI/Controls/UIVerificationCode.cs | 1 + SunnyUI/Controls/UIWaitingBar.cs | 1 + SunnyUI/Style/UIStyleManager.cs | 1 + 40 files changed, 41 insertions(+), 2 deletions(-) diff --git a/SunnyUI/Charts/UIBarChart.cs b/SunnyUI/Charts/UIBarChart.cs index fdad3539..b4dff484 100644 --- a/SunnyUI/Charts/UIBarChart.cs +++ b/SunnyUI/Charts/UIBarChart.cs @@ -50,6 +50,7 @@ namespace Sunny.UI /// 柱状图 /// [ToolboxItem(true)] + [Description("柱状图控件")] public class UIBarChart : UIChart { private bool NeedDraw; diff --git a/SunnyUI/Charts/UIDoughnutChart.cs b/SunnyUI/Charts/UIDoughnutChart.cs index 56b7c40e..a44cb47d 100644 --- a/SunnyUI/Charts/UIDoughnutChart.cs +++ b/SunnyUI/Charts/UIDoughnutChart.cs @@ -32,7 +32,7 @@ using System.Windows.Forms; namespace Sunny.UI { - [ToolboxItem(true), Description("甜甜圈图")] + [ToolboxItem(true), Description("甜甜圈图控件")] public sealed class UIDoughnutChart : UIChart { /// diff --git a/SunnyUI/Charts/UILineChart.cs b/SunnyUI/Charts/UILineChart.cs index 4e677b58..b0c85430 100644 --- a/SunnyUI/Charts/UILineChart.cs +++ b/SunnyUI/Charts/UILineChart.cs @@ -69,6 +69,7 @@ using System.Windows.Forms; namespace Sunny.UI { [ToolboxItem(true)] + [Description("曲线图控件")] public class UILineChart : UIChart { protected bool NeedDraw; diff --git a/SunnyUI/Charts/UIPieChart.cs b/SunnyUI/Charts/UIPieChart.cs index 8f1f5c97..152e83c2 100644 --- a/SunnyUI/Charts/UIPieChart.cs +++ b/SunnyUI/Charts/UIPieChart.cs @@ -32,6 +32,7 @@ using System.Windows.Forms; namespace Sunny.UI { [ToolboxItem(true)] + [Description("饼状图控件")] public sealed class UIPieChart : UIChart { /// diff --git a/SunnyUI/Controls/UIHorScrollBar.cs b/SunnyUI/Controls/UIHorScrollBar.cs index d9deb5d0..5370c34e 100644 --- a/SunnyUI/Controls/UIHorScrollBar.cs +++ b/SunnyUI/Controls/UIHorScrollBar.cs @@ -32,6 +32,7 @@ namespace Sunny.UI [DefaultEvent("ValueChanged")] [DefaultProperty("Value")] [ToolboxItem(true)] + [Description("水平滚动条控件")] public sealed class UIHorScrollBar : UIControl { public UIHorScrollBar() diff --git a/SunnyUI/Controls/UIHorScrollBarEx.cs b/SunnyUI/Controls/UIHorScrollBarEx.cs index 73187abc..9e29bf5d 100644 --- a/SunnyUI/Controls/UIHorScrollBarEx.cs +++ b/SunnyUI/Controls/UIHorScrollBarEx.cs @@ -30,6 +30,7 @@ using System.Windows.Forms; namespace Sunny.UI { [ToolboxItem(true)] + [Description("水平滚动条控件")] public class UIHorScrollBarEx : UIControl { public UIHorScrollBarEx() diff --git a/SunnyUI/Controls/UIProgressIndicator.cs b/SunnyUI/Controls/UIProgressIndicator.cs index aef651e6..d105e009 100644 --- a/SunnyUI/Controls/UIProgressIndicator.cs +++ b/SunnyUI/Controls/UIProgressIndicator.cs @@ -31,6 +31,7 @@ using System.Windows.Forms; namespace Sunny.UI { [ToolboxItem(true)] + [Description("进度指示器控件")] public sealed class UIProgressIndicator : UIControl { private readonly Timer timer; diff --git a/SunnyUI/Controls/UIRadioButton.cs b/SunnyUI/Controls/UIRadioButton.cs index da4320e9..167951ae 100644 --- a/SunnyUI/Controls/UIRadioButton.cs +++ b/SunnyUI/Controls/UIRadioButton.cs @@ -41,6 +41,7 @@ namespace Sunny.UI [DefaultEvent("CheckedChanged")] [DefaultProperty("Checked")] [ToolboxItem(true)] + [Description("单选框控件")] public sealed class UIRadioButton : UIControl { public delegate void OnValueChanged(object sender, bool value); diff --git a/SunnyUI/Controls/UIRadioButtonGroup.cs b/SunnyUI/Controls/UIRadioButtonGroup.cs index 5f3340c0..9811c496 100644 --- a/SunnyUI/Controls/UIRadioButtonGroup.cs +++ b/SunnyUI/Controls/UIRadioButtonGroup.cs @@ -40,6 +40,7 @@ namespace Sunny.UI { [DefaultProperty("Items")] [DefaultEvent("ValueChanged")] + [Description("单选框组控件")] public class UIRadioButtonGroup : UIGroupBox { public delegate void OnValueChanged(object sender, int index, string text); diff --git a/SunnyUI/Controls/UIRichTextBox.cs b/SunnyUI/Controls/UIRichTextBox.cs index 9cfb0716..f2547e73 100644 --- a/SunnyUI/Controls/UIRichTextBox.cs +++ b/SunnyUI/Controls/UIRichTextBox.cs @@ -38,6 +38,7 @@ namespace Sunny.UI { [DefaultEvent("TextChanged")] [DefaultProperty("Text")] + [Description("富文本输入框控件")] public sealed class UIRichTextBox : UIPanel, IToolTip { private UIScrollBar bar; diff --git a/SunnyUI/Controls/UIRoundMeter.cs b/SunnyUI/Controls/UIRoundMeter.cs index a5ab6574..87cc45b6 100644 --- a/SunnyUI/Controls/UIRoundMeter.cs +++ b/SunnyUI/Controls/UIRoundMeter.cs @@ -19,10 +19,10 @@ * 2020-01-01: V2.2.0 增加文件说明 ******************************************************************************/ -using Sunny.UI.Properties; using System.ComponentModel; using System.Drawing; using System.Windows.Forms; +using Sunny.UI.Properties; namespace Sunny.UI { @@ -31,6 +31,7 @@ namespace Sunny.UI /// [ToolboxItem(true)] [DefaultProperty("Angle")] + [Description("圆形图表控件")] public sealed class UIRoundMeter : UIControl { /// diff --git a/SunnyUI/Controls/UIRoundProcess.cs b/SunnyUI/Controls/UIRoundProcess.cs index 6b00aaec..dbb40159 100644 --- a/SunnyUI/Controls/UIRoundProcess.cs +++ b/SunnyUI/Controls/UIRoundProcess.cs @@ -37,6 +37,7 @@ namespace Sunny.UI [ToolboxItem(true)] [DefaultEvent("ValueChanged")] [DefaultProperty("Value")] + [Description("圆形进度条控件")] public class UIRoundProcess : UIControl { public UIRoundProcess() diff --git a/SunnyUI/Controls/UIRuler.cs b/SunnyUI/Controls/UIRuler.cs index ac4e67fd..0ad95e7a 100644 --- a/SunnyUI/Controls/UIRuler.cs +++ b/SunnyUI/Controls/UIRuler.cs @@ -27,6 +27,7 @@ using System.Windows.Forms; namespace Sunny.UI { [ToolboxItem(true)] + [Description("刻度尺控件")] public class UIRuler : UIControl { private UITrackBar.BarDirection direction = UITrackBar.BarDirection.Horizontal; diff --git a/SunnyUI/Controls/UIScrollBar.cs b/SunnyUI/Controls/UIScrollBar.cs index 8a5939be..e421845b 100644 --- a/SunnyUI/Controls/UIScrollBar.cs +++ b/SunnyUI/Controls/UIScrollBar.cs @@ -33,6 +33,7 @@ namespace Sunny.UI [DefaultEvent("ValueChanged")] [DefaultProperty("Value")] [ToolboxItem(true)] + [Description("滚动条控件")] public sealed class UIScrollBar : UIControl { public UIScrollBar() diff --git a/SunnyUI/Controls/UIScrollingText.cs b/SunnyUI/Controls/UIScrollingText.cs index b7ee5822..5ce618b3 100644 --- a/SunnyUI/Controls/UIScrollingText.cs +++ b/SunnyUI/Controls/UIScrollingText.cs @@ -33,6 +33,7 @@ using System.Windows.Forms; namespace Sunny.UI { [ToolboxItem(true)] + [Description("滚动文字控件")] public class UIScrollingText : UIControl { private readonly Timer timer; diff --git a/SunnyUI/Controls/UISignal.cs b/SunnyUI/Controls/UISignal.cs index 7b0ac119..5ed32956 100644 --- a/SunnyUI/Controls/UISignal.cs +++ b/SunnyUI/Controls/UISignal.cs @@ -31,6 +31,7 @@ namespace Sunny.UI [DefaultEvent("Click")] [DefaultProperty("Level")] [ToolboxItem(true)] + [Description("信号强度显示控件")] public class UISignal : UIControl { public UISignal() diff --git a/SunnyUI/Controls/UISmoothLabel.cs b/SunnyUI/Controls/UISmoothLabel.cs index 01910edc..16d76629 100644 --- a/SunnyUI/Controls/UISmoothLabel.cs +++ b/SunnyUI/Controls/UISmoothLabel.cs @@ -33,6 +33,7 @@ namespace Sunny.UI [ToolboxItem(true)] [DefaultEvent("Click")] [DefaultProperty("Text")] + [Description("平滑文字带边框的标签控件")] public sealed class UISmoothLabel : Label, IStyleInterface, IZoomScale, IFormTranslator { private PointF point; diff --git a/SunnyUI/Controls/UISplitContainer.cs b/SunnyUI/Controls/UISplitContainer.cs index 418ee058..b0511ab7 100644 --- a/SunnyUI/Controls/UISplitContainer.cs +++ b/SunnyUI/Controls/UISplitContainer.cs @@ -30,6 +30,7 @@ using System.Windows.Forms; namespace Sunny.UI { + [Description("分割容器控件")] public sealed class UISplitContainer : SplitContainer, IStyleInterface, IZoomScale { private enum UIMouseType diff --git a/SunnyUI/Controls/UIStatusBox.cs b/SunnyUI/Controls/UIStatusBox.cs index 21637b48..f3b79998 100644 --- a/SunnyUI/Controls/UIStatusBox.cs +++ b/SunnyUI/Controls/UIStatusBox.cs @@ -25,6 +25,7 @@ using System.Windows.Forms; namespace Sunny.UI { + [Description("根据状态显示图片控件")] public class UIStatusBox : PictureBox { /// diff --git a/SunnyUI/Controls/UISwitch.cs b/SunnyUI/Controls/UISwitch.cs index ed09e24b..968a9404 100644 --- a/SunnyUI/Controls/UISwitch.cs +++ b/SunnyUI/Controls/UISwitch.cs @@ -37,6 +37,7 @@ namespace Sunny.UI [DefaultEvent("ValueChanged")] [DefaultProperty("Active")] [ToolboxItem(true)] + [Description("开关控件")] public sealed class UISwitch : UIControl { /// diff --git a/SunnyUI/Controls/UISymbolButton.cs b/SunnyUI/Controls/UISymbolButton.cs index 6e54a1a8..0d488f8d 100644 --- a/SunnyUI/Controls/UISymbolButton.cs +++ b/SunnyUI/Controls/UISymbolButton.cs @@ -36,6 +36,7 @@ namespace Sunny.UI { [DefaultEvent("Click")] [DefaultProperty("Text")] + [Description("字体图标按钮控件")] public class UISymbolButton : UIButton, ISymbol { private int _symbolSize = 24; diff --git a/SunnyUI/Controls/UISymbolLabel.cs b/SunnyUI/Controls/UISymbolLabel.cs index f2195401..78193390 100644 --- a/SunnyUI/Controls/UISymbolLabel.cs +++ b/SunnyUI/Controls/UISymbolLabel.cs @@ -36,6 +36,7 @@ namespace Sunny.UI [ToolboxItem(true)] [DefaultEvent("Click")] [DefaultProperty("Text")] + [Description("带字体图标的标签控件")] public sealed class UISymbolLabel : UIControl, ISymbol { private int _symbolSize = 24; diff --git a/SunnyUI/Controls/UITabControl.cs b/SunnyUI/Controls/UITabControl.cs index f3ce1731..084bbdc7 100644 --- a/SunnyUI/Controls/UITabControl.cs +++ b/SunnyUI/Controls/UITabControl.cs @@ -51,6 +51,7 @@ using Sunny.UI.Win32; namespace Sunny.UI { + [Description("标签控件")] public sealed class UITabControl : TabControl, IStyleInterface, IZoomScale { private readonly UITabControlHelper Helper; diff --git a/SunnyUI/Controls/UITabControlMenu.cs b/SunnyUI/Controls/UITabControlMenu.cs index a88b14ec..7afecbdb 100644 --- a/SunnyUI/Controls/UITabControlMenu.cs +++ b/SunnyUI/Controls/UITabControlMenu.cs @@ -30,6 +30,7 @@ using System.Windows.Forms; namespace Sunny.UI { + [Description("标签菜单控件")] public sealed class UITabControlMenu : TabControl, IStyleInterface, IZoomScale { public UITabControlMenu() diff --git a/SunnyUI/Controls/UITableLayoutPanel.cs b/SunnyUI/Controls/UITableLayoutPanel.cs index 0b8993d1..1483cf7b 100644 --- a/SunnyUI/Controls/UITableLayoutPanel.cs +++ b/SunnyUI/Controls/UITableLayoutPanel.cs @@ -26,6 +26,7 @@ using System.Windows.Forms; namespace Sunny.UI { + [Description("动态布局面板控件")] public sealed class UITableLayoutPanel : TableLayoutPanel, IStyleInterface { public UITableLayoutPanel() diff --git a/SunnyUI/Controls/UITextBox.cs b/SunnyUI/Controls/UITextBox.cs index f3433913..3b537623 100644 --- a/SunnyUI/Controls/UITextBox.cs +++ b/SunnyUI/Controls/UITextBox.cs @@ -76,6 +76,7 @@ namespace Sunny.UI { [DefaultEvent("TextChanged")] [DefaultProperty("Text")] + [Description("输入框控件")] public partial class UITextBox : UIPanel, ISymbol, IToolTip { private readonly UIEdit edit = new UIEdit(); diff --git a/SunnyUI/Controls/UIThermometer.cs b/SunnyUI/Controls/UIThermometer.cs index 23876516..42354152 100644 --- a/SunnyUI/Controls/UIThermometer.cs +++ b/SunnyUI/Controls/UIThermometer.cs @@ -29,6 +29,7 @@ namespace Sunny.UI [DefaultEvent("ValueChanged")] [DefaultProperty("Value")] [ToolboxItem(true)] + [Description("温度计控件")] public class UIThermometer : UIControl { public event EventHandler ValueChanged; diff --git a/SunnyUI/Controls/UITimePicker.cs b/SunnyUI/Controls/UITimePicker.cs index 36f28409..d3148fdb 100644 --- a/SunnyUI/Controls/UITimePicker.cs +++ b/SunnyUI/Controls/UITimePicker.cs @@ -33,6 +33,7 @@ namespace Sunny.UI [ToolboxItem(true)] [DefaultProperty("Value")] [DefaultEvent("ValueChanged")] + [Description("时间选择框控件")] public sealed class UITimePicker : UIDropControl, IToolTip { private void InitializeComponent() diff --git a/SunnyUI/Controls/UITitlePanel.cs b/SunnyUI/Controls/UITitlePanel.cs index 70459f93..2b9ac39f 100644 --- a/SunnyUI/Controls/UITitlePanel.cs +++ b/SunnyUI/Controls/UITitlePanel.cs @@ -39,6 +39,7 @@ using System.Windows.Forms; namespace Sunny.UI { [DefaultEvent("Click"), DefaultProperty("Text")] + [Description("带标题面板控件")] public partial class UITitlePanel : UIPanel { private int _titleHeight = 35; diff --git a/SunnyUI/Controls/UIToolTip.cs b/SunnyUI/Controls/UIToolTip.cs index 8a23a37e..63d8c342 100644 --- a/SunnyUI/Controls/UIToolTip.cs +++ b/SunnyUI/Controls/UIToolTip.cs @@ -35,6 +35,7 @@ namespace Sunny.UI [ProvideProperty("ToolTip", typeof(Control))] [DefaultEvent("Popup")] [ToolboxItemFilter("System.Windows.Forms")] + [Description("提示控件")] public class UIToolTip : ToolTip { private readonly ConcurrentDictionary ToolTipControls = diff --git a/SunnyUI/Controls/UITrackBar.cs b/SunnyUI/Controls/UITrackBar.cs index ca15e724..11b1f252 100644 --- a/SunnyUI/Controls/UITrackBar.cs +++ b/SunnyUI/Controls/UITrackBar.cs @@ -33,6 +33,7 @@ namespace Sunny.UI [DefaultEvent("ValueChanged")] [DefaultProperty("Value")] [ToolboxItem(true)] + [Description("进度指示条控件")] public sealed class UITrackBar : UIControl { public event EventHandler ValueChanged; diff --git a/SunnyUI/Controls/UITransfer.cs b/SunnyUI/Controls/UITransfer.cs index e794e02a..0ffbd5e7 100644 --- a/SunnyUI/Controls/UITransfer.cs +++ b/SunnyUI/Controls/UITransfer.cs @@ -36,6 +36,7 @@ namespace Sunny.UI /// 穿梭框 /// [DefaultProperty("ItemsLeft")] + [Description("穿梭框控件")] public sealed partial class UITransfer : UIPanel { /// diff --git a/SunnyUI/Controls/UITreeView.cs b/SunnyUI/Controls/UITreeView.cs index 1297105a..1cff13f9 100644 --- a/SunnyUI/Controls/UITreeView.cs +++ b/SunnyUI/Controls/UITreeView.cs @@ -56,6 +56,7 @@ namespace Sunny.UI { [DefaultEvent("AfterSelect")] [DefaultProperty("Nodes")] + [Description("树形列表控件")] public sealed class UITreeView : UIPanel, IToolTip { private UIScrollBar Bar; diff --git a/SunnyUI/Controls/UITurnSwitch.cs b/SunnyUI/Controls/UITurnSwitch.cs index 499279e3..971cf311 100644 --- a/SunnyUI/Controls/UITurnSwitch.cs +++ b/SunnyUI/Controls/UITurnSwitch.cs @@ -31,6 +31,7 @@ namespace Sunny.UI [DefaultEvent("ValueChanged")] [DefaultProperty("Active")] [ToolboxItem(true)] + [Description("旋转开关控件")] public class UITurnSwitch : UIControl { /// diff --git a/SunnyUI/Controls/UIUserControl.cs b/SunnyUI/Controls/UIUserControl.cs index 70ef2a93..7ebdf653 100644 --- a/SunnyUI/Controls/UIUserControl.cs +++ b/SunnyUI/Controls/UIUserControl.cs @@ -35,6 +35,7 @@ namespace Sunny.UI { [Designer("System.Windows.Forms.Design.ParentControlDesigner, System.Design", typeof(System.ComponentModel.Design.IDesigner))] [DefaultEvent("Click"), DefaultProperty("Text")] + [Description("用户控件")] public partial class UIUserControl : UserControl, IStyleInterface, IZoomScale, IFormTranslator { private int radius = 5; diff --git a/SunnyUI/Controls/UIValve.cs b/SunnyUI/Controls/UIValve.cs index d2ab29c3..c9f44b47 100644 --- a/SunnyUI/Controls/UIValve.cs +++ b/SunnyUI/Controls/UIValve.cs @@ -31,6 +31,7 @@ namespace Sunny.UI [ToolboxItem(true)] [DefaultProperty("Active")] [DefaultEvent("ActiveChanged")] + [Description("阀门控件")] public sealed class UIValve : Control, IZoomScale { public UIValve() diff --git a/SunnyUI/Controls/UIVerScrollBarEx.cs b/SunnyUI/Controls/UIVerScrollBarEx.cs index 470a1b2d..ade552f6 100644 --- a/SunnyUI/Controls/UIVerScrollBarEx.cs +++ b/SunnyUI/Controls/UIVerScrollBarEx.cs @@ -30,6 +30,7 @@ using System.Windows.Forms; namespace Sunny.UI { [ToolboxItem(true)] + [Description("垂直滚动条控件")] public class UIVerScrollBarEx : UIControl { public UIVerScrollBarEx() diff --git a/SunnyUI/Controls/UIVerificationCode.cs b/SunnyUI/Controls/UIVerificationCode.cs index afa2823e..94183d30 100644 --- a/SunnyUI/Controls/UIVerificationCode.cs +++ b/SunnyUI/Controls/UIVerificationCode.cs @@ -33,6 +33,7 @@ namespace Sunny.UI [DefaultEvent("Click")] [DefaultProperty("Text")] [ToolboxItem(true)] + [Description("验证码控件")] public class UIVerificationCode : UIControl { public UIVerificationCode() diff --git a/SunnyUI/Controls/UIWaitingBar.cs b/SunnyUI/Controls/UIWaitingBar.cs index c08dceb6..6e847aee 100644 --- a/SunnyUI/Controls/UIWaitingBar.cs +++ b/SunnyUI/Controls/UIWaitingBar.cs @@ -29,6 +29,7 @@ using System.Windows.Forms; namespace Sunny.UI { [ToolboxItem(true)] + [Description("等待滚动条控件")] public sealed class UIWaitingBar : UIControl { private readonly Timer timer; diff --git a/SunnyUI/Style/UIStyleManager.cs b/SunnyUI/Style/UIStyleManager.cs index 7d6b6f58..aa768d1b 100644 --- a/SunnyUI/Style/UIStyleManager.cs +++ b/SunnyUI/Style/UIStyleManager.cs @@ -29,6 +29,7 @@ namespace Sunny.UI /// /// 主题样式管理类 /// + [Description("主题样式管理控件")] public class UIStyleManager : Component { ///