* 增加一些注释

This commit is contained in:
Sunny 2021-03-22 21:31:14 +08:00
parent d60eae420e
commit 66e9cffe34
7 changed files with 12 additions and 4 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -32,6 +32,11 @@ namespace Sunny.UI
[ToolboxItem(true)] [ToolboxItem(true)]
public sealed class UISwitch : UIControl public sealed class UISwitch : UIControl
{ {
/// <summary>
///
/// </summary>
/// <param name="sender">对象</param>
/// <param name="value">开关值</param>
public delegate void OnValueChanged(object sender, bool value); public delegate void OnValueChanged(object sender, bool value);
public enum UISwitchShape public enum UISwitchShape

View File

@ -67,6 +67,7 @@ namespace Sunny.UI
private int _symbolSize = 24; private int _symbolSize = 24;
[DefaultValue(24)] [DefaultValue(24)]
[Description("字体图标大小"), Category("SunnyUI")]
public int SymbolSize public int SymbolSize
{ {
get => _symbolSize; get => _symbolSize;
@ -84,6 +85,7 @@ namespace Sunny.UI
[DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)] [DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)]
[Editor(typeof(UIImagePropertyEditor), typeof(UITypeEditor))] [Editor(typeof(UIImagePropertyEditor), typeof(UITypeEditor))]
[DefaultValue(0)] [DefaultValue(0)]
[Description("字体图标"), Category("SunnyUI")]
public int Symbol public int Symbol
{ {
get => _symbol; get => _symbol;
@ -95,7 +97,7 @@ namespace Sunny.UI
} }
} }
[DefaultValue(false), Description("在Frame框架中不被关闭")] [DefaultValue(false), Description("在Frame框架中不被关闭"), Category("SunnyUI")]
public bool AlwaysOpen { get; set; } public bool AlwaysOpen { get; set; }
protected virtual void SymbolChange() protected virtual void SymbolChange()
@ -103,7 +105,8 @@ namespace Sunny.UI
} }
[Browsable(false)] public Point ParentLocation { get; set; } = new Point(0, 0); [Browsable(false)]
public Point ParentLocation { get; set; } = new Point(0, 0);
[DefaultValue(-1)] [DefaultValue(-1)]
public int PageIndex { get; set; } = -1; public int PageIndex { get; set; } = -1;
@ -118,7 +121,7 @@ namespace Sunny.UI
/// 边框颜色 /// 边框颜色
/// </summary> /// </summary>
/// <value>The color of the border style.</value> /// <value>The color of the border style.</value>
[Description("边框颜色")] [Description("边框颜色"), Category("SunnyUI")]
public Color RectColor public Color RectColor
{ {
get => _rectColor; get => _rectColor;
@ -146,7 +149,7 @@ namespace Sunny.UI
} }
[DefaultValue(ToolStripStatusLabelBorderSides.None)] [DefaultValue(ToolStripStatusLabelBorderSides.None)]
[Description("边框显示位置")] [Description("边框显示位置"), Category("SunnyUI")]
public ToolStripStatusLabelBorderSides RectSides public ToolStripStatusLabelBorderSides RectSides
{ {
get => _rectSides; get => _rectSides;