Files
CheryFianlAssemblyLineNew/UserControlClass/UCVWNextSense.cs
T
HM-CN\zhengxuan.zhang 8cf3fb42d6 #总装移交版本
2025-03-07 11:44:37 +08:00

84 lines
1.9 KiB
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
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; }
}
}
}