* UITabControl: 更新部分注释
This commit is contained in:
parent
0b7f218b3c
commit
123427892e
@ -39,6 +39,7 @@
|
|||||||
* 2025-02-07: V3.8.1 修复切换主题色时,TabPage 未设置背景色,#IBKDR7
|
* 2025-02-07: V3.8.1 修复切换主题色时,TabPage 未设置背景色,#IBKDR7
|
||||||
* 2025-02-13: V3.8.1 增加标签页分割线属性 ShowTabDivider,#IBLERL
|
* 2025-02-13: V3.8.1 增加标签页分割线属性 ShowTabDivider,#IBLERL
|
||||||
* 2025-04-17: V3.8.3 修复不可关闭的主页被关闭了 #IC1XIU
|
* 2025-04-17: V3.8.3 修复不可关闭的主页被关闭了 #IC1XIU
|
||||||
|
* 2025-04-21: V3.8.3 更新部分注释
|
||||||
******************************************************************************/
|
******************************************************************************/
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
@ -378,9 +379,9 @@ namespace Sunny.UI
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 边框颜色
|
/// 标签页默认背景颜色
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[Description("边框颜色"), Category("SunnyUI")]
|
[Description("标签页默认背景颜色"), Category("SunnyUI")]
|
||||||
[DefaultValue(typeof(Color), "56, 56, 56")]
|
[DefaultValue(typeof(Color), "56, 56, 56")]
|
||||||
public Color TabBackColor
|
public Color TabBackColor
|
||||||
{
|
{
|
||||||
@ -399,7 +400,7 @@ namespace Sunny.UI
|
|||||||
private Color tabSelectedColor = Color.FromArgb(36, 36, 36);
|
private Color tabSelectedColor = Color.FromArgb(36, 36, 36);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 边框颜色
|
/// 选中Tab页背景色
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[Description("选中Tab页背景色"), Category("SunnyUI")]
|
[Description("选中Tab页背景色"), Category("SunnyUI")]
|
||||||
[DefaultValue(typeof(Color), "36, 36, 36")]
|
[DefaultValue(typeof(Color), "36, 36, 36")]
|
||||||
@ -420,9 +421,9 @@ namespace Sunny.UI
|
|||||||
private Color tabUnSelectedColor = Color.FromArgb(56, 56, 56);
|
private Color tabUnSelectedColor = Color.FromArgb(56, 56, 56);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 边框颜色
|
/// 未选中Tab页背景色
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[Description("选中Tab页背景色"), Category("SunnyUI")]
|
[Description("未选中Tab页背景色"), Category("SunnyUI")]
|
||||||
[DefaultValue(typeof(Color), "56, 56, 56")]
|
[DefaultValue(typeof(Color), "56, 56, 56")]
|
||||||
public Color TabUnSelectedColor
|
public Color TabUnSelectedColor
|
||||||
{
|
{
|
||||||
@ -441,7 +442,7 @@ namespace Sunny.UI
|
|||||||
private Color tabSelectedForeColor = UIColor.Blue;
|
private Color tabSelectedForeColor = UIColor.Blue;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 边框颜色
|
/// 选中Tab页字体色
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[Description("选中Tab页字体色"), Category("SunnyUI")]
|
[Description("选中Tab页字体色"), Category("SunnyUI")]
|
||||||
[DefaultValue(typeof(Color), "80, 160, 255")]
|
[DefaultValue(typeof(Color), "80, 160, 255")]
|
||||||
@ -461,7 +462,7 @@ namespace Sunny.UI
|
|||||||
private Color tabUnSelectedForeColor = Color.FromArgb(240, 240, 240);
|
private Color tabUnSelectedForeColor = Color.FromArgb(240, 240, 240);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 边框颜色
|
/// 未选中Tab页字体色
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[Description("未选中Tab页字体色"), Category("SunnyUI")]
|
[Description("未选中Tab页字体色"), Category("SunnyUI")]
|
||||||
[DefaultValue(typeof(Color), "240, 240, 240")]
|
[DefaultValue(typeof(Color), "240, 240, 240")]
|
||||||
@ -482,7 +483,7 @@ namespace Sunny.UI
|
|||||||
private Color tabSelectedHighColor = UIColor.Blue;
|
private Color tabSelectedHighColor = UIColor.Blue;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 边框颜色
|
/// 选中Tab页高亮
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[Description("选中Tab页高亮"), Category("SunnyUI")]
|
[Description("选中Tab页高亮"), Category("SunnyUI")]
|
||||||
[DefaultValue(typeof(Color), "80, 160, 255")]
|
[DefaultValue(typeof(Color), "80, 160, 255")]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user