SVN r1230

SVN-Revision: r1230
This commit is contained in:
cyf
2026-06-23 09:17:23 +00:00
parent 15b5c80150
commit 2b2d109132
36 changed files with 3147 additions and 2086 deletions
@@ -167,4 +167,35 @@ namespace Lskj.Control
/// <para>修改备注:</para>
/// <para>版本:1.0</para>
/// </summary>
/// <param name="sender">The sou
/// <param name="sender">The source of the event.</param>
/// <param name="e">The <see cref="EventArgs"/> instance containing the event data.</param>
private void ckCheck_CheckedChanged(object sender, EventArgs e)
{
try
{
CheckEdit check = sender as CheckEdit;
TextEdit.Enabled = check.Checked;
}
catch (Exception ex)
{
string Message = ErrorMessage.PromptErrorMessage(ex);
MessageUtil.Show(Message,ex.Message);
}
}
/// <summary>
/// 背景颜色
/// </summary>
/// <value>The color of the required label.</value>
public override Color BackgroundColor
{
get
{
return TextEdit.Properties.Appearance.BackColor;
}
set
{
TextEdit.Properties.Appearance.BackColor = value;
}