79 lines
1.3 KiB
C#
79 lines
1.3 KiB
C#
using System.Drawing;
|
|
using System.Windows.Forms;
|
|
|
|
namespace UserControlClass
|
|
{
|
|
public partial class UCVWNextSense : UserControl
|
|
{
|
|
public UCVWNextSense()
|
|
{
|
|
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 Size tlpTitleBackSize
|
|
{
|
|
get { return tlpTitle.Size; }
|
|
set { tlpTitle.Size = value; }
|
|
}
|
|
|
|
public Color tlpFBackColor
|
|
{
|
|
get { return tlpF.BackColor; }
|
|
set { tlpF.BackColor = value; }
|
|
}
|
|
|
|
public Color tlpGBackColor
|
|
{
|
|
get { return tlpG.BackColor; }
|
|
set { tlpG.BackColor = value; }
|
|
}
|
|
}
|
|
} |