DESKTOP-999R8N3\CJY 2024-11-08 11:20:36 +09:00
commit 52d2f212d1
51 changed files with 827 additions and 101 deletions

View File

@ -128,8 +128,6 @@ namespace INT69DC_7C.DialogForms
}
else if (this.ParentForm.SystemConfig.Language == DataStore.LanguageID.Chinese)
{
this.smartForm1.Image = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnBackgroundUserLogin));
this.buttonLogOn.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnMainLoginDisable));
this.buttonLogOn.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnMainLoginDown));
this.buttonLogOn.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnMainLoginUp));

View File

@ -137,7 +137,7 @@ namespace INT69DC_7C.Forms
}
else if (this.ParentForm.SystemConfig.Language == DataStore.LanguageID.Chinese)
{
this.labelTitle.Text = "Data Statistics";
this.labelTitle.Text = "数据统计";
this.buttonSave.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnBackupDisable));
this.buttonSave.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnBackupDown));
@ -153,7 +153,7 @@ namespace INT69DC_7C.Forms
}
else if (this.ParentForm.SystemConfig.Language == DataStore.LanguageID.Czech)
{
this.labelTitle.Text = "Data Statistics";
this.labelTitle.Text = "Statistika";
this.buttonSave.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeBackupDisable));
this.buttonSave.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeBackupDown));
@ -169,7 +169,7 @@ namespace INT69DC_7C.Forms
}
else if (this.ParentForm.SystemConfig.Language == DataStore.LanguageID.German)
{
this.labelTitle.Text = "Data Statistics";
this.labelTitle.Text = "Statistik";
this.buttonSave.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.gerBackupDisable));
this.buttonSave.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.gerBackupDown));

View File

@ -10,6 +10,7 @@ using System.Windows.Forms;
using System.Threading;
using SmartX;
using INT69DC_ImageDll;
using INT69DC_7C.DialogForms;
namespace INT69DC_7C.Forms
@ -68,6 +69,84 @@ namespace INT69DC_7C.Forms
#region Method
private void InitializeDesign()
{
ImageDll images = new ImageDll();
if (this.ParentForm.SystemConfig.Language == DataStore.LanguageID.Korean)
{
}
else if (this.ParentForm.SystemConfig.Language == DataStore.LanguageID.English)
{
this.labelTitle.Text = "Data viewer";
this.buttonSave.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engSaveDisable));
this.buttonSave.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engSaveDown));
this.buttonSave.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engSaveUp));
this.buttonFilter.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engFilterDisable));
this.buttonFilter.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engFilterDown));
this.buttonFilter.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engFilterUp));
this.buttonFileSelect.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engFileSelectDisable));
this.buttonFileSelect.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engFileSelectDown));
this.buttonFileSelect.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engFileSelectUp));
this.buttonBack.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engBackDisable));
this.buttonBack.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engBackDown));
this.buttonBack.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engBackUp));
}
else if (this.ParentForm.SystemConfig.Language == DataStore.LanguageID.Chinese)
{
this.labelTitle.Text = "数据查看器";
this.buttonSave.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnSaveDisable));
this.buttonSave.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnSaveDown));
this.buttonSave.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnSaveUp));
this.buttonFilter.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnFilterDisable));
this.buttonFilter.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnFilterDown));
this.buttonFilter.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnFilterUp));
this.buttonFileSelect.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnFileSelectDisable));
this.buttonFileSelect.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnFileSelectDown));
this.buttonFileSelect.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnFileSelectUp));
this.buttonBack.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnBackDisable));
this.buttonBack.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnBackDown));
this.buttonBack.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnBackUp));
}
else if (this.ParentForm.SystemConfig.Language == DataStore.LanguageID.Czech)
{
this.labelTitle.Text = "Prohlížeč dat";
this.buttonSave.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeSaveDisable));
this.buttonSave.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeSaveDown));
this.buttonSave.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeSaveUp));
this.buttonFilter.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeFilterDisable));
this.buttonFilter.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeFilterDown));
this.buttonFilter.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeFilterUp));
this.buttonFileSelect.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeFileSelectDisable));
this.buttonFileSelect.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeFileSelectDown));
this.buttonFileSelect.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeFileSelectUp));
this.buttonBack.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeBackDisable));
this.buttonBack.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeBackDown));
this.buttonBack.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeBackUp));
}
else if (this.ParentForm.SystemConfig.Language == DataStore.LanguageID.German)
{
this.labelTitle.Text = "Datenbetrachter";
this.buttonSave.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.gerSaveDisable));
this.buttonSave.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.gerSaveDown));
this.buttonSave.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.gerSaveUp));
this.buttonFilter.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engFilterDisable));
this.buttonFilter.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engFilterDown));
this.buttonFilter.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engFilterUp));
this.buttonFileSelect.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.gerFileSelectDisable));
this.buttonFileSelect.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.gerFileSelectDown));
this.buttonFileSelect.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.gerFileSelectUp));
this.buttonBack.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.gerBackDisable));
this.buttonBack.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.gerBackDown));
this.buttonBack.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.gerBackUp));
}
else
{
}
}
private void InitializeControl()
{

View File

@ -200,6 +200,7 @@ namespace INT69DC_7C.Forms
this.labelStaticRejectCV.Text = "Aussortierförderer";
this.labelStaticFeedingCV.Text = "Zuführförderer";
this.labelStaticEquipmentID.Text = "ID-Vorrichtung";
this.labelStaticDataStoragePeriod.Text = "Dauer der Datenspeicherung";
this.labelStaticImpellerBaudrate.Text = "Schrittmotor Buadrate";
this.labelStaticImpellerRotation.Text = "Schrittmotor Drehrichtung";
this.labelStaticLanguage.Text = "Sprache";

View File

@ -140,7 +140,7 @@ namespace INT69DC_7C.Forms
}
private void DefaultSetting()
{
this.labelDisplayVer.Text = "11.4.3";
this.labelDisplayVer.Text = "11.4.5";
if(this.ParentForm.SystemConfig.EquipmentMode == 7)
this.labelTitleMainboardName.Text = "INT68M-2A";
else

View File

@ -491,7 +491,7 @@
this.labelNGCount.Font = new System.Drawing.Font("Tahoma", 22F, System.Drawing.FontStyle.Regular);
this.labelNGCount.InitVisible = true;
this.labelNGCount.LineSpacing = 0F;
this.labelNGCount.Location = new System.Drawing.Point(344, 703);
this.labelNGCount.Location = new System.Drawing.Point(348, 703);
this.labelNGCount.Name = "labelNGCount";
this.labelNGCount.Size = new System.Drawing.Size(142, 41);
this.labelNGCount.TabIndex = 442;
@ -711,7 +711,7 @@
this.groupBoxJudgment.Controls.Add(this.labelStaticDoubleDelayTime);
this.groupBoxJudgment.Controls.Add(this.labelStaticJudgmentDelayTime);
this.groupBoxJudgment.Controls.Add(this.labelStaticFilter);
this.groupBoxJudgment.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
this.groupBoxJudgment.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
this.groupBoxJudgment.ForeColor = System.Drawing.Color.White;
this.groupBoxJudgment.FrameLineColor1 = System.Drawing.Color.Black;
this.groupBoxJudgment.FrameLineColor2 = System.Drawing.Color.Black;
@ -819,7 +819,7 @@
this.labelStaticJudgmentCount.BackPictureBox2 = null;
this.labelStaticJudgmentCount.BorderColor = System.Drawing.Color.Black;
this.labelStaticJudgmentCount.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelStaticJudgmentCount.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
this.labelStaticJudgmentCount.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
this.labelStaticJudgmentCount.ForeColor = System.Drawing.Color.White;
this.labelStaticJudgmentCount.InitVisible = true;
this.labelStaticJudgmentCount.LineSpacing = 0F;
@ -840,7 +840,7 @@
this.labelStaticDoubleDelayTime.BackPictureBox2 = null;
this.labelStaticDoubleDelayTime.BorderColor = System.Drawing.Color.Black;
this.labelStaticDoubleDelayTime.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelStaticDoubleDelayTime.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
this.labelStaticDoubleDelayTime.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
this.labelStaticDoubleDelayTime.ForeColor = System.Drawing.Color.White;
this.labelStaticDoubleDelayTime.InitVisible = true;
this.labelStaticDoubleDelayTime.LineSpacing = 0F;
@ -861,7 +861,7 @@
this.labelStaticJudgmentDelayTime.BackPictureBox2 = null;
this.labelStaticJudgmentDelayTime.BorderColor = System.Drawing.Color.Black;
this.labelStaticJudgmentDelayTime.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelStaticJudgmentDelayTime.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
this.labelStaticJudgmentDelayTime.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
this.labelStaticJudgmentDelayTime.ForeColor = System.Drawing.Color.White;
this.labelStaticJudgmentDelayTime.InitVisible = true;
this.labelStaticJudgmentDelayTime.LineSpacing = 0F;
@ -882,7 +882,7 @@
this.labelStaticFilter.BackPictureBox2 = null;
this.labelStaticFilter.BorderColor = System.Drawing.Color.Black;
this.labelStaticFilter.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelStaticFilter.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
this.labelStaticFilter.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
this.labelStaticFilter.ForeColor = System.Drawing.Color.White;
this.labelStaticFilter.InitVisible = true;
this.labelStaticFilter.LineSpacing = 0F;
@ -910,7 +910,7 @@
this.groupBoxConveyor.Controls.Add(this.labelStaticFeedingRunTime);
this.groupBoxConveyor.Controls.Add(this.labelStaticFeedingDelayTime);
this.groupBoxConveyor.Controls.Add(this.labelStaticRejectConveyorRunTime);
this.groupBoxConveyor.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
this.groupBoxConveyor.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
this.groupBoxConveyor.FrameLineColor1 = System.Drawing.Color.Black;
this.groupBoxConveyor.FrameLineColor2 = System.Drawing.Color.Black;
this.groupBoxConveyor.FrameLineThickness = 1;
@ -933,7 +933,7 @@
this.labelStaticFeedingConveyor.BackPictureBox2 = null;
this.labelStaticFeedingConveyor.BorderColor = System.Drawing.Color.Black;
this.labelStaticFeedingConveyor.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelStaticFeedingConveyor.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
this.labelStaticFeedingConveyor.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
this.labelStaticFeedingConveyor.ForeColor = System.Drawing.Color.White;
this.labelStaticFeedingConveyor.InitVisible = true;
this.labelStaticFeedingConveyor.LineSpacing = 0F;
@ -954,7 +954,7 @@
this.labelStaticRejectConveyor.BackPictureBox2 = null;
this.labelStaticRejectConveyor.BorderColor = System.Drawing.Color.Black;
this.labelStaticRejectConveyor.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelStaticRejectConveyor.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
this.labelStaticRejectConveyor.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
this.labelStaticRejectConveyor.ForeColor = System.Drawing.Color.White;
this.labelStaticRejectConveyor.InitVisible = true;
this.labelStaticRejectConveyor.LineSpacing = 0F;
@ -1038,7 +1038,7 @@
this.labelStaticRejectConveyorDelayTime.BackPictureBox2 = null;
this.labelStaticRejectConveyorDelayTime.BorderColor = System.Drawing.Color.Black;
this.labelStaticRejectConveyorDelayTime.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelStaticRejectConveyorDelayTime.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
this.labelStaticRejectConveyorDelayTime.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
this.labelStaticRejectConveyorDelayTime.ForeColor = System.Drawing.Color.White;
this.labelStaticRejectConveyorDelayTime.InitVisible = true;
this.labelStaticRejectConveyorDelayTime.LineSpacing = 0F;
@ -1080,7 +1080,7 @@
this.labelStaticFeedingRunTime.BackPictureBox2 = null;
this.labelStaticFeedingRunTime.BorderColor = System.Drawing.Color.Black;
this.labelStaticFeedingRunTime.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelStaticFeedingRunTime.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
this.labelStaticFeedingRunTime.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
this.labelStaticFeedingRunTime.ForeColor = System.Drawing.Color.White;
this.labelStaticFeedingRunTime.InitVisible = true;
this.labelStaticFeedingRunTime.LineSpacing = 0F;
@ -1101,7 +1101,7 @@
this.labelStaticFeedingDelayTime.BackPictureBox2 = null;
this.labelStaticFeedingDelayTime.BorderColor = System.Drawing.Color.Black;
this.labelStaticFeedingDelayTime.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelStaticFeedingDelayTime.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
this.labelStaticFeedingDelayTime.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
this.labelStaticFeedingDelayTime.ForeColor = System.Drawing.Color.White;
this.labelStaticFeedingDelayTime.InitVisible = true;
this.labelStaticFeedingDelayTime.LineSpacing = 0F;
@ -1122,7 +1122,7 @@
this.labelStaticRejectConveyorRunTime.BackPictureBox2 = null;
this.labelStaticRejectConveyorRunTime.BorderColor = System.Drawing.Color.Black;
this.labelStaticRejectConveyorRunTime.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelStaticRejectConveyorRunTime.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
this.labelStaticRejectConveyorRunTime.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
this.labelStaticRejectConveyorRunTime.ForeColor = System.Drawing.Color.White;
this.labelStaticRejectConveyorRunTime.InitVisible = true;
this.labelStaticRejectConveyorRunTime.LineSpacing = 0F;
@ -1153,7 +1153,7 @@
this.groupBoxSorter.Controls.Add(this.labelSorterDelayTime);
this.groupBoxSorter.Controls.Add(this.labelStaticSorterDelayTime);
this.groupBoxSorter.Controls.Add(this.labelStaticSorterRunTime);
this.groupBoxSorter.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
this.groupBoxSorter.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
this.groupBoxSorter.FrameLineColor1 = System.Drawing.Color.Black;
this.groupBoxSorter.FrameLineColor2 = System.Drawing.Color.Black;
this.groupBoxSorter.FrameLineThickness = 1;
@ -1218,7 +1218,7 @@
this.labelStaticSorterDelayTime.BackPictureBox2 = null;
this.labelStaticSorterDelayTime.BorderColor = System.Drawing.Color.Black;
this.labelStaticSorterDelayTime.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelStaticSorterDelayTime.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
this.labelStaticSorterDelayTime.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
this.labelStaticSorterDelayTime.ForeColor = System.Drawing.Color.White;
this.labelStaticSorterDelayTime.InitVisible = true;
this.labelStaticSorterDelayTime.LineSpacing = 0F;
@ -1239,7 +1239,7 @@
this.labelStaticSorterRunTime.BackPictureBox2 = null;
this.labelStaticSorterRunTime.BorderColor = System.Drawing.Color.Black;
this.labelStaticSorterRunTime.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelStaticSorterRunTime.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
this.labelStaticSorterRunTime.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
this.labelStaticSorterRunTime.ForeColor = System.Drawing.Color.White;
this.labelStaticSorterRunTime.InitVisible = true;
this.labelStaticSorterRunTime.LineSpacing = 0F;
@ -1300,7 +1300,7 @@
this.buttonDown.ColorKeySamplePosition = new System.Drawing.Point(0, 0);
this.buttonDown.DisableImage = null;
this.buttonDown.DownImage = null;
this.buttonDown.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular);
this.buttonDown.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
this.buttonDown.GroupID = 0;
this.buttonDown.InitVisible = true;
this.buttonDown.Location = new System.Drawing.Point(397, 80);
@ -1333,7 +1333,7 @@
this.buttonUp.ColorKeySamplePosition = new System.Drawing.Point(0, 0);
this.buttonUp.DisableImage = null;
this.buttonUp.DownImage = null;
this.buttonUp.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular);
this.buttonUp.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
this.buttonUp.GroupID = 0;
this.buttonUp.InitVisible = true;
this.buttonUp.Location = new System.Drawing.Point(397, 33);
@ -1364,7 +1364,7 @@
this.smartListBox1.ColumnAlign = SmartX.SmartListBox.COLUMNALIGNS.CENTER;
this.smartListBox1.ColumnDelimiter = '\0';
this.smartListBox1.ColumnOffsets = null;
this.smartListBox1.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular);
this.smartListBox1.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
this.smartListBox1.FontColor = System.Drawing.Color.Black;
this.smartListBox1.InitVisible = true;
this.smartListBox1.ItemAddOrder = SmartX.SmartListBox.ITEMADDORDERS.BOTTOMADD;
@ -1403,7 +1403,7 @@
this.labelAlarm2ErrorCode.BackPictureBox2 = null;
this.labelAlarm2ErrorCode.BorderColor = System.Drawing.Color.Black;
this.labelAlarm2ErrorCode.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelAlarm2ErrorCode.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular);
this.labelAlarm2ErrorCode.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
this.labelAlarm2ErrorCode.InitVisible = true;
this.labelAlarm2ErrorCode.LineSpacing = 0F;
this.labelAlarm2ErrorCode.Location = new System.Drawing.Point(11, 4);
@ -1464,7 +1464,7 @@
this.labelMessage1.BackPictureBox2 = null;
this.labelMessage1.BorderColor = System.Drawing.Color.Black;
this.labelMessage1.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelMessage1.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular);
this.labelMessage1.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
this.labelMessage1.InitVisible = true;
this.labelMessage1.LineSpacing = 0F;
this.labelMessage1.Location = new System.Drawing.Point(75, 62);
@ -1483,7 +1483,7 @@
this.smartLabel2.BackPictureBox2 = null;
this.smartLabel2.BorderColor = System.Drawing.Color.Black;
this.smartLabel2.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.smartLabel2.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular);
this.smartLabel2.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
this.smartLabel2.InitVisible = true;
this.smartLabel2.LineSpacing = 0F;
this.smartLabel2.Location = new System.Drawing.Point(11, 4);
@ -1568,7 +1568,7 @@
this.buttonCut.ColorKeySamplePosition = new System.Drawing.Point(0, 0);
this.buttonCut.DisableImage = null;
this.buttonCut.DownImage = null;
this.buttonCut.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold);
this.buttonCut.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold);
this.buttonCut.ForeColor = System.Drawing.Color.White;
this.buttonCut.GroupID = 0;
this.buttonCut.InitVisible = true;
@ -1632,7 +1632,7 @@
this.labelUserLevel.BackPictureBox2 = null;
this.labelUserLevel.BorderColor = System.Drawing.Color.LightGray;
this.labelUserLevel.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelUserLevel.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
this.labelUserLevel.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
this.labelUserLevel.ForeColor = System.Drawing.Color.Black;
this.labelUserLevel.InitVisible = true;
this.labelUserLevel.LineSpacing = 0F;
@ -1653,7 +1653,7 @@
this.labelUserID.BackPictureBox2 = null;
this.labelUserID.BorderColor = System.Drawing.Color.LightGray;
this.labelUserID.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelUserID.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
this.labelUserID.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
this.labelUserID.InitVisible = true;
this.labelUserID.LineSpacing = 0F;
this.labelUserID.Location = new System.Drawing.Point(661, 9);
@ -1680,7 +1680,7 @@
this.labelTitleTotalCount.Size = new System.Drawing.Size(80, 41);
this.labelTitleTotalCount.TabIndex = 521;
this.labelTitleTotalCount.Text = "Total";
this.labelTitleTotalCount.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
this.labelTitleTotalCount.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left;
this.labelTitleTotalCount.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
this.labelTitleTotalCount.Wordwrap = false;
this.labelTitleTotalCount.Click += new System.EventHandler(this.labelTotalCount_Click);
@ -1695,12 +1695,12 @@
this.labelTitleNGCount.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold);
this.labelTitleNGCount.InitVisible = true;
this.labelTitleNGCount.LineSpacing = 0F;
this.labelTitleNGCount.Location = new System.Drawing.Point(274, 703);
this.labelTitleNGCount.Location = new System.Drawing.Point(268, 703);
this.labelTitleNGCount.Name = "labelTitleNGCount";
this.labelTitleNGCount.Size = new System.Drawing.Size(82, 41);
this.labelTitleNGCount.Size = new System.Drawing.Size(90, 41);
this.labelTitleNGCount.TabIndex = 522;
this.labelTitleNGCount.Text = "NG";
this.labelTitleNGCount.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
this.labelTitleNGCount.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left;
this.labelTitleNGCount.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
this.labelTitleNGCount.Wordwrap = false;
this.labelTitleNGCount.Click += new System.EventHandler(this.labelTitleNGCount_Click);
@ -1712,7 +1712,7 @@
this.labelTitleScreen.BackPictureBox2 = null;
this.labelTitleScreen.BorderColor = System.Drawing.Color.Black;
this.labelTitleScreen.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelTitleScreen.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
this.labelTitleScreen.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
this.labelTitleScreen.InitVisible = true;
this.labelTitleScreen.LineSpacing = 0F;
this.labelTitleScreen.Location = new System.Drawing.Point(664, 583);
@ -1811,7 +1811,7 @@
this.smartLabel3.BackPictureBox2 = null;
this.smartLabel3.BorderColor = System.Drawing.Color.Black;
this.smartLabel3.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.smartLabel3.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
this.smartLabel3.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
this.smartLabel3.InitVisible = true;
this.smartLabel3.LineSpacing = 0F;
this.smartLabel3.Location = new System.Drawing.Point(363, 8);
@ -1884,7 +1884,7 @@
this.labelStaticAlarmContinuousNG.BackPictureBox2 = null;
this.labelStaticAlarmContinuousNG.BorderColor = System.Drawing.Color.Black;
this.labelStaticAlarmContinuousNG.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelStaticAlarmContinuousNG.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
this.labelStaticAlarmContinuousNG.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
this.labelStaticAlarmContinuousNG.InitVisible = true;
this.labelStaticAlarmContinuousNG.LineSpacing = 0F;
this.labelStaticAlarmContinuousNG.Location = new System.Drawing.Point(207, 8);
@ -1934,7 +1934,7 @@
this.labelTitleBypass.BackPictureBox2 = null;
this.labelTitleBypass.BorderColor = System.Drawing.Color.Black;
this.labelTitleBypass.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelTitleBypass.Font = new System.Drawing.Font("굴림", 14F, System.Drawing.FontStyle.Bold);
this.labelTitleBypass.Font = new System.Drawing.Font("Gulim", 14F, System.Drawing.FontStyle.Bold);
this.labelTitleBypass.InitVisible = true;
this.labelTitleBypass.LineSpacing = 0F;
this.labelTitleBypass.Location = new System.Drawing.Point(35, 8);
@ -2105,7 +2105,7 @@
this.labelStaticATPC.BackPictureBox2 = null;
this.labelStaticATPC.BorderColor = System.Drawing.Color.Black;
this.labelStaticATPC.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelStaticATPC.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
this.labelStaticATPC.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
this.labelStaticATPC.InitVisible = true;
this.labelStaticATPC.LineSpacing = 0F;
this.labelStaticATPC.Location = new System.Drawing.Point(26, 8);
@ -2197,7 +2197,7 @@
this.labelMessage3.BackPictureBox2 = null;
this.labelMessage3.BorderColor = System.Drawing.Color.Black;
this.labelMessage3.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelMessage3.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular);
this.labelMessage3.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
this.labelMessage3.InitVisible = true;
this.labelMessage3.LineSpacing = 0F;
this.labelMessage3.Location = new System.Drawing.Point(75, 30);
@ -2216,7 +2216,7 @@
this.smartLabel4.BackPictureBox2 = null;
this.smartLabel4.BorderColor = System.Drawing.Color.Black;
this.smartLabel4.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.smartLabel4.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular);
this.smartLabel4.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
this.smartLabel4.InitVisible = true;
this.smartLabel4.LineSpacing = 0F;
this.smartLabel4.Location = new System.Drawing.Point(11, 4);
@ -2293,7 +2293,7 @@
this.buttonATPC_Reset.ColorKeySamplePosition = new System.Drawing.Point(0, 0);
this.buttonATPC_Reset.DisableImage = null;
this.buttonATPC_Reset.DownImage = null;
this.buttonATPC_Reset.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
this.buttonATPC_Reset.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
this.buttonATPC_Reset.GroupID = 0;
this.buttonATPC_Reset.InitVisible = true;
this.buttonATPC_Reset.Location = new System.Drawing.Point(337, 42);
@ -2323,7 +2323,7 @@
this.labelStaticATPC_Lack.BackPictureBox2 = null;
this.labelStaticATPC_Lack.BorderColor = System.Drawing.Color.Black;
this.labelStaticATPC_Lack.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelStaticATPC_Lack.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
this.labelStaticATPC_Lack.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
this.labelStaticATPC_Lack.InitVisible = true;
this.labelStaticATPC_Lack.LineSpacing = 0F;
this.labelStaticATPC_Lack.Location = new System.Drawing.Point(522, 8);
@ -2363,7 +2363,7 @@
this.labelStaticATPC_Pass.BackPictureBox2 = null;
this.labelStaticATPC_Pass.BorderColor = System.Drawing.Color.Black;
this.labelStaticATPC_Pass.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelStaticATPC_Pass.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
this.labelStaticATPC_Pass.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
this.labelStaticATPC_Pass.InitVisible = true;
this.labelStaticATPC_Pass.LineSpacing = 0F;
this.labelStaticATPC_Pass.Location = new System.Drawing.Point(416, 8);
@ -2402,7 +2402,7 @@
this.labelStaticATPC_Count.BackPictureBox2 = null;
this.labelStaticATPC_Count.BorderColor = System.Drawing.Color.Black;
this.labelStaticATPC_Count.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelStaticATPC_Count.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
this.labelStaticATPC_Count.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
this.labelStaticATPC_Count.InitVisible = true;
this.labelStaticATPC_Count.LineSpacing = 0F;
this.labelStaticATPC_Count.Location = new System.Drawing.Point(231, 8);
@ -2450,7 +2450,7 @@
this.labelExpireOfPassword.BackPictureBox2 = null;
this.labelExpireOfPassword.BorderColor = System.Drawing.Color.LightGray;
this.labelExpireOfPassword.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelExpireOfPassword.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
this.labelExpireOfPassword.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
this.labelExpireOfPassword.ForeColor = System.Drawing.Color.Black;
this.labelExpireOfPassword.InitVisible = true;
this.labelExpireOfPassword.LineSpacing = 0F;
@ -2470,6 +2470,8 @@
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.AutoScroll = true;
this.ClientSize = new System.Drawing.Size(1024, 768);
this.Controls.Add(this.labelTotalCount);
this.Controls.Add(this.labelNGCount);
this.Controls.Add(this.labelExpireOfPassword);
this.Controls.Add(this.panelSubMenu2);
this.Controls.Add(this.panelAlarmMessageBox3);
@ -2497,10 +2499,8 @@
this.Controls.Add(this.buttonBarGraphForm);
this.Controls.Add(this.buttonDotGraphForm);
this.Controls.Add(this.buttonTableForm);
this.Controls.Add(this.labelTotalCount);
this.Controls.Add(this.labelProductionSpeed);
this.Controls.Add(this.smartLabel1);
this.Controls.Add(this.labelNGCount);
this.Controls.Add(this.buttonTare);
this.Controls.Add(this.buttonOver);
this.Controls.Add(this.buttonPass);

View File

@ -174,12 +174,16 @@ namespace INT69DC_7C.Forms
else if (this.ParentForm.SystemConfig.Language == DataStore.LanguageID.Chinese)
{
#region Chinese
this.buttonOver.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnFormMainOverDisable));
this.buttonOver.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnFormMainOverDown));
this.buttonOver.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnFormMainOverUp));
this.buttonPass.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnFormMainPassDisable));
this.buttonPass.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnFormMainPassDown));
this.buttonPass.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnFormMainPassUp));
this.buttonUnder.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnFormMainUnderDisable));
this.buttonUnder.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnFormMainUnderDown));
this.buttonUnder.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnFormMainUnderUp));
this.buttonTare.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnFormMainTareDisable));
this.buttonTare.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnFormMainTareDown));
this.buttonTare.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnFormMainTareUp));
@ -253,17 +257,36 @@ namespace INT69DC_7C.Forms
this.labelStaticATPC_Pass.Text = "排放";
this.labelStaticATPC_Lack.Text = "缺少";
this.buttonATPC_Reset.Text = "重置";
// Font & Location & Size
this.labelTitleTotalCount.Font = new Font("New Gulim", 14, FontStyle.Bold);
this.labelTitleTotalCount.Location = new Point(34, 696);
this.labelTitleTotalCount.Size = new Size(200, 27);
this.labelTotalCount.Location = new Point(34, 720);
this.labelTotalCount.Size = new Size(200, 27);
this.labelTitleNGCount.Font = new Font("New Gulim", 14, FontStyle.Bold);
this.labelTitleNGCount.Location = new Point(285, 696);
this.labelTitleNGCount.Size = new Size(200, 27);
this.labelNGCount.Location = new Point(285, 720);
this.labelNGCount.Size = new Size(200, 27);
#endregion
}
else if (this.ParentForm.SystemConfig.Language == DataStore.LanguageID.Czech)
{
#region Czech
this.buttonOver.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeFormMainOverDisable));
this.buttonOver.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeFormMainOverDown));
this.buttonOver.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeFormMainOverUp));
this.buttonPass.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeFormMainPassDisable));
this.buttonPass.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeFormMainPassDown));
this.buttonPass.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeFormMainPassUp));
this.buttonUnder.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeFormMainUnderDisable));
this.buttonUnder.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeFormMainUnderDown));
this.buttonUnder.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeFormMainUnderUp));
this.buttonTare.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeFormMainTareDisable));
this.buttonTare.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeFormMainTareDown));
this.buttonTare.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeFormMainTareUp));
@ -319,11 +342,9 @@ namespace INT69DC_7C.Forms
this.labelTitleNGCount.Text = "Vadný";
this.labelTitleBypass.Text = "Bypass";
this.labelTitleScreen.Text = "Zobrazení";
this.labelTitleScreen.Font = new Font("New Gulim", 10F, FontStyle.Bold);
this.groupBoxJudgment.Text = "Nastavení rozhodnutí";
this.labelStaticFilter.Text = "Filtrovat";
this.labelStaticJudgmentDelayTime.Font = new Font("Arial", 9, FontStyle.Bold);
this.labelStaticJudgmentDelayTime.Text = "Zpoždění rozhodnutí";
this.labelStaticDoubleDelayTime.Text = "Přesah";
this.labelStaticJudgmentCount.Text = "Počet rozhodnutí";
@ -336,17 +357,39 @@ namespace INT69DC_7C.Forms
this.labelStaticATPC_Pass.Text = "Váha";
this.labelStaticATPC_Lack.Text = "nedostatek";
this.buttonATPC_Reset.Text = "RST";
// Font & Location & Size
this.labelTitleScreen.Font = new Font("New Gulim", 10F, FontStyle.Bold);
this.labelStaticJudgmentDelayTime.Font = new Font("Arial", 9, FontStyle.Bold);
this.labelTitleTotalCount.Font = new Font("New Gulim", 14, FontStyle.Bold);
this.labelTitleTotalCount.Location = new Point(34, 696);
this.labelTitleTotalCount.Size = new Size(200, 27);
this.labelTotalCount.Location = new Point(34, 720);
this.labelTotalCount.Size = new Size(200, 27);
this.labelTitleNGCount.Font = new Font("New Gulim", 14, FontStyle.Bold);
this.labelTitleNGCount.Location = new Point(285, 696);
this.labelTitleNGCount.Size = new Size(200, 27);
this.labelNGCount.Location = new Point(285, 720);
this.labelNGCount.Size = new Size(200, 27);
#endregion
}
else if (this.ParentForm.SystemConfig.Language == DataStore.LanguageID.German)
{
#region German
this.buttonOver.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.gerFormMainOverDisable));
this.buttonOver.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.gerFormMainOverDown));
this.buttonOver.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.gerFormMainOverUp));
this.buttonPass.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.gerFormMainPassDisable));
this.buttonPass.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.gerFormMainPassDown));
this.buttonPass.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.gerFormMainPassUp));
this.buttonUnder.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.gerFormMainUnderDisable));
this.buttonUnder.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.gerFormMainUnderDown));
this.buttonUnder.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.gerFormMainUnderUp));
this.buttonTare.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.gerFormMainTareDisable));
this.buttonTare.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.gerFormMainTareDown));
this.buttonTare.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.gerFormMainTareUp));
@ -403,8 +446,6 @@ namespace INT69DC_7C.Forms
this.labelTitleNGCount.Text = "Schlecht";
this.labelTitleBypass.Text = "Bypass";
this.labelTitleScreen.Text = "Bildschirm";
this.labelTitleScreen.Font = new Font("New Gulim", 10F, FontStyle.Bold);
this.labelTitleTotalCount.Font = new Font("New Gulim", 14F, FontStyle.Bold);
this.groupBoxJudgment.Text = "Tascheneinstellung";
this.labelStaticFilter.Text = "Filter";
@ -420,6 +461,23 @@ namespace INT69DC_7C.Forms
this.labelStaticATPC_Pass.Text = "Bestehen";
this.labelStaticATPC_Lack.Text = "Mangel";
this.buttonATPC_Reset.Text = "RST";
// Font & Location & Size
this.labelTitleScreen.Font = new Font("New Gulim", 10F, FontStyle.Bold);
this.labelTitleTotalCount.Font = new Font("New Gulim", 14, FontStyle.Bold);
this.labelTitleTotalCount.Location = new Point(34, 696);
this.labelTitleTotalCount.Size = new Size(200, 27);
this.labelTotalCount.Location = new Point(34, 720);
this.labelTotalCount.Size = new Size(200, 27);
this.labelTitleNGCount.Font = new Font("New Gulim", 14, FontStyle.Bold);
this.labelTitleNGCount.Location = new Point(285, 696);
this.labelTitleNGCount.Size = new Size(200, 27);
this.labelNGCount.Location = new Point(285, 720);
this.labelNGCount.Size = new Size(200, 27);
#endregion
}
else
@ -1043,7 +1101,8 @@ namespace INT69DC_7C.Forms
}
public void Part11AutomaticLogoutReset()
{
UserManager.UserManager_AutoLogoutTimeoutReset();
if (this.ParentForm.SystemConfig.IsPart11 == true)
UserManager.UserManager_AutoLogoutTimeoutReset();
}
public void UpdateDisplayUser(UserItem user)

View File

@ -97,6 +97,9 @@ namespace INT69DC_7C.Forms
this.buttonCommunication.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engMenuCommunicationDisable));
this.buttonCommunication.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engMenuCommunicationDown));
this.buttonCommunication.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engMenuCommunicationUp));
this.buttonDataViewer.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engMenuDataViewerDisable));
this.buttonDataViewer.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engMenuDataViewerDown));
this.buttonDataViewer.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engMenuDataViewerUp));
this.buttonBack.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engBackupDisable));
this.buttonBack.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engBackDown));
@ -154,6 +157,9 @@ namespace INT69DC_7C.Forms
this.buttonCommunication.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnMenuCommunicationDisable));
this.buttonCommunication.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnMenuCommunicationDown));
this.buttonCommunication.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnMenuCommunicationUp));
this.buttonDataViewer.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnMenuDataViewerDisable));
this.buttonDataViewer.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnMenuDataViewerDown));
this.buttonDataViewer.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnMenuDataViewerUp));
this.buttonBack.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnBackupDisable));
this.buttonBack.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnBackDown));
@ -211,6 +217,9 @@ namespace INT69DC_7C.Forms
this.buttonCommunication.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeMenuCommunicationDisable));
this.buttonCommunication.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeMenuCommunicationDown));
this.buttonCommunication.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeMenuCommunicationUp));
this.buttonDataViewer.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeMenuDataViewerDisable));
this.buttonDataViewer.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeMenuDataViewerDown));
this.buttonDataViewer.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeMenuDataViewerUp));
this.buttonBack.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeBackupDisable));
this.buttonBack.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeBackDown));
@ -268,6 +277,9 @@ namespace INT69DC_7C.Forms
this.buttonCommunication.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.gerMenuCommunicationDisable));
this.buttonCommunication.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.gerMenuCommunicationDown));
this.buttonCommunication.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.gerMenuCommunicationUp));
this.buttonDataViewer.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.gerMenuDataViewerDisable));
this.buttonDataViewer.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.gerMenuDataViewerDown));
this.buttonDataViewer.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.gerMenuDataViewerUp));
this.buttonBack.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.gerBackupDisable));
this.buttonBack.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.gerBackDown));

View File

@ -66,6 +66,10 @@ namespace INT69DC_7C.Forms
{
this.labelTitle.Text = "User settings";
this.labelStatusExpiryAccount.Text = "Account Expiration";
this.labelStatusExpiryPassword.Text = "Password Expiration";
this.labelAutoLogoutWarning.Text = "* Applies to all users";
this.buttonGroupEditor.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engGroupEditorDisable));
this.buttonGroupEditor.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engGroupEditorDown));
this.buttonGroupEditor.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engGroupEditorUp));
@ -77,6 +81,10 @@ namespace INT69DC_7C.Forms
{
this.labelTitle.Text = "用户设置";
this.labelStatusExpiryAccount.Text = "帐户到期";
this.labelStatusExpiryPassword.Text = "密码过期";
this.labelAutoLogoutWarning.Text = "* 适用于所有用户";
this.buttonGroupEditor.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engGroupEditorDisable));
this.buttonGroupEditor.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engGroupEditorDown));
this.buttonGroupEditor.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engGroupEditorUp));
@ -88,6 +96,10 @@ namespace INT69DC_7C.Forms
{
this.labelTitle.Text = "uživatelské nastavení";
this.labelStatusExpiryAccount.Text = "Vypršení platnosti účtu";
this.labelStatusExpiryPassword.Text = "Vypršení platnosti hesla";
this.labelAutoLogoutWarning.Text = "* Platí pro všechny uživatele";
this.buttonGroupEditor.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engGroupEditorDisable));
this.buttonGroupEditor.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engGroupEditorDown));
this.buttonGroupEditor.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engGroupEditorUp));
@ -99,6 +111,10 @@ namespace INT69DC_7C.Forms
{
this.labelTitle.Text = "Benutzereinstellungen";
this.labelStatusExpiryAccount.Text = "Account Expiration";
this.labelStatusExpiryPassword.Text = "Password Expiration";
this.labelAutoLogoutWarning.Text = "* Applies to all users";
this.buttonGroupEditor.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engGroupEditorDisable));
this.buttonGroupEditor.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engGroupEditorDown));
this.buttonGroupEditor.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engGroupEditorUp));

View File

@ -111,7 +111,7 @@
this.labelTitle.BackPictureBox2 = null;
this.labelTitle.BorderColor = System.Drawing.Color.Black;
this.labelTitle.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelTitle.Font = new System.Drawing.Font("새굴림", 35F, System.Drawing.FontStyle.Bold);
this.labelTitle.Font = new System.Drawing.Font("New Gulim", 35F, System.Drawing.FontStyle.Bold);
this.labelTitle.InitVisible = true;
this.labelTitle.LineSpacing = 0F;
this.labelTitle.Location = new System.Drawing.Point(199, 7);
@ -213,7 +213,7 @@
this.buttonResetPW.DownImage = null;
this.buttonResetPW.GroupID = 0;
this.buttonResetPW.InitVisible = true;
this.buttonResetPW.Location = new System.Drawing.Point(516, 120);
this.buttonResetPW.Location = new System.Drawing.Point(496, 120);
this.buttonResetPW.Mode = SmartX.SmartButton.BUTTONMODE.NORMAL;
this.buttonResetPW.Name = "buttonResetPW";
this.buttonResetPW.NestedClickEventPrevent = false;
@ -235,8 +235,8 @@
//
// comboBoxAccessRight
//
this.comboBoxAccessRight.Font = new System.Drawing.Font("새굴림", 15F, System.Drawing.FontStyle.Regular);
this.comboBoxAccessRight.Location = new System.Drawing.Point(219, 156);
this.comboBoxAccessRight.Font = new System.Drawing.Font("New Gulim", 15F, System.Drawing.FontStyle.Regular);
this.comboBoxAccessRight.Location = new System.Drawing.Point(199, 156);
this.comboBoxAccessRight.Name = "comboBoxAccessRight";
this.comboBoxAccessRight.Size = new System.Drawing.Size(291, 29);
this.comboBoxAccessRight.TabIndex = 241;
@ -254,7 +254,7 @@
this.labelAccessRightAdmin.ForeColor = System.Drawing.Color.Black;
this.labelAccessRightAdmin.InitVisible = true;
this.labelAccessRightAdmin.LineSpacing = 0F;
this.labelAccessRightAdmin.Location = new System.Drawing.Point(219, 156);
this.labelAccessRightAdmin.Location = new System.Drawing.Point(199, 156);
this.labelAccessRightAdmin.Name = "labelAccessRightAdmin";
this.labelAccessRightAdmin.Size = new System.Drawing.Size(291, 30);
this.labelAccessRightAdmin.TabIndex = 242;
@ -271,15 +271,15 @@
this.labelAutoLogoutWarning.BackPictureBox2 = null;
this.labelAutoLogoutWarning.BorderColor = System.Drawing.Color.White;
this.labelAutoLogoutWarning.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelAutoLogoutWarning.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
this.labelAutoLogoutWarning.Font = new System.Drawing.Font("New Gulim", 9F, System.Drawing.FontStyle.Bold);
this.labelAutoLogoutWarning.ForeColor = System.Drawing.Color.DarkRed;
this.labelAutoLogoutWarning.InitVisible = true;
this.labelAutoLogoutWarning.LineSpacing = 0F;
this.labelAutoLogoutWarning.Location = new System.Drawing.Point(341, 503);
this.labelAutoLogoutWarning.Location = new System.Drawing.Point(321, 503);
this.labelAutoLogoutWarning.Name = "labelAutoLogoutWarning";
this.labelAutoLogoutWarning.Size = new System.Drawing.Size(235, 30);
this.labelAutoLogoutWarning.TabIndex = 240;
this.labelAutoLogoutWarning.Text = "* 모든 ID에 적용됨";
this.labelAutoLogoutWarning.Text = "* 모든 사용자에게 적용됨";
this.labelAutoLogoutWarning.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left;
this.labelAutoLogoutWarning.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
this.labelAutoLogoutWarning.Wordwrap = false;
@ -328,7 +328,7 @@
this.labelTitleAccessRight.LineSpacing = 0F;
this.labelTitleAccessRight.Location = new System.Drawing.Point(13, 156);
this.labelTitleAccessRight.Name = "labelTitleAccessRight";
this.labelTitleAccessRight.Size = new System.Drawing.Size(200, 30);
this.labelTitleAccessRight.Size = new System.Drawing.Size(180, 30);
this.labelTitleAccessRight.TabIndex = 221;
this.labelTitleAccessRight.Text = "Access right";
this.labelTitleAccessRight.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
@ -346,7 +346,7 @@
this.labelExpiryDateOfPassword.Font = new System.Drawing.Font("Arial", 18F, System.Drawing.FontStyle.Bold);
this.labelExpiryDateOfPassword.InitVisible = true;
this.labelExpiryDateOfPassword.LineSpacing = 0F;
this.labelExpiryDateOfPassword.Location = new System.Drawing.Point(219, 441);
this.labelExpiryDateOfPassword.Location = new System.Drawing.Point(199, 441);
this.labelExpiryDateOfPassword.Name = "labelExpiryDateOfPassword";
this.labelExpiryDateOfPassword.Size = new System.Drawing.Size(70, 30);
this.labelExpiryDateOfPassword.TabIndex = 7;
@ -367,7 +367,7 @@
this.labelExpiryDateOfAccount.Font = new System.Drawing.Font("Arial", 18F, System.Drawing.FontStyle.Bold);
this.labelExpiryDateOfAccount.InitVisible = true;
this.labelExpiryDateOfAccount.LineSpacing = 0F;
this.labelExpiryDateOfAccount.Location = new System.Drawing.Point(219, 405);
this.labelExpiryDateOfAccount.Location = new System.Drawing.Point(199, 405);
this.labelExpiryDateOfAccount.Name = "labelExpiryDateOfAccount";
this.labelExpiryDateOfAccount.Size = new System.Drawing.Size(70, 30);
this.labelExpiryDateOfAccount.TabIndex = 5;
@ -387,9 +387,9 @@
this.labelTitleDayPassword.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelTitleDayPassword.InitVisible = true;
this.labelTitleDayPassword.LineSpacing = 0F;
this.labelTitleDayPassword.Location = new System.Drawing.Point(294, 441);
this.labelTitleDayPassword.Location = new System.Drawing.Point(274, 441);
this.labelTitleDayPassword.Name = "labelTitleDayPassword";
this.labelTitleDayPassword.Size = new System.Drawing.Size(41, 30);
this.labelTitleDayPassword.Size = new System.Drawing.Size(30, 30);
this.labelTitleDayPassword.TabIndex = 220;
this.labelTitleDayPassword.Text = "day";
this.labelTitleDayPassword.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left;
@ -407,9 +407,9 @@
this.labelTitleDayAccount.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelTitleDayAccount.InitVisible = true;
this.labelTitleDayAccount.LineSpacing = 0F;
this.labelTitleDayAccount.Location = new System.Drawing.Point(294, 405);
this.labelTitleDayAccount.Location = new System.Drawing.Point(274, 405);
this.labelTitleDayAccount.Name = "labelTitleDayAccount";
this.labelTitleDayAccount.Size = new System.Drawing.Size(41, 30);
this.labelTitleDayAccount.Size = new System.Drawing.Size(30, 30);
this.labelTitleDayAccount.TabIndex = 219;
this.labelTitleDayAccount.Text = "day";
this.labelTitleDayAccount.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left;
@ -427,7 +427,7 @@
this.labelTitleMin.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelTitleMin.InitVisible = true;
this.labelTitleMin.LineSpacing = 0F;
this.labelTitleMin.Location = new System.Drawing.Point(294, 503);
this.labelTitleMin.Location = new System.Drawing.Point(274, 503);
this.labelTitleMin.Name = "labelTitleMin";
this.labelTitleMin.Size = new System.Drawing.Size(37, 30);
this.labelTitleMin.TabIndex = 218;
@ -444,13 +444,13 @@
this.labelStatusExpiryPassword.BackPictureBox2 = null;
this.labelStatusExpiryPassword.BorderColor = System.Drawing.Color.Black;
this.labelStatusExpiryPassword.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelStatusExpiryPassword.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
this.labelStatusExpiryPassword.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
this.labelStatusExpiryPassword.ForeColor = System.Drawing.Color.DarkRed;
this.labelStatusExpiryPassword.InitVisible = true;
this.labelStatusExpiryPassword.LineSpacing = 0F;
this.labelStatusExpiryPassword.Location = new System.Drawing.Point(516, 441);
this.labelStatusExpiryPassword.Location = new System.Drawing.Point(476, 441);
this.labelStatusExpiryPassword.Name = "labelStatusExpiryPassword";
this.labelStatusExpiryPassword.Size = new System.Drawing.Size(100, 30);
this.labelStatusExpiryPassword.Size = new System.Drawing.Size(160, 30);
this.labelStatusExpiryPassword.TabIndex = 194;
this.labelStatusExpiryPassword.Text = "비밀번호만료";
this.labelStatusExpiryPassword.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
@ -465,13 +465,13 @@
this.labelStatusExpiryAccount.BackPictureBox2 = null;
this.labelStatusExpiryAccount.BorderColor = System.Drawing.Color.Black;
this.labelStatusExpiryAccount.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelStatusExpiryAccount.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
this.labelStatusExpiryAccount.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
this.labelStatusExpiryAccount.ForeColor = System.Drawing.Color.DarkRed;
this.labelStatusExpiryAccount.InitVisible = true;
this.labelStatusExpiryAccount.LineSpacing = 0F;
this.labelStatusExpiryAccount.Location = new System.Drawing.Point(516, 405);
this.labelStatusExpiryAccount.Location = new System.Drawing.Point(476, 405);
this.labelStatusExpiryAccount.Name = "labelStatusExpiryAccount";
this.labelStatusExpiryAccount.Size = new System.Drawing.Size(100, 30);
this.labelStatusExpiryAccount.Size = new System.Drawing.Size(160, 30);
this.labelStatusExpiryAccount.TabIndex = 194;
this.labelStatusExpiryAccount.Text = "계정만료";
this.labelStatusExpiryAccount.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
@ -490,7 +490,7 @@
this.labelAutomaticLogoutTime.Font = new System.Drawing.Font("Arial", 18F, System.Drawing.FontStyle.Bold);
this.labelAutomaticLogoutTime.InitVisible = true;
this.labelAutomaticLogoutTime.LineSpacing = 0F;
this.labelAutomaticLogoutTime.Location = new System.Drawing.Point(219, 503);
this.labelAutomaticLogoutTime.Location = new System.Drawing.Point(199, 503);
this.labelAutomaticLogoutTime.Name = "labelAutomaticLogoutTime";
this.labelAutomaticLogoutTime.Size = new System.Drawing.Size(70, 30);
this.labelAutomaticLogoutTime.TabIndex = 9;
@ -950,7 +950,7 @@
this.labelTitleAutomaticLogoutTime.LineSpacing = 0F;
this.labelTitleAutomaticLogoutTime.Location = new System.Drawing.Point(13, 503);
this.labelTitleAutomaticLogoutTime.Name = "labelTitleAutomaticLogoutTime";
this.labelTitleAutomaticLogoutTime.Size = new System.Drawing.Size(200, 30);
this.labelTitleAutomaticLogoutTime.Size = new System.Drawing.Size(180, 30);
this.labelTitleAutomaticLogoutTime.TabIndex = 8;
this.labelTitleAutomaticLogoutTime.Text = "Auto logout time";
this.labelTitleAutomaticLogoutTime.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
@ -998,9 +998,9 @@
this.labelExpiryDateOfPassword2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.labelExpiryDateOfPassword2.InitVisible = true;
this.labelExpiryDateOfPassword2.LineSpacing = 0F;
this.labelExpiryDateOfPassword2.Location = new System.Drawing.Point(341, 441);
this.labelExpiryDateOfPassword2.Location = new System.Drawing.Point(310, 441);
this.labelExpiryDateOfPassword2.Name = "labelExpiryDateOfPassword2";
this.labelExpiryDateOfPassword2.Size = new System.Drawing.Size(169, 30);
this.labelExpiryDateOfPassword2.Size = new System.Drawing.Size(160, 30);
this.labelExpiryDateOfPassword2.TabIndex = 215;
this.labelExpiryDateOfPassword2.Text = "2021/12/30";
this.labelExpiryDateOfPassword2.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
@ -1017,9 +1017,9 @@
this.labelExpiryDateOfAccount2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.labelExpiryDateOfAccount2.InitVisible = true;
this.labelExpiryDateOfAccount2.LineSpacing = 0F;
this.labelExpiryDateOfAccount2.Location = new System.Drawing.Point(341, 405);
this.labelExpiryDateOfAccount2.Location = new System.Drawing.Point(310, 405);
this.labelExpiryDateOfAccount2.Name = "labelExpiryDateOfAccount2";
this.labelExpiryDateOfAccount2.Size = new System.Drawing.Size(169, 30);
this.labelExpiryDateOfAccount2.Size = new System.Drawing.Size(160, 30);
this.labelExpiryDateOfAccount2.TabIndex = 214;
this.labelExpiryDateOfAccount2.Text = "2021/12/30";
this.labelExpiryDateOfAccount2.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
@ -1094,7 +1094,7 @@
this.labelTitleExpiryDateOfPassword.LineSpacing = 0F;
this.labelTitleExpiryDateOfPassword.Location = new System.Drawing.Point(13, 441);
this.labelTitleExpiryDateOfPassword.Name = "labelTitleExpiryDateOfPassword";
this.labelTitleExpiryDateOfPassword.Size = new System.Drawing.Size(200, 30);
this.labelTitleExpiryDateOfPassword.Size = new System.Drawing.Size(180, 30);
this.labelTitleExpiryDateOfPassword.TabIndex = 6;
this.labelTitleExpiryDateOfPassword.Text = "Expiry date (Password)";
this.labelTitleExpiryDateOfPassword.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
@ -1115,7 +1115,7 @@
this.labelTitleExpiryDateOfAccount.LineSpacing = 0F;
this.labelTitleExpiryDateOfAccount.Location = new System.Drawing.Point(13, 405);
this.labelTitleExpiryDateOfAccount.Name = "labelTitleExpiryDateOfAccount";
this.labelTitleExpiryDateOfAccount.Size = new System.Drawing.Size(200, 30);
this.labelTitleExpiryDateOfAccount.Size = new System.Drawing.Size(180, 30);
this.labelTitleExpiryDateOfAccount.TabIndex = 4;
this.labelTitleExpiryDateOfAccount.Text = "Expiry date (Account)";
this.labelTitleExpiryDateOfAccount.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
@ -1132,7 +1132,7 @@
this.labelPassword.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelPassword.InitVisible = true;
this.labelPassword.LineSpacing = 0F;
this.labelPassword.Location = new System.Drawing.Point(219, 120);
this.labelPassword.Location = new System.Drawing.Point(199, 120);
this.labelPassword.Name = "labelPassword";
this.labelPassword.Size = new System.Drawing.Size(291, 30);
this.labelPassword.TabIndex = 3;
@ -1156,7 +1156,7 @@
this.labelTitlePassword.LineSpacing = 0F;
this.labelTitlePassword.Location = new System.Drawing.Point(13, 120);
this.labelTitlePassword.Name = "labelTitlePassword";
this.labelTitlePassword.Size = new System.Drawing.Size(200, 30);
this.labelTitlePassword.Size = new System.Drawing.Size(180, 30);
this.labelTitlePassword.TabIndex = 2;
this.labelTitlePassword.Text = "Password";
this.labelTitlePassword.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
@ -1173,7 +1173,7 @@
this.labelID.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelID.InitVisible = true;
this.labelID.LineSpacing = 0F;
this.labelID.Location = new System.Drawing.Point(219, 84);
this.labelID.Location = new System.Drawing.Point(199, 84);
this.labelID.Name = "labelID";
this.labelID.Size = new System.Drawing.Size(291, 30);
this.labelID.TabIndex = 1;
@ -1197,7 +1197,7 @@
this.labelTitleID.LineSpacing = 0F;
this.labelTitleID.Location = new System.Drawing.Point(13, 84);
this.labelTitleID.Name = "labelTitleID";
this.labelTitleID.Size = new System.Drawing.Size(200, 30);
this.labelTitleID.Size = new System.Drawing.Size(180, 30);
this.labelTitleID.TabIndex = 0;
this.labelTitleID.Text = "ID";
this.labelTitleID.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
@ -1237,7 +1237,7 @@
//
// listBoxUserList
//
this.listBoxUserList.Font = new System.Drawing.Font("새굴림", 20F, System.Drawing.FontStyle.Bold);
this.listBoxUserList.Font = new System.Drawing.Font("New Gulim", 20F, System.Drawing.FontStyle.Bold);
this.listBoxUserList.Location = new System.Drawing.Point(16, 101);
this.listBoxUserList.Name = "listBoxUserList";
this.listBoxUserList.Size = new System.Drawing.Size(357, 560);

View File

@ -15,6 +15,27 @@
멀티형 8,10,12열 컨베어/스틱 계량기
*/
@ Ver 11.4.5 by LSJ
- 2024.10.10
- Ver 11.4.4 Modify
- Framework : SmartX Framework V3.1.1(update: 2019.03.21)
- 언어 버그 수정
데이터뷰어, 유저설정 등
메인화면 - 하한,기준,상한,용기 Disable 이미지 (중문, 독일어, 체코어)
메인화면 - 전체수량, NG 표시 언어별 위치 및 사이즈 조정 (언어 변경 시 글씨가 늘어나 잘림)
@ Ver 11.4.4 by LSJ
- 2024.10.08
- Ver 11.4.3 Modify
- Framework : SmartX Framework V3.1.1(update: 2019.03.21)
- V11.4.1 추가 수정
(버그수정)단순 로그인 시, 자동 로그아웃 기능 실행되는 버그 수정
-> 로그인 시 한번 UserManager_AutoLogoutTimeoutPause() 호출 함
다른 버튼 기능 사용 시 Part11AutomaticLogoutReset()을 실행하면서 자동로그아웃 타이머 재동작함
Part11AutomaticLogoutReset() 호출 시
Part11 기능 사용 시만 Reset 되도록 수정함
@ Ver 11.4.3 by LSJ
- 2024.09.09
- Ver 11.4.2 Modify

View File

@ -816,6 +816,42 @@
<None Include="Resources\engFormMainPassDisable.png" />
<None Include="Resources\engFormMainTareDisable.png" />
<None Include="Resources\engFormMainUnderDisable.png" />
<None Include="Resources\engMenuDataViewerDisable.png" />
<None Include="Resources\engMenuDataViewerDown.png" />
<None Include="Resources\engMenuDataViewerUp.png" />
<None Include="Resources\chnMenuDataviewDisable.png" />
<None Include="Resources\chnMenuDataviewDown.png" />
<None Include="Resources\chnMenuDataviewUp.png" />
<None Include="Resources\czeMenuDataviewDisable.png" />
<None Include="Resources\czeMenuDataviewDown.png" />
<None Include="Resources\czeMenuDataviewUp.png" />
<None Include="Resources\gerMenuDataviewDisable.png" />
<None Include="Resources\gerMenuDataviewDown.png" />
<None Include="Resources\gerMenuDataviewUp.png" />
<None Include="Resources\jpnMenuDataviewerUp.png" />
<None Include="Resources\jpnMenuDataviewerDisable.png" />
<None Include="Resources\jpnMenuDataviewerDown.png" />
<None Include="Resources\engFilterDown.png" />
<None Include="Resources\engFilterUp.png" />
<None Include="Resources\engFilterDisable.png" />
<None Include="Resources\chnFilterDisable.png" />
<None Include="Resources\chnFilterDown.png" />
<None Include="Resources\chnFilterUp.png" />
<None Include="Resources\czeFilterDown.png" />
<None Include="Resources\czeFilterUp.png" />
<None Include="Resources\czeFilterDisable.png" />
<None Include="Resources\chnFormMainPassDisable.png" />
<None Include="Resources\chnFormMainTareDisable.png" />
<None Include="Resources\chnFormMainUnderDisable.png" />
<None Include="Resources\chnFormMainOverDisable.png" />
<None Include="Resources\czeFormMainUnderDisable.png" />
<None Include="Resources\czeFormMainOverDisable.png" />
<None Include="Resources\czeFormMainPassDisable.png" />
<None Include="Resources\czeFormMainTareDisable.png" />
<None Include="Resources\gerFormMainTareDisable.png" />
<None Include="Resources\gerFormMainUnderDisable.png" />
<None Include="Resources\gerFormMainOverDisable.png" />
<None Include="Resources\gerFormMainPassDisable.png" />
<Content Include="version.txt" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CompactFramework.CSharp.targets" />

View File

@ -50,12 +50,16 @@ namespace INT69DC_ImageDll
chnFormMainMenuSmallDisable,
chnFormMainMenuSmallDown,
chnFormMainMenuSmallUp,
chnFormMainOverDisable,
chnFormMainOverDown,
chnFormMainOverUp,
chnFormMainPassDisable,
chnFormMainPassDown,
chnFormMainPassUp,
chnFormMainTareDisable,
chnFormMainTareDown,
chnFormMainTareUp,
chnFormMainUnderDisable,
chnFormMainUnderDown,
chnFormMainUnderUp,
chnFormMainZeroDown,
@ -150,6 +154,12 @@ namespace INT69DC_ImageDll
chnMenuCommunicationDisable,
chnMenuCommunicationDown,
chnMenuCommunicationUp,
chnMenuDataViewerDisable,
chnMenuDataViewerDown,
chnMenuDataViewerUp,
chnFilterDisable,
chnFilterDown,
chnFilterUp,
#endregion
#region Czech
@ -193,12 +203,16 @@ namespace INT69DC_ImageDll
czeFormMainMenuSmallDisable,
czeFormMainMenuSmallDown,
czeFormMainMenuSmallUp,
czeFormMainOverDisable,
czeFormMainOverDown,
czeFormMainOverUp,
czeFormMainPassDisable,
czeFormMainPassDown,
czeFormMainPassUp,
czeFormMainTareDisable,
czeFormMainTareDown,
czeFormMainTareUp,
czeFormMainUnderDisable,
czeFormMainUnderDown,
czeFormMainUnderUp,
czeFormMainZeroDown,
@ -287,6 +301,12 @@ namespace INT69DC_ImageDll
czeMenuCommunicationDisable,
czeMenuCommunicationDown,
czeMenuCommunicationUp,
czeMenuDataViewerDisable,
czeMenuDataViewerDown,
czeMenuDataViewerUp,
czeFilterDisable,
czeFilterDown,
czeFilterUp,
#endregion
#region English
@ -435,6 +455,12 @@ namespace INT69DC_ImageDll
engMenuCommunicationDisable,
engMenuCommunicationDown,
engMenuCommunicationUp,
engMenuDataViewerDisable,
engMenuDataViewerDown,
engMenuDataViewerUp,
engFilterDisable,
engFilterDown,
engFilterUp,
#endregion
#region Germany
@ -470,12 +496,16 @@ namespace INT69DC_ImageDll
gerFormMainMenuSmallDisable,
gerFormMainMenuSmallDown,
gerFormMainMenuSmallUp,
gerFormMainOverDisable,
gerFormMainOverDown,
gerFormMainOverUp,
gerFormMainPassDisable,
gerFormMainPassDown,
gerFormMainPassUp,
gerFormMainTareDisable,
gerFormMainTareDown,
gerFormMainTareUp,
gerFormMainUnderDisable,
gerFormMainUnderDown,
gerFormMainUnderUp,
gerFormMainZeroDown,
@ -560,6 +590,9 @@ namespace INT69DC_ImageDll
gerMenuCommunicationDisable,
gerMenuCommunicationDown,
gerMenuCommunicationUp,
gerMenuDataViewerDisable,
gerMenuDataViewerDown,
gerMenuDataViewerUp,
#endregion
#region Japan
@ -695,6 +728,9 @@ namespace INT69DC_ImageDll
jpnSubMenuNGUp,
jpnSubMenuOnceUp,
jpnSubMenuPassUp,
jpnMenuDataViewerDisable,
jpnMenuDataViewerDown,
jpnMenuDataViewerUp,
#endregion
#region Korean
@ -840,24 +876,36 @@ namespace INT69DC_ImageDll
case ButtonImages.chnFormMainMenuSmallUp:
bt = new Bitmap(Resource.chnFormMainMenuSmallUp);
break;
case ButtonImages.chnFormMainOverDisable:
bt = new Bitmap(Resource.chnFormMainOverDisable);
break;
case ButtonImages.chnFormMainOverDown:
bt = new Bitmap(Resource.chnFormMainOverDown);
break;
case ButtonImages.chnFormMainOverUp:
bt = new Bitmap(Resource.chnFormMainOverUp);
break;
case ButtonImages.chnFormMainPassDisable:
bt = new Bitmap(Resource.chnFormMainPassDisable);
break;
case ButtonImages.chnFormMainPassDown:
bt = new Bitmap(Resource.chnFormMainPassDown);
break;
case ButtonImages.chnFormMainPassUp:
bt = new Bitmap(Resource.chnFormMainPassUp);
break;
case ButtonImages.chnFormMainTareDisable:
bt = new Bitmap(Resource.chnFormMainTareDisable);
break;
case ButtonImages.chnFormMainTareDown:
bt = new Bitmap(Resource.chnFormMainTareDown);
break;
case ButtonImages.chnFormMainTareUp:
bt = new Bitmap(Resource.chnFormMainTareUp);
break;
case ButtonImages.chnFormMainUnderDisable:
bt = new Bitmap(Resource.chnFormMainUnderDisable);
break;
case ButtonImages.chnFormMainUnderDown:
bt = new Bitmap(Resource.chnFormMainUnderDown);
break;
@ -1140,6 +1188,24 @@ namespace INT69DC_ImageDll
case ButtonImages.chnMenuCommunicationUp:
bt = new Bitmap(Resource.chnMenuCommunicaionUp);
break;
case ButtonImages.chnMenuDataViewerDisable:
bt = new Bitmap(Resource.chnMenuDataviewerDisable);
break;
case ButtonImages.chnMenuDataViewerDown:
bt = new Bitmap(Resource.chnMenuDataviewerDown);
break;
case ButtonImages.chnMenuDataViewerUp:
bt = new Bitmap(Resource.chnMenuDataviewerUp);
break;
case ButtonImages.chnFilterDisable:
bt = new Bitmap(Resource.chnFilterDisable);
break;
case ButtonImages.chnFilterDown:
bt = new Bitmap(Resource.chnFilterDown);
break;
case ButtonImages.chnFilterUp:
bt = new Bitmap(Resource.chnFilterUp);
break;
#endregion
#region Czech
@ -1263,24 +1329,36 @@ namespace INT69DC_ImageDll
case ButtonImages.czeFormMainMenuSmallUp:
bt = new Bitmap(Resource.czeFormMainMenuSmallUp);
break;
case ButtonImages.czeFormMainOverDisable:
bt = new Bitmap(Resource.czeFormMainOverDisable);
break;
case ButtonImages.czeFormMainOverDown:
bt = new Bitmap(Resource.czeFormMainOverDown);
break;
case ButtonImages.czeFormMainOverUp:
bt = new Bitmap(Resource.czeFormMainOverUp);
break;
case ButtonImages.czeFormMainPassDisable:
bt = new Bitmap(Resource.czeFormMainPassDisable);
break;
case ButtonImages.czeFormMainPassDown:
bt = new Bitmap(Resource.czeFormMainPassDown);
break;
case ButtonImages.czeFormMainPassUp:
bt = new Bitmap(Resource.czeFormMainPassUp);
break;
case ButtonImages.czeFormMainTareDisable:
bt = new Bitmap(Resource.czeFormMainTareDisable);
break;
case ButtonImages.czeFormMainTareDown:
bt = new Bitmap(Resource.czeFormMainTareDown);
break;
case ButtonImages.czeFormMainTareUp:
bt = new Bitmap(Resource.czeFormMainTareUp);
break;
case ButtonImages.czeFormMainUnderDisable:
bt = new Bitmap(Resource.czeFormMainUnderDisable);
break;
case ButtonImages.czeFormMainUnderDown:
bt = new Bitmap(Resource.czeFormMainUnderDown);
break;
@ -1545,6 +1623,24 @@ namespace INT69DC_ImageDll
case ButtonImages.czeMenuCommunicationUp:
bt = new Bitmap(Resource.czeMenuCommunicaionUp);
break;
case ButtonImages.czeMenuDataViewerDisable:
bt = new Bitmap(Resource.czeMenuDataviewerDisable);
break;
case ButtonImages.czeMenuDataViewerDown:
bt = new Bitmap(Resource.czeMenuDataviewerDown);
break;
case ButtonImages.czeMenuDataViewerUp:
bt = new Bitmap(Resource.czeMenuDataviewerUp);
break;
case ButtonImages.czeFilterDisable:
bt = new Bitmap(Resource.czeFilterDisable);
break;
case ButtonImages.czeFilterDown:
bt = new Bitmap(Resource.czeFilterDown);
break;
case ButtonImages.czeFilterUp:
bt = new Bitmap(Resource.czeFilterUp);
break;
#endregion
#region English
@ -1983,6 +2079,24 @@ namespace INT69DC_ImageDll
case ButtonImages.engMenuCommunicationUp:
bt = new Bitmap(Resource.engMenuCommunicaionUp);
break;
case ButtonImages.engMenuDataViewerDisable:
bt = new Bitmap(Resource.engMenuDataviewerDisable);
break;
case ButtonImages.engMenuDataViewerDown:
bt = new Bitmap(Resource.engMenuDataviewerDown);
break;
case ButtonImages.engMenuDataViewerUp:
bt = new Bitmap(Resource.engMenuDataviewerUp);
break;
case ButtonImages.engFilterDisable:
bt = new Bitmap(Resource.engFilterDisable);
break;
case ButtonImages.engFilterDown:
bt = new Bitmap(Resource.engFilterDown);
break;
case ButtonImages.engFilterUp:
bt = new Bitmap(Resource.engFilterUp);
break;
#endregion
#region Germany
@ -2082,24 +2196,36 @@ namespace INT69DC_ImageDll
case ButtonImages.gerFormMainMenuSmallUp:
bt = new Bitmap(Resource.gerFormMainMenuSmallUp);
break;
case ButtonImages.gerFormMainOverDisable:
bt = new Bitmap(Resource.gerFormMainOverDisable);
break;
case ButtonImages.gerFormMainOverDown:
bt = new Bitmap(Resource.gerFormMainOverDown);
break;
case ButtonImages.gerFormMainOverUp:
bt = new Bitmap(Resource.gerFormMainOverUp);
break;
case ButtonImages.gerFormMainPassDisable:
bt = new Bitmap(Resource.gerFormMainPassDisable);
break;
case ButtonImages.gerFormMainPassDown:
bt = new Bitmap(Resource.gerFormMainPassDown);
break;
case ButtonImages.gerFormMainPassUp:
bt = new Bitmap(Resource.gerFormMainPassUp);
break;
case ButtonImages.gerFormMainTareDisable:
bt = new Bitmap(Resource.gerFormMainTareDisable);
break;
case ButtonImages.gerFormMainTareDown:
bt = new Bitmap(Resource.gerFormMainTareDown);
break;
case ButtonImages.gerFormMainTareUp:
bt = new Bitmap(Resource.gerFormMainTareUp);
break;
case ButtonImages.gerFormMainUnderDisable:
bt = new Bitmap(Resource.gerFormMainUnderDisable);
break;
case ButtonImages.gerFormMainUnderDown:
bt = new Bitmap(Resource.gerFormMainUnderDown);
break;
@ -2352,6 +2478,15 @@ namespace INT69DC_ImageDll
case ButtonImages.gerMenuCommunicationUp:
bt = new Bitmap(Resource.gerMenuCommunicaionUp);
break;
case ButtonImages.gerMenuDataViewerDisable:
bt = new Bitmap(Resource.gerMenuDataviewerDisable);
break;
case ButtonImages.gerMenuDataViewerDown:
bt = new Bitmap(Resource.gerMenuDataviewerDown);
break;
case ButtonImages.gerMenuDataViewerUp:
bt = new Bitmap(Resource.gerMenuDataviewerUp);
break;
#endregion
#region Japan
@ -2751,6 +2886,15 @@ namespace INT69DC_ImageDll
case ButtonImages.jpnSubMenuPassUp:
bt = new Bitmap(Resource.jpnSubMenuPassUp);
break;
case ButtonImages.jpnMenuDataViewerDisable:
bt = new Bitmap(Resource.jpnMenuDataviewerDisable);
break;
case ButtonImages.jpnMenuDataViewerDown:
bt = new Bitmap(Resource.jpnMenuDataviewerDown);
break;
case ButtonImages.jpnMenuDataViewerUp:
bt = new Bitmap(Resource.jpnMenuDataviewerUp);
break;
#endregion
#region Korean

View File

@ -1,10 +1,10 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 이 코드는 도구를 사용하여 생성되었습니다.
// 런타임 버전:2.0.50727.9151
// This code was generated by a tool.
// Runtime Version:2.0.50727.9179
//
// 파일 내용을 변경하면 잘못된 동작이 발생할 수 있으며, 코드를 다시 생성하면
// 이러한 변경 내용이 손실됩니다.
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
@ -13,12 +13,12 @@ namespace INT69DC_ImageDll {
/// <summary>
/// 지역화된 문자열 등을 찾기 위한 강력한 형식의 리소스 클래스입니다.
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// 이 클래스는 ResGen 또는 Visual Studio와 같은 도구를 통해 StronglyTypedResourceBuilder
// 클래스에서 자동으로 생성되었습니다.
// 멤버를 추가하거나 제거하려면 .ResX 파일을 편집한 다음 /str 옵션을 사용하여 ResGen을
// 다시 실행하거나 VS 프로젝트를 다시 빌드하십시오.
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
internal class Resource {
@ -30,7 +30,7 @@ namespace INT69DC_ImageDll {
}
/// <summary>
/// 이 클래스에서 사용하는 캐시된 ResourceManager 인스턴스를 반환합니다.
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
@ -44,8 +44,8 @@ namespace INT69DC_ImageDll {
}
/// <summary>
/// 이 강력한 형식의 리소스 클래스를 사용하여 모든 리소스 조회에 대한 현재 스레드의 CurrentUICulture
/// 속성을 재정의합니다.
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
@ -162,6 +162,27 @@ namespace INT69DC_ImageDll {
}
}
internal static System.Drawing.Bitmap chnFilterDisable {
get {
object obj = ResourceManager.GetObject("chnFilterDisable", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
internal static System.Drawing.Bitmap chnFilterDown {
get {
object obj = ResourceManager.GetObject("chnFilterDown", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
internal static System.Drawing.Bitmap chnFilterUp {
get {
object obj = ResourceManager.GetObject("chnFilterUp", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
internal static System.Drawing.Bitmap chnFormCalibrationBalanceDisable {
get {
object obj = ResourceManager.GetObject("chnFormCalibrationBalanceDisable", resourceCulture);
@ -323,6 +344,13 @@ namespace INT69DC_ImageDll {
}
}
internal static System.Drawing.Bitmap chnFormMainOverDisable {
get {
object obj = ResourceManager.GetObject("chnFormMainOverDisable", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
internal static System.Drawing.Bitmap chnFormMainOverDown {
get {
object obj = ResourceManager.GetObject("chnFormMainOverDown", resourceCulture);
@ -337,6 +365,13 @@ namespace INT69DC_ImageDll {
}
}
internal static System.Drawing.Bitmap chnFormMainPassDisable {
get {
object obj = ResourceManager.GetObject("chnFormMainPassDisable", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
internal static System.Drawing.Bitmap chnFormMainPassDown {
get {
object obj = ResourceManager.GetObject("chnFormMainPassDown", resourceCulture);
@ -372,6 +407,13 @@ namespace INT69DC_ImageDll {
}
}
internal static System.Drawing.Bitmap chnFormMainTareDisable {
get {
object obj = ResourceManager.GetObject("chnFormMainTareDisable", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
internal static System.Drawing.Bitmap chnFormMainTareDown {
get {
object obj = ResourceManager.GetObject("chnFormMainTareDown", resourceCulture);
@ -386,6 +428,13 @@ namespace INT69DC_ImageDll {
}
}
internal static System.Drawing.Bitmap chnFormMainUnderDisable {
get {
object obj = ResourceManager.GetObject("chnFormMainUnderDisable", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
internal static System.Drawing.Bitmap chnFormMainUnderDown {
get {
object obj = ResourceManager.GetObject("chnFormMainUnderDown", resourceCulture);
@ -687,6 +736,27 @@ namespace INT69DC_ImageDll {
}
}
internal static System.Drawing.Bitmap chnMenuDataviewerDisable {
get {
object obj = ResourceManager.GetObject("chnMenuDataviewerDisable", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
internal static System.Drawing.Bitmap chnMenuDataviewerDown {
get {
object obj = ResourceManager.GetObject("chnMenuDataviewerDown", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
internal static System.Drawing.Bitmap chnMenuDataviewerUp {
get {
object obj = ResourceManager.GetObject("chnMenuDataviewerUp", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
internal static System.Drawing.Bitmap chnMenuEquipmentSettingDisable {
get {
object obj = ResourceManager.GetObject("chnMenuEquipmentSettingDisable", resourceCulture);
@ -1142,6 +1212,27 @@ namespace INT69DC_ImageDll {
}
}
internal static System.Drawing.Bitmap czeFilterDisable {
get {
object obj = ResourceManager.GetObject("czeFilterDisable", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
internal static System.Drawing.Bitmap czeFilterDown {
get {
object obj = ResourceManager.GetObject("czeFilterDown", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
internal static System.Drawing.Bitmap czeFilterUp {
get {
object obj = ResourceManager.GetObject("czeFilterUp", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
internal static System.Drawing.Bitmap czeFormCalibrationBalanceDisable {
get {
object obj = ResourceManager.GetObject("czeFormCalibrationBalanceDisable", resourceCulture);
@ -1268,6 +1359,13 @@ namespace INT69DC_ImageDll {
}
}
internal static System.Drawing.Bitmap czeFormMainOverDisable {
get {
object obj = ResourceManager.GetObject("czeFormMainOverDisable", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
internal static System.Drawing.Bitmap czeFormMainOverDown {
get {
object obj = ResourceManager.GetObject("czeFormMainOverDown", resourceCulture);
@ -1282,6 +1380,13 @@ namespace INT69DC_ImageDll {
}
}
internal static System.Drawing.Bitmap czeFormMainPassDisable {
get {
object obj = ResourceManager.GetObject("czeFormMainPassDisable", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
internal static System.Drawing.Bitmap czeFormMainPassDown {
get {
object obj = ResourceManager.GetObject("czeFormMainPassDown", resourceCulture);
@ -1317,6 +1422,13 @@ namespace INT69DC_ImageDll {
}
}
internal static System.Drawing.Bitmap czeFormMainTareDisable {
get {
object obj = ResourceManager.GetObject("czeFormMainTareDisable", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
internal static System.Drawing.Bitmap czeFormMainTareDown {
get {
object obj = ResourceManager.GetObject("czeFormMainTareDown", resourceCulture);
@ -1331,6 +1443,13 @@ namespace INT69DC_ImageDll {
}
}
internal static System.Drawing.Bitmap czeFormMainUnderDisable {
get {
object obj = ResourceManager.GetObject("czeFormMainUnderDisable", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
internal static System.Drawing.Bitmap czeFormMainUnderDown {
get {
object obj = ResourceManager.GetObject("czeFormMainUnderDown", resourceCulture);
@ -1583,6 +1702,27 @@ namespace INT69DC_ImageDll {
}
}
internal static System.Drawing.Bitmap czeMenuDataviewerDisable {
get {
object obj = ResourceManager.GetObject("czeMenuDataviewerDisable", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
internal static System.Drawing.Bitmap czeMenuDataviewerDown {
get {
object obj = ResourceManager.GetObject("czeMenuDataviewerDown", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
internal static System.Drawing.Bitmap czeMenuDataviewerUp {
get {
object obj = ResourceManager.GetObject("czeMenuDataviewerUp", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
internal static System.Drawing.Bitmap czeMenuEquipmentSettingDisable {
get {
object obj = ResourceManager.GetObject("czeMenuEquipmentSettingDisable", resourceCulture);
@ -2052,6 +2192,27 @@ namespace INT69DC_ImageDll {
}
}
internal static System.Drawing.Bitmap engFilterDisable {
get {
object obj = ResourceManager.GetObject("engFilterDisable", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
internal static System.Drawing.Bitmap engFilterDown {
get {
object obj = ResourceManager.GetObject("engFilterDown", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
internal static System.Drawing.Bitmap engFilterUp {
get {
object obj = ResourceManager.GetObject("engFilterUp", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
internal static System.Drawing.Bitmap engFormCalibrationBalanceDisable {
get {
object obj = ResourceManager.GetObject("engFormCalibrationBalanceDisable", resourceCulture);
@ -2598,6 +2759,27 @@ namespace INT69DC_ImageDll {
}
}
internal static System.Drawing.Bitmap engMenuDataviewerDisable {
get {
object obj = ResourceManager.GetObject("engMenuDataviewerDisable", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
internal static System.Drawing.Bitmap engMenuDataviewerDown {
get {
object obj = ResourceManager.GetObject("engMenuDataviewerDown", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
internal static System.Drawing.Bitmap engMenuDataviewerUp {
get {
object obj = ResourceManager.GetObject("engMenuDataviewerUp", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
internal static System.Drawing.Bitmap engMenuEquipmentSettingDisable {
get {
object obj = ResourceManager.GetObject("engMenuEquipmentSettingDisable", resourceCulture);
@ -3123,6 +3305,13 @@ namespace INT69DC_ImageDll {
}
}
internal static System.Drawing.Bitmap gerFormMainOverDisable {
get {
object obj = ResourceManager.GetObject("gerFormMainOverDisable", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
internal static System.Drawing.Bitmap gerFormMainOverDown {
get {
object obj = ResourceManager.GetObject("gerFormMainOverDown", resourceCulture);
@ -3137,6 +3326,13 @@ namespace INT69DC_ImageDll {
}
}
internal static System.Drawing.Bitmap gerFormMainPassDisable {
get {
object obj = ResourceManager.GetObject("gerFormMainPassDisable", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
internal static System.Drawing.Bitmap gerFormMainPassDown {
get {
object obj = ResourceManager.GetObject("gerFormMainPassDown", resourceCulture);
@ -3172,6 +3368,13 @@ namespace INT69DC_ImageDll {
}
}
internal static System.Drawing.Bitmap gerFormMainTareDisable {
get {
object obj = ResourceManager.GetObject("gerFormMainTareDisable", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
internal static System.Drawing.Bitmap gerFormMainTareDown {
get {
object obj = ResourceManager.GetObject("gerFormMainTareDown", resourceCulture);
@ -3186,6 +3389,13 @@ namespace INT69DC_ImageDll {
}
}
internal static System.Drawing.Bitmap gerFormMainUnderDisable {
get {
object obj = ResourceManager.GetObject("gerFormMainUnderDisable", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
internal static System.Drawing.Bitmap gerFormMainUnderDown {
get {
object obj = ResourceManager.GetObject("gerFormMainUnderDown", resourceCulture);
@ -3438,6 +3648,27 @@ namespace INT69DC_ImageDll {
}
}
internal static System.Drawing.Bitmap gerMenuDataviewerDisable {
get {
object obj = ResourceManager.GetObject("gerMenuDataviewerDisable", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
internal static System.Drawing.Bitmap gerMenuDataviewerDown {
get {
object obj = ResourceManager.GetObject("gerMenuDataviewerDown", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
internal static System.Drawing.Bitmap gerMenuDataviewerUp {
get {
object obj = ResourceManager.GetObject("gerMenuDataviewerUp", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
internal static System.Drawing.Bitmap gerMenuEquipmentSettingDisable {
get {
object obj = ResourceManager.GetObject("gerMenuEquipmentSettingDisable", resourceCulture);
@ -4369,6 +4600,27 @@ namespace INT69DC_ImageDll {
}
}
internal static System.Drawing.Bitmap jpnMenuDataviewerDisable {
get {
object obj = ResourceManager.GetObject("jpnMenuDataviewerDisable", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
internal static System.Drawing.Bitmap jpnMenuDataviewerDown {
get {
object obj = ResourceManager.GetObject("jpnMenuDataviewerDown", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
internal static System.Drawing.Bitmap jpnMenuDataviewerUp {
get {
object obj = ResourceManager.GetObject("jpnMenuDataviewerUp", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
internal static System.Drawing.Bitmap jpnMenuDataviewUp {
get {
object obj = ResourceManager.GetObject("jpnMenuDataviewUp", resourceCulture);

View File

@ -2158,4 +2158,112 @@
<data name="engGroupEditorUp" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>Resources\engGroupEditorUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="chnMenuDataviewerDisable" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>Resources\chnMenuDataviewDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="chnMenuDataviewerDown" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>Resources\chnMenuDataviewDown.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="chnMenuDataviewerUp" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>Resources\chnMenuDataviewUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="czeMenuDataviewerDisable" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>Resources\czeMenuDataviewDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="czeMenuDataviewerDown" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>Resources\czeMenuDataviewDown.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="czeMenuDataviewerUp" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>Resources\czeMenuDataviewUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="engMenuDataviewerDisable" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>Resources\engMenuDataViewerDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="engMenuDataviewerDown" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>Resources\engMenuDataViewerDown.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="engMenuDataviewerUp" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>Resources\engMenuDataViewerUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="gerMenuDataviewerDisable" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>Resources\gerMenuDataviewDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="gerMenuDataviewerDown" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>Resources\gerMenuDataviewDown.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="gerMenuDataviewerUp" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>Resources\gerMenuDataviewUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="jpnMenuDataviewerDisable" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>Resources\jpnMenuDataviewerDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="jpnMenuDataviewerDown" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>Resources\jpnMenuDataviewerDown.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="jpnMenuDataviewerUp" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>Resources\jpnMenuDataviewerUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="chnFilterDisable" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>Resources\chnFilterDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="chnFilterDown" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>Resources\chnFilterDown.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="chnFilterUp" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>Resources\chnFilterUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="engFilterDisable" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>Resources\engFilterDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="engFilterDown" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>Resources\engFilterDown.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="engFilterUp" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>Resources\engFilterUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="czeFilterDisable" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>Resources\czeFilterDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="czeFilterDown" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>Resources\czeFilterDown.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="czeFilterUp" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>Resources\czeFilterUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="chnFormMainOverDisable" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>Resources\chnFormMainOverDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="chnFormMainPassDisable" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>Resources\chnFormMainPassDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="chnFormMainTareDisable" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>Resources\chnFormMainTareDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="chnFormMainUnderDisable" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>Resources\chnFormMainUnderDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="czeFormMainOverDisable" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>Resources\czeFormMainOverDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="czeFormMainPassDisable" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>Resources\czeFormMainPassDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="czeFormMainTareDisable" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>Resources\czeFormMainTareDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="czeFormMainUnderDisable" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>Resources\czeFormMainUnderDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="gerFormMainOverDisable" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>Resources\gerFormMainOverDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="gerFormMainPassDisable" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>Resources\gerFormMainPassDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="gerFormMainTareDisable" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>Resources\gerFormMainTareDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="gerFormMainUnderDisable" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>Resources\gerFormMainUnderDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
</root>

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.0 KiB