- 판정설정 - 결과값 갱신되도록 수정

- 기능설정 - 부저/램프 On/Off 기능 VIsible = false 처리(임시)
 - 메인화면 Bypass Run 버튼 초기상태 Normal로 변경
master V1.0.3
CJY 2020-11-17 20:33:52 +09:00
parent 27e9ae116a
commit f9c24a21ac
8 changed files with 47 additions and 25 deletions

View File

@ -30,6 +30,7 @@
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ControlCenterEquipFunctionSetting));
this.smartGroupBox1 = new SmartX.SmartGroupBox();
this.labelTitleExternalInput = new SmartX.SmartLabel();
this.smartSeparatorLine1 = new SmartX.SmartSeparatorLine();
this.buttonCapture = new SmartX.SmartButton();
this.smartGroupBox2 = new SmartX.SmartGroupBox();
@ -68,7 +69,6 @@
this.labelTitleBuzzerONTime = new SmartX.SmartLabel();
this.comboBoxLanguage = new System.Windows.Forms.ComboBox();
this.labelTitleLanguage = new SmartX.SmartLabel();
this.labelTitleExternalInput = new SmartX.SmartLabel();
this.smartGroupBox1.SuspendLayout();
this.smartGroupBox2.SuspendLayout();
this.smartGroupBox4.SuspendLayout();
@ -119,6 +119,25 @@
this.smartGroupBox1.TabIndex = 2;
this.smartGroupBox1.TextColor = System.Drawing.Color.Black;
//
// labelTitleExternalInput
//
this.labelTitleExternalInput.BackPictureBox1 = null;
this.labelTitleExternalInput.BackPictureBox2 = this.smartGroupBox1;
this.labelTitleExternalInput.BorderColor = System.Drawing.Color.Black;
this.labelTitleExternalInput.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelTitleExternalInput.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
this.labelTitleExternalInput.ForeColor = System.Drawing.Color.White;
this.labelTitleExternalInput.InitVisible = true;
this.labelTitleExternalInput.LineSpacing = 0F;
this.labelTitleExternalInput.Location = new System.Drawing.Point(15, 13);
this.labelTitleExternalInput.Name = "labelTitleExternalInput";
this.labelTitleExternalInput.Size = new System.Drawing.Size(679, 28);
this.labelTitleExternalInput.TabIndex = 192;
this.labelTitleExternalInput.Text = "외부입력 설정";
this.labelTitleExternalInput.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
this.labelTitleExternalInput.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
this.labelTitleExternalInput.Wordwrap = false;
//
// smartSeparatorLine1
//
this.smartSeparatorLine1.InitVisible = true;
@ -190,6 +209,7 @@
this.smartGroupBox2.Size = new System.Drawing.Size(324, 184);
this.smartGroupBox2.TabIndex = 151;
this.smartGroupBox2.TextColor = System.Drawing.Color.Black;
this.smartGroupBox2.Visible = false;
//
// labelExternalInputMessage2
//
@ -867,25 +887,6 @@
this.labelTitleLanguage.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
this.labelTitleLanguage.Wordwrap = false;
//
// labelTitleExternalInput
//
this.labelTitleExternalInput.BackPictureBox1 = null;
this.labelTitleExternalInput.BackPictureBox2 = this.smartGroupBox1;
this.labelTitleExternalInput.BorderColor = System.Drawing.Color.Black;
this.labelTitleExternalInput.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelTitleExternalInput.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
this.labelTitleExternalInput.ForeColor = System.Drawing.Color.White;
this.labelTitleExternalInput.InitVisible = true;
this.labelTitleExternalInput.LineSpacing = 0F;
this.labelTitleExternalInput.Location = new System.Drawing.Point(15, 13);
this.labelTitleExternalInput.Name = "labelTitleExternalInput";
this.labelTitleExternalInput.Size = new System.Drawing.Size(679, 28);
this.labelTitleExternalInput.TabIndex = 192;
this.labelTitleExternalInput.Text = "외부입력 설정";
this.labelTitleExternalInput.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
this.labelTitleExternalInput.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
this.labelTitleExternalInput.Wordwrap = false;
//
// ControlCenterEquipFunctionSetting
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);

View File

@ -66,7 +66,7 @@ namespace ITC81DB_0H.Controls
private void DefaultSetting()
{
this.labelSerialNo.Text = this.ParentForm.ParentForm.SystemConfig1.SerialNumber;
this.labelDisplayVer.Text = "1.0.1";
this.labelDisplayVer.Text = "1.0.3";
}
public void UpdateMainBoardVersionDisplay(string version)

View File

@ -376,6 +376,14 @@ namespace ITC81DB_0H.Controls
this.buttonPasteAll.Enabled = true;
}
}
public void UpdateDataDisplay(DataStore.EquipmentStatus status, WeightData weightData)
{
string sValue = "";
sValue = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig1.DecimalPlaces);
if (this.labelWeightJudgment.Text != sValue)
this.labelWeightJudgment.Text = sValue;
}
public void UpdateCurrentProductDisplay(DataStore.EquipmentStatus status, ProductItem pItem)
{
string value = "";

View File

@ -353,7 +353,7 @@
this.buttonBypassRun.GroupID = 0;
this.buttonBypassRun.InitVisible = true;
this.buttonBypassRun.Location = new System.Drawing.Point(395, 132);
this.buttonBypassRun.Mode = SmartX.SmartButton.BUTTONMODE.PUSH;
this.buttonBypassRun.Mode = SmartX.SmartButton.BUTTONMODE.NORMAL;
this.buttonBypassRun.Name = "buttonBypassRun";
this.buttonBypassRun.NestedClickEventPrevent = false;
this.buttonBypassRun.OutlinePixel = 1;

View File

@ -4116,7 +4116,9 @@ namespace ITC81DB_0H.Forms
#endregion
//if (this.ChildFormMenu.CenterSystemJudgmentManual != null)
// this.ChildFormMenu.CenterSystemJudgmentManual.UpdateGraphDataDisplay(this.CurrentSystemStatus.Equipment, this.CurrentWeightData, this.CollectionGraphData);
break;
if (this.ChildFormMenu.CenterSystemJudgmentManual != null)
this.ChildFormMenu.CenterSystemJudgmentManual.UpdateDataDisplay(this.CurrentSystemStatus.Equipment, this.CurrentWeightData);
break;
default:
break;
}

View File

@ -12,9 +12,20 @@
기본형 컨베어 고정밀센서 계량기
*/
@ Ver 1.0.3 by CJY
- 2020.11.17
- Ver 1.0.2 Modify
- 기능설정 - 부저/램프 On/Off 기능 VIsible = false 처리(임시)
- 메인화면 Bypass Run 버튼 초기상태 Normal로 변경
@ Ver 1.0.2 by CJY
- 2020.11.12
- Ver 1.0.1 Modify
- 판정설정 - 결과값 갱신되도록 수정
@ Ver 1.0.1 by CJY
- 2020.09.23
- ITC81DB Ver 6.9.0 Modify
- 2020.09.24
- Ver 1.0.0 Modify
- 메인보드 업데이트 부분 수정
- 외부출력 모드 정리
- 프로그램 에러 메시지 로그 저장 기능 추가(SD Card\\DataBackup\\)