Files

73 lines
1.2 KiB
C#

using System.Drawing;
using System.Windows.Forms;
namespace UserControlClass
{
public partial class UCNextSense : UserControl
{
public UCNextSense()
{
InitializeComponent();
}
public string labTitleText
{
get { return labTitle.Text; }
set { labTitle.Text = value; }
}
public string labFText
{
get { return labF.Text; }
set { labF.Text = value; }
}
public string labGText
{
get { return labG.Text; }
set { labG.Text = value; }
}
public string labFVal
{
get { return labFValue.Text; }
set { labFValue.Text = value; }
}
public string labGVal
{
get { return labGValue.Text; }
set { labGValue.Text = value; }
}
public string labFLowerUpper
{
get { return labFLU.Text; }
set { labFLU.Text = value; }
}
public string labGLowerUpper
{
get { return labGLU.Text; }
set { labGLU.Text = value; }
}
public Color tlpBackColor
{
get { return tlpTitle.BackColor; }
set { tlpTitle.BackColor = value; }
}
public Color tlpFBackColor
{
get { return tlpF.BackColor; }
set { tlpF.BackColor = value; }
}
public Color tlpGBackColor
{
get { return tlpG.BackColor; }
set { tlpG.BackColor = value; }
}
}
}