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

55 lines
1.2 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 UCNextSenseOneItem : UserControl
{
public UCNextSenseOneItem()
{
InitializeComponent();
}
public string labTitleText
{
get { return labTitle.Text; }
set { labTitle.Text = value; }
}
public string labFGText
{
get { return labFGName.Text; }
set { labFGName.Text = value; }
}
public string labValue
{
get { return labFGValue.Text; }
set { labFGValue.Text = value; }
}
public string labLowerUpper
{
get { return labFGLU.Text; }
set { labFGLU.Text = value; }
}
public Color tlpBackColor
{
get { return tlpTitle.BackColor; }
set { tlpTitle.BackColor = value; }
}
public Color tlpFGBackColor
{
get { return tlpFG.BackColor; }
set { tlpFG.BackColor = value; }
}
}
}