@ Ver 11.4.6 by LSJ
- 2025.08.14 - Ver 11.4.5 Modify - Framework : SmartX Framework V3.1.1(update: 2019.03.21) - 리스트 화면 라벨 색상 변경V11.4.6
parent
96116f0e5a
commit
5801dd549e
|
|
@ -17,11 +17,10 @@ namespace INT69DC_7C.Controls
|
|||
#region Field
|
||||
private FormMainDisplay m_ParentForm;
|
||||
|
||||
private Color WeightOverColor = Color.Yellow;
|
||||
private Color WeightOverColor = Color.Red;
|
||||
private Color WeightStandardColor = Color.Black;
|
||||
private Color WeightUnderColor = Color.Red;
|
||||
private Color WeightPassColor = Color.Green;
|
||||
private Color WeightExNGColor = Color.Blue;
|
||||
|
||||
/// <summary>
|
||||
/// true : total average
|
||||
|
|
@ -291,10 +290,10 @@ namespace INT69DC_7C.Controls
|
|||
labelColor = this.WeightOverColor;
|
||||
else if (judge == DataStore.JudgmentStatus.Under)
|
||||
labelColor = this.WeightUnderColor;
|
||||
else if (judge == DataStore.JudgmentStatus.EXNg)
|
||||
labelColor = this.WeightExNGColor;
|
||||
else
|
||||
else if (judge == DataStore.JudgmentStatus.Pass)
|
||||
labelColor = this.WeightStandardColor;
|
||||
else
|
||||
labelColor = this.WeightOverColor;
|
||||
|
||||
if (labelTotalCNT == true)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -18,11 +18,10 @@ namespace INT69DC_7C.Controls
|
|||
#region Field
|
||||
private FormMainDisplay m_ParentForm;
|
||||
|
||||
private Color WeightOverColor = Color.Yellow;
|
||||
private Color WeightOverColor = Color.Red;
|
||||
private Color WeightStandardColor = Color.Black;
|
||||
private Color WeightUnderColor = Color.Red;
|
||||
private Color WeightPassColor = Color.Green;
|
||||
private Color WeightExNGColor = Color.Blue;
|
||||
|
||||
/// <summary>
|
||||
/// true : total average
|
||||
|
|
@ -338,10 +337,10 @@ namespace INT69DC_7C.Controls
|
|||
labelColor = this.WeightOverColor;
|
||||
else if (judge == DataStore.JudgmentStatus.Under)
|
||||
labelColor = this.WeightUnderColor;
|
||||
else if (judge == DataStore.JudgmentStatus.EXNg)
|
||||
labelColor = this.WeightExNGColor;
|
||||
else
|
||||
else if (judge == DataStore.JudgmentStatus.Pass)
|
||||
labelColor = this.WeightStandardColor;
|
||||
else
|
||||
labelColor = this.WeightOverColor;
|
||||
|
||||
if (labelTotalCNT == true)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -18,11 +18,10 @@ namespace INT69DC_7C.Controls
|
|||
#region Field
|
||||
private FormMainDisplay m_ParentForm;
|
||||
|
||||
private Color WeightOverColor = Color.Yellow;
|
||||
private Color WeightOverColor = Color.Red;
|
||||
private Color WeightStandardColor = Color.Black;
|
||||
private Color WeightUnderColor = Color.Red;
|
||||
private Color WeightPassColor = Color.Green;
|
||||
private Color WeightExNGColor = Color.Blue;
|
||||
|
||||
/// <summary>
|
||||
/// true : total average
|
||||
|
|
@ -242,10 +241,10 @@ namespace INT69DC_7C.Controls
|
|||
labelColor = this.WeightOverColor;
|
||||
else if (judge == DataStore.JudgmentStatus.Under)
|
||||
labelColor = this.WeightUnderColor;
|
||||
else if (judge == DataStore.JudgmentStatus.EXNg)
|
||||
labelColor = this.WeightExNGColor;
|
||||
else
|
||||
else if (judge == DataStore.JudgmentStatus.Pass)
|
||||
labelColor = this.WeightStandardColor;
|
||||
else
|
||||
labelColor = this.WeightOverColor;
|
||||
|
||||
if (labelTotalCNT == true)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -18,11 +18,10 @@ namespace INT69DC_7C.Controls
|
|||
#region Field
|
||||
private FormMainDisplay m_ParentForm;
|
||||
|
||||
private Color WeightOverColor = Color.Yellow;
|
||||
private Color WeightOverColor = Color.Red;
|
||||
private Color WeightStandardColor = Color.Black;
|
||||
private Color WeightUnderColor = Color.Red;
|
||||
private Color WeightPassColor = Color.Green;
|
||||
private Color WeightExNGColor = Color.Blue;
|
||||
|
||||
/// <summary>
|
||||
/// true : total average
|
||||
|
|
@ -261,10 +260,10 @@ namespace INT69DC_7C.Controls
|
|||
labelColor = this.WeightOverColor;
|
||||
else if (judge == DataStore.JudgmentStatus.Under)
|
||||
labelColor = this.WeightUnderColor;
|
||||
else if (judge == DataStore.JudgmentStatus.EXNg)
|
||||
labelColor = this.WeightExNGColor;
|
||||
else
|
||||
else if (judge == DataStore.JudgmentStatus.Pass)
|
||||
labelColor = this.WeightStandardColor;
|
||||
else
|
||||
labelColor = this.WeightOverColor;
|
||||
|
||||
if (labelTotalCNT == true)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -140,7 +140,7 @@ namespace INT69DC_7C.Forms
|
|||
}
|
||||
private void DefaultSetting()
|
||||
{
|
||||
this.labelDisplayVer.Text = "11.4.5";
|
||||
this.labelDisplayVer.Text = "11.4.6";
|
||||
if(this.ParentForm.SystemConfig.EquipmentMode == 7)
|
||||
this.labelTitleMainboardName.Text = "INT68M-2A";
|
||||
else
|
||||
|
|
|
|||
|
|
@ -15,6 +15,12 @@
|
|||
멀티형 8,10,12열 컨베어/스틱 계량기
|
||||
*/
|
||||
|
||||
@ Ver 11.4.6 by LSJ
|
||||
- 2025.08.14
|
||||
- Ver 11.4.5 Modify
|
||||
- Framework : SmartX Framework V3.1.1(update: 2019.03.21)
|
||||
- 리스트 화면 라벨 색상 변경
|
||||
|
||||
@ Ver 11.4.5 by LSJ
|
||||
- 2024.10.10
|
||||
- Ver 11.4.4 Modify
|
||||
|
|
|
|||
Loading…
Reference in New Issue