提交当前本机整理版本

This commit is contained in:
cyf
2026-07-02 10:11:39 +00:00
parent c10a5d64c7
commit aacefa24f8
822 changed files with 196665 additions and 14263 deletions
+40 -1
View File
@@ -397,4 +397,43 @@ namespace Lskj.Control
{
TextEdit.Properties.Appearance.BackColor = value;
}
}
/// <summary>
/// 前景颜色
/// </summary>
/// <value>The color of the required label.</value>
public override Color ForeColor
{
get
{
return TextEdit.Properties.Appearance.ForeColor;
}
set
{
TextEdit.Properties.Appearance.ForeColor = value;
}
}
/// <summary>
/// 内容加粗
/// </summary>
/// <value>The color of the required label.</value>
public override bool ContentBold
{
get
{
return TextEdit.Properties.Appearance.Font.Bold;
}
set
{
Font oldFont = TextEdit.Properties.Appearance.Font;
TextEdit.Properties.Appearance.Font = new Font(oldFont.FontFamily, oldFont.Size, value ? FontStyle.Bold : FontStyle.Regular);
}
}
}
}