Files
lserp_cs_6.0/其他程序/xNewMyFormDesigner/LabelTextEx.cs
T
cyf ab56a9bcf7 基线 SVN r240
SVN-Revision: r240
2025-02-06 06:46:06 +00:00

93 lines
2.3 KiB
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace NewMyFormDesigner
{
public partial class LabelTextEx : UserControl
{
private int padding_right = 7;
public LabelTextEx()
{
InitializeComponent();
txtBox.BackColor = Color.Transparent;
lbMsg.BackColor = Color.Transparent;
}
private string labelText;
[Description("Label值")]
public string LabelText
{
get { return labelText; }
set
{
labelText = value;
lbMsg.Text = value;
pl_left.Width = lbMsg.Width + padding_right;
}
}
private string text;
[Description("文本框值")]
public override string Text
{
get
{
return txtBox.Text;
}
set
{
text = value;
txtBox.Text = text;
}
}
[Description("提示文本")]
public string TipMsg { get; set; }
[Description("是否允许为空")]
public bool IsEmpt { get; set; }
public TextBoxEx GetTextBox { get { return txtBox; } }
private string defaultString;
public string DefaultString
{
get { return defaultString; }
set { defaultString = value; }
}
private string unionFields;
public string UnionFields
{
get { return unionFields; }
set { unionFields = value; }
}
private string unionValue;
public string UnionValue
{
get { return unionValue; }
set { unionValue = value; }
}
private void txtBox_MouseDoubleClick(object sender, MouseEventArgs e)
{
//MessageBox.Show("DBClick");
}
private void txtBox_ReadOnlyChanged(object sender, EventArgs e)
{
if ((sender as TextBox).ReadOnly)
(sender as TextBox).BackColor = SystemColors.InactiveBorder;
else
(sender as TextBox).BackColor = Color.White;
}
}
}