수정중
parent
1c887022ec
commit
73661258c5
BIN
INT63DC_2C.suo
BIN
INT63DC_2C.suo
Binary file not shown.
|
|
@ -248,14 +248,23 @@ namespace INT63DC_2C.Controls
|
|||
this.label12.Visible = true;
|
||||
this.labelDynamicCorrection12.Visible = true;
|
||||
}
|
||||
if (this.ParentForm.ParentForm.SystemConfig.EquipmentColumns >= 16)
|
||||
if (this.ParentForm.ParentForm.SystemConfig.EquipmentColumns >= 13)
|
||||
{
|
||||
this.label13.Visible = true;
|
||||
this.labelDynamicCorrection13.Visible = true;
|
||||
}
|
||||
if (this.ParentForm.ParentForm.SystemConfig.EquipmentColumns >= 14)
|
||||
{
|
||||
this.label14.Visible = true;
|
||||
this.labelDynamicCorrection14.Visible = true;
|
||||
}
|
||||
if (this.ParentForm.ParentForm.SystemConfig.EquipmentColumns >= 15)
|
||||
{
|
||||
this.label15.Visible = true;
|
||||
this.labelDynamicCorrection15.Visible = true;
|
||||
}
|
||||
if (this.ParentForm.ParentForm.SystemConfig.EquipmentColumns >= 16)
|
||||
{
|
||||
this.label16.Visible = true;
|
||||
this.labelDynamicCorrection16.Visible = true;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -357,6 +357,8 @@ namespace INT63DC_2C
|
|||
// 1. 데이터
|
||||
// 데이터집계
|
||||
public static readonly string DataStatistics = "1000";
|
||||
// CFR Part11
|
||||
public static readonly string Part11 = "1001";
|
||||
|
||||
// 2. 통신
|
||||
// 피드백보드
|
||||
|
|
|
|||
|
|
@ -327,7 +327,7 @@
|
|||
this.smartButton3.DownImage = null;
|
||||
this.smartButton3.GroupID = 0;
|
||||
this.smartButton3.InitVisible = true;
|
||||
this.smartButton3.Location = new System.Drawing.Point(114, 24);
|
||||
this.smartButton3.Location = new System.Drawing.Point(12, 14);
|
||||
this.smartButton3.Mode = SmartX.SmartButton.BUTTONMODE.NORMAL;
|
||||
this.smartButton3.Name = "smartButton3";
|
||||
this.smartButton3.NestedClickEventPrevent = false;
|
||||
|
|
@ -359,7 +359,7 @@
|
|||
this.smartButton4.DownImage = null;
|
||||
this.smartButton4.GroupID = 0;
|
||||
this.smartButton4.InitVisible = true;
|
||||
this.smartButton4.Location = new System.Drawing.Point(200, 24);
|
||||
this.smartButton4.Location = new System.Drawing.Point(98, 14);
|
||||
this.smartButton4.Mode = SmartX.SmartButton.BUTTONMODE.NORMAL;
|
||||
this.smartButton4.Name = "smartButton4";
|
||||
this.smartButton4.NestedClickEventPrevent = false;
|
||||
|
|
@ -391,7 +391,7 @@
|
|||
this.smartButton5.DownImage = null;
|
||||
this.smartButton5.GroupID = 0;
|
||||
this.smartButton5.InitVisible = true;
|
||||
this.smartButton5.Location = new System.Drawing.Point(286, 24);
|
||||
this.smartButton5.Location = new System.Drawing.Point(184, 14);
|
||||
this.smartButton5.Mode = SmartX.SmartButton.BUTTONMODE.NORMAL;
|
||||
this.smartButton5.Name = "smartButton5";
|
||||
this.smartButton5.NestedClickEventPrevent = false;
|
||||
|
|
|
|||
|
|
@ -45,6 +45,155 @@ namespace INT63DC_2C.DialogForms
|
|||
#endregion
|
||||
|
||||
#region Method
|
||||
private void InitializeDesign()
|
||||
{
|
||||
ImageDll images = new ImageDll();
|
||||
|
||||
if (this.ParentForm.SystemConfig.Language == DataStore.LanguageID.English)
|
||||
{
|
||||
this.buttonLogOn.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engMainLoginDisable));
|
||||
this.buttonLogOn.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engMainLoginDown));
|
||||
this.buttonLogOn.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engMainLoginUp));
|
||||
this.buttonCancel.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engMainCancelDisable));
|
||||
this.buttonCancel.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engMainCancelDown));
|
||||
this.buttonCancel.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engMainCancelUp));
|
||||
}
|
||||
else if (this.ParentForm.SystemConfig.Language == DataStore.LanguageID.Chinese)
|
||||
{
|
||||
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));
|
||||
this.buttonCancel.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnMainCancelDisable));
|
||||
this.buttonCancel.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnMainCancelDown));
|
||||
this.buttonCancel.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnMainCancelUp));
|
||||
}
|
||||
else if (this.ParentForm.SystemConfig.Language == DataStore.LanguageID.Czech)
|
||||
{
|
||||
this.buttonLogOn.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engMainLoginDisable));
|
||||
this.buttonLogOn.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engMainLoginDown));
|
||||
this.buttonLogOn.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engMainLoginUp));
|
||||
this.buttonCancel.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeMainCancelDisable));
|
||||
this.buttonCancel.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeMainCancelDown));
|
||||
this.buttonCancel.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeMainCancelUp));
|
||||
}
|
||||
else if (this.ParentForm.SystemConfig.Language == DataStore.LanguageID.German)
|
||||
{
|
||||
this.buttonLogOn.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engMainLoginDisable));
|
||||
this.buttonLogOn.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engMainLoginDown));
|
||||
this.buttonLogOn.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engMainLoginUp));
|
||||
this.buttonCancel.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.gerMainCancelDisable));
|
||||
this.buttonCancel.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.gerMainCancelDown));
|
||||
this.buttonCancel.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.gerMainCancelUp));
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
private void InitializeControl()
|
||||
{
|
||||
int x = 0, y = 0;
|
||||
|
||||
x = Screen.PrimaryScreen.Bounds.Width / 2 - this.Size.Width / 2;
|
||||
y = Screen.PrimaryScreen.Bounds.Height / 2 - this.Size.Height / 2;
|
||||
|
||||
this.Location = new Point(x, y);
|
||||
this.Size = new Size(710, 470);
|
||||
|
||||
if (this.IsChangePassword == false)
|
||||
{
|
||||
switch (this.ParentForm.SystemConfig.Language)
|
||||
{
|
||||
case DataStore.LanguageID.Korean:
|
||||
this.labelTitle1.Text = "로그인";
|
||||
this.labelTitle2.Text = "ID";
|
||||
this.labelTitle3.Text = "비밀번호";
|
||||
break;
|
||||
case DataStore.LanguageID.English:
|
||||
this.labelTitle1.Text = "User Login";
|
||||
this.labelTitle2.Text = "ID";
|
||||
this.labelTitle3.Text = "Password";
|
||||
break;
|
||||
case DataStore.LanguageID.Chinese:
|
||||
this.labelTitle1.Text = "登錄";
|
||||
this.labelTitle2.Text = "用户名";
|
||||
this.labelTitle3.Text = "密码";
|
||||
break;
|
||||
case DataStore.LanguageID.Czech:
|
||||
this.labelTitle1.Text = "Přihlásit se";
|
||||
this.labelTitle2.Text = "ID uživatele";
|
||||
this.labelTitle3.Text = "Heslo";
|
||||
break;
|
||||
case DataStore.LanguageID.German:
|
||||
this.labelTitle1.Text = "Einloggen";
|
||||
this.labelTitle2.Text = "ID";
|
||||
this.labelTitle3.Text = "Passwort";
|
||||
break;
|
||||
case DataStore.LanguageID.Japanese:
|
||||
this.labelTitle1.Text = "ログイン";
|
||||
this.labelTitle2.Text = "ID";
|
||||
this.labelTitle3.Text = "パスワード";
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
this.textBoxID.PasswordChar = default(char);
|
||||
}
|
||||
else
|
||||
{
|
||||
switch (this.ParentForm.SystemConfig.Language)
|
||||
{
|
||||
case DataStore.LanguageID.Korean:
|
||||
this.labelTitle1.Text = "비밀번호 변경";
|
||||
this.labelTitle2.Text = "새 비밀번호";
|
||||
this.labelTitle3.Text = "비밀번호 확인";
|
||||
break;
|
||||
case DataStore.LanguageID.English:
|
||||
this.labelTitle1.Text = "Change Password";
|
||||
this.labelTitle2.Text = "New";
|
||||
this.labelTitle3.Text = "Confirmation";
|
||||
break;
|
||||
case DataStore.LanguageID.Chinese:
|
||||
this.labelTitle1.Text = "更改密码";
|
||||
this.labelTitle2.Text = "新的";
|
||||
this.labelTitle3.Text = "核实";
|
||||
break;
|
||||
case DataStore.LanguageID.Czech:
|
||||
this.labelTitle1.Text = "Změnit heslo";
|
||||
this.labelTitle2.Text = "Nový";
|
||||
this.labelTitle3.Text = "Potvrzení";
|
||||
break;
|
||||
case DataStore.LanguageID.German:
|
||||
this.labelTitle1.Text = "Kennwort ändern";
|
||||
this.labelTitle2.Text = "Neu";
|
||||
this.labelTitle3.Text = "Bestätigung";
|
||||
break;
|
||||
case DataStore.LanguageID.Japanese:
|
||||
this.labelTitle1.Text = "パスワード変更";
|
||||
this.labelTitle2.Text = "新パスワード";
|
||||
this.labelTitle3.Text = "パスワード確認";
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
this.textBoxID.PasswordChar = '*';
|
||||
}
|
||||
|
||||
this.textBoxID.Text = "";
|
||||
this.textBoxPassword.Text = "";
|
||||
|
||||
//this.smartKeyboard.HanYoungKeyToggle();
|
||||
this.smartKeyboard.HanYoungKeyDisable = true;
|
||||
this.smartKeyboard.KeyboardType = SmartX.SmartKeyboard.KEYBOARDTYPES.NORMAL;
|
||||
this.smartKeyboard.Show();
|
||||
}
|
||||
private void DefaultSetting()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
private string ReturnUserStatus(int num)
|
||||
{
|
||||
string ret = "";
|
||||
|
|
@ -112,110 +261,6 @@ namespace INT63DC_2C.DialogForms
|
|||
|
||||
return ret;
|
||||
}
|
||||
|
||||
private void InitializeDesign()
|
||||
{
|
||||
ImageDll images = new ImageDll();
|
||||
|
||||
if (this.ParentForm.SystemConfig.Language == DataStore.LanguageID.English)
|
||||
{
|
||||
this.buttonLogOn.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engMainLoginDisable));
|
||||
this.buttonLogOn.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engMainLoginDown));
|
||||
this.buttonLogOn.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engMainLoginUp));
|
||||
this.buttonCancel.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engMainCancelDisable));
|
||||
this.buttonCancel.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engMainCancelDown));
|
||||
this.buttonCancel.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engMainCancelUp));
|
||||
}
|
||||
else if (this.ParentForm.SystemConfig.Language == DataStore.LanguageID.Chinese)
|
||||
{
|
||||
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));
|
||||
this.buttonCancel.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnMainCancelDisable));
|
||||
this.buttonCancel.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnMainCancelDown));
|
||||
this.buttonCancel.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnMainCancelUp));
|
||||
}
|
||||
else if (this.ParentForm.SystemConfig.Language == DataStore.LanguageID.Czech)
|
||||
{
|
||||
this.buttonLogOn.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engMainLoginDisable));
|
||||
this.buttonLogOn.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engMainLoginDown));
|
||||
this.buttonLogOn.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engMainLoginUp));
|
||||
this.buttonCancel.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeMainCancelDisable));
|
||||
this.buttonCancel.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeMainCancelDown));
|
||||
this.buttonCancel.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeMainCancelUp));
|
||||
}
|
||||
else if (this.ParentForm.SystemConfig.Language == DataStore.LanguageID.German)
|
||||
{
|
||||
this.buttonLogOn.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engMainLoginDisable));
|
||||
this.buttonLogOn.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engMainLoginDown));
|
||||
this.buttonLogOn.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engMainLoginUp));
|
||||
this.buttonCancel.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.gerMainCancelDisable));
|
||||
this.buttonCancel.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.gerMainCancelDown));
|
||||
this.buttonCancel.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.gerMainCancelUp));
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
private void InitializeControl()
|
||||
{
|
||||
int x = 0, y = 0;
|
||||
|
||||
x = Screen.PrimaryScreen.Bounds.Width / 2 - this.Size.Width / 2;
|
||||
y = Screen.PrimaryScreen.Bounds.Height / 2 - this.Size.Height / 2;
|
||||
|
||||
this.Location = new Point(x, y);
|
||||
this.Size = new Size(710, 470);
|
||||
|
||||
if (this.IsChangePassword == false)
|
||||
{
|
||||
if (this.ParentForm.SystemConfig.Language == DataStore.LanguageID.Korean)
|
||||
{
|
||||
this.labelTitle1.Text = "로그인";
|
||||
this.labelTitle2.Text = "ID";
|
||||
this.labelTitle3.Text = "비밀번호";
|
||||
}
|
||||
else
|
||||
{
|
||||
this.labelTitle1.Text = "User Login";
|
||||
this.labelTitle2.Text = "ID";
|
||||
this.labelTitle3.Text = "Password";
|
||||
}
|
||||
|
||||
this.textBoxID.PasswordChar = default(char);
|
||||
}
|
||||
else
|
||||
{
|
||||
if (this.ParentForm.SystemConfig.Language == DataStore.LanguageID.Korean)
|
||||
{
|
||||
this.labelTitle1.Text = "비밀번호 변경";
|
||||
this.labelTitle2.Text = "새 비밀번호";
|
||||
this.labelTitle3.Text = "비밀번호 확인";
|
||||
}
|
||||
else
|
||||
{
|
||||
this.labelTitle1.Text = "Change Password";
|
||||
this.labelTitle2.Text = "New";
|
||||
this.labelTitle3.Text = "Confirmation";
|
||||
}
|
||||
|
||||
this.textBoxID.PasswordChar = '*';
|
||||
}
|
||||
|
||||
this.textBoxID.Text = "";
|
||||
this.textBoxPassword.Text = "";
|
||||
|
||||
//this.smartKeyboard.HanYoungKeyToggle();
|
||||
this.smartKeyboard.HanYoungKeyDisable = true;
|
||||
this.smartKeyboard.KeyboardType = SmartX.SmartKeyboard.KEYBOARDTYPES.NORMAL;
|
||||
this.smartKeyboard.Show();
|
||||
}
|
||||
private void DefaultSetting()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
private void LogOn()
|
||||
{
|
||||
UserManager.UserMgr_user_info_t userInfo = new UserManager.UserMgr_user_info_t();
|
||||
|
|
|
|||
|
|
@ -32,19 +32,20 @@
|
|||
this.smartForm1 = new SmartX.SmartForm();
|
||||
this.labelTitle = new SmartX.SmartLabel();
|
||||
this.buttonBack = new SmartX.SmartButton();
|
||||
this.groupBoxComm = new SmartX.SmartGroupBox();
|
||||
this.groupBoxSerial = new SmartX.SmartGroupBox();
|
||||
this.labelProtocolDescriptionCOM3_2 = new SmartX.SmartLabel();
|
||||
this.buttonSerial3Send = new System.Windows.Forms.Button();
|
||||
this.labelProtocolDescriptionCOM3_1 = new SmartX.SmartLabel();
|
||||
this.buttonSave3 = new System.Windows.Forms.Button();
|
||||
this.comboBoxSerial3BaudRate = new System.Windows.Forms.ComboBox();
|
||||
this.comboBoxSerial3Mode = new System.Windows.Forms.ComboBox();
|
||||
this.labelStaticSerial3Mode = new SmartX.SmartLabel();
|
||||
this.labelTitleSerial3Mode = new SmartX.SmartLabel();
|
||||
this.smartLabel4 = new SmartX.SmartLabel();
|
||||
this.labelStaticSerial3Baudrate = new SmartX.SmartLabel();
|
||||
this.smartGroupBox1 = new SmartX.SmartGroupBox();
|
||||
this.smartLabel2 = new SmartX.SmartLabel();
|
||||
this.smartLabel1 = new SmartX.SmartLabel();
|
||||
this.labelTitleSerial3Baudrate = new SmartX.SmartLabel();
|
||||
this.groupBoxEthernet = new SmartX.SmartGroupBox();
|
||||
this.labelTitleSetting = new SmartX.SmartLabel();
|
||||
this.labelTitleClient = new SmartX.SmartLabel();
|
||||
this.labelTitleServer = new SmartX.SmartLabel();
|
||||
this.smartSeparatorLine1 = new SmartX.SmartSeparatorLine();
|
||||
this.labelConnectedIP = new SmartX.SmartLabel();
|
||||
this.labelTitleConnectedIP = new SmartX.SmartLabel();
|
||||
|
|
@ -83,17 +84,16 @@
|
|||
this.labelLocalIP2 = new SmartX.SmartLabel();
|
||||
this.labelLocalIP1 = new SmartX.SmartLabel();
|
||||
this.labelTitleIPAddress = new SmartX.SmartLabel();
|
||||
this.labelStaticTcpMode = new SmartX.SmartLabel();
|
||||
this.labelStaticTcpOperationMode = new SmartX.SmartLabel();
|
||||
this.labelTitleTcpMode = new SmartX.SmartLabel();
|
||||
this.labelTitleTcpOperationMode = new SmartX.SmartLabel();
|
||||
this.comboBoxTcpOperationMode = new System.Windows.Forms.ComboBox();
|
||||
this.comboBoxTcpMode = new System.Windows.Forms.ComboBox();
|
||||
this.timerServer = new System.Windows.Forms.Timer();
|
||||
this.smartListBoxClientList = new SmartX.SmartListBox();
|
||||
this.labelClientCount = new SmartX.SmartLabel();
|
||||
this.smartLabel3 = new SmartX.SmartLabel();
|
||||
((System.ComponentModel.ISupportInitialize)(this.smartForm1)).BeginInit();
|
||||
this.groupBoxComm.SuspendLayout();
|
||||
this.smartGroupBox1.SuspendLayout();
|
||||
this.groupBoxSerial.SuspendLayout();
|
||||
this.groupBoxEthernet.SuspendLayout();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// smartForm1
|
||||
|
|
@ -161,33 +161,33 @@
|
|||
this.buttonBack.UpImage = ((System.Drawing.Image)(resources.GetObject("buttonBack.UpImage")));
|
||||
this.buttonBack.Click += new System.EventHandler(this.buttonBack_Click);
|
||||
//
|
||||
// groupBoxComm
|
||||
// groupBoxSerial
|
||||
//
|
||||
this.groupBoxComm.BackPictureBox = this.smartForm1;
|
||||
this.groupBoxComm.BackPictureBox1 = null;
|
||||
this.groupBoxComm.Controls.Add(this.labelProtocolDescriptionCOM3_2);
|
||||
this.groupBoxComm.Controls.Add(this.buttonSerial3Send);
|
||||
this.groupBoxComm.Controls.Add(this.labelProtocolDescriptionCOM3_1);
|
||||
this.groupBoxComm.Controls.Add(this.buttonSave3);
|
||||
this.groupBoxComm.Controls.Add(this.comboBoxSerial3BaudRate);
|
||||
this.groupBoxComm.Controls.Add(this.comboBoxSerial3Mode);
|
||||
this.groupBoxComm.Controls.Add(this.labelStaticSerial3Mode);
|
||||
this.groupBoxComm.Controls.Add(this.smartLabel4);
|
||||
this.groupBoxComm.Controls.Add(this.labelStaticSerial3Baudrate);
|
||||
this.groupBoxComm.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.groupBoxComm.FrameLineColor1 = System.Drawing.Color.Black;
|
||||
this.groupBoxComm.FrameLineColor2 = System.Drawing.Color.Black;
|
||||
this.groupBoxComm.FrameLineThickness = 1;
|
||||
this.groupBoxComm.FrameStyle = SmartX.SmartGroupBox.FRAMESTYLES.RoundRectangle;
|
||||
this.groupBoxComm.Image = null;
|
||||
this.groupBoxComm.InitVisible = true;
|
||||
this.groupBoxComm.Location = new System.Drawing.Point(8, 575);
|
||||
this.groupBoxComm.Name = "groupBoxComm";
|
||||
this.groupBoxComm.RoundRadius = 5;
|
||||
this.groupBoxComm.Size = new System.Drawing.Size(780, 178);
|
||||
this.groupBoxComm.TabIndex = 14;
|
||||
this.groupBoxComm.Text = "Serial";
|
||||
this.groupBoxComm.TextColor = System.Drawing.Color.Black;
|
||||
this.groupBoxSerial.BackPictureBox = this.smartForm1;
|
||||
this.groupBoxSerial.BackPictureBox1 = null;
|
||||
this.groupBoxSerial.Controls.Add(this.labelProtocolDescriptionCOM3_2);
|
||||
this.groupBoxSerial.Controls.Add(this.buttonSerial3Send);
|
||||
this.groupBoxSerial.Controls.Add(this.labelProtocolDescriptionCOM3_1);
|
||||
this.groupBoxSerial.Controls.Add(this.buttonSave3);
|
||||
this.groupBoxSerial.Controls.Add(this.comboBoxSerial3BaudRate);
|
||||
this.groupBoxSerial.Controls.Add(this.comboBoxSerial3Mode);
|
||||
this.groupBoxSerial.Controls.Add(this.labelTitleSerial3Mode);
|
||||
this.groupBoxSerial.Controls.Add(this.smartLabel4);
|
||||
this.groupBoxSerial.Controls.Add(this.labelTitleSerial3Baudrate);
|
||||
this.groupBoxSerial.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.groupBoxSerial.FrameLineColor1 = System.Drawing.Color.Black;
|
||||
this.groupBoxSerial.FrameLineColor2 = System.Drawing.Color.Black;
|
||||
this.groupBoxSerial.FrameLineThickness = 1;
|
||||
this.groupBoxSerial.FrameStyle = SmartX.SmartGroupBox.FRAMESTYLES.RoundRectangle;
|
||||
this.groupBoxSerial.Image = null;
|
||||
this.groupBoxSerial.InitVisible = true;
|
||||
this.groupBoxSerial.Location = new System.Drawing.Point(8, 575);
|
||||
this.groupBoxSerial.Name = "groupBoxSerial";
|
||||
this.groupBoxSerial.RoundRadius = 5;
|
||||
this.groupBoxSerial.Size = new System.Drawing.Size(780, 178);
|
||||
this.groupBoxSerial.TabIndex = 14;
|
||||
this.groupBoxSerial.Text = "Serial";
|
||||
this.groupBoxSerial.TextColor = System.Drawing.Color.Black;
|
||||
//
|
||||
// labelProtocolDescriptionCOM3_2
|
||||
//
|
||||
|
|
@ -267,24 +267,24 @@
|
|||
this.comboBoxSerial3Mode.TabIndex = 1;
|
||||
this.comboBoxSerial3Mode.SelectedIndexChanged += new System.EventHandler(this.comboBoxSerial3_SelectedIndexChanged);
|
||||
//
|
||||
// labelStaticSerial3Mode
|
||||
// labelTitleSerial3Mode
|
||||
//
|
||||
this.labelStaticSerial3Mode.BackPictureBox = this.smartForm1;
|
||||
this.labelStaticSerial3Mode.BackPictureBox1 = null;
|
||||
this.labelStaticSerial3Mode.BackPictureBox2 = null;
|
||||
this.labelStaticSerial3Mode.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelStaticSerial3Mode.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelStaticSerial3Mode.Font = new System.Drawing.Font("New Gulim", 11F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticSerial3Mode.InitVisible = true;
|
||||
this.labelStaticSerial3Mode.LineSpacing = 0F;
|
||||
this.labelStaticSerial3Mode.Location = new System.Drawing.Point(298, 26);
|
||||
this.labelStaticSerial3Mode.Name = "labelStaticSerial3Mode";
|
||||
this.labelStaticSerial3Mode.Size = new System.Drawing.Size(150, 30);
|
||||
this.labelStaticSerial3Mode.TabIndex = 0;
|
||||
this.labelStaticSerial3Mode.Text = "모드";
|
||||
this.labelStaticSerial3Mode.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||
this.labelStaticSerial3Mode.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.labelStaticSerial3Mode.Wordwrap = false;
|
||||
this.labelTitleSerial3Mode.BackPictureBox = this.smartForm1;
|
||||
this.labelTitleSerial3Mode.BackPictureBox1 = null;
|
||||
this.labelTitleSerial3Mode.BackPictureBox2 = null;
|
||||
this.labelTitleSerial3Mode.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelTitleSerial3Mode.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTitleSerial3Mode.Font = new System.Drawing.Font("New Gulim", 11F, System.Drawing.FontStyle.Bold);
|
||||
this.labelTitleSerial3Mode.InitVisible = true;
|
||||
this.labelTitleSerial3Mode.LineSpacing = 0F;
|
||||
this.labelTitleSerial3Mode.Location = new System.Drawing.Point(298, 26);
|
||||
this.labelTitleSerial3Mode.Name = "labelTitleSerial3Mode";
|
||||
this.labelTitleSerial3Mode.Size = new System.Drawing.Size(150, 30);
|
||||
this.labelTitleSerial3Mode.TabIndex = 0;
|
||||
this.labelTitleSerial3Mode.Text = "모드";
|
||||
this.labelTitleSerial3Mode.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||
this.labelTitleSerial3Mode.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.labelTitleSerial3Mode.Wordwrap = false;
|
||||
//
|
||||
// smartLabel4
|
||||
//
|
||||
|
|
@ -305,130 +305,151 @@
|
|||
this.smartLabel4.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.smartLabel4.Wordwrap = false;
|
||||
//
|
||||
// labelStaticSerial3Baudrate
|
||||
// labelTitleSerial3Baudrate
|
||||
//
|
||||
this.labelStaticSerial3Baudrate.BackPictureBox = this.smartForm1;
|
||||
this.labelStaticSerial3Baudrate.BackPictureBox1 = null;
|
||||
this.labelStaticSerial3Baudrate.BackPictureBox2 = null;
|
||||
this.labelStaticSerial3Baudrate.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelStaticSerial3Baudrate.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelStaticSerial3Baudrate.Font = new System.Drawing.Font("New Gulim", 11F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticSerial3Baudrate.InitVisible = true;
|
||||
this.labelStaticSerial3Baudrate.LineSpacing = 0F;
|
||||
this.labelStaticSerial3Baudrate.Location = new System.Drawing.Point(142, 26);
|
||||
this.labelStaticSerial3Baudrate.Name = "labelStaticSerial3Baudrate";
|
||||
this.labelStaticSerial3Baudrate.Size = new System.Drawing.Size(150, 30);
|
||||
this.labelStaticSerial3Baudrate.TabIndex = 0;
|
||||
this.labelStaticSerial3Baudrate.Text = "Baudrate";
|
||||
this.labelStaticSerial3Baudrate.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||
this.labelStaticSerial3Baudrate.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.labelStaticSerial3Baudrate.Wordwrap = false;
|
||||
this.labelTitleSerial3Baudrate.BackPictureBox = this.smartForm1;
|
||||
this.labelTitleSerial3Baudrate.BackPictureBox1 = null;
|
||||
this.labelTitleSerial3Baudrate.BackPictureBox2 = null;
|
||||
this.labelTitleSerial3Baudrate.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelTitleSerial3Baudrate.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTitleSerial3Baudrate.Font = new System.Drawing.Font("New Gulim", 11F, System.Drawing.FontStyle.Bold);
|
||||
this.labelTitleSerial3Baudrate.InitVisible = true;
|
||||
this.labelTitleSerial3Baudrate.LineSpacing = 0F;
|
||||
this.labelTitleSerial3Baudrate.Location = new System.Drawing.Point(142, 26);
|
||||
this.labelTitleSerial3Baudrate.Name = "labelTitleSerial3Baudrate";
|
||||
this.labelTitleSerial3Baudrate.Size = new System.Drawing.Size(150, 30);
|
||||
this.labelTitleSerial3Baudrate.TabIndex = 0;
|
||||
this.labelTitleSerial3Baudrate.Text = "Baudrate";
|
||||
this.labelTitleSerial3Baudrate.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||
this.labelTitleSerial3Baudrate.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.labelTitleSerial3Baudrate.Wordwrap = false;
|
||||
//
|
||||
// smartGroupBox1
|
||||
// groupBoxEthernet
|
||||
//
|
||||
this.smartGroupBox1.BackPictureBox = this.smartForm1;
|
||||
this.smartGroupBox1.BackPictureBox1 = null;
|
||||
this.smartGroupBox1.Controls.Add(this.smartLabel3);
|
||||
this.smartGroupBox1.Controls.Add(this.smartLabel2);
|
||||
this.smartGroupBox1.Controls.Add(this.smartLabel1);
|
||||
this.smartGroupBox1.Controls.Add(this.smartSeparatorLine1);
|
||||
this.smartGroupBox1.Controls.Add(this.labelConnectedIP);
|
||||
this.smartGroupBox1.Controls.Add(this.labelTitleConnectedIP);
|
||||
this.smartGroupBox1.Controls.Add(this.buttonTcpSend);
|
||||
this.smartGroupBox1.Controls.Add(this.labelLocalPort);
|
||||
this.smartGroupBox1.Controls.Add(this.buttonStop);
|
||||
this.smartGroupBox1.Controls.Add(this.labelTitleServerPort);
|
||||
this.smartGroupBox1.Controls.Add(this.buttonStart);
|
||||
this.smartGroupBox1.Controls.Add(this.labelServerStatus);
|
||||
this.smartGroupBox1.Controls.Add(this.buttonTcpSave2);
|
||||
this.smartGroupBox1.Controls.Add(this.labelClientStatus);
|
||||
this.smartGroupBox1.Controls.Add(this.labelTitleClientServerIP);
|
||||
this.smartGroupBox1.Controls.Add(this.labelHostIP1);
|
||||
this.smartGroupBox1.Controls.Add(this.labelHostIP2);
|
||||
this.smartGroupBox1.Controls.Add(this.labelHostIP3);
|
||||
this.smartGroupBox1.Controls.Add(this.labelHostPort);
|
||||
this.smartGroupBox1.Controls.Add(this.labelHostIP4);
|
||||
this.smartGroupBox1.Controls.Add(this.labelTitleClientServerPort);
|
||||
this.smartGroupBox1.Controls.Add(this.labelProtocolDescriptionEthernet_2);
|
||||
this.smartGroupBox1.Controls.Add(this.labelProtocolDescriptionEthernet_1);
|
||||
this.smartGroupBox1.Controls.Add(this.labelStartAddress);
|
||||
this.smartGroupBox1.Controls.Add(this.labelTitleStartAddress);
|
||||
this.smartGroupBox1.Controls.Add(this.buttonTcpSave1);
|
||||
this.smartGroupBox1.Controls.Add(this.labelLocalSubnetMask4);
|
||||
this.smartGroupBox1.Controls.Add(this.labelLocalSubnetMask3);
|
||||
this.smartGroupBox1.Controls.Add(this.labelLocalSubnetMask2);
|
||||
this.smartGroupBox1.Controls.Add(this.labelLocalSubnetMask1);
|
||||
this.smartGroupBox1.Controls.Add(this.labelTitleSubnetMask);
|
||||
this.smartGroupBox1.Controls.Add(this.labelLocalGateway4);
|
||||
this.smartGroupBox1.Controls.Add(this.labelLocalGateway3);
|
||||
this.smartGroupBox1.Controls.Add(this.labelLocalGateway2);
|
||||
this.smartGroupBox1.Controls.Add(this.labelLocalGateway1);
|
||||
this.smartGroupBox1.Controls.Add(this.labelTitleGateway);
|
||||
this.smartGroupBox1.Controls.Add(this.labelLocalIP4);
|
||||
this.smartGroupBox1.Controls.Add(this.labelLocalIP3);
|
||||
this.smartGroupBox1.Controls.Add(this.labelLocalIP2);
|
||||
this.smartGroupBox1.Controls.Add(this.labelLocalIP1);
|
||||
this.smartGroupBox1.Controls.Add(this.labelTitleIPAddress);
|
||||
this.smartGroupBox1.Controls.Add(this.labelStaticTcpMode);
|
||||
this.smartGroupBox1.Controls.Add(this.labelStaticTcpOperationMode);
|
||||
this.smartGroupBox1.Controls.Add(this.comboBoxTcpOperationMode);
|
||||
this.smartGroupBox1.Controls.Add(this.comboBoxTcpMode);
|
||||
this.smartGroupBox1.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.smartGroupBox1.FrameLineColor1 = System.Drawing.Color.Black;
|
||||
this.smartGroupBox1.FrameLineColor2 = System.Drawing.Color.Black;
|
||||
this.smartGroupBox1.FrameLineThickness = 1;
|
||||
this.smartGroupBox1.FrameStyle = SmartX.SmartGroupBox.FRAMESTYLES.Rectangle;
|
||||
this.smartGroupBox1.Image = null;
|
||||
this.smartGroupBox1.InitVisible = true;
|
||||
this.smartGroupBox1.Location = new System.Drawing.Point(8, 86);
|
||||
this.smartGroupBox1.Name = "smartGroupBox1";
|
||||
this.smartGroupBox1.RoundRadius = 10;
|
||||
this.smartGroupBox1.Size = new System.Drawing.Size(1005, 483);
|
||||
this.smartGroupBox1.TabIndex = 220;
|
||||
this.smartGroupBox1.Text = "Ethernet";
|
||||
this.smartGroupBox1.TextColor = System.Drawing.Color.Black;
|
||||
this.groupBoxEthernet.BackPictureBox = this.smartForm1;
|
||||
this.groupBoxEthernet.BackPictureBox1 = null;
|
||||
this.groupBoxEthernet.Controls.Add(this.labelTitleSetting);
|
||||
this.groupBoxEthernet.Controls.Add(this.labelTitleClient);
|
||||
this.groupBoxEthernet.Controls.Add(this.labelTitleServer);
|
||||
this.groupBoxEthernet.Controls.Add(this.smartSeparatorLine1);
|
||||
this.groupBoxEthernet.Controls.Add(this.labelConnectedIP);
|
||||
this.groupBoxEthernet.Controls.Add(this.labelTitleConnectedIP);
|
||||
this.groupBoxEthernet.Controls.Add(this.buttonTcpSend);
|
||||
this.groupBoxEthernet.Controls.Add(this.labelLocalPort);
|
||||
this.groupBoxEthernet.Controls.Add(this.buttonStop);
|
||||
this.groupBoxEthernet.Controls.Add(this.labelTitleServerPort);
|
||||
this.groupBoxEthernet.Controls.Add(this.buttonStart);
|
||||
this.groupBoxEthernet.Controls.Add(this.labelServerStatus);
|
||||
this.groupBoxEthernet.Controls.Add(this.buttonTcpSave2);
|
||||
this.groupBoxEthernet.Controls.Add(this.labelClientStatus);
|
||||
this.groupBoxEthernet.Controls.Add(this.labelTitleClientServerIP);
|
||||
this.groupBoxEthernet.Controls.Add(this.labelHostIP1);
|
||||
this.groupBoxEthernet.Controls.Add(this.labelHostIP2);
|
||||
this.groupBoxEthernet.Controls.Add(this.labelHostIP3);
|
||||
this.groupBoxEthernet.Controls.Add(this.labelHostPort);
|
||||
this.groupBoxEthernet.Controls.Add(this.labelHostIP4);
|
||||
this.groupBoxEthernet.Controls.Add(this.labelTitleClientServerPort);
|
||||
this.groupBoxEthernet.Controls.Add(this.labelProtocolDescriptionEthernet_2);
|
||||
this.groupBoxEthernet.Controls.Add(this.labelProtocolDescriptionEthernet_1);
|
||||
this.groupBoxEthernet.Controls.Add(this.labelStartAddress);
|
||||
this.groupBoxEthernet.Controls.Add(this.labelTitleStartAddress);
|
||||
this.groupBoxEthernet.Controls.Add(this.buttonTcpSave1);
|
||||
this.groupBoxEthernet.Controls.Add(this.labelLocalSubnetMask4);
|
||||
this.groupBoxEthernet.Controls.Add(this.labelLocalSubnetMask3);
|
||||
this.groupBoxEthernet.Controls.Add(this.labelLocalSubnetMask2);
|
||||
this.groupBoxEthernet.Controls.Add(this.labelLocalSubnetMask1);
|
||||
this.groupBoxEthernet.Controls.Add(this.labelTitleSubnetMask);
|
||||
this.groupBoxEthernet.Controls.Add(this.labelLocalGateway4);
|
||||
this.groupBoxEthernet.Controls.Add(this.labelLocalGateway3);
|
||||
this.groupBoxEthernet.Controls.Add(this.labelLocalGateway2);
|
||||
this.groupBoxEthernet.Controls.Add(this.labelLocalGateway1);
|
||||
this.groupBoxEthernet.Controls.Add(this.labelTitleGateway);
|
||||
this.groupBoxEthernet.Controls.Add(this.labelLocalIP4);
|
||||
this.groupBoxEthernet.Controls.Add(this.labelLocalIP3);
|
||||
this.groupBoxEthernet.Controls.Add(this.labelLocalIP2);
|
||||
this.groupBoxEthernet.Controls.Add(this.labelLocalIP1);
|
||||
this.groupBoxEthernet.Controls.Add(this.labelTitleIPAddress);
|
||||
this.groupBoxEthernet.Controls.Add(this.labelTitleTcpMode);
|
||||
this.groupBoxEthernet.Controls.Add(this.labelTitleTcpOperationMode);
|
||||
this.groupBoxEthernet.Controls.Add(this.comboBoxTcpOperationMode);
|
||||
this.groupBoxEthernet.Controls.Add(this.comboBoxTcpMode);
|
||||
this.groupBoxEthernet.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.groupBoxEthernet.FrameLineColor1 = System.Drawing.Color.Black;
|
||||
this.groupBoxEthernet.FrameLineColor2 = System.Drawing.Color.Black;
|
||||
this.groupBoxEthernet.FrameLineThickness = 1;
|
||||
this.groupBoxEthernet.FrameStyle = SmartX.SmartGroupBox.FRAMESTYLES.Rectangle;
|
||||
this.groupBoxEthernet.Image = null;
|
||||
this.groupBoxEthernet.InitVisible = true;
|
||||
this.groupBoxEthernet.Location = new System.Drawing.Point(8, 86);
|
||||
this.groupBoxEthernet.Name = "groupBoxEthernet";
|
||||
this.groupBoxEthernet.RoundRadius = 10;
|
||||
this.groupBoxEthernet.Size = new System.Drawing.Size(1005, 483);
|
||||
this.groupBoxEthernet.TabIndex = 220;
|
||||
this.groupBoxEthernet.Text = "Ethernet";
|
||||
this.groupBoxEthernet.TextColor = System.Drawing.Color.Black;
|
||||
//
|
||||
// smartLabel2
|
||||
// labelTitleSetting
|
||||
//
|
||||
this.smartLabel2.BackColor = System.Drawing.Color.WhiteSmoke;
|
||||
this.smartLabel2.BackPictureBox = null;
|
||||
this.smartLabel2.BackPictureBox1 = null;
|
||||
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("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.smartLabel2.ForeColor = System.Drawing.Color.Black;
|
||||
this.smartLabel2.InitVisible = true;
|
||||
this.smartLabel2.LineSpacing = 0F;
|
||||
this.smartLabel2.Location = new System.Drawing.Point(502, 191);
|
||||
this.smartLabel2.Name = "smartLabel2";
|
||||
this.smartLabel2.Size = new System.Drawing.Size(440, 30);
|
||||
this.smartLabel2.TabIndex = 252;
|
||||
this.smartLabel2.Text = "Client";
|
||||
this.smartLabel2.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||
this.smartLabel2.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.smartLabel2.Wordwrap = false;
|
||||
this.labelTitleSetting.BackColor = System.Drawing.Color.WhiteSmoke;
|
||||
this.labelTitleSetting.BackPictureBox = null;
|
||||
this.labelTitleSetting.BackPictureBox1 = null;
|
||||
this.labelTitleSetting.BackPictureBox2 = null;
|
||||
this.labelTitleSetting.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelTitleSetting.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTitleSetting.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelTitleSetting.ForeColor = System.Drawing.Color.Black;
|
||||
this.labelTitleSetting.InitVisible = true;
|
||||
this.labelTitleSetting.LineSpacing = 0F;
|
||||
this.labelTitleSetting.Location = new System.Drawing.Point(25, 45);
|
||||
this.labelTitleSetting.Name = "labelTitleSetting";
|
||||
this.labelTitleSetting.Size = new System.Drawing.Size(440, 30);
|
||||
this.labelTitleSetting.TabIndex = 253;
|
||||
this.labelTitleSetting.Text = "Setting";
|
||||
this.labelTitleSetting.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||
this.labelTitleSetting.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.labelTitleSetting.Wordwrap = false;
|
||||
//
|
||||
// smartLabel1
|
||||
// labelTitleClient
|
||||
//
|
||||
this.smartLabel1.BackColor = System.Drawing.Color.WhiteSmoke;
|
||||
this.smartLabel1.BackPictureBox = null;
|
||||
this.smartLabel1.BackPictureBox1 = null;
|
||||
this.smartLabel1.BackPictureBox2 = null;
|
||||
this.smartLabel1.BorderColor = System.Drawing.Color.Black;
|
||||
this.smartLabel1.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.smartLabel1.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.smartLabel1.ForeColor = System.Drawing.Color.Black;
|
||||
this.smartLabel1.InitVisible = true;
|
||||
this.smartLabel1.LineSpacing = 0F;
|
||||
this.smartLabel1.Location = new System.Drawing.Point(502, 45);
|
||||
this.smartLabel1.Name = "smartLabel1";
|
||||
this.smartLabel1.Size = new System.Drawing.Size(440, 30);
|
||||
this.smartLabel1.TabIndex = 251;
|
||||
this.smartLabel1.Text = "Server";
|
||||
this.smartLabel1.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||
this.smartLabel1.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.smartLabel1.Wordwrap = false;
|
||||
this.labelTitleClient.BackColor = System.Drawing.Color.WhiteSmoke;
|
||||
this.labelTitleClient.BackPictureBox = null;
|
||||
this.labelTitleClient.BackPictureBox1 = null;
|
||||
this.labelTitleClient.BackPictureBox2 = null;
|
||||
this.labelTitleClient.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelTitleClient.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTitleClient.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelTitleClient.ForeColor = System.Drawing.Color.Black;
|
||||
this.labelTitleClient.InitVisible = true;
|
||||
this.labelTitleClient.LineSpacing = 0F;
|
||||
this.labelTitleClient.Location = new System.Drawing.Point(502, 191);
|
||||
this.labelTitleClient.Name = "labelTitleClient";
|
||||
this.labelTitleClient.Size = new System.Drawing.Size(440, 30);
|
||||
this.labelTitleClient.TabIndex = 252;
|
||||
this.labelTitleClient.Text = "Client";
|
||||
this.labelTitleClient.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||
this.labelTitleClient.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.labelTitleClient.Wordwrap = false;
|
||||
//
|
||||
// labelTitleServer
|
||||
//
|
||||
this.labelTitleServer.BackColor = System.Drawing.Color.WhiteSmoke;
|
||||
this.labelTitleServer.BackPictureBox = null;
|
||||
this.labelTitleServer.BackPictureBox1 = null;
|
||||
this.labelTitleServer.BackPictureBox2 = null;
|
||||
this.labelTitleServer.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelTitleServer.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTitleServer.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelTitleServer.ForeColor = System.Drawing.Color.Black;
|
||||
this.labelTitleServer.InitVisible = true;
|
||||
this.labelTitleServer.LineSpacing = 0F;
|
||||
this.labelTitleServer.Location = new System.Drawing.Point(502, 45);
|
||||
this.labelTitleServer.Name = "labelTitleServer";
|
||||
this.labelTitleServer.Size = new System.Drawing.Size(440, 30);
|
||||
this.labelTitleServer.TabIndex = 251;
|
||||
this.labelTitleServer.Text = "Server";
|
||||
this.labelTitleServer.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||
this.labelTitleServer.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.labelTitleServer.Wordwrap = false;
|
||||
//
|
||||
// smartSeparatorLine1
|
||||
//
|
||||
|
|
@ -1158,43 +1179,43 @@
|
|||
this.labelTitleIPAddress.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.labelTitleIPAddress.Wordwrap = false;
|
||||
//
|
||||
// labelStaticTcpMode
|
||||
// labelTitleTcpMode
|
||||
//
|
||||
this.labelStaticTcpMode.BackPictureBox = this.smartForm1;
|
||||
this.labelStaticTcpMode.BackPictureBox1 = null;
|
||||
this.labelStaticTcpMode.BackPictureBox2 = null;
|
||||
this.labelStaticTcpMode.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelStaticTcpMode.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelStaticTcpMode.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticTcpMode.InitVisible = true;
|
||||
this.labelStaticTcpMode.LineSpacing = 0F;
|
||||
this.labelStaticTcpMode.Location = new System.Drawing.Point(65, 264);
|
||||
this.labelStaticTcpMode.Name = "labelStaticTcpMode";
|
||||
this.labelStaticTcpMode.Size = new System.Drawing.Size(140, 30);
|
||||
this.labelStaticTcpMode.TabIndex = 181;
|
||||
this.labelStaticTcpMode.Text = "통신 모드";
|
||||
this.labelStaticTcpMode.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||
this.labelStaticTcpMode.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.labelStaticTcpMode.Wordwrap = false;
|
||||
this.labelTitleTcpMode.BackPictureBox = this.smartForm1;
|
||||
this.labelTitleTcpMode.BackPictureBox1 = null;
|
||||
this.labelTitleTcpMode.BackPictureBox2 = null;
|
||||
this.labelTitleTcpMode.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelTitleTcpMode.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTitleTcpMode.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelTitleTcpMode.InitVisible = true;
|
||||
this.labelTitleTcpMode.LineSpacing = 0F;
|
||||
this.labelTitleTcpMode.Location = new System.Drawing.Point(65, 264);
|
||||
this.labelTitleTcpMode.Name = "labelTitleTcpMode";
|
||||
this.labelTitleTcpMode.Size = new System.Drawing.Size(140, 30);
|
||||
this.labelTitleTcpMode.TabIndex = 181;
|
||||
this.labelTitleTcpMode.Text = "통신 모드";
|
||||
this.labelTitleTcpMode.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||
this.labelTitleTcpMode.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.labelTitleTcpMode.Wordwrap = false;
|
||||
//
|
||||
// labelStaticTcpOperationMode
|
||||
// labelTitleTcpOperationMode
|
||||
//
|
||||
this.labelStaticTcpOperationMode.BackPictureBox = this.smartForm1;
|
||||
this.labelStaticTcpOperationMode.BackPictureBox1 = null;
|
||||
this.labelStaticTcpOperationMode.BackPictureBox2 = null;
|
||||
this.labelStaticTcpOperationMode.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelStaticTcpOperationMode.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelStaticTcpOperationMode.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticTcpOperationMode.InitVisible = true;
|
||||
this.labelStaticTcpOperationMode.LineSpacing = 0F;
|
||||
this.labelStaticTcpOperationMode.Location = new System.Drawing.Point(65, 228);
|
||||
this.labelStaticTcpOperationMode.Name = "labelStaticTcpOperationMode";
|
||||
this.labelStaticTcpOperationMode.Size = new System.Drawing.Size(140, 30);
|
||||
this.labelStaticTcpOperationMode.TabIndex = 180;
|
||||
this.labelStaticTcpOperationMode.Text = "동작 모드";
|
||||
this.labelStaticTcpOperationMode.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||
this.labelStaticTcpOperationMode.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.labelStaticTcpOperationMode.Wordwrap = false;
|
||||
this.labelTitleTcpOperationMode.BackPictureBox = this.smartForm1;
|
||||
this.labelTitleTcpOperationMode.BackPictureBox1 = null;
|
||||
this.labelTitleTcpOperationMode.BackPictureBox2 = null;
|
||||
this.labelTitleTcpOperationMode.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelTitleTcpOperationMode.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTitleTcpOperationMode.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelTitleTcpOperationMode.InitVisible = true;
|
||||
this.labelTitleTcpOperationMode.LineSpacing = 0F;
|
||||
this.labelTitleTcpOperationMode.Location = new System.Drawing.Point(65, 228);
|
||||
this.labelTitleTcpOperationMode.Name = "labelTitleTcpOperationMode";
|
||||
this.labelTitleTcpOperationMode.Size = new System.Drawing.Size(140, 30);
|
||||
this.labelTitleTcpOperationMode.TabIndex = 180;
|
||||
this.labelTitleTcpOperationMode.Text = "동작 모드";
|
||||
this.labelTitleTcpOperationMode.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||
this.labelTitleTcpOperationMode.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.labelTitleTcpOperationMode.Wordwrap = false;
|
||||
//
|
||||
// comboBoxTcpOperationMode
|
||||
//
|
||||
|
|
@ -1273,27 +1294,6 @@
|
|||
this.labelClientCount.Visible = false;
|
||||
this.labelClientCount.Wordwrap = false;
|
||||
//
|
||||
// smartLabel3
|
||||
//
|
||||
this.smartLabel3.BackColor = System.Drawing.Color.WhiteSmoke;
|
||||
this.smartLabel3.BackPictureBox = null;
|
||||
this.smartLabel3.BackPictureBox1 = null;
|
||||
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("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.smartLabel3.ForeColor = System.Drawing.Color.Black;
|
||||
this.smartLabel3.InitVisible = true;
|
||||
this.smartLabel3.LineSpacing = 0F;
|
||||
this.smartLabel3.Location = new System.Drawing.Point(25, 45);
|
||||
this.smartLabel3.Name = "smartLabel3";
|
||||
this.smartLabel3.Size = new System.Drawing.Size(440, 30);
|
||||
this.smartLabel3.TabIndex = 253;
|
||||
this.smartLabel3.Text = "Setting";
|
||||
this.smartLabel3.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||
this.smartLabel3.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.smartLabel3.Wordwrap = false;
|
||||
//
|
||||
// FormCommunication
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
|
||||
|
|
@ -1302,16 +1302,16 @@
|
|||
this.ClientSize = new System.Drawing.Size(1024, 768);
|
||||
this.Controls.Add(this.smartListBoxClientList);
|
||||
this.Controls.Add(this.labelClientCount);
|
||||
this.Controls.Add(this.smartGroupBox1);
|
||||
this.Controls.Add(this.groupBoxComm);
|
||||
this.Controls.Add(this.groupBoxEthernet);
|
||||
this.Controls.Add(this.groupBoxSerial);
|
||||
this.Controls.Add(this.labelTitle);
|
||||
this.Controls.Add(this.buttonBack);
|
||||
this.Controls.Add(this.smartForm1);
|
||||
this.Name = "FormCommunication";
|
||||
this.Text = "FormCommunication";
|
||||
((System.ComponentModel.ISupportInitialize)(this.smartForm1)).EndInit();
|
||||
this.groupBoxComm.ResumeLayout(false);
|
||||
this.smartGroupBox1.ResumeLayout(false);
|
||||
this.groupBoxSerial.ResumeLayout(false);
|
||||
this.groupBoxEthernet.ResumeLayout(false);
|
||||
this.ResumeLayout(false);
|
||||
|
||||
}
|
||||
|
|
@ -1321,19 +1321,19 @@
|
|||
private SmartX.SmartForm smartForm1;
|
||||
private SmartX.SmartLabel labelTitle;
|
||||
private SmartX.SmartButton buttonBack;
|
||||
private SmartX.SmartGroupBox groupBoxComm;
|
||||
private SmartX.SmartGroupBox groupBoxSerial;
|
||||
private SmartX.SmartLabel labelProtocolDescriptionCOM3_2;
|
||||
private System.Windows.Forms.Button buttonSerial3Send;
|
||||
private SmartX.SmartLabel labelProtocolDescriptionCOM3_1;
|
||||
private System.Windows.Forms.Button buttonSave3;
|
||||
private System.Windows.Forms.ComboBox comboBoxSerial3BaudRate;
|
||||
private System.Windows.Forms.ComboBox comboBoxSerial3Mode;
|
||||
private SmartX.SmartLabel labelStaticSerial3Mode;
|
||||
private SmartX.SmartLabel labelTitleSerial3Mode;
|
||||
private SmartX.SmartLabel smartLabel4;
|
||||
private SmartX.SmartLabel labelStaticSerial3Baudrate;
|
||||
private SmartX.SmartGroupBox smartGroupBox1;
|
||||
private SmartX.SmartLabel smartLabel2;
|
||||
private SmartX.SmartLabel smartLabel1;
|
||||
private SmartX.SmartLabel labelTitleSerial3Baudrate;
|
||||
private SmartX.SmartGroupBox groupBoxEthernet;
|
||||
private SmartX.SmartLabel labelTitleClient;
|
||||
private SmartX.SmartLabel labelTitleServer;
|
||||
private SmartX.SmartSeparatorLine smartSeparatorLine1;
|
||||
private SmartX.SmartLabel labelConnectedIP;
|
||||
private SmartX.SmartLabel labelTitleConnectedIP;
|
||||
|
|
@ -1372,13 +1372,13 @@
|
|||
public SmartX.SmartLabel labelLocalIP2;
|
||||
public SmartX.SmartLabel labelLocalIP1;
|
||||
private SmartX.SmartLabel labelTitleIPAddress;
|
||||
private SmartX.SmartLabel labelStaticTcpMode;
|
||||
private SmartX.SmartLabel labelStaticTcpOperationMode;
|
||||
private SmartX.SmartLabel labelTitleTcpMode;
|
||||
private SmartX.SmartLabel labelTitleTcpOperationMode;
|
||||
private System.Windows.Forms.ComboBox comboBoxTcpOperationMode;
|
||||
private System.Windows.Forms.ComboBox comboBoxTcpMode;
|
||||
public System.Windows.Forms.Timer timerServer;
|
||||
private SmartX.SmartListBox smartListBoxClientList;
|
||||
private SmartX.SmartLabel labelClientCount;
|
||||
private SmartX.SmartLabel smartLabel3;
|
||||
private SmartX.SmartLabel labelTitleSetting;
|
||||
}
|
||||
}
|
||||
|
|
@ -54,12 +54,12 @@ namespace INT63DC_2C.Forms
|
|||
#region English
|
||||
this.labelTitle.Text = "Communication";
|
||||
// Serial
|
||||
this.groupBoxComm.Text = "Communication";
|
||||
this.labelStaticSerial3Baudrate.Text = "Baudrate";
|
||||
this.labelStaticSerial3Mode.Text = "Mode";
|
||||
this.groupBoxSerial.Text = "Communication";
|
||||
this.labelTitleSerial3Baudrate.Text = "Baudrate";
|
||||
this.labelTitleSerial3Mode.Text = "Mode";
|
||||
// TCP
|
||||
this.labelStaticTcpOperationMode.Text = "Operation mode";
|
||||
this.labelStaticTcpMode.Text = "mode";
|
||||
this.labelTitleTcpOperationMode.Text = "Operation mode";
|
||||
this.labelTitleTcpMode.Text = "mode";
|
||||
|
||||
this.buttonBack.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engBackDisable));
|
||||
this.buttonBack.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engBackDown));
|
||||
|
|
@ -70,14 +70,30 @@ namespace INT63DC_2C.Forms
|
|||
#region Chinese
|
||||
this.labelTitle.Text = "通讯设置";
|
||||
// Serial
|
||||
this.groupBoxComm.Text = "通信";
|
||||
this.labelStaticSerial3Baudrate.Text = "波特率";
|
||||
this.labelStaticSerial3Mode.Text = "模式";
|
||||
this.groupBoxSerial.Text = "通信";
|
||||
this.labelTitleSerial3Baudrate.Text = "波特率";
|
||||
this.labelTitleSerial3Mode.Text = "模式";
|
||||
this.buttonSerial3Send.Text = "发送";
|
||||
this.buttonSave3.Text = "保存";
|
||||
// TCP
|
||||
this.labelStaticTcpOperationMode.Text = "运转模式";
|
||||
this.labelStaticTcpMode.Text = "模式";
|
||||
this.groupBoxEthernet.Text = "以太网";
|
||||
this.labelTitleSetting.Text = "设置";
|
||||
this.labelTitleIPAddress.Text = "IP地址";
|
||||
this.labelTitleSubnetMask.Text = "子网屏蔽码";
|
||||
this.labelTitleGateway.Text = "网关";
|
||||
this.labelTitleTcpOperationMode.Text = "运转模式";
|
||||
this.labelTitleTcpMode.Text = "模式";
|
||||
this.labelTitleServer.Text = "服务器";
|
||||
this.labelTitleConnectedIP.Text = "连接的IP";
|
||||
this.labelTitleServerPort.Text = "端口";
|
||||
this.labelTitleClient.Text = "客户端";
|
||||
this.labelTitleClientServerIP.Text = "服务器 IP 地址";
|
||||
this.labelTitleClientServerPort.Text = "服务器端口";
|
||||
|
||||
this.buttonTcpSave1.Text = this.buttonTcpSave2.Text = "保存";
|
||||
this.buttonTcpSend.Text = "发送";
|
||||
this.buttonStart.Text = "开启";
|
||||
this.buttonStop.Text = "停止";
|
||||
|
||||
this.buttonBack.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnBackDisable));
|
||||
this.buttonBack.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnBackDown));
|
||||
|
|
@ -88,13 +104,13 @@ namespace INT63DC_2C.Forms
|
|||
#region Czech
|
||||
this.labelTitle.Text = "Nastavení komunikace";
|
||||
// Serial
|
||||
this.groupBoxComm.Text = "Nastavení komunikace";
|
||||
this.labelStaticSerial3Baudrate.Text = "Přenosová rychlost";
|
||||
this.labelStaticSerial3Mode.Text = "Režim";
|
||||
this.groupBoxSerial.Text = "Nastavení komunikace";
|
||||
this.labelTitleSerial3Baudrate.Text = "Přenosová rychlost";
|
||||
this.labelTitleSerial3Mode.Text = "Režim";
|
||||
this.buttonSave3.Text = "Uložit";
|
||||
// TCP
|
||||
this.labelStaticTcpOperationMode.Text = "operační mód";
|
||||
this.labelStaticTcpMode.Text = "Režim";
|
||||
this.labelTitleTcpOperationMode.Text = "operační mód";
|
||||
this.labelTitleTcpMode.Text = "Režim";
|
||||
|
||||
this.buttonBack.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeBackDisable));
|
||||
this.buttonBack.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeBackDown));
|
||||
|
|
@ -105,9 +121,9 @@ namespace INT63DC_2C.Forms
|
|||
#region German
|
||||
this.labelTitle.Text = "Kommunikationseinstellungen";
|
||||
// Serial
|
||||
this.groupBoxComm.Text = "Kommunikationseinstellung";
|
||||
this.labelStaticSerial3Baudrate.Text = "Baudrate";
|
||||
this.labelStaticSerial3Mode.Text = "Modus";
|
||||
this.groupBoxSerial.Text = "Kommunikationseinstellung";
|
||||
this.labelTitleSerial3Baudrate.Text = "Baudrate";
|
||||
this.labelTitleSerial3Mode.Text = "Modus";
|
||||
this.buttonSerial3Send.Text = "Senden";
|
||||
this.buttonSave3.Text = "Speichern";
|
||||
|
||||
|
|
@ -137,8 +153,8 @@ namespace INT63DC_2C.Forms
|
|||
this.comboBoxSerial3Mode.Items.Clear();
|
||||
this.comboBoxSerial3Mode.SelectedIndexChanged -= new EventHandler(this.comboBoxSerial3_SelectedIndexChanged);
|
||||
this.comboBoxSerial3Mode.Items.Add("-");
|
||||
this.comboBoxSerial3Mode.Items.Add("OPT1");
|
||||
this.comboBoxSerial3Mode.Items.Add("OPT2");
|
||||
this.comboBoxSerial3Mode.Items.Add("STD1");
|
||||
this.comboBoxSerial3Mode.Items.Add("STD2");
|
||||
this.comboBoxSerial3Mode.SelectedIndex = 0;
|
||||
this.comboBoxSerial3Mode.SelectedIndexChanged += new EventHandler(this.comboBoxSerial3_SelectedIndexChanged);
|
||||
#endregion
|
||||
|
|
@ -155,8 +171,8 @@ namespace INT63DC_2C.Forms
|
|||
this.comboBoxTcpMode.Items.Clear();
|
||||
this.comboBoxTcpMode.SelectedIndexChanged -= new EventHandler(this.comboBoxTcpMode_SelectedIndexChanged);
|
||||
this.comboBoxTcpMode.Items.Add("None");
|
||||
this.comboBoxTcpMode.Items.Add("OPT1");
|
||||
this.comboBoxTcpMode.Items.Add("OPT2");
|
||||
this.comboBoxTcpMode.Items.Add("STD1");
|
||||
this.comboBoxTcpMode.Items.Add("STD2");
|
||||
this.comboBoxTcpMode.SelectedIndex = 0;
|
||||
this.comboBoxTcpMode.SelectedIndexChanged += new EventHandler(this.comboBoxTcpMode_SelectedIndexChanged);
|
||||
#endregion
|
||||
|
|
@ -196,12 +212,6 @@ namespace INT63DC_2C.Forms
|
|||
this.labelClientStatus.Text = "-";
|
||||
this.labelConnectedIP.Text = "-";
|
||||
|
||||
// Host IP
|
||||
if (this.ParentForm.SystemConfig.EthernetServerAddress == "")
|
||||
{
|
||||
this.ParentForm.SystemConfig.EthernetServerAddress = "0.0.0.0";
|
||||
this.ParentForm.SaveSystemConfigurationFile3(this.ParentForm.SystemConfig);
|
||||
}
|
||||
sValue = this.ParentForm.SystemConfig.EthernetServerAddress.Split('.');
|
||||
this.labelHostIP1.Text = sValue[0];
|
||||
this.labelHostIP2.Text = sValue[1];
|
||||
|
|
@ -278,9 +288,9 @@ namespace INT63DC_2C.Forms
|
|||
string data = "";
|
||||
|
||||
if (this.ParentForm.SystemConfig.EthernetMode == 1)
|
||||
data = this.ParentForm.Protocol_OPT1(this.ParentForm.SystemConfig, this.ParentForm.CollectionWeightData);
|
||||
data = this.ParentForm.Protocol_STD1(this.ParentForm.SystemConfig, this.ParentForm.CollectionWeightData);
|
||||
else
|
||||
data = this.ParentForm.Protocol_OPT2(this.ParentForm.SystemConfig, this.ParentForm.CollectionWeightData, this.ParentForm.CurrentProductItem);
|
||||
data = this.ParentForm.Protocol_STD2(this.ParentForm.SystemConfig, this.ParentForm.CollectionWeightData, this.ParentForm.CurrentProductItem);
|
||||
|
||||
switch (this.ParentForm.SystemConfig.EthernetOperationMode)
|
||||
{
|
||||
|
|
@ -566,9 +576,9 @@ namespace INT63DC_2C.Forms
|
|||
if (this.ParentForm.SystemConfig.Serial3Mode == 0)
|
||||
beforeMode = "None";
|
||||
else if (this.ParentForm.SystemConfig.Serial3Mode == 1)
|
||||
beforeMode = "OPT1";
|
||||
beforeMode = "STD1";
|
||||
else
|
||||
beforeMode = "OPT2";
|
||||
beforeMode = "STD2";
|
||||
|
||||
int baudrate = 9600;
|
||||
this.ParentForm.SystemConfig.Serial3BaudRate = this.comboBoxSerial3BaudRate.SelectedIndex;
|
||||
|
|
@ -608,9 +618,9 @@ namespace INT63DC_2C.Forms
|
|||
if (this.ParentForm.SystemConfig.Serial3Mode == 0)
|
||||
afterMode = "None";
|
||||
else if (this.ParentForm.SystemConfig.Serial3Mode == 1)
|
||||
afterMode = "OPT1";
|
||||
afterMode = "STD1";
|
||||
else
|
||||
afterMode = "OPT2";
|
||||
afterMode = "STD2";
|
||||
|
||||
if (this.ParentForm.SystemConfig.Serial3Mode != 0)
|
||||
{
|
||||
|
|
@ -699,6 +709,7 @@ namespace INT63DC_2C.Forms
|
|||
{
|
||||
#region Server
|
||||
this.ParentForm.EthernetClientDisconnect();
|
||||
this.ParentForm.ChildFormMainDisplay.TimerServer(true);
|
||||
|
||||
this.buttonStart.Enabled = true;
|
||||
this.buttonStop.Enabled = true;
|
||||
|
|
@ -711,6 +722,7 @@ namespace INT63DC_2C.Forms
|
|||
this.timerServer.Enabled = false;
|
||||
this.ParentForm.EthernetServerStop();
|
||||
this.ParentForm.EthernetClientDisconnect();
|
||||
this.ParentForm.ChildFormMainDisplay.TimerServer(false);
|
||||
|
||||
this.buttonStart.Enabled = true;
|
||||
this.buttonStop.Enabled = true;
|
||||
|
|
@ -722,6 +734,7 @@ namespace INT63DC_2C.Forms
|
|||
this.timerServer.Enabled = false;
|
||||
this.ParentForm.EthernetServerStop();
|
||||
this.ParentForm.EthernetClientDisconnect();
|
||||
this.ParentForm.ChildFormMainDisplay.TimerServer(false);
|
||||
|
||||
this.buttonStart.Enabled = false;
|
||||
this.buttonStop.Enabled = false;
|
||||
|
|
@ -745,9 +758,9 @@ namespace INT63DC_2C.Forms
|
|||
string before = "", after = "";
|
||||
|
||||
if (this.ParentForm.SystemConfig.EthernetMode == 1)
|
||||
before = "OPT2";
|
||||
before = "STD1";
|
||||
else if (this.ParentForm.SystemConfig.EthernetMode == 2)
|
||||
before = "Modbus";
|
||||
before = "STD2";
|
||||
else
|
||||
before = "None";
|
||||
|
||||
|
|
|
|||
|
|
@ -178,7 +178,7 @@ namespace INT63DC_2C.Forms
|
|||
header.LoginId = this.ParentForm.SystemConfig.CurrentUser.ID;
|
||||
header.SerialNumber = this.ParentForm.SystemConfig.SerialNumber;
|
||||
header.EquipmentColumns = this.ParentForm.SystemConfig.EquipmentColumns;
|
||||
header.EquipmentType = 103;
|
||||
header.EquipmentType = 105;
|
||||
|
||||
for (int i = 0; i < listSelectedFile.Count; i++)
|
||||
this.CreateHeaderFile(this.ParentForm.PathHeaderFolder, listSelectedFile[i], header);
|
||||
|
|
@ -366,7 +366,7 @@ namespace INT63DC_2C.Forms
|
|||
header.LoginId = this.ParentForm.SystemConfig.CurrentUser.ID;
|
||||
header.SerialNumber = this.ParentForm.SystemConfig.SerialNumber;
|
||||
header.EquipmentColumns = this.ParentForm.SystemConfig.EquipmentColumns;
|
||||
header.EquipmentType = 103;
|
||||
header.EquipmentType = 105;
|
||||
|
||||
for (int i = 0; i < listSelectedFile.Count; i++)
|
||||
this.CreateHeaderFile(this.ParentForm.PathHeaderFolder, listSelectedFile[i], header);
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@
|
|||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormEquipmentSetting));
|
||||
this.smartForm1 = new SmartX.SmartForm();
|
||||
this.groupBoxSpecialMenu = new SmartX.SmartGroupBox();
|
||||
this.smartLabel6 = new SmartX.SmartLabel();
|
||||
this.labelStaticMonths = new SmartX.SmartLabel();
|
||||
this.labelDataStoragePeriod = new SmartX.SmartLabel();
|
||||
this.labelStaticDataStoragePeriod = new SmartX.SmartLabel();
|
||||
this.panel3 = new System.Windows.Forms.Panel();
|
||||
|
|
@ -106,7 +106,7 @@
|
|||
//
|
||||
this.groupBoxSpecialMenu.BackPictureBox = this.smartForm1;
|
||||
this.groupBoxSpecialMenu.BackPictureBox1 = null;
|
||||
this.groupBoxSpecialMenu.Controls.Add(this.smartLabel6);
|
||||
this.groupBoxSpecialMenu.Controls.Add(this.labelStaticMonths);
|
||||
this.groupBoxSpecialMenu.Controls.Add(this.labelDataStoragePeriod);
|
||||
this.groupBoxSpecialMenu.Controls.Add(this.labelStaticDataStoragePeriod);
|
||||
this.groupBoxSpecialMenu.Controls.Add(this.panel3);
|
||||
|
|
@ -156,24 +156,24 @@
|
|||
this.groupBoxSpecialMenu.Text = "EquipmentSetting";
|
||||
this.groupBoxSpecialMenu.TextColor = System.Drawing.Color.Black;
|
||||
//
|
||||
// smartLabel6
|
||||
// labelStaticMonths
|
||||
//
|
||||
this.smartLabel6.BackPictureBox = this.smartForm1;
|
||||
this.smartLabel6.BackPictureBox1 = null;
|
||||
this.smartLabel6.BackPictureBox2 = null;
|
||||
this.smartLabel6.BorderColor = System.Drawing.Color.Black;
|
||||
this.smartLabel6.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.smartLabel6.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.smartLabel6.InitVisible = true;
|
||||
this.smartLabel6.LineSpacing = 0F;
|
||||
this.smartLabel6.Location = new System.Drawing.Point(515, 290);
|
||||
this.smartLabel6.Name = "smartLabel6";
|
||||
this.smartLabel6.Size = new System.Drawing.Size(100, 25);
|
||||
this.smartLabel6.TabIndex = 265;
|
||||
this.smartLabel6.Text = "months";
|
||||
this.smartLabel6.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left;
|
||||
this.smartLabel6.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.smartLabel6.Wordwrap = false;
|
||||
this.labelStaticMonths.BackPictureBox = this.smartForm1;
|
||||
this.labelStaticMonths.BackPictureBox1 = null;
|
||||
this.labelStaticMonths.BackPictureBox2 = null;
|
||||
this.labelStaticMonths.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelStaticMonths.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelStaticMonths.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticMonths.InitVisible = true;
|
||||
this.labelStaticMonths.LineSpacing = 0F;
|
||||
this.labelStaticMonths.Location = new System.Drawing.Point(515, 290);
|
||||
this.labelStaticMonths.Name = "labelStaticMonths";
|
||||
this.labelStaticMonths.Size = new System.Drawing.Size(100, 25);
|
||||
this.labelStaticMonths.TabIndex = 265;
|
||||
this.labelStaticMonths.Text = "months";
|
||||
this.labelStaticMonths.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left;
|
||||
this.labelStaticMonths.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.labelStaticMonths.Wordwrap = false;
|
||||
//
|
||||
// labelDataStoragePeriod
|
||||
//
|
||||
|
|
@ -1080,7 +1080,7 @@
|
|||
public System.Windows.Forms.RadioButton radioButtonCOM1;
|
||||
private SmartX.SmartLabel smartLabel1;
|
||||
private System.Windows.Forms.RadioButton radioButtonLanguageJap;
|
||||
private SmartX.SmartLabel smartLabel6;
|
||||
private SmartX.SmartLabel labelStaticMonths;
|
||||
public SmartX.SmartLabel labelDataStoragePeriod;
|
||||
private SmartX.SmartLabel labelStaticDataStoragePeriod;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -91,6 +91,8 @@ namespace INT63DC_2C.Forms
|
|||
this.labelStaticEmptyWeight.Text = "空重设置";
|
||||
this.labelStaticMotor.Text = "马达";
|
||||
this.labelStaticWeightLimitIgnoreCount.Text = "重量限制 - 忽略计数";
|
||||
this.labelStaticDataStoragePeriod.Text = "数据保存期限";
|
||||
this.labelStaticMonths.Text = "几个月";
|
||||
|
||||
this.radioButtonAcMotor.Text = "交流电机(AC)";
|
||||
this.radioButtonServoMotor.Text = "伺服电机(Servo)";
|
||||
|
|
|
|||
|
|
@ -1948,7 +1948,7 @@
|
|||
this.buttonDisplay.DownImage = ((System.Drawing.Image)(resources.GetObject("buttonDisplay.DownImage")));
|
||||
this.buttonDisplay.GroupID = 0;
|
||||
this.buttonDisplay.InitVisible = true;
|
||||
this.buttonDisplay.Location = new System.Drawing.Point(805, 666);
|
||||
this.buttonDisplay.Location = new System.Drawing.Point(834, 666);
|
||||
this.buttonDisplay.Mode = SmartX.SmartButton.BUTTONMODE.NORMAL;
|
||||
this.buttonDisplay.Name = "buttonDisplay";
|
||||
this.buttonDisplay.NestedClickEventPrevent = false;
|
||||
|
|
|
|||
|
|
@ -476,6 +476,25 @@ namespace INT63DC_2C.Forms
|
|||
this.smartConfigs.IPSettings.SetApply();
|
||||
}
|
||||
|
||||
// 이더넷
|
||||
if (this.SystemConfig.EthernetOperationMode == 1)
|
||||
{
|
||||
try
|
||||
{
|
||||
if (string.Compare(this.smartConfigs.IPSettings.DeviceIP, "0.0.0.0") != 0)
|
||||
this.EthernetServerStart();
|
||||
|
||||
if (this.SystemConfig.EthernetOperationMode == 1 && this.smartTCPMultiServer.IsStart == true)
|
||||
this.ChildFormMainDisplay.TimerServer(true);
|
||||
}
|
||||
catch
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
else if (this.SystemConfig.EthernetOperationMode == 2)
|
||||
this.EthernetClientDisconnect();
|
||||
|
||||
// SerialDll Initialize
|
||||
SerialMgrComm.IntializeSerialManager();
|
||||
SerialMgrComm.SerialPortMessageReceive += this.SerialPort_MessageReceive;
|
||||
|
|
@ -1099,6 +1118,15 @@ namespace INT63DC_2C.Forms
|
|||
this.TransferData(CommunicationCommand.Stop, CommunicationID.MainBoard);
|
||||
this.ChildFormMainDisplay.UpdateDisplayAlarmMessageServoOrigin();
|
||||
}
|
||||
|
||||
// Ethernet Connection
|
||||
if (this.SystemConfig.IsEthernetEnable == true)
|
||||
{
|
||||
if (this.SystemConfig.EthernetOperationMode == 1)
|
||||
this.EthernetServerStart();
|
||||
else
|
||||
this.EthernetClientConnect();
|
||||
}
|
||||
break;
|
||||
case "CBT":
|
||||
this.EquipmentStatus = DataStore.EquipmentStatus.Stop;
|
||||
|
|
@ -2267,6 +2295,70 @@ namespace INT63DC_2C.Forms
|
|||
if (this.ChildFormSystemSetting != null)
|
||||
this.ChildFormSystemSetting.UpdateGraphDataDisplay(this.EquipmentStatus, this.CollectionWeightData[11], this.CollectionGraphData, time1);
|
||||
break;
|
||||
case "M":
|
||||
#region Value Assign
|
||||
this.CollectionWeightData[12].Weight = Helper.StringToWeight(receiveData.Substring(2, 5), this.SystemConfig.DecimalPlaces);
|
||||
this.CollectionWeightData[12].ADCValue = receiveData.Substring(7, 5);
|
||||
time1 = receiveData.Substring(12, 4);
|
||||
|
||||
for (int i = 0; i < this.CollectionGraphData.Count; i++)
|
||||
{
|
||||
this.CollectionGraphData[i] = int.Parse(receiveData.Substring(temp, 5));
|
||||
temp += 5;
|
||||
}
|
||||
#endregion
|
||||
|
||||
if (this.ChildFormSystemSetting != null)
|
||||
this.ChildFormSystemSetting.UpdateGraphDataDisplay(this.EquipmentStatus, this.CollectionWeightData[12], this.CollectionGraphData, time1);
|
||||
break;
|
||||
case "N":
|
||||
#region Value Assign
|
||||
this.CollectionWeightData[13].Weight = Helper.StringToWeight(receiveData.Substring(2, 5), this.SystemConfig.DecimalPlaces);
|
||||
this.CollectionWeightData[13].ADCValue = receiveData.Substring(7, 5);
|
||||
time1 = receiveData.Substring(12, 4);
|
||||
|
||||
for (int i = 0; i < this.CollectionGraphData.Count; i++)
|
||||
{
|
||||
this.CollectionGraphData[i] = int.Parse(receiveData.Substring(temp, 5));
|
||||
temp += 5;
|
||||
}
|
||||
#endregion
|
||||
|
||||
if (this.ChildFormSystemSetting != null)
|
||||
this.ChildFormSystemSetting.UpdateGraphDataDisplay(this.EquipmentStatus, this.CollectionWeightData[13], this.CollectionGraphData, time1);
|
||||
break;
|
||||
case "O":
|
||||
#region Value Assign
|
||||
this.CollectionWeightData[14].Weight = Helper.StringToWeight(receiveData.Substring(2, 5), this.SystemConfig.DecimalPlaces);
|
||||
this.CollectionWeightData[14].ADCValue = receiveData.Substring(7, 5);
|
||||
time1 = receiveData.Substring(12, 4);
|
||||
|
||||
for (int i = 0; i < this.CollectionGraphData.Count; i++)
|
||||
{
|
||||
this.CollectionGraphData[i] = int.Parse(receiveData.Substring(temp, 5));
|
||||
temp += 5;
|
||||
}
|
||||
#endregion
|
||||
|
||||
if (this.ChildFormSystemSetting != null)
|
||||
this.ChildFormSystemSetting.UpdateGraphDataDisplay(this.EquipmentStatus, this.CollectionWeightData[14], this.CollectionGraphData, time1);
|
||||
break;
|
||||
case "P":
|
||||
#region Value Assign
|
||||
this.CollectionWeightData[15].Weight = Helper.StringToWeight(receiveData.Substring(2, 5), this.SystemConfig.DecimalPlaces);
|
||||
this.CollectionWeightData[15].ADCValue = receiveData.Substring(7, 5);
|
||||
time1 = receiveData.Substring(12, 4);
|
||||
|
||||
for (int i = 0; i < this.CollectionGraphData.Count; i++)
|
||||
{
|
||||
this.CollectionGraphData[i] = int.Parse(receiveData.Substring(temp, 5));
|
||||
temp += 5;
|
||||
}
|
||||
#endregion
|
||||
|
||||
if (this.ChildFormSystemSetting != null)
|
||||
this.ChildFormSystemSetting.UpdateGraphDataDisplay(this.EquipmentStatus, this.CollectionWeightData[15], this.CollectionGraphData, time1);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
|
@ -5290,7 +5382,7 @@ namespace INT63DC_2C.Forms
|
|||
#endregion
|
||||
|
||||
#region Communication Protocol
|
||||
private string Protocol_OPT1_NotStxEtx(SystemConfigurationItem system, Collection<WeightData> datas)
|
||||
private string Protocol_STD1_NotStxEtx(SystemConfigurationItem system, Collection<WeightData> datas)
|
||||
{
|
||||
StringBuilder sb = new StringBuilder();
|
||||
|
||||
|
|
@ -5320,18 +5412,18 @@ namespace INT63DC_2C.Forms
|
|||
|
||||
return sb.ToString();
|
||||
}
|
||||
public string Protocol_OPT1(SystemConfigurationItem system, Collection<WeightData> datas)
|
||||
public string Protocol_STD1(SystemConfigurationItem system, Collection<WeightData> datas)
|
||||
{
|
||||
StringBuilder sb = new StringBuilder();
|
||||
|
||||
sb.Append((char)0x02);
|
||||
sb.Append(this.Protocol_OPT1_NotStxEtx(system, datas));
|
||||
sb.Append(this.Protocol_STD1_NotStxEtx(system, datas));
|
||||
sb.Append((char)0x03);
|
||||
|
||||
return sb.ToString();
|
||||
}
|
||||
|
||||
private string Protocol_OPT2_NotStxEtx(SystemConfigurationItem system, Collection<WeightData> datas, ProductItem pItem)
|
||||
private string Protocol_STD2_NotStxEtx(SystemConfigurationItem system, Collection<WeightData> datas, ProductItem pItem)
|
||||
{
|
||||
StringBuilder sb = new StringBuilder();
|
||||
|
||||
|
|
@ -5365,12 +5457,12 @@ namespace INT63DC_2C.Forms
|
|||
|
||||
return sb.ToString();
|
||||
}
|
||||
public string Protocol_OPT2(SystemConfigurationItem system, Collection<WeightData> datas, ProductItem pItem)
|
||||
public string Protocol_STD2(SystemConfigurationItem system, Collection<WeightData> datas, ProductItem pItem)
|
||||
{
|
||||
StringBuilder sb = new StringBuilder();
|
||||
|
||||
sb.Append((char)0x02);
|
||||
sb.Append(this.Protocol_OPT2_NotStxEtx(system, datas, pItem));
|
||||
sb.Append(this.Protocol_STD2_NotStxEtx(system, datas, pItem));
|
||||
sb.Append((char)0x03);
|
||||
|
||||
return sb.ToString();
|
||||
|
|
@ -8052,7 +8144,7 @@ namespace INT63DC_2C.Forms
|
|||
{
|
||||
string value = "";
|
||||
|
||||
value = this.Protocol_OPT1_NotStxEtx(this.SystemConfig, datas);
|
||||
value = this.Protocol_STD1_NotStxEtx(this.SystemConfig, datas);
|
||||
|
||||
SerialMgrComm.serialPortMessage("COM3:", value);
|
||||
|
||||
|
|
@ -8063,7 +8155,7 @@ namespace INT63DC_2C.Forms
|
|||
{
|
||||
string value = "";
|
||||
|
||||
value = this.Protocol_OPT2_NotStxEtx(this.SystemConfig, datas, this.CurrentProductItem);
|
||||
value = this.Protocol_STD2_NotStxEtx(this.SystemConfig, datas, this.CurrentProductItem);
|
||||
|
||||
SerialMgrComm.serialPortMessage("COM3:", value);
|
||||
|
||||
|
|
@ -8273,6 +8365,8 @@ namespace INT63DC_2C.Forms
|
|||
{
|
||||
try
|
||||
{
|
||||
this.IsEthernetTransferData = false;
|
||||
|
||||
this.EthernetStmWriter.Write(msg);
|
||||
this.EthernetStmWriter.Flush();
|
||||
|
||||
|
|
@ -9306,11 +9400,13 @@ namespace INT63DC_2C.Forms
|
|||
this.LoadSystemConfigurationFile1();
|
||||
// SystemConfiguration 2 읽기
|
||||
this.LoadSystemConfigurationFile2();
|
||||
// SystemConfiguration 3 읽기
|
||||
this.LoadSystemConfigurationFile3();
|
||||
// Collection 생성
|
||||
this.CreateCollection();
|
||||
// Count 읽기
|
||||
this.LoadCounterFile1(ref this.CollectionWeightData, this.SystemConfig.ProductNumber - 1);
|
||||
if(this.SystemConfig.EquipmentColumns == 16)
|
||||
if(this.SystemConfig.EquipmentColumns > 12)
|
||||
this.LoadCounterFile2(ref this.CollectionWeightData, this.SystemConfig.ProductNumber - 1);
|
||||
// 품목 파일 읽기
|
||||
this.LoadProductFile(ref this.CurrentProductItem, this.SystemConfig.ProductNumber - 1);
|
||||
|
|
|
|||
|
|
@ -166,6 +166,8 @@
|
|||
this.labelUserLevel = new SmartX.SmartLabel();
|
||||
this.pictureBoxEthernetDisconnection = new System.Windows.Forms.PictureBox();
|
||||
this.pictureBoxEthernetConnection = new System.Windows.Forms.PictureBox();
|
||||
this.smartButton1 = new SmartX.SmartButton();
|
||||
this.timerServer = new System.Windows.Forms.Timer();
|
||||
((System.ComponentModel.ISupportInitialize)(this.smartForm1)).BeginInit();
|
||||
this.panelSetting.SuspendLayout();
|
||||
this.groupBoxJudgmentSetting.SuspendLayout();
|
||||
|
|
@ -3028,12 +3030,52 @@
|
|||
this.pictureBoxEthernetConnection.Size = new System.Drawing.Size(27, 27);
|
||||
this.pictureBoxEthernetConnection.Visible = false;
|
||||
//
|
||||
// smartButton1
|
||||
//
|
||||
this.smartButton1.BackPictureBox = null;
|
||||
this.smartButton1.BackPictureBox1 = null;
|
||||
this.smartButton1.BackPictureBox2 = null;
|
||||
this.smartButton1.ButtonColor = System.Drawing.Color.Gainsboro;
|
||||
this.smartButton1.ButtonImageAutoSize = true;
|
||||
this.smartButton1.ColorKeySamplePosition = new System.Drawing.Point(0, 0);
|
||||
this.smartButton1.DisableImage = null;
|
||||
this.smartButton1.DownImage = null;
|
||||
this.smartButton1.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.smartButton1.GroupID = 0;
|
||||
this.smartButton1.InitVisible = true;
|
||||
this.smartButton1.Location = new System.Drawing.Point(640, 29);
|
||||
this.smartButton1.Mode = SmartX.SmartButton.BUTTONMODE.NORMAL;
|
||||
this.smartButton1.Name = "smartButton1";
|
||||
this.smartButton1.NestedClickEventPrevent = false;
|
||||
this.smartButton1.OutlinePixel = 1;
|
||||
this.smartButton1.RepeatInterval = 200;
|
||||
this.smartButton1.RepeatIntervalAccelerate = null;
|
||||
this.smartButton1.SafeInterval = 200;
|
||||
this.smartButton1.Size = new System.Drawing.Size(80, 30);
|
||||
this.smartButton1.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.smartButton1.TabIndex = 593;
|
||||
this.smartButton1.Text = "SEND";
|
||||
this.smartButton1.TextColor = System.Drawing.Color.Black;
|
||||
this.smartButton1.TextDownColor = System.Drawing.Color.White;
|
||||
this.smartButton1.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle;
|
||||
this.smartButton1.TextLocation = new System.Drawing.Point(0, 0);
|
||||
this.smartButton1.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle;
|
||||
this.smartButton1.UpImage = null;
|
||||
this.smartButton1.Visible = false;
|
||||
this.smartButton1.Click += new System.EventHandler(this.smartButton1_Click);
|
||||
//
|
||||
// timerServer
|
||||
//
|
||||
this.timerServer.Interval = 1000;
|
||||
this.timerServer.Tick += new System.EventHandler(this.timerServer_Tick);
|
||||
//
|
||||
// FormMainDisplay
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
||||
this.AutoScroll = true;
|
||||
this.ClientSize = new System.Drawing.Size(1024, 768);
|
||||
this.Controls.Add(this.smartButton1);
|
||||
this.Controls.Add(this.pictureBoxEthernetDisconnection);
|
||||
this.Controls.Add(this.pictureBoxEthernetConnection);
|
||||
this.Controls.Add(this.labelExpireOfPassword);
|
||||
|
|
@ -3234,5 +3276,7 @@
|
|||
private SmartX.SmartLabel labelUserLevel;
|
||||
private System.Windows.Forms.PictureBox pictureBoxEthernetDisconnection;
|
||||
private System.Windows.Forms.PictureBox pictureBoxEthernetConnection;
|
||||
private SmartX.SmartButton smartButton1;
|
||||
private System.Windows.Forms.Timer timerServer;
|
||||
}
|
||||
}
|
||||
|
|
@ -929,6 +929,9 @@ namespace INT63DC_2C.Forms
|
|||
this.buttonOnOff.ButtonDown();
|
||||
else
|
||||
this.buttonOnOff.ButtonUp();
|
||||
|
||||
// Ethernet Icon
|
||||
this.pictureBoxEthernetDisconnection.Visible = this.ParentForm.SystemConfig.IsEthernetEnable;
|
||||
}
|
||||
|
||||
public void RescaleControl()
|
||||
|
|
@ -1789,7 +1792,7 @@ namespace INT63DC_2C.Forms
|
|||
this.buttonPass.Enabled = true;
|
||||
this.buttonOver.Enabled = true;
|
||||
this.buttonTare.Enabled = true;
|
||||
this.panelSubMenu2.Enabled = true;
|
||||
this.buttonSubMenu.Enabled = true;
|
||||
this.buttonMenu.Enabled = true;
|
||||
}
|
||||
}
|
||||
|
|
@ -2611,7 +2614,13 @@ namespace INT63DC_2C.Forms
|
|||
this.buttonPass.Enabled = false;
|
||||
this.buttonOver.Enabled = false;
|
||||
this.buttonTare.Enabled = false;
|
||||
this.panelSubMenu2.Enabled = false;
|
||||
|
||||
// SubMenu
|
||||
this.buttonSubMenu.Enabled = false;
|
||||
this.panelSubMenu1.Visible = false;
|
||||
this.panelSubMenu2.Visible = false;
|
||||
this.panelSubMenu3.Visible = false;
|
||||
this.SubmenuIndex = 0;
|
||||
}
|
||||
|
||||
this.ParentForm.ProductChange(productNumber);
|
||||
|
|
@ -2831,6 +2840,19 @@ namespace INT63DC_2C.Forms
|
|||
value = Helper.StringZeroFillDigits7(this.ParentForm.CurrentProductItem.TareRange);
|
||||
this.ParentForm.TransferDataStream(CommunicationCommand.Write, CommunicationID.MainBoard, CommunicationAddress._2005_TareRange, value);
|
||||
}
|
||||
public void TimerServer(bool value)
|
||||
{
|
||||
if (value == false)
|
||||
{
|
||||
if (this.timerServer.Enabled == true)
|
||||
this.timerServer.Enabled = false;
|
||||
}
|
||||
else
|
||||
{
|
||||
if (this.timerServer.Enabled == false)
|
||||
this.timerServer.Enabled = true;
|
||||
}
|
||||
}
|
||||
|
||||
public void DisplayRefresh()
|
||||
{
|
||||
|
|
@ -2871,6 +2893,7 @@ namespace INT63DC_2C.Forms
|
|||
// SubMenu
|
||||
this.panelSubMenu1.Visible = false;
|
||||
this.panelSubMenu2.Visible = false;
|
||||
this.panelSubMenu3.Visible = false;
|
||||
this.SubmenuIndex = 0;
|
||||
|
||||
// CUT
|
||||
|
|
@ -2889,6 +2912,31 @@ namespace INT63DC_2C.Forms
|
|||
if (this.ParentForm.IsServoOrigin == false)
|
||||
this.panelAlarmMessageBox4.Visible = false;
|
||||
|
||||
// Ethernet Icon
|
||||
this.pictureBoxEthernetConnection.Visible = this.ParentForm.SystemConfig.IsEthernetEnable;
|
||||
this.pictureBoxEthernetDisconnection.Visible = this.ParentForm.SystemConfig.IsEthernetEnable;
|
||||
// Ethernet
|
||||
if (this.ParentForm.SystemConfig.IsEthernetEnable == true)
|
||||
{
|
||||
if (this.ParentForm.SystemConfig.EthernetOperationMode == 2)
|
||||
this.ParentForm.EthernetClientDisconnect();
|
||||
else
|
||||
{
|
||||
if (this.ParentForm.smartTCPMultiServer.IsStart == false)
|
||||
this.ParentForm.smartTCPMultiServer.Start();
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if (this.ParentForm.SystemConfig.EthernetOperationMode == 2)
|
||||
this.ParentForm.EthernetClientDisconnect();
|
||||
else
|
||||
{
|
||||
if (this.ParentForm.smartTCPMultiServer.IsStart == true)
|
||||
this.ParentForm.smartTCPMultiServer.Stop();
|
||||
}
|
||||
}
|
||||
|
||||
// Bypass Display
|
||||
switch (this.ParentForm.SystemConfig.EquipmentColumns)
|
||||
{
|
||||
|
|
@ -3216,9 +3264,42 @@ namespace INT63DC_2C.Forms
|
|||
this.labelStaticJudgmentCount.Visible = false;
|
||||
}
|
||||
|
||||
switch (this.ParentForm.SystemConfig.CurrentUser.Group)
|
||||
{
|
||||
case DataStore.UserGroup.None:
|
||||
break;
|
||||
case DataStore.UserGroup.Level1:
|
||||
if (this.ParentForm.CurrentUserGroup.Level1.IsMenuSystem == true)
|
||||
{
|
||||
this.panelSetting.BringToFront();
|
||||
this.panelSetting.Visible = true;
|
||||
}
|
||||
break;
|
||||
case DataStore.UserGroup.Level2:
|
||||
if (this.ParentForm.CurrentUserGroup.Level2.IsMenuSystem == true)
|
||||
{
|
||||
this.panelSetting.BringToFront();
|
||||
this.panelSetting.Visible = true;
|
||||
}
|
||||
break;
|
||||
case DataStore.UserGroup.Level3:
|
||||
if (this.ParentForm.CurrentUserGroup.Level3.IsMenuSystem == true)
|
||||
{
|
||||
this.panelSetting.BringToFront();
|
||||
this.panelSetting.Visible = true;
|
||||
}
|
||||
break;
|
||||
case DataStore.UserGroup.Admin:
|
||||
case DataStore.UserGroup.Developer:
|
||||
case DataStore.UserGroup.NotLogin:
|
||||
case DataStore.UserGroup.LogOut:
|
||||
this.panelSetting.BringToFront();
|
||||
this.panelSetting.Visible = true;
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
private void buttonDisplay_Click(object sender, EventArgs e)
|
||||
{
|
||||
|
|
@ -4716,6 +4797,48 @@ namespace INT63DC_2C.Forms
|
|||
this.buttonDotGraphForm.Enabled = true;
|
||||
this.buttonTableForm.Enabled = true;
|
||||
}
|
||||
private void timerServer_Tick(object sender, EventArgs e)
|
||||
{
|
||||
if (this.ParentForm.smartTCPMultiServer.IsStart == true)
|
||||
{
|
||||
if (this.ParentForm.smartTCPMultiServer.ClientInfoList == null)
|
||||
{
|
||||
this.UpdateEthernetStatusDisplay(false);
|
||||
}
|
||||
else
|
||||
{
|
||||
this.UpdateEthernetStatusDisplay(true);
|
||||
}
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
private void smartButton1_Click(object sender, EventArgs e)
|
||||
{
|
||||
string data = "";
|
||||
|
||||
if (this.ParentForm.SystemConfig.EthernetMode == 1)
|
||||
data = this.ParentForm.Protocol_STD1(this.ParentForm.SystemConfig, this.ParentForm.CollectionWeightData);
|
||||
else
|
||||
data = this.ParentForm.Protocol_STD2(this.ParentForm.SystemConfig, this.ParentForm.CollectionWeightData, this.ParentForm.CurrentProductItem);
|
||||
|
||||
switch (this.ParentForm.SystemConfig.EthernetOperationMode)
|
||||
{
|
||||
case 1:
|
||||
if (this.ParentForm.smartTCPMultiServer.ClientInfoList != null)
|
||||
{
|
||||
foreach (SmartTCPMultiServer.CLIENTSINFOS info in this.ParentForm.smartTCPMultiServer.ClientInfoList)
|
||||
{
|
||||
this.ParentForm.EthernetServerSendMessage(info, data);
|
||||
}
|
||||
}
|
||||
break;
|
||||
case 2:
|
||||
//this.ParentForm.EthernetSendMessage(data);
|
||||
this.ParentForm.EthernetWeightData(data);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -8147,6 +8147,9 @@
|
|||
QmCC
|
||||
</value>
|
||||
</data>
|
||||
<metadata name="timerServer.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>529, 17</value>
|
||||
</metadata>
|
||||
<metadata name="$this.FormFactorShadowProperty" xml:space="preserve">
|
||||
<value>WEBPAD</value>
|
||||
</metadata>
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load Diff
|
|
@ -33,23 +33,23 @@
|
|||
this.buttonBack = new SmartX.SmartButton();
|
||||
this.labelTitle = new SmartX.SmartLabel();
|
||||
this.smartGroupBox1 = new SmartX.SmartGroupBox();
|
||||
this.smartGroupBox2 = new SmartX.SmartGroupBox();
|
||||
this.groupBoxOption = new SmartX.SmartGroupBox();
|
||||
this.labelInfo5 = new SmartX.SmartLabel();
|
||||
this.buttonPart11 = new SmartX.SmartButton();
|
||||
this.labelStaticPart11 = new SmartX.SmartLabel();
|
||||
this.labelTitlePart11 = new SmartX.SmartLabel();
|
||||
this.buttonSorterCheckEnable = new SmartX.SmartButton();
|
||||
this.labelStaticSorterCheckEnable = new SmartX.SmartLabel();
|
||||
this.labelTitleSorterCheckEnable = new SmartX.SmartLabel();
|
||||
this.labelInfo4 = new SmartX.SmartLabel();
|
||||
this.buttonSorter4Location = new SmartX.SmartButton();
|
||||
this.labelStaticSorter4Location = new SmartX.SmartLabel();
|
||||
this.labelTitleSorter4Location = new SmartX.SmartLabel();
|
||||
this.buttonDataStatistics = new SmartX.SmartButton();
|
||||
this.smartLabel1 = new SmartX.SmartLabel();
|
||||
this.labelTitleDataStatistics = new SmartX.SmartLabel();
|
||||
this.labelBuadrateWarning2 = new SmartX.SmartLabel();
|
||||
this.labelBuadrateWarning = new SmartX.SmartLabel();
|
||||
this.buttonSave = new SmartX.SmartButton();
|
||||
((System.ComponentModel.ISupportInitialize)(this.smartForm1)).BeginInit();
|
||||
this.smartGroupBox1.SuspendLayout();
|
||||
this.smartGroupBox2.SuspendLayout();
|
||||
this.groupBoxOption.SuspendLayout();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// smartForm1
|
||||
|
|
@ -121,7 +121,7 @@
|
|||
//
|
||||
this.smartGroupBox1.BackPictureBox = this.smartForm1;
|
||||
this.smartGroupBox1.BackPictureBox1 = null;
|
||||
this.smartGroupBox1.Controls.Add(this.smartGroupBox2);
|
||||
this.smartGroupBox1.Controls.Add(this.groupBoxOption);
|
||||
this.smartGroupBox1.Controls.Add(this.labelBuadrateWarning2);
|
||||
this.smartGroupBox1.Controls.Add(this.labelBuadrateWarning);
|
||||
this.smartGroupBox1.Controls.Add(this.buttonSave);
|
||||
|
|
@ -141,34 +141,34 @@
|
|||
this.smartGroupBox1.Text = "smartGroupBox1";
|
||||
this.smartGroupBox1.TextColor = System.Drawing.Color.Black;
|
||||
//
|
||||
// smartGroupBox2
|
||||
// groupBoxOption
|
||||
//
|
||||
this.smartGroupBox2.BackPictureBox = this.smartForm1;
|
||||
this.smartGroupBox2.BackPictureBox1 = null;
|
||||
this.smartGroupBox2.Controls.Add(this.labelInfo5);
|
||||
this.smartGroupBox2.Controls.Add(this.buttonPart11);
|
||||
this.smartGroupBox2.Controls.Add(this.labelStaticPart11);
|
||||
this.smartGroupBox2.Controls.Add(this.buttonSorterCheckEnable);
|
||||
this.smartGroupBox2.Controls.Add(this.labelStaticSorterCheckEnable);
|
||||
this.smartGroupBox2.Controls.Add(this.labelInfo4);
|
||||
this.smartGroupBox2.Controls.Add(this.buttonSorter4Location);
|
||||
this.smartGroupBox2.Controls.Add(this.labelStaticSorter4Location);
|
||||
this.smartGroupBox2.Controls.Add(this.buttonDataStatistics);
|
||||
this.smartGroupBox2.Controls.Add(this.smartLabel1);
|
||||
this.smartGroupBox2.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.smartGroupBox2.FrameLineColor1 = System.Drawing.Color.Black;
|
||||
this.smartGroupBox2.FrameLineColor2 = System.Drawing.Color.Black;
|
||||
this.smartGroupBox2.FrameLineThickness = 2;
|
||||
this.smartGroupBox2.FrameStyle = SmartX.SmartGroupBox.FRAMESTYLES.RoundRectangle;
|
||||
this.smartGroupBox2.Image = null;
|
||||
this.smartGroupBox2.InitVisible = true;
|
||||
this.smartGroupBox2.Location = new System.Drawing.Point(118, 204);
|
||||
this.smartGroupBox2.Name = "smartGroupBox2";
|
||||
this.smartGroupBox2.RoundRadius = 10;
|
||||
this.smartGroupBox2.Size = new System.Drawing.Size(822, 221);
|
||||
this.smartGroupBox2.TabIndex = 210;
|
||||
this.smartGroupBox2.Text = "Option";
|
||||
this.smartGroupBox2.TextColor = System.Drawing.Color.Black;
|
||||
this.groupBoxOption.BackPictureBox = this.smartForm1;
|
||||
this.groupBoxOption.BackPictureBox1 = null;
|
||||
this.groupBoxOption.Controls.Add(this.labelInfo5);
|
||||
this.groupBoxOption.Controls.Add(this.buttonPart11);
|
||||
this.groupBoxOption.Controls.Add(this.labelTitlePart11);
|
||||
this.groupBoxOption.Controls.Add(this.buttonSorterCheckEnable);
|
||||
this.groupBoxOption.Controls.Add(this.labelTitleSorterCheckEnable);
|
||||
this.groupBoxOption.Controls.Add(this.labelInfo4);
|
||||
this.groupBoxOption.Controls.Add(this.buttonSorter4Location);
|
||||
this.groupBoxOption.Controls.Add(this.labelTitleSorter4Location);
|
||||
this.groupBoxOption.Controls.Add(this.buttonDataStatistics);
|
||||
this.groupBoxOption.Controls.Add(this.labelTitleDataStatistics);
|
||||
this.groupBoxOption.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.groupBoxOption.FrameLineColor1 = System.Drawing.Color.Black;
|
||||
this.groupBoxOption.FrameLineColor2 = System.Drawing.Color.Black;
|
||||
this.groupBoxOption.FrameLineThickness = 2;
|
||||
this.groupBoxOption.FrameStyle = SmartX.SmartGroupBox.FRAMESTYLES.RoundRectangle;
|
||||
this.groupBoxOption.Image = null;
|
||||
this.groupBoxOption.InitVisible = true;
|
||||
this.groupBoxOption.Location = new System.Drawing.Point(88, 204);
|
||||
this.groupBoxOption.Name = "groupBoxOption";
|
||||
this.groupBoxOption.RoundRadius = 10;
|
||||
this.groupBoxOption.Size = new System.Drawing.Size(840, 221);
|
||||
this.groupBoxOption.TabIndex = 210;
|
||||
this.groupBoxOption.Text = "Option";
|
||||
this.groupBoxOption.TextColor = System.Drawing.Color.Black;
|
||||
//
|
||||
// labelInfo5
|
||||
//
|
||||
|
|
@ -184,9 +184,9 @@
|
|||
this.labelInfo5.LineSpacing = 0F;
|
||||
this.labelInfo5.Location = new System.Drawing.Point(343, 170);
|
||||
this.labelInfo5.Name = "labelInfo5";
|
||||
this.labelInfo5.Size = new System.Drawing.Size(450, 25);
|
||||
this.labelInfo5.Size = new System.Drawing.Size(479, 25);
|
||||
this.labelInfo5.TabIndex = 273;
|
||||
this.labelInfo5.Text = "※ Part11 ON : activate [Login], [Data backup], [Statistics]";
|
||||
this.labelInfo5.Text = "※ Part11 ON : activate [Login], [Data backup], [Data Statistics]";
|
||||
this.labelInfo5.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left;
|
||||
this.labelInfo5.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.labelInfo5.Wordwrap = false;
|
||||
|
|
@ -222,25 +222,25 @@
|
|||
this.buttonPart11.UpImage = ((System.Drawing.Image)(resources.GetObject("buttonPart11.UpImage")));
|
||||
this.buttonPart11.Click += new System.EventHandler(this.buttonPart11_Click);
|
||||
//
|
||||
// labelStaticPart11
|
||||
// labelTitlePart11
|
||||
//
|
||||
this.labelStaticPart11.BackPictureBox = this.smartForm1;
|
||||
this.labelStaticPart11.BackPictureBox1 = null;
|
||||
this.labelStaticPart11.BackPictureBox2 = null;
|
||||
this.labelStaticPart11.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelStaticPart11.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelStaticPart11.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticPart11.ForeColor = System.Drawing.Color.Black;
|
||||
this.labelStaticPart11.InitVisible = true;
|
||||
this.labelStaticPart11.LineSpacing = 0F;
|
||||
this.labelStaticPart11.Location = new System.Drawing.Point(47, 170);
|
||||
this.labelStaticPart11.Name = "labelStaticPart11";
|
||||
this.labelStaticPart11.Size = new System.Drawing.Size(200, 25);
|
||||
this.labelStaticPart11.TabIndex = 271;
|
||||
this.labelStaticPart11.Text = "Part11";
|
||||
this.labelStaticPart11.TextHAlign = SmartX.SmartLabel.TextHorAlign.Right;
|
||||
this.labelStaticPart11.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.labelStaticPart11.Wordwrap = false;
|
||||
this.labelTitlePart11.BackPictureBox = this.smartForm1;
|
||||
this.labelTitlePart11.BackPictureBox1 = null;
|
||||
this.labelTitlePart11.BackPictureBox2 = null;
|
||||
this.labelTitlePart11.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelTitlePart11.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTitlePart11.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelTitlePart11.ForeColor = System.Drawing.Color.Black;
|
||||
this.labelTitlePart11.InitVisible = true;
|
||||
this.labelTitlePart11.LineSpacing = 0F;
|
||||
this.labelTitlePart11.Location = new System.Drawing.Point(47, 170);
|
||||
this.labelTitlePart11.Name = "labelTitlePart11";
|
||||
this.labelTitlePart11.Size = new System.Drawing.Size(200, 25);
|
||||
this.labelTitlePart11.TabIndex = 271;
|
||||
this.labelTitlePart11.Text = "21 CFR PART 11";
|
||||
this.labelTitlePart11.TextHAlign = SmartX.SmartLabel.TextHorAlign.Right;
|
||||
this.labelTitlePart11.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.labelTitlePart11.Wordwrap = false;
|
||||
//
|
||||
// buttonSorterCheckEnable
|
||||
//
|
||||
|
|
@ -273,25 +273,25 @@
|
|||
this.buttonSorterCheckEnable.UpImage = ((System.Drawing.Image)(resources.GetObject("buttonSorterCheckEnable.UpImage")));
|
||||
this.buttonSorterCheckEnable.Click += new System.EventHandler(this.buttonSorterCheckEnable_Click);
|
||||
//
|
||||
// labelStaticSorterCheckEnable
|
||||
// labelTitleSorterCheckEnable
|
||||
//
|
||||
this.labelStaticSorterCheckEnable.BackPictureBox = this.smartForm1;
|
||||
this.labelStaticSorterCheckEnable.BackPictureBox1 = null;
|
||||
this.labelStaticSorterCheckEnable.BackPictureBox2 = null;
|
||||
this.labelStaticSorterCheckEnable.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelStaticSorterCheckEnable.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelStaticSorterCheckEnable.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticSorterCheckEnable.ForeColor = System.Drawing.Color.Black;
|
||||
this.labelStaticSorterCheckEnable.InitVisible = true;
|
||||
this.labelStaticSorterCheckEnable.LineSpacing = 0F;
|
||||
this.labelStaticSorterCheckEnable.Location = new System.Drawing.Point(47, 139);
|
||||
this.labelStaticSorterCheckEnable.Name = "labelStaticSorterCheckEnable";
|
||||
this.labelStaticSorterCheckEnable.Size = new System.Drawing.Size(200, 25);
|
||||
this.labelStaticSorterCheckEnable.TabIndex = 269;
|
||||
this.labelStaticSorterCheckEnable.Text = "선별부 동작감지";
|
||||
this.labelStaticSorterCheckEnable.TextHAlign = SmartX.SmartLabel.TextHorAlign.Right;
|
||||
this.labelStaticSorterCheckEnable.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.labelStaticSorterCheckEnable.Wordwrap = false;
|
||||
this.labelTitleSorterCheckEnable.BackPictureBox = this.smartForm1;
|
||||
this.labelTitleSorterCheckEnable.BackPictureBox1 = null;
|
||||
this.labelTitleSorterCheckEnable.BackPictureBox2 = null;
|
||||
this.labelTitleSorterCheckEnable.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelTitleSorterCheckEnable.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTitleSorterCheckEnable.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelTitleSorterCheckEnable.ForeColor = System.Drawing.Color.Black;
|
||||
this.labelTitleSorterCheckEnable.InitVisible = true;
|
||||
this.labelTitleSorterCheckEnable.LineSpacing = 0F;
|
||||
this.labelTitleSorterCheckEnable.Location = new System.Drawing.Point(47, 139);
|
||||
this.labelTitleSorterCheckEnable.Name = "labelTitleSorterCheckEnable";
|
||||
this.labelTitleSorterCheckEnable.Size = new System.Drawing.Size(200, 25);
|
||||
this.labelTitleSorterCheckEnable.TabIndex = 269;
|
||||
this.labelTitleSorterCheckEnable.Text = "선별부 동작감지";
|
||||
this.labelTitleSorterCheckEnable.TextHAlign = SmartX.SmartLabel.TextHorAlign.Right;
|
||||
this.labelTitleSorterCheckEnable.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.labelTitleSorterCheckEnable.Wordwrap = false;
|
||||
//
|
||||
// labelInfo4
|
||||
//
|
||||
|
|
@ -345,25 +345,25 @@
|
|||
this.buttonSorter4Location.UpImage = ((System.Drawing.Image)(resources.GetObject("buttonSorter4Location.UpImage")));
|
||||
this.buttonSorter4Location.Click += new System.EventHandler(this.buttonSorter4Location_Click);
|
||||
//
|
||||
// labelStaticSorter4Location
|
||||
// labelTitleSorter4Location
|
||||
//
|
||||
this.labelStaticSorter4Location.BackPictureBox = this.smartForm1;
|
||||
this.labelStaticSorter4Location.BackPictureBox1 = null;
|
||||
this.labelStaticSorter4Location.BackPictureBox2 = null;
|
||||
this.labelStaticSorter4Location.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelStaticSorter4Location.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelStaticSorter4Location.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticSorter4Location.ForeColor = System.Drawing.Color.Black;
|
||||
this.labelStaticSorter4Location.InitVisible = true;
|
||||
this.labelStaticSorter4Location.LineSpacing = 0F;
|
||||
this.labelStaticSorter4Location.Location = new System.Drawing.Point(47, 108);
|
||||
this.labelStaticSorter4Location.Name = "labelStaticSorter4Location";
|
||||
this.labelStaticSorter4Location.Size = new System.Drawing.Size(200, 25);
|
||||
this.labelStaticSorter4Location.TabIndex = 266;
|
||||
this.labelStaticSorter4Location.Text = "선별기4 위치";
|
||||
this.labelStaticSorter4Location.TextHAlign = SmartX.SmartLabel.TextHorAlign.Right;
|
||||
this.labelStaticSorter4Location.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.labelStaticSorter4Location.Wordwrap = false;
|
||||
this.labelTitleSorter4Location.BackPictureBox = this.smartForm1;
|
||||
this.labelTitleSorter4Location.BackPictureBox1 = null;
|
||||
this.labelTitleSorter4Location.BackPictureBox2 = null;
|
||||
this.labelTitleSorter4Location.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelTitleSorter4Location.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTitleSorter4Location.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelTitleSorter4Location.ForeColor = System.Drawing.Color.Black;
|
||||
this.labelTitleSorter4Location.InitVisible = true;
|
||||
this.labelTitleSorter4Location.LineSpacing = 0F;
|
||||
this.labelTitleSorter4Location.Location = new System.Drawing.Point(47, 108);
|
||||
this.labelTitleSorter4Location.Name = "labelTitleSorter4Location";
|
||||
this.labelTitleSorter4Location.Size = new System.Drawing.Size(200, 25);
|
||||
this.labelTitleSorter4Location.TabIndex = 266;
|
||||
this.labelTitleSorter4Location.Text = "선별기4 위치";
|
||||
this.labelTitleSorter4Location.TextHAlign = SmartX.SmartLabel.TextHorAlign.Right;
|
||||
this.labelTitleSorter4Location.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.labelTitleSorter4Location.Wordwrap = false;
|
||||
//
|
||||
// buttonDataStatistics
|
||||
//
|
||||
|
|
@ -396,24 +396,24 @@
|
|||
this.buttonDataStatistics.UpImage = ((System.Drawing.Image)(resources.GetObject("buttonDataStatistics.UpImage")));
|
||||
this.buttonDataStatistics.Click += new System.EventHandler(this.buttonDataStatistics_Click);
|
||||
//
|
||||
// smartLabel1
|
||||
// labelTitleDataStatistics
|
||||
//
|
||||
this.smartLabel1.BackPictureBox = this.smartForm1;
|
||||
this.smartLabel1.BackPictureBox1 = null;
|
||||
this.smartLabel1.BackPictureBox2 = null;
|
||||
this.smartLabel1.BorderColor = System.Drawing.Color.Black;
|
||||
this.smartLabel1.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.smartLabel1.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.smartLabel1.InitVisible = true;
|
||||
this.smartLabel1.LineSpacing = 0F;
|
||||
this.smartLabel1.Location = new System.Drawing.Point(47, 77);
|
||||
this.smartLabel1.Name = "smartLabel1";
|
||||
this.smartLabel1.Size = new System.Drawing.Size(200, 25);
|
||||
this.smartLabel1.TabIndex = 205;
|
||||
this.smartLabel1.Text = "Data Statistics";
|
||||
this.smartLabel1.TextHAlign = SmartX.SmartLabel.TextHorAlign.Right;
|
||||
this.smartLabel1.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.smartLabel1.Wordwrap = false;
|
||||
this.labelTitleDataStatistics.BackPictureBox = this.smartForm1;
|
||||
this.labelTitleDataStatistics.BackPictureBox1 = null;
|
||||
this.labelTitleDataStatistics.BackPictureBox2 = null;
|
||||
this.labelTitleDataStatistics.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelTitleDataStatistics.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTitleDataStatistics.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelTitleDataStatistics.InitVisible = true;
|
||||
this.labelTitleDataStatistics.LineSpacing = 0F;
|
||||
this.labelTitleDataStatistics.Location = new System.Drawing.Point(47, 77);
|
||||
this.labelTitleDataStatistics.Name = "labelTitleDataStatistics";
|
||||
this.labelTitleDataStatistics.Size = new System.Drawing.Size(200, 25);
|
||||
this.labelTitleDataStatistics.TabIndex = 205;
|
||||
this.labelTitleDataStatistics.Text = "Data Statistics";
|
||||
this.labelTitleDataStatistics.TextHAlign = SmartX.SmartLabel.TextHorAlign.Right;
|
||||
this.labelTitleDataStatistics.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.labelTitleDataStatistics.Wordwrap = false;
|
||||
//
|
||||
// labelBuadrateWarning2
|
||||
//
|
||||
|
|
@ -501,7 +501,7 @@
|
|||
this.Text = "FormOptionSetting";
|
||||
((System.ComponentModel.ISupportInitialize)(this.smartForm1)).EndInit();
|
||||
this.smartGroupBox1.ResumeLayout(false);
|
||||
this.smartGroupBox2.ResumeLayout(false);
|
||||
this.groupBoxOption.ResumeLayout(false);
|
||||
this.ResumeLayout(false);
|
||||
|
||||
}
|
||||
|
|
@ -513,18 +513,18 @@
|
|||
private SmartX.SmartLabel labelTitle;
|
||||
private SmartX.SmartGroupBox smartGroupBox1;
|
||||
private SmartX.SmartButton buttonDataStatistics;
|
||||
private SmartX.SmartLabel smartLabel1;
|
||||
private SmartX.SmartLabel labelTitleDataStatistics;
|
||||
private SmartX.SmartButton buttonSave;
|
||||
private SmartX.SmartLabel labelBuadrateWarning2;
|
||||
private SmartX.SmartLabel labelBuadrateWarning;
|
||||
private SmartX.SmartGroupBox smartGroupBox2;
|
||||
private SmartX.SmartGroupBox groupBoxOption;
|
||||
private SmartX.SmartLabel labelInfo4;
|
||||
private SmartX.SmartButton buttonSorter4Location;
|
||||
private SmartX.SmartLabel labelStaticSorter4Location;
|
||||
private SmartX.SmartLabel labelTitleSorter4Location;
|
||||
private SmartX.SmartButton buttonSorterCheckEnable;
|
||||
private SmartX.SmartLabel labelStaticSorterCheckEnable;
|
||||
private SmartX.SmartLabel labelTitleSorterCheckEnable;
|
||||
private SmartX.SmartButton buttonPart11;
|
||||
private SmartX.SmartLabel labelStaticPart11;
|
||||
private SmartX.SmartLabel labelTitlePart11;
|
||||
private SmartX.SmartLabel labelInfo5;
|
||||
}
|
||||
}
|
||||
|
|
@ -57,7 +57,7 @@ namespace INT63DC_2C.Forms
|
|||
this.labelBuadrateWarning.Text = "※ After changing setting, Turn the power off and back on";
|
||||
this.labelBuadrateWarning2.Text = "※ Do not change the value except engineer";
|
||||
|
||||
this.labelStaticSorter4Location.Text = "Sorter4 Location";
|
||||
this.labelTitleSorter4Location.Text = "Sorter4 Location";
|
||||
this.labelInfo4.Text = "※ Leak detector selection (fixed to position 1)";
|
||||
|
||||
this.buttonSave.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engSaveDisable));
|
||||
|
|
@ -72,13 +72,24 @@ namespace INT63DC_2C.Forms
|
|||
else if (this.ParentForm.SystemConfig.Language == DataStore.LanguageID.Chinese)
|
||||
{
|
||||
#region Chinese
|
||||
this.labelTitle.Text = "Option Setting";
|
||||
this.labelTitle.Text = "选项设定";
|
||||
|
||||
this.groupBoxOption.Text = "选项";
|
||||
|
||||
this.labelTitleDataStatistics.Text = "数据统计";
|
||||
this.labelTitleSorter4Location.Text = "分类机4 地点";
|
||||
this.labelTitleSorterCheckEnable.Text = "分拣机运动检测";
|
||||
|
||||
this.labelInfo4.Text = "※ 泄漏检测器选择 (固定为位置1)";
|
||||
this.labelInfo5.Text = "※ 激活 : [登錄], [数据备份], [数据统计]";
|
||||
|
||||
this.labelBuadrateWarning.Text = "※ 电源重启后,设置会自动更新";
|
||||
this.labelBuadrateWarning2.Text = "※ 除了工程师之外,不要改变这个值";
|
||||
|
||||
this.labelStaticSorter4Location.Text = "分类机4 地点";
|
||||
this.labelInfo4.Text = "※ 泄漏检测器选择 (固定为位置1)";
|
||||
this.buttonDataStatistics.DownImage = this.buttonSorter4Location.DownImage = this.buttonSorterCheckEnable.DownImage =
|
||||
this.buttonPart11.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnOn_84X25));
|
||||
this.buttonDataStatistics.UpImage = this.buttonSorter4Location.UpImage = this.buttonSorterCheckEnable.UpImage =
|
||||
this.buttonPart11.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnOff_84X25));
|
||||
|
||||
this.buttonSave.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnSaveDisable));
|
||||
this.buttonSave.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnSaveDown));
|
||||
|
|
@ -97,7 +108,7 @@ namespace INT63DC_2C.Forms
|
|||
this.labelBuadrateWarning.Text = "※ Po změně nastavení vypněte a znovu zapněte napájení";
|
||||
this.labelBuadrateWarning2.Text = "※ Nezměňujte hodnotu kromě inženýra";
|
||||
|
||||
this.labelStaticSorter4Location.Text = "Vyřazovač4 umístění";
|
||||
this.labelTitleSorter4Location.Text = "Vyřazovač4 umístění";
|
||||
this.labelInfo4.Text = "※ Výběr detektoru netěsností (pevně na pozici 1)";
|
||||
|
||||
this.buttonSave.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeSaveDisable));
|
||||
|
|
@ -117,7 +128,7 @@ namespace INT63DC_2C.Forms
|
|||
this.labelBuadrateWarning.Text = "※ Stellen Sie nach dem Einstellen des Servoantriebs sicher, Mit dem Hauptschalter aus- und einschalten";
|
||||
this.labelBuadrateWarning2.Text = "※ Werte dürfen nur vom Servicetechniker des Herstellers geändert werden";
|
||||
|
||||
this.labelStaticSorter4Location.Text = "Sortierer4 Standort";
|
||||
this.labelTitleSorter4Location.Text = "Sortierer4 Standort";
|
||||
this.labelInfo4.Text = "※ Auswahl des Lecksuchers (fest auf Position 1 eingestellt)";
|
||||
|
||||
|
||||
|
|
@ -138,7 +149,7 @@ namespace INT63DC_2C.Forms
|
|||
this.labelBuadrateWarning.Text = "※ 設定変更後は電源を入れ直してください";
|
||||
this.labelBuadrateWarning2.Text = "※ エンジニア以外は値を変更しないこと";
|
||||
|
||||
this.labelStaticSorter4Location.Text = "ソㅡタㅡ 4 の場所";
|
||||
this.labelTitleSorter4Location.Text = "ソㅡタㅡ 4 の場所";
|
||||
this.labelInfo4.Text = "※リークディテクタ選択(位置1に固定)";
|
||||
|
||||
this.buttonSave.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.jpnSaveDisable));
|
||||
|
|
@ -272,10 +283,16 @@ namespace INT63DC_2C.Forms
|
|||
private void buttonPart11_Click(object sender, EventArgs e)
|
||||
{
|
||||
if (this.buttonPart11.ButtonStatus == SmartButton.BUTSTATUS.DOWN)
|
||||
{
|
||||
this.ParentForm.CurrentUserPasswordType.SetDefinedPassword(OptionPassword.Part11);
|
||||
DialogFormPasswordKeyPad pass = new DialogFormPasswordKeyPad(this.ParentForm.SystemConfig.Language, this.ParentForm.CurrentUserPasswordType, 8);
|
||||
if (pass.ShowDialog() == DialogResult.OK)
|
||||
this.buttonDataStatistics.ButtonDown();
|
||||
else
|
||||
this.buttonDataStatistics.ButtonUp();
|
||||
}
|
||||
|
||||
if (this.buttonSave.Visible == false)
|
||||
this.buttonSave.Visible = true;
|
||||
}
|
||||
#endregion
|
||||
|
|
|
|||
|
|
@ -1570,6 +1570,18 @@ namespace INT63DC_2C.Forms
|
|||
case 11:
|
||||
this.ParentForm.TransferData(CommunicationCommand.ModeJudgment, CommunicationID.SubBoard12);
|
||||
break;
|
||||
case 12:
|
||||
this.ParentForm.TransferData(CommunicationCommand.ModeJudgment, CommunicationID.SubBoard13);
|
||||
break;
|
||||
case 13:
|
||||
this.ParentForm.TransferData(CommunicationCommand.ModeJudgment, CommunicationID.SubBoard14);
|
||||
break;
|
||||
case 14:
|
||||
this.ParentForm.TransferData(CommunicationCommand.ModeJudgment, CommunicationID.SubBoard15);
|
||||
break;
|
||||
case 15:
|
||||
this.ParentForm.TransferData(CommunicationCommand.ModeJudgment, CommunicationID.SubBoard16);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -82,13 +82,47 @@ namespace INT63DC_2C.Forms
|
|||
{
|
||||
this.labelTitle.Text = "用户设置";
|
||||
|
||||
this.labelTitleID.Text = "用户名";
|
||||
this.labelTitlePassword.Text = "密码";
|
||||
this.labelTitleAccessRight.Text = "访问权";
|
||||
this.labelTitleExpiryDateOfAccount.Text = "到期日(帐户)";
|
||||
this.labelTitleExpiryDateOfPassword.Text = "到期日(密码)";
|
||||
this.labelTitleDayAccount.Text = "天";
|
||||
this.labelTitleDayPassword.Text = "天";
|
||||
this.labelStatusExpiryAccount.Text = "帐户到期";
|
||||
this.labelStatusExpiryPassword.Text = "密码过期";
|
||||
this.labelTitleAutomaticLogoutTime.Text = "自动注销";
|
||||
this.labelTitleMin.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));
|
||||
this.groupBoxAccessRight.Text = "访问权";
|
||||
this.labelTitleMain.Text = "主屏幕";
|
||||
this.labelProductNo.Text = "编号";
|
||||
this.labelWeightSetting.Text = "重量设置";
|
||||
this.labelClear.Text = "消除";
|
||||
this.labelSubMenu.Text = "子菜单";
|
||||
|
||||
this.labelTitleMenu.Text = "菜单";
|
||||
this.labelInformation.Text = "系统信息";
|
||||
this.labelConfiguration.Text = "选项";
|
||||
this.labelCommunication.Text = "通讯设置";
|
||||
this.labelCalibration.Text = "校准";
|
||||
this.labelSystem.Text = "系统设定";
|
||||
this.labelMotor.Text = "设置电机";
|
||||
this.labelIOTest.Text = "I/O测试";
|
||||
this.labelUpdate.Text = "更新";
|
||||
this.labelInitialization.Text = "回复出厂设置";
|
||||
this.labelDataBackup.Text = "数据备份";
|
||||
this.labelEquipment.Text = "设备设置";
|
||||
this.labelTime.Text = "时间设定";
|
||||
this.labelStatistics.Text = "数据统计";
|
||||
this.labelViewer.Text = "数据查看器";
|
||||
|
||||
this.buttonResetPW.Text = "重置";
|
||||
|
||||
this.buttonGroupEditor.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnGroupEditorDisable));
|
||||
this.buttonGroupEditor.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnGroupEditorDown));
|
||||
this.buttonGroupEditor.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnGroupEditorUp));
|
||||
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));
|
||||
|
|
@ -123,6 +157,21 @@ namespace INT63DC_2C.Forms
|
|||
this.buttonBack.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.gerBackDown));
|
||||
this.buttonBack.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.gerBackUp));
|
||||
}
|
||||
else if (this.ParentForm.SystemConfig.Language == DataStore.LanguageID.Japanese)
|
||||
{
|
||||
this.labelTitle.Text = "ユーザー設定";
|
||||
|
||||
this.labelStatusExpiryAccount.Text = "アカウントの有効期限";
|
||||
this.labelStatusExpiryPassword.Text = "パスワードの有効期限";
|
||||
this.labelAutoLogoutWarning.Text = "* すべてのユーザーに適用されます";
|
||||
|
||||
this.buttonGroupEditor.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.jpnGroupEditorDisable));
|
||||
this.buttonGroupEditor.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.jpnGroupEditorDown));
|
||||
this.buttonGroupEditor.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.jpnGroupEditorUp));
|
||||
this.buttonBack.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.jpnBackDisable));
|
||||
this.buttonBack.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.jpnBackDown));
|
||||
this.buttonBack.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.jpnBackUp));
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
|
|
@ -231,22 +280,27 @@ namespace INT63DC_2C.Forms
|
|||
break;
|
||||
case DataStore.LanguageID.English:
|
||||
code = "User Editor";
|
||||
message1 = "Would you like to register as a user?";
|
||||
message1 = "Do you want to add a new user?";
|
||||
message2 = "";
|
||||
break;
|
||||
case DataStore.LanguageID.Chinese:
|
||||
code = "User Editor";
|
||||
message1 = "Would you like to register as a user?";
|
||||
code = "用户设置";
|
||||
message1 = "是否要添加新用户?";
|
||||
message2 = "";
|
||||
break;
|
||||
case DataStore.LanguageID.Czech:
|
||||
code = "User Editor";
|
||||
message1 = "Would you like to register as a user?";
|
||||
code = "Uživatelské nastavení";
|
||||
message1 = "Chcete přidat nového uživatele?";
|
||||
message2 = "";
|
||||
break;
|
||||
case DataStore.LanguageID.German:
|
||||
code = "User Editor";
|
||||
message1 = "Would you like to register as a user?";
|
||||
code = "Benutzereinstellungen";
|
||||
message1 = "Möchten Sie einen neuen Benutzer hinzufügen?";
|
||||
message2 = "";
|
||||
break;
|
||||
case DataStore.LanguageID.Japanese:
|
||||
code = "ユーザー設定";
|
||||
message1 = "新規ユーザーを追加しますか?";
|
||||
message2 = "";
|
||||
break;
|
||||
default:
|
||||
|
|
@ -264,23 +318,28 @@ namespace INT63DC_2C.Forms
|
|||
break;
|
||||
case DataStore.LanguageID.English:
|
||||
code = "User Editor";
|
||||
message1 = "Are you sure you want to edit the";
|
||||
message2 = "selected user's information?";
|
||||
message1 = "Do you want to edit the information";
|
||||
message2 = "of the selected user?";
|
||||
break;
|
||||
case DataStore.LanguageID.Chinese:
|
||||
code = "User Editor";
|
||||
message1 = "Are you sure you want to edit the";
|
||||
message2 = "selected user's information?";
|
||||
code = "用户设置";
|
||||
message1 = "是否要编辑所选用户的信息?";
|
||||
message2 = "";
|
||||
break;
|
||||
case DataStore.LanguageID.Czech:
|
||||
code = "User Editor";
|
||||
message1 = "Are you sure you want to edit the";
|
||||
message2 = "selected user's information?";
|
||||
code = "Uživatelské nastavení";
|
||||
message1 = "Chcete upravit informace o ";
|
||||
message2 = "vybraném uživateli?";
|
||||
break;
|
||||
case DataStore.LanguageID.German:
|
||||
code = "User Editor";
|
||||
message1 = "Are you sure you want to edit the";
|
||||
message2 = "selected user's information?";
|
||||
code = "Benutzereinstellungen";
|
||||
message1 = "Möchten Sie die Informationen des ";
|
||||
message2 = "ausgewählten Benutzers bearbeiten?";
|
||||
break;
|
||||
case DataStore.LanguageID.Japanese:
|
||||
code = "ユーザー設定";
|
||||
message1 = "選択したユーザーの情報を編集しますか?";
|
||||
message2 = "";
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
|
|
@ -760,6 +819,7 @@ namespace INT63DC_2C.Forms
|
|||
|
||||
this.labelInformation.ForeColor = this.ReturnColor(item.IsMenuInformation);
|
||||
this.labelConfiguration.ForeColor = this.ReturnColor(item.IsMenuConfiguration);
|
||||
this.labelCommunication.ForeColor = this.ReturnColor(item.IsMenuCommunication);
|
||||
this.labelCalibration.ForeColor = this.ReturnColor(item.IsMenuCalibration);
|
||||
this.labelSystem.ForeColor = this.ReturnColor(item.IsMenuSystem);
|
||||
this.labelMotor.ForeColor = this.ReturnColor(item.IsMenuMotor);
|
||||
|
|
@ -795,12 +855,12 @@ namespace INT63DC_2C.Forms
|
|||
break;
|
||||
case DataStore.LanguageID.English:
|
||||
code = "user settings";
|
||||
message1 = "User addition complete!";
|
||||
message1 = "User added successfully!";
|
||||
message2 = "";
|
||||
break;
|
||||
case DataStore.LanguageID.Chinese:
|
||||
code = "用户设置";
|
||||
message1 = "用户添加完成!";
|
||||
message1 = "用户添加成功!";
|
||||
message2 = "";
|
||||
break;
|
||||
case DataStore.LanguageID.Czech:
|
||||
|
|
@ -810,7 +870,12 @@ namespace INT63DC_2C.Forms
|
|||
break;
|
||||
case DataStore.LanguageID.German:
|
||||
code = "Benutzereinstellungen";
|
||||
message1 = "Benutzer hinzufügen abgeschlossen!";
|
||||
message1 = "Benutzer erfolgreich hinzugefügt!";
|
||||
message2 = "";
|
||||
break;
|
||||
case DataStore.LanguageID.Japanese:
|
||||
code = "ユーザー設定";
|
||||
message1 = "ユーザー追加完了!";
|
||||
message2 = "";
|
||||
break;
|
||||
default:
|
||||
|
|
@ -1269,21 +1334,6 @@ namespace INT63DC_2C.Forms
|
|||
|
||||
private void comboBoxAccessRight_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
//switch (this.comboBoxAccessRight.SelectedIndex)
|
||||
//{
|
||||
// case 0:
|
||||
// this.UpdateAccessRightDisplay(this.ParentForm.CurrentUserGroup.Level1);
|
||||
// break;
|
||||
// case 1:
|
||||
// this.UpdateAccessRightDisplay(this.ParentForm.CurrentUserGroup.Level2);
|
||||
// break;
|
||||
// case 2:
|
||||
// this.UpdateAccessRightDisplay(this.ParentForm.CurrentUserGroup.Level3);
|
||||
// break;
|
||||
// default:
|
||||
// this.UpdateAccessRightDisplay(this.ParentForm.CurrentUserGroup.Level1);
|
||||
// break;
|
||||
//}
|
||||
this.UpdateAccessRightDisplay(this.comboBoxAccessRight.SelectedIndex + 1);
|
||||
|
||||
if (this.buttonSave.Visible == false)
|
||||
|
|
|
|||
|
|
@ -32,11 +32,14 @@
|
|||
this.smartForm1 = new SmartX.SmartForm();
|
||||
this.labelTitle = new SmartX.SmartLabel();
|
||||
this.smartGroupBox1 = new SmartX.SmartGroupBox();
|
||||
this.buttonDelete = new SmartX.SmartButton();
|
||||
this.buttonResetPW = new SmartX.SmartButton();
|
||||
this.comboBoxAccessRight = new System.Windows.Forms.ComboBox();
|
||||
this.labelAccessRightAdmin = new SmartX.SmartLabel();
|
||||
this.buttonSave = new SmartX.SmartButton();
|
||||
this.labelAutoLogoutWarning = new SmartX.SmartLabel();
|
||||
this.smartSeparatorLine2 = new SmartX.SmartSeparatorLine();
|
||||
this.buttonNew = new SmartX.SmartButton();
|
||||
this.smartSeparatorLine1 = new SmartX.SmartSeparatorLine();
|
||||
this.labelTitleAccessRight = new SmartX.SmartLabel();
|
||||
this.labelExpiryDateOfPassword = new SmartX.SmartLabel();
|
||||
|
|
@ -47,10 +50,10 @@
|
|||
this.labelStatusExpiryPassword = new SmartX.SmartLabel();
|
||||
this.labelStatusExpiryAccount = new SmartX.SmartLabel();
|
||||
this.labelAutomaticLogoutTime = new SmartX.SmartLabel();
|
||||
this.smartGroupBox2 = new SmartX.SmartGroupBox();
|
||||
this.groupBoxAccessRight = new SmartX.SmartGroupBox();
|
||||
this.labelEquipment = new SmartX.SmartLabel();
|
||||
this.labelMenu = new SmartX.SmartLabel();
|
||||
this.labelMain = new SmartX.SmartLabel();
|
||||
this.labelTitleMenu = new SmartX.SmartLabel();
|
||||
this.labelTitleMain = new SmartX.SmartLabel();
|
||||
this.labelViewer = new SmartX.SmartLabel();
|
||||
this.labelStatistics = new SmartX.SmartLabel();
|
||||
this.labelUpdate = new SmartX.SmartLabel();
|
||||
|
|
@ -79,14 +82,11 @@
|
|||
this.labelID = new SmartX.SmartLabel();
|
||||
this.labelTitleID = new SmartX.SmartLabel();
|
||||
this.listBoxUserList = new System.Windows.Forms.ListBox();
|
||||
this.buttonDelete = new SmartX.SmartButton();
|
||||
this.buttonGroupEditor = new SmartX.SmartButton();
|
||||
this.buttonSave = new SmartX.SmartButton();
|
||||
this.buttonNew = new SmartX.SmartButton();
|
||||
this.buttonBack = new SmartX.SmartButton();
|
||||
((System.ComponentModel.ISupportInitialize)(this.smartForm1)).BeginInit();
|
||||
this.smartGroupBox1.SuspendLayout();
|
||||
this.smartGroupBox2.SuspendLayout();
|
||||
this.groupBoxAccessRight.SuspendLayout();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// smartForm1
|
||||
|
|
@ -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);
|
||||
|
|
@ -146,7 +146,7 @@
|
|||
this.smartGroupBox1.Controls.Add(this.labelStatusExpiryPassword);
|
||||
this.smartGroupBox1.Controls.Add(this.labelStatusExpiryAccount);
|
||||
this.smartGroupBox1.Controls.Add(this.labelAutomaticLogoutTime);
|
||||
this.smartGroupBox1.Controls.Add(this.smartGroupBox2);
|
||||
this.smartGroupBox1.Controls.Add(this.groupBoxAccessRight);
|
||||
this.smartGroupBox1.Controls.Add(this.labelTitleAutomaticLogoutTime);
|
||||
this.smartGroupBox1.Controls.Add(this.labelExpiryDateOfPassword2);
|
||||
this.smartGroupBox1.Controls.Add(this.labelExpiryDateOfAccount2);
|
||||
|
|
@ -166,10 +166,41 @@
|
|||
this.smartGroupBox1.Location = new System.Drawing.Point(379, 73);
|
||||
this.smartGroupBox1.Name = "smartGroupBox1";
|
||||
this.smartGroupBox1.RoundRadius = 5;
|
||||
this.smartGroupBox1.Size = new System.Drawing.Size(642, 572);
|
||||
this.smartGroupBox1.Size = new System.Drawing.Size(642, 588);
|
||||
this.smartGroupBox1.TabIndex = 192;
|
||||
this.smartGroupBox1.TextColor = System.Drawing.Color.Black;
|
||||
//
|
||||
// buttonDelete
|
||||
//
|
||||
this.buttonDelete.BackPictureBox = null;
|
||||
this.buttonDelete.BackPictureBox1 = null;
|
||||
this.buttonDelete.BackPictureBox2 = null;
|
||||
this.buttonDelete.ButtonColor = System.Drawing.Color.LightGray;
|
||||
this.buttonDelete.ButtonImageAutoSize = true;
|
||||
this.buttonDelete.ColorKeySamplePosition = new System.Drawing.Point(0, 0);
|
||||
this.buttonDelete.DisableImage = ((System.Drawing.Image)(resources.GetObject("buttonDelete.DisableImage")));
|
||||
this.buttonDelete.DownImage = ((System.Drawing.Image)(resources.GetObject("buttonDelete.DownImage")));
|
||||
this.buttonDelete.GroupID = 0;
|
||||
this.buttonDelete.InitVisible = true;
|
||||
this.buttonDelete.Location = new System.Drawing.Point(119, 28);
|
||||
this.buttonDelete.Mode = SmartX.SmartButton.BUTTONMODE.NORMAL;
|
||||
this.buttonDelete.Name = "buttonDelete";
|
||||
this.buttonDelete.NestedClickEventPrevent = false;
|
||||
this.buttonDelete.OutlinePixel = 1;
|
||||
this.buttonDelete.RepeatInterval = 200;
|
||||
this.buttonDelete.RepeatIntervalAccelerate = null;
|
||||
this.buttonDelete.SafeInterval = 200;
|
||||
this.buttonDelete.Size = new System.Drawing.Size(100, 50);
|
||||
this.buttonDelete.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.buttonDelete.TabIndex = 248;
|
||||
this.buttonDelete.TextColor = System.Drawing.Color.Black;
|
||||
this.buttonDelete.TextDownColor = System.Drawing.Color.White;
|
||||
this.buttonDelete.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle;
|
||||
this.buttonDelete.TextLocation = new System.Drawing.Point(0, 0);
|
||||
this.buttonDelete.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle;
|
||||
this.buttonDelete.UpImage = ((System.Drawing.Image)(resources.GetObject("buttonDelete.UpImage")));
|
||||
this.buttonDelete.Click += new System.EventHandler(this.buttonDelete_Click);
|
||||
//
|
||||
// buttonResetPW
|
||||
//
|
||||
this.buttonResetPW.BackPictureBox = null;
|
||||
|
|
@ -180,6 +211,7 @@
|
|||
this.buttonResetPW.ColorKeySamplePosition = new System.Drawing.Point(0, 0);
|
||||
this.buttonResetPW.DisableImage = null;
|
||||
this.buttonResetPW.DownImage = null;
|
||||
this.buttonResetPW.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.buttonResetPW.GroupID = 0;
|
||||
this.buttonResetPW.InitVisible = true;
|
||||
this.buttonResetPW.Location = new System.Drawing.Point(496, 120);
|
||||
|
|
@ -204,7 +236,7 @@
|
|||
//
|
||||
// comboBoxAccessRight
|
||||
//
|
||||
this.comboBoxAccessRight.Font = new System.Drawing.Font("새굴림", 15F, System.Drawing.FontStyle.Regular);
|
||||
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);
|
||||
|
|
@ -232,6 +264,37 @@
|
|||
this.labelAccessRightAdmin.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.labelAccessRightAdmin.Wordwrap = false;
|
||||
//
|
||||
// buttonSave
|
||||
//
|
||||
this.buttonSave.BackPictureBox = null;
|
||||
this.buttonSave.BackPictureBox1 = null;
|
||||
this.buttonSave.BackPictureBox2 = null;
|
||||
this.buttonSave.ButtonColor = System.Drawing.Color.LightGray;
|
||||
this.buttonSave.ButtonImageAutoSize = true;
|
||||
this.buttonSave.ColorKeySamplePosition = new System.Drawing.Point(0, 0);
|
||||
this.buttonSave.DisableImage = ((System.Drawing.Image)(resources.GetObject("buttonSave.DisableImage")));
|
||||
this.buttonSave.DownImage = ((System.Drawing.Image)(resources.GetObject("buttonSave.DownImage")));
|
||||
this.buttonSave.GroupID = 0;
|
||||
this.buttonSave.InitVisible = true;
|
||||
this.buttonSave.Location = new System.Drawing.Point(225, 28);
|
||||
this.buttonSave.Mode = SmartX.SmartButton.BUTTONMODE.NORMAL;
|
||||
this.buttonSave.Name = "buttonSave";
|
||||
this.buttonSave.NestedClickEventPrevent = false;
|
||||
this.buttonSave.OutlinePixel = 1;
|
||||
this.buttonSave.RepeatInterval = 200;
|
||||
this.buttonSave.RepeatIntervalAccelerate = null;
|
||||
this.buttonSave.SafeInterval = 200;
|
||||
this.buttonSave.Size = new System.Drawing.Size(100, 50);
|
||||
this.buttonSave.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.buttonSave.TabIndex = 247;
|
||||
this.buttonSave.TextColor = System.Drawing.Color.Black;
|
||||
this.buttonSave.TextDownColor = System.Drawing.Color.White;
|
||||
this.buttonSave.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle;
|
||||
this.buttonSave.TextLocation = new System.Drawing.Point(0, 0);
|
||||
this.buttonSave.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle;
|
||||
this.buttonSave.UpImage = ((System.Drawing.Image)(resources.GetObject("buttonSave.UpImage")));
|
||||
this.buttonSave.Click += new System.EventHandler(this.buttonSave_Click);
|
||||
//
|
||||
// labelAutoLogoutWarning
|
||||
//
|
||||
this.labelAutoLogoutWarning.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(30)))), ((int)(((byte)(30)))));
|
||||
|
|
@ -240,7 +303,7 @@
|
|||
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("새굴림", 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;
|
||||
|
|
@ -268,6 +331,37 @@
|
|||
this.smartSeparatorLine2.TabIndex = 238;
|
||||
this.smartSeparatorLine2.Text = "smartSeparatorLine2";
|
||||
//
|
||||
// buttonNew
|
||||
//
|
||||
this.buttonNew.BackPictureBox = null;
|
||||
this.buttonNew.BackPictureBox1 = null;
|
||||
this.buttonNew.BackPictureBox2 = null;
|
||||
this.buttonNew.ButtonColor = System.Drawing.Color.LightGray;
|
||||
this.buttonNew.ButtonImageAutoSize = true;
|
||||
this.buttonNew.ColorKeySamplePosition = new System.Drawing.Point(0, 0);
|
||||
this.buttonNew.DisableImage = ((System.Drawing.Image)(resources.GetObject("buttonNew.DisableImage")));
|
||||
this.buttonNew.DownImage = ((System.Drawing.Image)(resources.GetObject("buttonNew.DownImage")));
|
||||
this.buttonNew.GroupID = 0;
|
||||
this.buttonNew.InitVisible = true;
|
||||
this.buttonNew.Location = new System.Drawing.Point(13, 28);
|
||||
this.buttonNew.Mode = SmartX.SmartButton.BUTTONMODE.NORMAL;
|
||||
this.buttonNew.Name = "buttonNew";
|
||||
this.buttonNew.NestedClickEventPrevent = false;
|
||||
this.buttonNew.OutlinePixel = 1;
|
||||
this.buttonNew.RepeatInterval = 200;
|
||||
this.buttonNew.RepeatIntervalAccelerate = null;
|
||||
this.buttonNew.SafeInterval = 200;
|
||||
this.buttonNew.Size = new System.Drawing.Size(100, 50);
|
||||
this.buttonNew.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.buttonNew.TabIndex = 246;
|
||||
this.buttonNew.TextColor = System.Drawing.Color.Black;
|
||||
this.buttonNew.TextDownColor = System.Drawing.Color.White;
|
||||
this.buttonNew.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle;
|
||||
this.buttonNew.TextLocation = new System.Drawing.Point(0, 0);
|
||||
this.buttonNew.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle;
|
||||
this.buttonNew.UpImage = ((System.Drawing.Image)(resources.GetObject("buttonNew.UpImage")));
|
||||
this.buttonNew.Click += new System.EventHandler(this.buttonNew_Click);
|
||||
//
|
||||
// smartSeparatorLine1
|
||||
//
|
||||
this.smartSeparatorLine1.InitVisible = true;
|
||||
|
|
@ -291,7 +385,7 @@
|
|||
this.labelTitleAccessRight.BackPictureBox2 = null;
|
||||
this.labelTitleAccessRight.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelTitleAccessRight.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTitleAccessRight.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold);
|
||||
this.labelTitleAccessRight.Font = new System.Drawing.Font("New Gulim", 11F, System.Drawing.FontStyle.Bold);
|
||||
this.labelTitleAccessRight.ForeColor = System.Drawing.Color.White;
|
||||
this.labelTitleAccessRight.InitVisible = true;
|
||||
this.labelTitleAccessRight.LineSpacing = 0F;
|
||||
|
|
@ -354,6 +448,7 @@
|
|||
this.labelTitleDayPassword.BackPictureBox2 = null;
|
||||
this.labelTitleDayPassword.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelTitleDayPassword.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTitleDayPassword.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.labelTitleDayPassword.InitVisible = true;
|
||||
this.labelTitleDayPassword.LineSpacing = 0F;
|
||||
this.labelTitleDayPassword.Location = new System.Drawing.Point(274, 441);
|
||||
|
|
@ -374,6 +469,7 @@
|
|||
this.labelTitleDayAccount.BackPictureBox2 = null;
|
||||
this.labelTitleDayAccount.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelTitleDayAccount.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTitleDayAccount.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.labelTitleDayAccount.InitVisible = true;
|
||||
this.labelTitleDayAccount.LineSpacing = 0F;
|
||||
this.labelTitleDayAccount.Location = new System.Drawing.Point(274, 405);
|
||||
|
|
@ -394,6 +490,7 @@
|
|||
this.labelTitleMin.BackPictureBox2 = null;
|
||||
this.labelTitleMin.BorderColor = System.Drawing.Color.WhiteSmoke;
|
||||
this.labelTitleMin.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTitleMin.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.labelTitleMin.InitVisible = true;
|
||||
this.labelTitleMin.LineSpacing = 0F;
|
||||
this.labelTitleMin.Location = new System.Drawing.Point(274, 503);
|
||||
|
|
@ -413,7 +510,7 @@
|
|||
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;
|
||||
|
|
@ -434,7 +531,7 @@
|
|||
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;
|
||||
|
|
@ -469,43 +566,44 @@
|
|||
this.labelAutomaticLogoutTime.Wordwrap = false;
|
||||
this.labelAutomaticLogoutTime.Click += new System.EventHandler(this.labelAutomaticLogout_Click);
|
||||
//
|
||||
// smartGroupBox2
|
||||
// groupBoxAccessRight
|
||||
//
|
||||
this.smartGroupBox2.BackPictureBox = this.smartForm1;
|
||||
this.smartGroupBox2.BackPictureBox1 = null;
|
||||
this.smartGroupBox2.Controls.Add(this.labelEquipment);
|
||||
this.smartGroupBox2.Controls.Add(this.labelMenu);
|
||||
this.smartGroupBox2.Controls.Add(this.labelMain);
|
||||
this.smartGroupBox2.Controls.Add(this.labelViewer);
|
||||
this.smartGroupBox2.Controls.Add(this.labelStatistics);
|
||||
this.smartGroupBox2.Controls.Add(this.labelUpdate);
|
||||
this.smartGroupBox2.Controls.Add(this.labelIOTest);
|
||||
this.smartGroupBox2.Controls.Add(this.labelMotor);
|
||||
this.smartGroupBox2.Controls.Add(this.labelSystem);
|
||||
this.smartGroupBox2.Controls.Add(this.labelDataBackup);
|
||||
this.smartGroupBox2.Controls.Add(this.labelCalibration);
|
||||
this.smartGroupBox2.Controls.Add(this.labelCommunication);
|
||||
this.smartGroupBox2.Controls.Add(this.labelTime);
|
||||
this.smartGroupBox2.Controls.Add(this.labelInitialization);
|
||||
this.smartGroupBox2.Controls.Add(this.labelConfiguration);
|
||||
this.smartGroupBox2.Controls.Add(this.labelInformation);
|
||||
this.smartGroupBox2.Controls.Add(this.labelSubMenu);
|
||||
this.smartGroupBox2.Controls.Add(this.labelClear);
|
||||
this.smartGroupBox2.Controls.Add(this.labelWeightSetting);
|
||||
this.smartGroupBox2.Controls.Add(this.labelProductNo);
|
||||
this.smartGroupBox2.FrameLineColor1 = System.Drawing.Color.Black;
|
||||
this.smartGroupBox2.FrameLineColor2 = System.Drawing.Color.Black;
|
||||
this.smartGroupBox2.FrameLineThickness = 1;
|
||||
this.smartGroupBox2.FrameStyle = SmartX.SmartGroupBox.FRAMESTYLES.RoundRectangle;
|
||||
this.smartGroupBox2.Image = null;
|
||||
this.smartGroupBox2.InitVisible = true;
|
||||
this.smartGroupBox2.Location = new System.Drawing.Point(3, 192);
|
||||
this.smartGroupBox2.Name = "smartGroupBox2";
|
||||
this.smartGroupBox2.RoundRadius = 5;
|
||||
this.smartGroupBox2.Size = new System.Drawing.Size(587, 190);
|
||||
this.smartGroupBox2.TabIndex = 217;
|
||||
this.smartGroupBox2.Text = "Access right";
|
||||
this.smartGroupBox2.TextColor = System.Drawing.Color.Black;
|
||||
this.groupBoxAccessRight.BackPictureBox = this.smartForm1;
|
||||
this.groupBoxAccessRight.BackPictureBox1 = null;
|
||||
this.groupBoxAccessRight.Controls.Add(this.labelEquipment);
|
||||
this.groupBoxAccessRight.Controls.Add(this.labelTitleMenu);
|
||||
this.groupBoxAccessRight.Controls.Add(this.labelTitleMain);
|
||||
this.groupBoxAccessRight.Controls.Add(this.labelViewer);
|
||||
this.groupBoxAccessRight.Controls.Add(this.labelStatistics);
|
||||
this.groupBoxAccessRight.Controls.Add(this.labelUpdate);
|
||||
this.groupBoxAccessRight.Controls.Add(this.labelIOTest);
|
||||
this.groupBoxAccessRight.Controls.Add(this.labelMotor);
|
||||
this.groupBoxAccessRight.Controls.Add(this.labelSystem);
|
||||
this.groupBoxAccessRight.Controls.Add(this.labelDataBackup);
|
||||
this.groupBoxAccessRight.Controls.Add(this.labelCalibration);
|
||||
this.groupBoxAccessRight.Controls.Add(this.labelCommunication);
|
||||
this.groupBoxAccessRight.Controls.Add(this.labelTime);
|
||||
this.groupBoxAccessRight.Controls.Add(this.labelInitialization);
|
||||
this.groupBoxAccessRight.Controls.Add(this.labelConfiguration);
|
||||
this.groupBoxAccessRight.Controls.Add(this.labelInformation);
|
||||
this.groupBoxAccessRight.Controls.Add(this.labelSubMenu);
|
||||
this.groupBoxAccessRight.Controls.Add(this.labelClear);
|
||||
this.groupBoxAccessRight.Controls.Add(this.labelWeightSetting);
|
||||
this.groupBoxAccessRight.Controls.Add(this.labelProductNo);
|
||||
this.groupBoxAccessRight.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.groupBoxAccessRight.FrameLineColor1 = System.Drawing.Color.Black;
|
||||
this.groupBoxAccessRight.FrameLineColor2 = System.Drawing.Color.Black;
|
||||
this.groupBoxAccessRight.FrameLineThickness = 1;
|
||||
this.groupBoxAccessRight.FrameStyle = SmartX.SmartGroupBox.FRAMESTYLES.RoundRectangle;
|
||||
this.groupBoxAccessRight.Image = null;
|
||||
this.groupBoxAccessRight.InitVisible = true;
|
||||
this.groupBoxAccessRight.Location = new System.Drawing.Point(3, 192);
|
||||
this.groupBoxAccessRight.Name = "groupBoxAccessRight";
|
||||
this.groupBoxAccessRight.RoundRadius = 5;
|
||||
this.groupBoxAccessRight.Size = new System.Drawing.Size(587, 190);
|
||||
this.groupBoxAccessRight.TabIndex = 217;
|
||||
this.groupBoxAccessRight.Text = "Access right";
|
||||
this.groupBoxAccessRight.TextColor = System.Drawing.Color.Black;
|
||||
//
|
||||
// labelEquipment
|
||||
//
|
||||
|
|
@ -514,6 +612,7 @@
|
|||
this.labelEquipment.BackPictureBox2 = null;
|
||||
this.labelEquipment.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelEquipment.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelEquipment.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.labelEquipment.InitVisible = true;
|
||||
this.labelEquipment.LineSpacing = 0F;
|
||||
this.labelEquipment.Location = new System.Drawing.Point(427, 79);
|
||||
|
|
@ -525,47 +624,47 @@
|
|||
this.labelEquipment.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.labelEquipment.Wordwrap = false;
|
||||
//
|
||||
// labelMenu
|
||||
// labelTitleMenu
|
||||
//
|
||||
this.labelMenu.BackColor = System.Drawing.Color.Black;
|
||||
this.labelMenu.BackPictureBox = null;
|
||||
this.labelMenu.BackPictureBox1 = null;
|
||||
this.labelMenu.BackPictureBox2 = null;
|
||||
this.labelMenu.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelMenu.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelMenu.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelMenu.ForeColor = System.Drawing.Color.White;
|
||||
this.labelMenu.InitVisible = true;
|
||||
this.labelMenu.LineSpacing = 0F;
|
||||
this.labelMenu.Location = new System.Drawing.Point(155, 29);
|
||||
this.labelMenu.Name = "labelMenu";
|
||||
this.labelMenu.Size = new System.Drawing.Size(408, 20);
|
||||
this.labelMenu.TabIndex = 263;
|
||||
this.labelMenu.Text = "Menu";
|
||||
this.labelMenu.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||
this.labelMenu.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.labelMenu.Wordwrap = false;
|
||||
this.labelTitleMenu.BackColor = System.Drawing.Color.Black;
|
||||
this.labelTitleMenu.BackPictureBox = null;
|
||||
this.labelTitleMenu.BackPictureBox1 = null;
|
||||
this.labelTitleMenu.BackPictureBox2 = null;
|
||||
this.labelTitleMenu.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelTitleMenu.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTitleMenu.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelTitleMenu.ForeColor = System.Drawing.Color.White;
|
||||
this.labelTitleMenu.InitVisible = true;
|
||||
this.labelTitleMenu.LineSpacing = 0F;
|
||||
this.labelTitleMenu.Location = new System.Drawing.Point(155, 29);
|
||||
this.labelTitleMenu.Name = "labelTitleMenu";
|
||||
this.labelTitleMenu.Size = new System.Drawing.Size(408, 20);
|
||||
this.labelTitleMenu.TabIndex = 263;
|
||||
this.labelTitleMenu.Text = "Menu";
|
||||
this.labelTitleMenu.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||
this.labelTitleMenu.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.labelTitleMenu.Wordwrap = false;
|
||||
//
|
||||
// labelMain
|
||||
// labelTitleMain
|
||||
//
|
||||
this.labelMain.BackColor = System.Drawing.Color.Black;
|
||||
this.labelMain.BackPictureBox = null;
|
||||
this.labelMain.BackPictureBox1 = null;
|
||||
this.labelMain.BackPictureBox2 = null;
|
||||
this.labelMain.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelMain.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelMain.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelMain.ForeColor = System.Drawing.Color.White;
|
||||
this.labelMain.InitVisible = true;
|
||||
this.labelMain.LineSpacing = 0F;
|
||||
this.labelMain.Location = new System.Drawing.Point(19, 29);
|
||||
this.labelMain.Name = "labelMain";
|
||||
this.labelMain.Size = new System.Drawing.Size(130, 20);
|
||||
this.labelMain.TabIndex = 262;
|
||||
this.labelMain.Text = "Main";
|
||||
this.labelMain.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||
this.labelMain.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.labelMain.Wordwrap = false;
|
||||
this.labelTitleMain.BackColor = System.Drawing.Color.Black;
|
||||
this.labelTitleMain.BackPictureBox = null;
|
||||
this.labelTitleMain.BackPictureBox1 = null;
|
||||
this.labelTitleMain.BackPictureBox2 = null;
|
||||
this.labelTitleMain.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelTitleMain.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTitleMain.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelTitleMain.ForeColor = System.Drawing.Color.White;
|
||||
this.labelTitleMain.InitVisible = true;
|
||||
this.labelTitleMain.LineSpacing = 0F;
|
||||
this.labelTitleMain.Location = new System.Drawing.Point(19, 29);
|
||||
this.labelTitleMain.Name = "labelTitleMain";
|
||||
this.labelTitleMain.Size = new System.Drawing.Size(130, 20);
|
||||
this.labelTitleMain.TabIndex = 262;
|
||||
this.labelTitleMain.Text = "Main";
|
||||
this.labelTitleMain.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||
this.labelTitleMain.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.labelTitleMain.Wordwrap = false;
|
||||
//
|
||||
// labelViewer
|
||||
//
|
||||
|
|
@ -574,6 +673,7 @@
|
|||
this.labelViewer.BackPictureBox2 = null;
|
||||
this.labelViewer.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelViewer.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelViewer.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.labelViewer.InitVisible = true;
|
||||
this.labelViewer.LineSpacing = 0F;
|
||||
this.labelViewer.Location = new System.Drawing.Point(427, 127);
|
||||
|
|
@ -592,6 +692,7 @@
|
|||
this.labelStatistics.BackPictureBox2 = null;
|
||||
this.labelStatistics.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelStatistics.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelStatistics.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.labelStatistics.InitVisible = true;
|
||||
this.labelStatistics.LineSpacing = 0F;
|
||||
this.labelStatistics.Location = new System.Drawing.Point(427, 103);
|
||||
|
|
@ -610,6 +711,7 @@
|
|||
this.labelUpdate.BackPictureBox2 = null;
|
||||
this.labelUpdate.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelUpdate.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelUpdate.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.labelUpdate.InitVisible = true;
|
||||
this.labelUpdate.LineSpacing = 0F;
|
||||
this.labelUpdate.Location = new System.Drawing.Point(291, 103);
|
||||
|
|
@ -628,6 +730,7 @@
|
|||
this.labelIOTest.BackPictureBox2 = null;
|
||||
this.labelIOTest.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelIOTest.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelIOTest.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.labelIOTest.InitVisible = true;
|
||||
this.labelIOTest.LineSpacing = 0F;
|
||||
this.labelIOTest.Location = new System.Drawing.Point(291, 79);
|
||||
|
|
@ -646,6 +749,7 @@
|
|||
this.labelMotor.BackPictureBox2 = null;
|
||||
this.labelMotor.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelMotor.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelMotor.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.labelMotor.InitVisible = true;
|
||||
this.labelMotor.LineSpacing = 0F;
|
||||
this.labelMotor.Location = new System.Drawing.Point(291, 55);
|
||||
|
|
@ -664,6 +768,7 @@
|
|||
this.labelSystem.BackPictureBox2 = null;
|
||||
this.labelSystem.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelSystem.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelSystem.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.labelSystem.InitVisible = true;
|
||||
this.labelSystem.LineSpacing = 0F;
|
||||
this.labelSystem.Location = new System.Drawing.Point(155, 151);
|
||||
|
|
@ -682,6 +787,7 @@
|
|||
this.labelDataBackup.BackPictureBox2 = null;
|
||||
this.labelDataBackup.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelDataBackup.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelDataBackup.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.labelDataBackup.InitVisible = true;
|
||||
this.labelDataBackup.LineSpacing = 0F;
|
||||
this.labelDataBackup.Location = new System.Drawing.Point(427, 55);
|
||||
|
|
@ -700,6 +806,7 @@
|
|||
this.labelCalibration.BackPictureBox2 = null;
|
||||
this.labelCalibration.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelCalibration.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelCalibration.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.labelCalibration.InitVisible = true;
|
||||
this.labelCalibration.LineSpacing = 0F;
|
||||
this.labelCalibration.Location = new System.Drawing.Point(155, 127);
|
||||
|
|
@ -718,6 +825,7 @@
|
|||
this.labelCommunication.BackPictureBox2 = null;
|
||||
this.labelCommunication.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelCommunication.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelCommunication.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.labelCommunication.InitVisible = true;
|
||||
this.labelCommunication.LineSpacing = 0F;
|
||||
this.labelCommunication.Location = new System.Drawing.Point(155, 103);
|
||||
|
|
@ -736,6 +844,7 @@
|
|||
this.labelTime.BackPictureBox2 = null;
|
||||
this.labelTime.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelTime.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTime.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.labelTime.InitVisible = true;
|
||||
this.labelTime.LineSpacing = 0F;
|
||||
this.labelTime.Location = new System.Drawing.Point(291, 151);
|
||||
|
|
@ -754,6 +863,7 @@
|
|||
this.labelInitialization.BackPictureBox2 = null;
|
||||
this.labelInitialization.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelInitialization.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelInitialization.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.labelInitialization.InitVisible = true;
|
||||
this.labelInitialization.LineSpacing = 0F;
|
||||
this.labelInitialization.Location = new System.Drawing.Point(291, 127);
|
||||
|
|
@ -772,6 +882,7 @@
|
|||
this.labelConfiguration.BackPictureBox2 = null;
|
||||
this.labelConfiguration.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelConfiguration.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelConfiguration.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.labelConfiguration.InitVisible = true;
|
||||
this.labelConfiguration.LineSpacing = 0F;
|
||||
this.labelConfiguration.Location = new System.Drawing.Point(155, 79);
|
||||
|
|
@ -790,6 +901,7 @@
|
|||
this.labelInformation.BackPictureBox2 = null;
|
||||
this.labelInformation.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelInformation.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelInformation.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.labelInformation.InitVisible = true;
|
||||
this.labelInformation.LineSpacing = 0F;
|
||||
this.labelInformation.Location = new System.Drawing.Point(155, 55);
|
||||
|
|
@ -808,6 +920,7 @@
|
|||
this.labelSubMenu.BackPictureBox2 = null;
|
||||
this.labelSubMenu.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelSubMenu.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelSubMenu.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.labelSubMenu.InitVisible = true;
|
||||
this.labelSubMenu.LineSpacing = 0F;
|
||||
this.labelSubMenu.Location = new System.Drawing.Point(19, 127);
|
||||
|
|
@ -826,6 +939,7 @@
|
|||
this.labelClear.BackPictureBox2 = null;
|
||||
this.labelClear.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelClear.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelClear.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.labelClear.InitVisible = true;
|
||||
this.labelClear.LineSpacing = 0F;
|
||||
this.labelClear.Location = new System.Drawing.Point(19, 103);
|
||||
|
|
@ -844,6 +958,7 @@
|
|||
this.labelWeightSetting.BackPictureBox2 = null;
|
||||
this.labelWeightSetting.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelWeightSetting.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelWeightSetting.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.labelWeightSetting.InitVisible = true;
|
||||
this.labelWeightSetting.LineSpacing = 0F;
|
||||
this.labelWeightSetting.Location = new System.Drawing.Point(19, 79);
|
||||
|
|
@ -862,6 +977,7 @@
|
|||
this.labelProductNo.BackPictureBox2 = null;
|
||||
this.labelProductNo.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelProductNo.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelProductNo.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.labelProductNo.ForeColor = System.Drawing.Color.Black;
|
||||
this.labelProductNo.InitVisible = true;
|
||||
this.labelProductNo.LineSpacing = 0F;
|
||||
|
|
@ -882,7 +998,7 @@
|
|||
this.labelTitleAutomaticLogoutTime.BackPictureBox2 = null;
|
||||
this.labelTitleAutomaticLogoutTime.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelTitleAutomaticLogoutTime.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTitleAutomaticLogoutTime.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold);
|
||||
this.labelTitleAutomaticLogoutTime.Font = new System.Drawing.Font("New Gulim", 11F, System.Drawing.FontStyle.Bold);
|
||||
this.labelTitleAutomaticLogoutTime.ForeColor = System.Drawing.Color.White;
|
||||
this.labelTitleAutomaticLogoutTime.InitVisible = true;
|
||||
this.labelTitleAutomaticLogoutTime.LineSpacing = 0F;
|
||||
|
|
@ -964,7 +1080,7 @@
|
|||
this.labelTitleExpiryDateOfPassword.BackPictureBox2 = null;
|
||||
this.labelTitleExpiryDateOfPassword.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelTitleExpiryDateOfPassword.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTitleExpiryDateOfPassword.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold);
|
||||
this.labelTitleExpiryDateOfPassword.Font = new System.Drawing.Font("New Gulim", 11F, System.Drawing.FontStyle.Bold);
|
||||
this.labelTitleExpiryDateOfPassword.ForeColor = System.Drawing.Color.White;
|
||||
this.labelTitleExpiryDateOfPassword.InitVisible = true;
|
||||
this.labelTitleExpiryDateOfPassword.LineSpacing = 0F;
|
||||
|
|
@ -985,7 +1101,7 @@
|
|||
this.labelTitleExpiryDateOfAccount.BackPictureBox2 = null;
|
||||
this.labelTitleExpiryDateOfAccount.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelTitleExpiryDateOfAccount.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTitleExpiryDateOfAccount.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold);
|
||||
this.labelTitleExpiryDateOfAccount.Font = new System.Drawing.Font("New Gulim", 11F, System.Drawing.FontStyle.Bold);
|
||||
this.labelTitleExpiryDateOfAccount.ForeColor = System.Drawing.Color.White;
|
||||
this.labelTitleExpiryDateOfAccount.InitVisible = true;
|
||||
this.labelTitleExpiryDateOfAccount.LineSpacing = 0F;
|
||||
|
|
@ -1026,7 +1142,7 @@
|
|||
this.labelTitlePassword.BackPictureBox2 = null;
|
||||
this.labelTitlePassword.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelTitlePassword.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTitlePassword.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold);
|
||||
this.labelTitlePassword.Font = new System.Drawing.Font("New Gulim", 11F, System.Drawing.FontStyle.Bold);
|
||||
this.labelTitlePassword.ForeColor = System.Drawing.Color.White;
|
||||
this.labelTitlePassword.InitVisible = true;
|
||||
this.labelTitlePassword.LineSpacing = 0F;
|
||||
|
|
@ -1067,7 +1183,7 @@
|
|||
this.labelTitleID.BackPictureBox2 = null;
|
||||
this.labelTitleID.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelTitleID.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTitleID.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold);
|
||||
this.labelTitleID.Font = new System.Drawing.Font("New Gulim", 11F, System.Drawing.FontStyle.Bold);
|
||||
this.labelTitleID.ForeColor = System.Drawing.Color.White;
|
||||
this.labelTitleID.InitVisible = true;
|
||||
this.labelTitleID.LineSpacing = 0F;
|
||||
|
|
@ -1082,44 +1198,13 @@
|
|||
//
|
||||
// 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);
|
||||
this.listBoxUserList.TabIndex = 211;
|
||||
this.listBoxUserList.SelectedIndexChanged += new System.EventHandler(this.listBoxUserList_SelectedIndexChanged);
|
||||
//
|
||||
// buttonDelete
|
||||
//
|
||||
this.buttonDelete.BackPictureBox = null;
|
||||
this.buttonDelete.BackPictureBox1 = null;
|
||||
this.buttonDelete.BackPictureBox2 = null;
|
||||
this.buttonDelete.ButtonColor = System.Drawing.Color.LightGray;
|
||||
this.buttonDelete.ButtonImageAutoSize = true;
|
||||
this.buttonDelete.ColorKeySamplePosition = new System.Drawing.Point(0, 0);
|
||||
this.buttonDelete.DisableImage = ((System.Drawing.Image)(resources.GetObject("buttonDelete.DisableImage")));
|
||||
this.buttonDelete.DownImage = ((System.Drawing.Image)(resources.GetObject("buttonDelete.DownImage")));
|
||||
this.buttonDelete.GroupID = 0;
|
||||
this.buttonDelete.InitVisible = true;
|
||||
this.buttonDelete.Location = new System.Drawing.Point(119, 28);
|
||||
this.buttonDelete.Mode = SmartX.SmartButton.BUTTONMODE.NORMAL;
|
||||
this.buttonDelete.Name = "buttonDelete";
|
||||
this.buttonDelete.NestedClickEventPrevent = false;
|
||||
this.buttonDelete.OutlinePixel = 1;
|
||||
this.buttonDelete.RepeatInterval = 200;
|
||||
this.buttonDelete.RepeatIntervalAccelerate = null;
|
||||
this.buttonDelete.SafeInterval = 200;
|
||||
this.buttonDelete.Size = new System.Drawing.Size(100, 50);
|
||||
this.buttonDelete.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.buttonDelete.TabIndex = 248;
|
||||
this.buttonDelete.TextColor = System.Drawing.Color.Black;
|
||||
this.buttonDelete.TextDownColor = System.Drawing.Color.White;
|
||||
this.buttonDelete.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle;
|
||||
this.buttonDelete.TextLocation = new System.Drawing.Point(0, 0);
|
||||
this.buttonDelete.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle;
|
||||
this.buttonDelete.UpImage = ((System.Drawing.Image)(resources.GetObject("buttonDelete.UpImage")));
|
||||
this.buttonDelete.Click += new System.EventHandler(this.buttonDelete_Click);
|
||||
//
|
||||
// buttonGroupEditor
|
||||
//
|
||||
this.buttonGroupEditor.BackPictureBox = null;
|
||||
|
|
@ -1151,68 +1236,6 @@
|
|||
this.buttonGroupEditor.UpImage = ((System.Drawing.Image)(resources.GetObject("buttonGroupEditor.UpImage")));
|
||||
this.buttonGroupEditor.Click += new System.EventHandler(this.buttonGroupEditor_Click);
|
||||
//
|
||||
// buttonSave
|
||||
//
|
||||
this.buttonSave.BackPictureBox = null;
|
||||
this.buttonSave.BackPictureBox1 = null;
|
||||
this.buttonSave.BackPictureBox2 = null;
|
||||
this.buttonSave.ButtonColor = System.Drawing.Color.LightGray;
|
||||
this.buttonSave.ButtonImageAutoSize = true;
|
||||
this.buttonSave.ColorKeySamplePosition = new System.Drawing.Point(0, 0);
|
||||
this.buttonSave.DisableImage = ((System.Drawing.Image)(resources.GetObject("buttonSave.DisableImage")));
|
||||
this.buttonSave.DownImage = ((System.Drawing.Image)(resources.GetObject("buttonSave.DownImage")));
|
||||
this.buttonSave.GroupID = 0;
|
||||
this.buttonSave.InitVisible = true;
|
||||
this.buttonSave.Location = new System.Drawing.Point(225, 28);
|
||||
this.buttonSave.Mode = SmartX.SmartButton.BUTTONMODE.NORMAL;
|
||||
this.buttonSave.Name = "buttonSave";
|
||||
this.buttonSave.NestedClickEventPrevent = false;
|
||||
this.buttonSave.OutlinePixel = 1;
|
||||
this.buttonSave.RepeatInterval = 200;
|
||||
this.buttonSave.RepeatIntervalAccelerate = null;
|
||||
this.buttonSave.SafeInterval = 200;
|
||||
this.buttonSave.Size = new System.Drawing.Size(100, 50);
|
||||
this.buttonSave.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.buttonSave.TabIndex = 247;
|
||||
this.buttonSave.TextColor = System.Drawing.Color.Black;
|
||||
this.buttonSave.TextDownColor = System.Drawing.Color.White;
|
||||
this.buttonSave.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle;
|
||||
this.buttonSave.TextLocation = new System.Drawing.Point(0, 0);
|
||||
this.buttonSave.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle;
|
||||
this.buttonSave.UpImage = ((System.Drawing.Image)(resources.GetObject("buttonSave.UpImage")));
|
||||
this.buttonSave.Click += new System.EventHandler(this.buttonSave_Click);
|
||||
//
|
||||
// buttonNew
|
||||
//
|
||||
this.buttonNew.BackPictureBox = null;
|
||||
this.buttonNew.BackPictureBox1 = null;
|
||||
this.buttonNew.BackPictureBox2 = null;
|
||||
this.buttonNew.ButtonColor = System.Drawing.Color.LightGray;
|
||||
this.buttonNew.ButtonImageAutoSize = true;
|
||||
this.buttonNew.ColorKeySamplePosition = new System.Drawing.Point(0, 0);
|
||||
this.buttonNew.DisableImage = ((System.Drawing.Image)(resources.GetObject("buttonNew.DisableImage")));
|
||||
this.buttonNew.DownImage = ((System.Drawing.Image)(resources.GetObject("buttonNew.DownImage")));
|
||||
this.buttonNew.GroupID = 0;
|
||||
this.buttonNew.InitVisible = true;
|
||||
this.buttonNew.Location = new System.Drawing.Point(13, 28);
|
||||
this.buttonNew.Mode = SmartX.SmartButton.BUTTONMODE.NORMAL;
|
||||
this.buttonNew.Name = "buttonNew";
|
||||
this.buttonNew.NestedClickEventPrevent = false;
|
||||
this.buttonNew.OutlinePixel = 1;
|
||||
this.buttonNew.RepeatInterval = 200;
|
||||
this.buttonNew.RepeatIntervalAccelerate = null;
|
||||
this.buttonNew.SafeInterval = 200;
|
||||
this.buttonNew.Size = new System.Drawing.Size(100, 50);
|
||||
this.buttonNew.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.buttonNew.TabIndex = 246;
|
||||
this.buttonNew.TextColor = System.Drawing.Color.Black;
|
||||
this.buttonNew.TextDownColor = System.Drawing.Color.White;
|
||||
this.buttonNew.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle;
|
||||
this.buttonNew.TextLocation = new System.Drawing.Point(0, 0);
|
||||
this.buttonNew.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle;
|
||||
this.buttonNew.UpImage = ((System.Drawing.Image)(resources.GetObject("buttonNew.UpImage")));
|
||||
this.buttonNew.Click += new System.EventHandler(this.buttonNew_Click);
|
||||
//
|
||||
// buttonBack
|
||||
//
|
||||
this.buttonBack.BackPictureBox = null;
|
||||
|
|
@ -1260,7 +1283,7 @@
|
|||
this.Text = "FormUserEditor";
|
||||
((System.ComponentModel.ISupportInitialize)(this.smartForm1)).EndInit();
|
||||
this.smartGroupBox1.ResumeLayout(false);
|
||||
this.smartGroupBox2.ResumeLayout(false);
|
||||
this.groupBoxAccessRight.ResumeLayout(false);
|
||||
this.ResumeLayout(false);
|
||||
|
||||
}
|
||||
|
|
@ -1283,15 +1306,15 @@
|
|||
private SmartX.SmartCheckBox cbAdministrator;
|
||||
private SmartX.SmartLabel labelExpiryDateOfPassword2;
|
||||
private SmartX.SmartLabel labelExpiryDateOfAccount2;
|
||||
private SmartX.SmartGroupBox smartGroupBox2;
|
||||
private SmartX.SmartGroupBox groupBoxAccessRight;
|
||||
private SmartX.SmartLabel labelStatusExpiryAccount;
|
||||
private SmartX.SmartLabel labelStatusExpiryPassword;
|
||||
private SmartX.SmartLabel labelTitleDayAccount;
|
||||
private SmartX.SmartLabel labelTitleMin;
|
||||
private SmartX.SmartLabel labelTitleDayPassword;
|
||||
private SmartX.SmartLabel labelTitleAccessRight;
|
||||
private SmartX.SmartLabel labelMenu;
|
||||
private SmartX.SmartLabel labelMain;
|
||||
private SmartX.SmartLabel labelTitleMenu;
|
||||
private SmartX.SmartLabel labelTitleMain;
|
||||
private SmartX.SmartLabel labelViewer;
|
||||
private SmartX.SmartLabel labelStatistics;
|
||||
private SmartX.SmartLabel labelUpdate;
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load Diff
|
|
@ -76,6 +76,28 @@ namespace INT63DC_2C.Forms
|
|||
case DataStore.LanguageID.Chinese:
|
||||
this.labelTitle.Text = "组编辑";
|
||||
|
||||
this.labelTitleMain.Text = "主屏幕";
|
||||
this.labelTitleProductNo.Text = "编号";
|
||||
this.labelTitleWeightSetting.Text = "重量设置";
|
||||
this.labelTitleClear.Text = "消除";
|
||||
this.labelTitleSubMenu.Text = "子菜单";
|
||||
|
||||
this.labelTitleMenu.Text = "菜单";
|
||||
this.labelTitleInformation.Text = "系统信息";
|
||||
this.labelTitleConfiguration.Text = "选项";
|
||||
this.labelTitleCommunication.Text = "通讯设置";
|
||||
this.labelTitleCalibration.Text = "校准";
|
||||
this.labelTitleSystem.Text = "系统设定";
|
||||
this.labelTitleMotor.Text = "设置电机";
|
||||
this.labelTitleIoTest.Text = "I/O测试";
|
||||
this.labelTitleUpdate.Text = "更新";
|
||||
this.labelTitleInitialization.Text = "回复出厂设置";
|
||||
this.labelTitleDataBackup.Text = "数据备份";
|
||||
this.labelTitleEquipment.Text = "设备设置";
|
||||
this.labelTitleTime.Text = "时间设定";
|
||||
this.labelTitleStatistics.Text = "数据统计";
|
||||
this.labelTitleViewer.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));
|
||||
|
|
|
|||
|
|
@ -124,23 +124,23 @@
|
|||
this.labelTitle3 = new SmartX.SmartLabel();
|
||||
this.labelTitle2 = new SmartX.SmartLabel();
|
||||
this.labelTitle1 = new SmartX.SmartLabel();
|
||||
this.smartLabel21 = new SmartX.SmartLabel();
|
||||
this.smartLabel18 = new SmartX.SmartLabel();
|
||||
this.smartLabel16 = new SmartX.SmartLabel();
|
||||
this.smartLabel15 = new SmartX.SmartLabel();
|
||||
this.smartLabel14 = new SmartX.SmartLabel();
|
||||
this.smartLabel13 = new SmartX.SmartLabel();
|
||||
this.smartLabel12 = new SmartX.SmartLabel();
|
||||
this.smartLabel11 = new SmartX.SmartLabel();
|
||||
this.smartLabel10 = new SmartX.SmartLabel();
|
||||
this.smartLabel9 = new SmartX.SmartLabel();
|
||||
this.smartLabel8 = new SmartX.SmartLabel();
|
||||
this.smartLabel7 = new SmartX.SmartLabel();
|
||||
this.smartLabel6 = new SmartX.SmartLabel();
|
||||
this.smartLabel5 = new SmartX.SmartLabel();
|
||||
this.smartLabel3 = new SmartX.SmartLabel();
|
||||
this.smartLabel2 = new SmartX.SmartLabel();
|
||||
this.smartLabel1 = new SmartX.SmartLabel();
|
||||
this.labelTitleEquipment = new SmartX.SmartLabel();
|
||||
this.labelTitleInitialization = new SmartX.SmartLabel();
|
||||
this.labelTitleUpdate = new SmartX.SmartLabel();
|
||||
this.labelTitleIoTest = new SmartX.SmartLabel();
|
||||
this.labelTitleMotor = new SmartX.SmartLabel();
|
||||
this.labelTitleSystem = new SmartX.SmartLabel();
|
||||
this.labelTitleCalibration = new SmartX.SmartLabel();
|
||||
this.labelTitleConfiguration = new SmartX.SmartLabel();
|
||||
this.labelTitleDataBackup = new SmartX.SmartLabel();
|
||||
this.labelTitleInformation = new SmartX.SmartLabel();
|
||||
this.labelTitleTime = new SmartX.SmartLabel();
|
||||
this.labelTitleMenu = new SmartX.SmartLabel();
|
||||
this.labelTitleSubMenu = new SmartX.SmartLabel();
|
||||
this.labelTitleClear = new SmartX.SmartLabel();
|
||||
this.labelTitleWeightSetting = new SmartX.SmartLabel();
|
||||
this.labelTitleProductNo = new SmartX.SmartLabel();
|
||||
this.labelTitleMain = new SmartX.SmartLabel();
|
||||
((System.ComponentModel.ISupportInitialize)(this.smartForm1)).BeginInit();
|
||||
this.smartGroupBox1.SuspendLayout();
|
||||
this.SuspendLayout();
|
||||
|
|
@ -258,23 +258,23 @@
|
|||
this.smartGroupBox1.Controls.Add(this.labelTitle3);
|
||||
this.smartGroupBox1.Controls.Add(this.labelTitle2);
|
||||
this.smartGroupBox1.Controls.Add(this.labelTitle1);
|
||||
this.smartGroupBox1.Controls.Add(this.smartLabel21);
|
||||
this.smartGroupBox1.Controls.Add(this.smartLabel18);
|
||||
this.smartGroupBox1.Controls.Add(this.smartLabel16);
|
||||
this.smartGroupBox1.Controls.Add(this.smartLabel15);
|
||||
this.smartGroupBox1.Controls.Add(this.smartLabel14);
|
||||
this.smartGroupBox1.Controls.Add(this.smartLabel13);
|
||||
this.smartGroupBox1.Controls.Add(this.smartLabel12);
|
||||
this.smartGroupBox1.Controls.Add(this.smartLabel11);
|
||||
this.smartGroupBox1.Controls.Add(this.smartLabel10);
|
||||
this.smartGroupBox1.Controls.Add(this.smartLabel9);
|
||||
this.smartGroupBox1.Controls.Add(this.smartLabel8);
|
||||
this.smartGroupBox1.Controls.Add(this.smartLabel7);
|
||||
this.smartGroupBox1.Controls.Add(this.smartLabel6);
|
||||
this.smartGroupBox1.Controls.Add(this.smartLabel5);
|
||||
this.smartGroupBox1.Controls.Add(this.smartLabel3);
|
||||
this.smartGroupBox1.Controls.Add(this.smartLabel2);
|
||||
this.smartGroupBox1.Controls.Add(this.smartLabel1);
|
||||
this.smartGroupBox1.Controls.Add(this.labelTitleEquipment);
|
||||
this.smartGroupBox1.Controls.Add(this.labelTitleInitialization);
|
||||
this.smartGroupBox1.Controls.Add(this.labelTitleUpdate);
|
||||
this.smartGroupBox1.Controls.Add(this.labelTitleIoTest);
|
||||
this.smartGroupBox1.Controls.Add(this.labelTitleMotor);
|
||||
this.smartGroupBox1.Controls.Add(this.labelTitleSystem);
|
||||
this.smartGroupBox1.Controls.Add(this.labelTitleCalibration);
|
||||
this.smartGroupBox1.Controls.Add(this.labelTitleConfiguration);
|
||||
this.smartGroupBox1.Controls.Add(this.labelTitleDataBackup);
|
||||
this.smartGroupBox1.Controls.Add(this.labelTitleInformation);
|
||||
this.smartGroupBox1.Controls.Add(this.labelTitleTime);
|
||||
this.smartGroupBox1.Controls.Add(this.labelTitleMenu);
|
||||
this.smartGroupBox1.Controls.Add(this.labelTitleSubMenu);
|
||||
this.smartGroupBox1.Controls.Add(this.labelTitleClear);
|
||||
this.smartGroupBox1.Controls.Add(this.labelTitleWeightSetting);
|
||||
this.smartGroupBox1.Controls.Add(this.labelTitleProductNo);
|
||||
this.smartGroupBox1.Controls.Add(this.labelTitleMain);
|
||||
this.smartGroupBox1.FrameLineColor1 = System.Drawing.Color.Black;
|
||||
this.smartGroupBox1.FrameLineColor2 = System.Drawing.Color.Black;
|
||||
this.smartGroupBox1.FrameLineThickness = 1;
|
||||
|
|
@ -1882,7 +1882,7 @@
|
|||
this.labelLevel3Name.BackPictureBox2 = null;
|
||||
this.labelLevel3Name.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelLevel3Name.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelLevel3Name.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelLevel3Name.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelLevel3Name.ForeColor = System.Drawing.Color.Black;
|
||||
this.labelLevel3Name.InitVisible = true;
|
||||
this.labelLevel3Name.LineSpacing = 0F;
|
||||
|
|
@ -1904,7 +1904,7 @@
|
|||
this.labelLevel2Name.BackPictureBox2 = null;
|
||||
this.labelLevel2Name.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelLevel2Name.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelLevel2Name.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelLevel2Name.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelLevel2Name.ForeColor = System.Drawing.Color.Black;
|
||||
this.labelLevel2Name.InitVisible = true;
|
||||
this.labelLevel2Name.LineSpacing = 0F;
|
||||
|
|
@ -1926,7 +1926,7 @@
|
|||
this.labelLevel1Name.BackPictureBox2 = null;
|
||||
this.labelLevel1Name.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelLevel1Name.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelLevel1Name.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelLevel1Name.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelLevel1Name.ForeColor = System.Drawing.Color.Black;
|
||||
this.labelLevel1Name.InitVisible = true;
|
||||
this.labelLevel1Name.LineSpacing = 0F;
|
||||
|
|
@ -1948,6 +1948,7 @@
|
|||
this.labelTitleViewer.BackPictureBox2 = null;
|
||||
this.labelTitleViewer.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelTitleViewer.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTitleViewer.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.labelTitleViewer.ForeColor = System.Drawing.Color.Black;
|
||||
this.labelTitleViewer.InitVisible = true;
|
||||
this.labelTitleViewer.LineSpacing = 0F;
|
||||
|
|
@ -1969,6 +1970,7 @@
|
|||
this.labelTitleCommunication.BackPictureBox2 = null;
|
||||
this.labelTitleCommunication.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelTitleCommunication.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTitleCommunication.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.labelTitleCommunication.ForeColor = System.Drawing.Color.Black;
|
||||
this.labelTitleCommunication.InitVisible = true;
|
||||
this.labelTitleCommunication.LineSpacing = 0F;
|
||||
|
|
@ -1989,7 +1991,7 @@
|
|||
this.smartLabel26.BackPictureBox2 = null;
|
||||
this.smartLabel26.BorderColor = System.Drawing.Color.Black;
|
||||
this.smartLabel26.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.smartLabel26.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.smartLabel26.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.smartLabel26.ForeColor = System.Drawing.Color.Black;
|
||||
this.smartLabel26.InitVisible = true;
|
||||
this.smartLabel26.LineSpacing = 0F;
|
||||
|
|
@ -2010,7 +2012,7 @@
|
|||
this.smartLabel25.BackPictureBox2 = null;
|
||||
this.smartLabel25.BorderColor = System.Drawing.Color.Black;
|
||||
this.smartLabel25.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.smartLabel25.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.smartLabel25.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.smartLabel25.ForeColor = System.Drawing.Color.Black;
|
||||
this.smartLabel25.InitVisible = true;
|
||||
this.smartLabel25.LineSpacing = 0F;
|
||||
|
|
@ -2046,7 +2048,7 @@
|
|||
this.smartLabel24.BackPictureBox2 = null;
|
||||
this.smartLabel24.BorderColor = System.Drawing.Color.Black;
|
||||
this.smartLabel24.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.smartLabel24.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.smartLabel24.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.smartLabel24.ForeColor = System.Drawing.Color.Black;
|
||||
this.smartLabel24.InitVisible = true;
|
||||
this.smartLabel24.LineSpacing = 0F;
|
||||
|
|
@ -2067,7 +2069,7 @@
|
|||
this.labelTitleNotLogin2.BackPictureBox2 = null;
|
||||
this.labelTitleNotLogin2.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelTitleNotLogin2.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTitleNotLogin2.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelTitleNotLogin2.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelTitleNotLogin2.ForeColor = System.Drawing.Color.Black;
|
||||
this.labelTitleNotLogin2.InitVisible = true;
|
||||
this.labelTitleNotLogin2.LineSpacing = 0F;
|
||||
|
|
@ -2089,7 +2091,7 @@
|
|||
this.smartLabel17.BackPictureBox2 = null;
|
||||
this.smartLabel17.BorderColor = System.Drawing.Color.Black;
|
||||
this.smartLabel17.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.smartLabel17.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.smartLabel17.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.smartLabel17.ForeColor = System.Drawing.Color.Black;
|
||||
this.smartLabel17.InitVisible = true;
|
||||
this.smartLabel17.LineSpacing = 0F;
|
||||
|
|
@ -2111,7 +2113,7 @@
|
|||
this.smartLabel22.BackPictureBox2 = null;
|
||||
this.smartLabel22.BorderColor = System.Drawing.Color.Black;
|
||||
this.smartLabel22.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.smartLabel22.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.smartLabel22.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.smartLabel22.ForeColor = System.Drawing.Color.Black;
|
||||
this.smartLabel22.InitVisible = true;
|
||||
this.smartLabel22.LineSpacing = 0F;
|
||||
|
|
@ -2133,7 +2135,7 @@
|
|||
this.smartLabel23.BackPictureBox2 = null;
|
||||
this.smartLabel23.BorderColor = System.Drawing.Color.Black;
|
||||
this.smartLabel23.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.smartLabel23.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.smartLabel23.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.smartLabel23.ForeColor = System.Drawing.Color.Black;
|
||||
this.smartLabel23.InitVisible = true;
|
||||
this.smartLabel23.LineSpacing = 0F;
|
||||
|
|
@ -2174,6 +2176,7 @@
|
|||
this.labelTitleStatistics.BackPictureBox2 = null;
|
||||
this.labelTitleStatistics.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelTitleStatistics.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTitleStatistics.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.labelTitleStatistics.ForeColor = System.Drawing.Color.Black;
|
||||
this.labelTitleStatistics.InitVisible = true;
|
||||
this.labelTitleStatistics.LineSpacing = 0F;
|
||||
|
|
@ -2195,7 +2198,7 @@
|
|||
this.labelTitleNotLogin1.BackPictureBox2 = null;
|
||||
this.labelTitleNotLogin1.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelTitleNotLogin1.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTitleNotLogin1.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelTitleNotLogin1.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelTitleNotLogin1.ForeColor = System.Drawing.Color.Black;
|
||||
this.labelTitleNotLogin1.InitVisible = true;
|
||||
this.labelTitleNotLogin1.LineSpacing = 0F;
|
||||
|
|
@ -2217,7 +2220,7 @@
|
|||
this.labelTitle3.BackPictureBox2 = null;
|
||||
this.labelTitle3.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelTitle3.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTitle3.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelTitle3.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelTitle3.ForeColor = System.Drawing.Color.Black;
|
||||
this.labelTitle3.InitVisible = true;
|
||||
this.labelTitle3.LineSpacing = 0F;
|
||||
|
|
@ -2239,7 +2242,7 @@
|
|||
this.labelTitle2.BackPictureBox2 = null;
|
||||
this.labelTitle2.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelTitle2.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTitle2.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelTitle2.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelTitle2.ForeColor = System.Drawing.Color.Black;
|
||||
this.labelTitle2.InitVisible = true;
|
||||
this.labelTitle2.LineSpacing = 0F;
|
||||
|
|
@ -2261,7 +2264,7 @@
|
|||
this.labelTitle1.BackPictureBox2 = null;
|
||||
this.labelTitle1.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelTitle1.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTitle1.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelTitle1.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelTitle1.ForeColor = System.Drawing.Color.Black;
|
||||
this.labelTitle1.InitVisible = true;
|
||||
this.labelTitle1.LineSpacing = 0F;
|
||||
|
|
@ -2275,347 +2278,362 @@
|
|||
this.labelTitle1.Wordwrap = false;
|
||||
this.labelTitle1.Click += new System.EventHandler(this.labelTitle1_Click);
|
||||
//
|
||||
// smartLabel21
|
||||
// labelTitleEquipment
|
||||
//
|
||||
this.smartLabel21.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(151)))), ((int)(((byte)(150)))), ((int)(((byte)(151)))));
|
||||
this.smartLabel21.BackPictureBox = this.smartForm1;
|
||||
this.smartLabel21.BackPictureBox1 = null;
|
||||
this.smartLabel21.BackPictureBox2 = null;
|
||||
this.smartLabel21.BorderColor = System.Drawing.Color.Black;
|
||||
this.smartLabel21.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.smartLabel21.ForeColor = System.Drawing.Color.Black;
|
||||
this.smartLabel21.InitVisible = true;
|
||||
this.smartLabel21.LineSpacing = 0F;
|
||||
this.smartLabel21.Location = new System.Drawing.Point(532, 515);
|
||||
this.smartLabel21.Name = "smartLabel21";
|
||||
this.smartLabel21.Size = new System.Drawing.Size(200, 30);
|
||||
this.smartLabel21.TabIndex = 555;
|
||||
this.smartLabel21.Text = "Equipment";
|
||||
this.smartLabel21.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||
this.smartLabel21.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.smartLabel21.Wordwrap = false;
|
||||
this.labelTitleEquipment.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(151)))), ((int)(((byte)(150)))), ((int)(((byte)(151)))));
|
||||
this.labelTitleEquipment.BackPictureBox = this.smartForm1;
|
||||
this.labelTitleEquipment.BackPictureBox1 = null;
|
||||
this.labelTitleEquipment.BackPictureBox2 = null;
|
||||
this.labelTitleEquipment.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelTitleEquipment.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTitleEquipment.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.labelTitleEquipment.ForeColor = System.Drawing.Color.Black;
|
||||
this.labelTitleEquipment.InitVisible = true;
|
||||
this.labelTitleEquipment.LineSpacing = 0F;
|
||||
this.labelTitleEquipment.Location = new System.Drawing.Point(532, 515);
|
||||
this.labelTitleEquipment.Name = "labelTitleEquipment";
|
||||
this.labelTitleEquipment.Size = new System.Drawing.Size(200, 30);
|
||||
this.labelTitleEquipment.TabIndex = 555;
|
||||
this.labelTitleEquipment.Text = "Equipment";
|
||||
this.labelTitleEquipment.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||
this.labelTitleEquipment.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.labelTitleEquipment.Wordwrap = false;
|
||||
//
|
||||
// smartLabel18
|
||||
// labelTitleInitialization
|
||||
//
|
||||
this.smartLabel18.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(151)))), ((int)(((byte)(150)))), ((int)(((byte)(151)))));
|
||||
this.smartLabel18.BackPictureBox = this.smartForm1;
|
||||
this.smartLabel18.BackPictureBox1 = null;
|
||||
this.smartLabel18.BackPictureBox2 = null;
|
||||
this.smartLabel18.BorderColor = System.Drawing.Color.Black;
|
||||
this.smartLabel18.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.smartLabel18.ForeColor = System.Drawing.Color.Black;
|
||||
this.smartLabel18.InitVisible = true;
|
||||
this.smartLabel18.LineSpacing = 0F;
|
||||
this.smartLabel18.Location = new System.Drawing.Point(532, 443);
|
||||
this.smartLabel18.Name = "smartLabel18";
|
||||
this.smartLabel18.Size = new System.Drawing.Size(200, 30);
|
||||
this.smartLabel18.TabIndex = 552;
|
||||
this.smartLabel18.Text = "Initialization";
|
||||
this.smartLabel18.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||
this.smartLabel18.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.smartLabel18.Wordwrap = false;
|
||||
this.labelTitleInitialization.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(151)))), ((int)(((byte)(150)))), ((int)(((byte)(151)))));
|
||||
this.labelTitleInitialization.BackPictureBox = this.smartForm1;
|
||||
this.labelTitleInitialization.BackPictureBox1 = null;
|
||||
this.labelTitleInitialization.BackPictureBox2 = null;
|
||||
this.labelTitleInitialization.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelTitleInitialization.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTitleInitialization.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.labelTitleInitialization.ForeColor = System.Drawing.Color.Black;
|
||||
this.labelTitleInitialization.InitVisible = true;
|
||||
this.labelTitleInitialization.LineSpacing = 0F;
|
||||
this.labelTitleInitialization.Location = new System.Drawing.Point(532, 443);
|
||||
this.labelTitleInitialization.Name = "labelTitleInitialization";
|
||||
this.labelTitleInitialization.Size = new System.Drawing.Size(200, 30);
|
||||
this.labelTitleInitialization.TabIndex = 552;
|
||||
this.labelTitleInitialization.Text = "Initialization";
|
||||
this.labelTitleInitialization.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||
this.labelTitleInitialization.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.labelTitleInitialization.Wordwrap = false;
|
||||
//
|
||||
// smartLabel16
|
||||
// labelTitleUpdate
|
||||
//
|
||||
this.smartLabel16.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(151)))), ((int)(((byte)(150)))), ((int)(((byte)(151)))));
|
||||
this.smartLabel16.BackPictureBox = this.smartForm1;
|
||||
this.smartLabel16.BackPictureBox1 = null;
|
||||
this.smartLabel16.BackPictureBox2 = null;
|
||||
this.smartLabel16.BorderColor = System.Drawing.Color.Black;
|
||||
this.smartLabel16.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.smartLabel16.ForeColor = System.Drawing.Color.Black;
|
||||
this.smartLabel16.InitVisible = true;
|
||||
this.smartLabel16.LineSpacing = 0F;
|
||||
this.smartLabel16.Location = new System.Drawing.Point(532, 407);
|
||||
this.smartLabel16.Name = "smartLabel16";
|
||||
this.smartLabel16.Size = new System.Drawing.Size(200, 30);
|
||||
this.smartLabel16.TabIndex = 551;
|
||||
this.smartLabel16.Text = "Update";
|
||||
this.smartLabel16.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||
this.smartLabel16.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.smartLabel16.Wordwrap = false;
|
||||
this.labelTitleUpdate.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(151)))), ((int)(((byte)(150)))), ((int)(((byte)(151)))));
|
||||
this.labelTitleUpdate.BackPictureBox = this.smartForm1;
|
||||
this.labelTitleUpdate.BackPictureBox1 = null;
|
||||
this.labelTitleUpdate.BackPictureBox2 = null;
|
||||
this.labelTitleUpdate.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelTitleUpdate.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTitleUpdate.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.labelTitleUpdate.ForeColor = System.Drawing.Color.Black;
|
||||
this.labelTitleUpdate.InitVisible = true;
|
||||
this.labelTitleUpdate.LineSpacing = 0F;
|
||||
this.labelTitleUpdate.Location = new System.Drawing.Point(532, 407);
|
||||
this.labelTitleUpdate.Name = "labelTitleUpdate";
|
||||
this.labelTitleUpdate.Size = new System.Drawing.Size(200, 30);
|
||||
this.labelTitleUpdate.TabIndex = 551;
|
||||
this.labelTitleUpdate.Text = "Update";
|
||||
this.labelTitleUpdate.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||
this.labelTitleUpdate.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.labelTitleUpdate.Wordwrap = false;
|
||||
//
|
||||
// smartLabel15
|
||||
// labelTitleIoTest
|
||||
//
|
||||
this.smartLabel15.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(151)))), ((int)(((byte)(150)))), ((int)(((byte)(151)))));
|
||||
this.smartLabel15.BackPictureBox = this.smartForm1;
|
||||
this.smartLabel15.BackPictureBox1 = null;
|
||||
this.smartLabel15.BackPictureBox2 = null;
|
||||
this.smartLabel15.BorderColor = System.Drawing.Color.Black;
|
||||
this.smartLabel15.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.smartLabel15.ForeColor = System.Drawing.Color.Black;
|
||||
this.smartLabel15.InitVisible = true;
|
||||
this.smartLabel15.LineSpacing = 0F;
|
||||
this.smartLabel15.Location = new System.Drawing.Point(35, 623);
|
||||
this.smartLabel15.Name = "smartLabel15";
|
||||
this.smartLabel15.Size = new System.Drawing.Size(200, 30);
|
||||
this.smartLabel15.TabIndex = 550;
|
||||
this.smartLabel15.Text = "IO Test";
|
||||
this.smartLabel15.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||
this.smartLabel15.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.smartLabel15.Wordwrap = false;
|
||||
this.labelTitleIoTest.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(151)))), ((int)(((byte)(150)))), ((int)(((byte)(151)))));
|
||||
this.labelTitleIoTest.BackPictureBox = this.smartForm1;
|
||||
this.labelTitleIoTest.BackPictureBox1 = null;
|
||||
this.labelTitleIoTest.BackPictureBox2 = null;
|
||||
this.labelTitleIoTest.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelTitleIoTest.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTitleIoTest.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.labelTitleIoTest.ForeColor = System.Drawing.Color.Black;
|
||||
this.labelTitleIoTest.InitVisible = true;
|
||||
this.labelTitleIoTest.LineSpacing = 0F;
|
||||
this.labelTitleIoTest.Location = new System.Drawing.Point(35, 623);
|
||||
this.labelTitleIoTest.Name = "labelTitleIoTest";
|
||||
this.labelTitleIoTest.Size = new System.Drawing.Size(200, 30);
|
||||
this.labelTitleIoTest.TabIndex = 550;
|
||||
this.labelTitleIoTest.Text = "IO Test";
|
||||
this.labelTitleIoTest.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||
this.labelTitleIoTest.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.labelTitleIoTest.Wordwrap = false;
|
||||
//
|
||||
// smartLabel14
|
||||
// labelTitleMotor
|
||||
//
|
||||
this.smartLabel14.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(151)))), ((int)(((byte)(150)))), ((int)(((byte)(151)))));
|
||||
this.smartLabel14.BackPictureBox = this.smartForm1;
|
||||
this.smartLabel14.BackPictureBox1 = null;
|
||||
this.smartLabel14.BackPictureBox2 = null;
|
||||
this.smartLabel14.BorderColor = System.Drawing.Color.Black;
|
||||
this.smartLabel14.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.smartLabel14.ForeColor = System.Drawing.Color.Black;
|
||||
this.smartLabel14.InitVisible = true;
|
||||
this.smartLabel14.LineSpacing = 0F;
|
||||
this.smartLabel14.Location = new System.Drawing.Point(35, 587);
|
||||
this.smartLabel14.Name = "smartLabel14";
|
||||
this.smartLabel14.Size = new System.Drawing.Size(200, 30);
|
||||
this.smartLabel14.TabIndex = 549;
|
||||
this.smartLabel14.Text = "Mortor";
|
||||
this.smartLabel14.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||
this.smartLabel14.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.smartLabel14.Wordwrap = false;
|
||||
this.labelTitleMotor.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(151)))), ((int)(((byte)(150)))), ((int)(((byte)(151)))));
|
||||
this.labelTitleMotor.BackPictureBox = this.smartForm1;
|
||||
this.labelTitleMotor.BackPictureBox1 = null;
|
||||
this.labelTitleMotor.BackPictureBox2 = null;
|
||||
this.labelTitleMotor.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelTitleMotor.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTitleMotor.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.labelTitleMotor.ForeColor = System.Drawing.Color.Black;
|
||||
this.labelTitleMotor.InitVisible = true;
|
||||
this.labelTitleMotor.LineSpacing = 0F;
|
||||
this.labelTitleMotor.Location = new System.Drawing.Point(35, 587);
|
||||
this.labelTitleMotor.Name = "labelTitleMotor";
|
||||
this.labelTitleMotor.Size = new System.Drawing.Size(200, 30);
|
||||
this.labelTitleMotor.TabIndex = 549;
|
||||
this.labelTitleMotor.Text = "Mortor";
|
||||
this.labelTitleMotor.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||
this.labelTitleMotor.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.labelTitleMotor.Wordwrap = false;
|
||||
//
|
||||
// smartLabel13
|
||||
// labelTitleSystem
|
||||
//
|
||||
this.smartLabel13.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(151)))), ((int)(((byte)(150)))), ((int)(((byte)(151)))));
|
||||
this.smartLabel13.BackPictureBox = this.smartForm1;
|
||||
this.smartLabel13.BackPictureBox1 = null;
|
||||
this.smartLabel13.BackPictureBox2 = null;
|
||||
this.smartLabel13.BorderColor = System.Drawing.Color.Black;
|
||||
this.smartLabel13.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.smartLabel13.ForeColor = System.Drawing.Color.Black;
|
||||
this.smartLabel13.InitVisible = true;
|
||||
this.smartLabel13.LineSpacing = 0F;
|
||||
this.smartLabel13.Location = new System.Drawing.Point(35, 551);
|
||||
this.smartLabel13.Name = "smartLabel13";
|
||||
this.smartLabel13.Size = new System.Drawing.Size(200, 30);
|
||||
this.smartLabel13.TabIndex = 548;
|
||||
this.smartLabel13.Text = "System";
|
||||
this.smartLabel13.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||
this.smartLabel13.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.smartLabel13.Wordwrap = false;
|
||||
this.labelTitleSystem.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(151)))), ((int)(((byte)(150)))), ((int)(((byte)(151)))));
|
||||
this.labelTitleSystem.BackPictureBox = this.smartForm1;
|
||||
this.labelTitleSystem.BackPictureBox1 = null;
|
||||
this.labelTitleSystem.BackPictureBox2 = null;
|
||||
this.labelTitleSystem.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelTitleSystem.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTitleSystem.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.labelTitleSystem.ForeColor = System.Drawing.Color.Black;
|
||||
this.labelTitleSystem.InitVisible = true;
|
||||
this.labelTitleSystem.LineSpacing = 0F;
|
||||
this.labelTitleSystem.Location = new System.Drawing.Point(35, 551);
|
||||
this.labelTitleSystem.Name = "labelTitleSystem";
|
||||
this.labelTitleSystem.Size = new System.Drawing.Size(200, 30);
|
||||
this.labelTitleSystem.TabIndex = 548;
|
||||
this.labelTitleSystem.Text = "System";
|
||||
this.labelTitleSystem.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||
this.labelTitleSystem.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.labelTitleSystem.Wordwrap = false;
|
||||
//
|
||||
// smartLabel12
|
||||
// labelTitleCalibration
|
||||
//
|
||||
this.smartLabel12.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(151)))), ((int)(((byte)(150)))), ((int)(((byte)(151)))));
|
||||
this.smartLabel12.BackPictureBox = this.smartForm1;
|
||||
this.smartLabel12.BackPictureBox1 = null;
|
||||
this.smartLabel12.BackPictureBox2 = null;
|
||||
this.smartLabel12.BorderColor = System.Drawing.Color.Black;
|
||||
this.smartLabel12.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.smartLabel12.ForeColor = System.Drawing.Color.Black;
|
||||
this.smartLabel12.InitVisible = true;
|
||||
this.smartLabel12.LineSpacing = 0F;
|
||||
this.smartLabel12.Location = new System.Drawing.Point(35, 515);
|
||||
this.smartLabel12.Name = "smartLabel12";
|
||||
this.smartLabel12.Size = new System.Drawing.Size(200, 30);
|
||||
this.smartLabel12.TabIndex = 547;
|
||||
this.smartLabel12.Text = "Calibration";
|
||||
this.smartLabel12.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||
this.smartLabel12.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.smartLabel12.Wordwrap = false;
|
||||
this.labelTitleCalibration.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(151)))), ((int)(((byte)(150)))), ((int)(((byte)(151)))));
|
||||
this.labelTitleCalibration.BackPictureBox = this.smartForm1;
|
||||
this.labelTitleCalibration.BackPictureBox1 = null;
|
||||
this.labelTitleCalibration.BackPictureBox2 = null;
|
||||
this.labelTitleCalibration.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelTitleCalibration.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTitleCalibration.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.labelTitleCalibration.ForeColor = System.Drawing.Color.Black;
|
||||
this.labelTitleCalibration.InitVisible = true;
|
||||
this.labelTitleCalibration.LineSpacing = 0F;
|
||||
this.labelTitleCalibration.Location = new System.Drawing.Point(35, 515);
|
||||
this.labelTitleCalibration.Name = "labelTitleCalibration";
|
||||
this.labelTitleCalibration.Size = new System.Drawing.Size(200, 30);
|
||||
this.labelTitleCalibration.TabIndex = 547;
|
||||
this.labelTitleCalibration.Text = "Calibration";
|
||||
this.labelTitleCalibration.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||
this.labelTitleCalibration.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.labelTitleCalibration.Wordwrap = false;
|
||||
//
|
||||
// smartLabel11
|
||||
// labelTitleConfiguration
|
||||
//
|
||||
this.smartLabel11.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(151)))), ((int)(((byte)(150)))), ((int)(((byte)(151)))));
|
||||
this.smartLabel11.BackPictureBox = this.smartForm1;
|
||||
this.smartLabel11.BackPictureBox1 = null;
|
||||
this.smartLabel11.BackPictureBox2 = null;
|
||||
this.smartLabel11.BorderColor = System.Drawing.Color.Black;
|
||||
this.smartLabel11.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.smartLabel11.ForeColor = System.Drawing.Color.Black;
|
||||
this.smartLabel11.InitVisible = true;
|
||||
this.smartLabel11.LineSpacing = 0F;
|
||||
this.smartLabel11.Location = new System.Drawing.Point(35, 443);
|
||||
this.smartLabel11.Name = "smartLabel11";
|
||||
this.smartLabel11.Size = new System.Drawing.Size(200, 30);
|
||||
this.smartLabel11.TabIndex = 546;
|
||||
this.smartLabel11.Text = "Configuration";
|
||||
this.smartLabel11.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||
this.smartLabel11.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.smartLabel11.Wordwrap = false;
|
||||
this.labelTitleConfiguration.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(151)))), ((int)(((byte)(150)))), ((int)(((byte)(151)))));
|
||||
this.labelTitleConfiguration.BackPictureBox = this.smartForm1;
|
||||
this.labelTitleConfiguration.BackPictureBox1 = null;
|
||||
this.labelTitleConfiguration.BackPictureBox2 = null;
|
||||
this.labelTitleConfiguration.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelTitleConfiguration.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTitleConfiguration.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.labelTitleConfiguration.ForeColor = System.Drawing.Color.Black;
|
||||
this.labelTitleConfiguration.InitVisible = true;
|
||||
this.labelTitleConfiguration.LineSpacing = 0F;
|
||||
this.labelTitleConfiguration.Location = new System.Drawing.Point(35, 443);
|
||||
this.labelTitleConfiguration.Name = "labelTitleConfiguration";
|
||||
this.labelTitleConfiguration.Size = new System.Drawing.Size(200, 30);
|
||||
this.labelTitleConfiguration.TabIndex = 546;
|
||||
this.labelTitleConfiguration.Text = "Configuration";
|
||||
this.labelTitleConfiguration.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||
this.labelTitleConfiguration.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.labelTitleConfiguration.Wordwrap = false;
|
||||
//
|
||||
// smartLabel10
|
||||
// labelTitleDataBackup
|
||||
//
|
||||
this.smartLabel10.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(151)))), ((int)(((byte)(150)))), ((int)(((byte)(151)))));
|
||||
this.smartLabel10.BackPictureBox = this.smartForm1;
|
||||
this.smartLabel10.BackPictureBox1 = null;
|
||||
this.smartLabel10.BackPictureBox2 = null;
|
||||
this.smartLabel10.BorderColor = System.Drawing.Color.Black;
|
||||
this.smartLabel10.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.smartLabel10.ForeColor = System.Drawing.Color.Black;
|
||||
this.smartLabel10.InitVisible = true;
|
||||
this.smartLabel10.LineSpacing = 0F;
|
||||
this.smartLabel10.Location = new System.Drawing.Point(532, 479);
|
||||
this.smartLabel10.Name = "smartLabel10";
|
||||
this.smartLabel10.Size = new System.Drawing.Size(200, 30);
|
||||
this.smartLabel10.TabIndex = 545;
|
||||
this.smartLabel10.Text = "DataBackup";
|
||||
this.smartLabel10.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||
this.smartLabel10.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.smartLabel10.Wordwrap = false;
|
||||
this.labelTitleDataBackup.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(151)))), ((int)(((byte)(150)))), ((int)(((byte)(151)))));
|
||||
this.labelTitleDataBackup.BackPictureBox = this.smartForm1;
|
||||
this.labelTitleDataBackup.BackPictureBox1 = null;
|
||||
this.labelTitleDataBackup.BackPictureBox2 = null;
|
||||
this.labelTitleDataBackup.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelTitleDataBackup.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTitleDataBackup.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.labelTitleDataBackup.ForeColor = System.Drawing.Color.Black;
|
||||
this.labelTitleDataBackup.InitVisible = true;
|
||||
this.labelTitleDataBackup.LineSpacing = 0F;
|
||||
this.labelTitleDataBackup.Location = new System.Drawing.Point(532, 479);
|
||||
this.labelTitleDataBackup.Name = "labelTitleDataBackup";
|
||||
this.labelTitleDataBackup.Size = new System.Drawing.Size(200, 30);
|
||||
this.labelTitleDataBackup.TabIndex = 545;
|
||||
this.labelTitleDataBackup.Text = "DataBackup";
|
||||
this.labelTitleDataBackup.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||
this.labelTitleDataBackup.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.labelTitleDataBackup.Wordwrap = false;
|
||||
//
|
||||
// smartLabel9
|
||||
// labelTitleInformation
|
||||
//
|
||||
this.smartLabel9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(151)))), ((int)(((byte)(150)))), ((int)(((byte)(151)))));
|
||||
this.smartLabel9.BackPictureBox = this.smartForm1;
|
||||
this.smartLabel9.BackPictureBox1 = null;
|
||||
this.smartLabel9.BackPictureBox2 = null;
|
||||
this.smartLabel9.BorderColor = System.Drawing.Color.Black;
|
||||
this.smartLabel9.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.smartLabel9.ForeColor = System.Drawing.Color.Black;
|
||||
this.smartLabel9.InitVisible = true;
|
||||
this.smartLabel9.LineSpacing = 0F;
|
||||
this.smartLabel9.Location = new System.Drawing.Point(35, 407);
|
||||
this.smartLabel9.Name = "smartLabel9";
|
||||
this.smartLabel9.Size = new System.Drawing.Size(200, 30);
|
||||
this.smartLabel9.TabIndex = 544;
|
||||
this.smartLabel9.Text = "Information";
|
||||
this.smartLabel9.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||
this.smartLabel9.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.smartLabel9.Wordwrap = false;
|
||||
this.labelTitleInformation.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(151)))), ((int)(((byte)(150)))), ((int)(((byte)(151)))));
|
||||
this.labelTitleInformation.BackPictureBox = this.smartForm1;
|
||||
this.labelTitleInformation.BackPictureBox1 = null;
|
||||
this.labelTitleInformation.BackPictureBox2 = null;
|
||||
this.labelTitleInformation.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelTitleInformation.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTitleInformation.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.labelTitleInformation.ForeColor = System.Drawing.Color.Black;
|
||||
this.labelTitleInformation.InitVisible = true;
|
||||
this.labelTitleInformation.LineSpacing = 0F;
|
||||
this.labelTitleInformation.Location = new System.Drawing.Point(35, 407);
|
||||
this.labelTitleInformation.Name = "labelTitleInformation";
|
||||
this.labelTitleInformation.Size = new System.Drawing.Size(200, 30);
|
||||
this.labelTitleInformation.TabIndex = 544;
|
||||
this.labelTitleInformation.Text = "Information";
|
||||
this.labelTitleInformation.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||
this.labelTitleInformation.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.labelTitleInformation.Wordwrap = false;
|
||||
//
|
||||
// smartLabel8
|
||||
// labelTitleTime
|
||||
//
|
||||
this.smartLabel8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(151)))), ((int)(((byte)(150)))), ((int)(((byte)(151)))));
|
||||
this.smartLabel8.BackPictureBox = this.smartForm1;
|
||||
this.smartLabel8.BackPictureBox1 = null;
|
||||
this.smartLabel8.BackPictureBox2 = null;
|
||||
this.smartLabel8.BorderColor = System.Drawing.Color.Black;
|
||||
this.smartLabel8.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.smartLabel8.ForeColor = System.Drawing.Color.Black;
|
||||
this.smartLabel8.InitVisible = true;
|
||||
this.smartLabel8.LineSpacing = 0F;
|
||||
this.smartLabel8.Location = new System.Drawing.Point(532, 551);
|
||||
this.smartLabel8.Name = "smartLabel8";
|
||||
this.smartLabel8.Size = new System.Drawing.Size(200, 30);
|
||||
this.smartLabel8.TabIndex = 543;
|
||||
this.smartLabel8.Text = "Time";
|
||||
this.smartLabel8.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||
this.smartLabel8.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.smartLabel8.Wordwrap = false;
|
||||
this.labelTitleTime.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(151)))), ((int)(((byte)(150)))), ((int)(((byte)(151)))));
|
||||
this.labelTitleTime.BackPictureBox = this.smartForm1;
|
||||
this.labelTitleTime.BackPictureBox1 = null;
|
||||
this.labelTitleTime.BackPictureBox2 = null;
|
||||
this.labelTitleTime.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelTitleTime.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTitleTime.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.labelTitleTime.ForeColor = System.Drawing.Color.Black;
|
||||
this.labelTitleTime.InitVisible = true;
|
||||
this.labelTitleTime.LineSpacing = 0F;
|
||||
this.labelTitleTime.Location = new System.Drawing.Point(532, 551);
|
||||
this.labelTitleTime.Name = "labelTitleTime";
|
||||
this.labelTitleTime.Size = new System.Drawing.Size(200, 30);
|
||||
this.labelTitleTime.TabIndex = 543;
|
||||
this.labelTitleTime.Text = "Time";
|
||||
this.labelTitleTime.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||
this.labelTitleTime.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.labelTitleTime.Wordwrap = false;
|
||||
//
|
||||
// smartLabel7
|
||||
// labelTitleMenu
|
||||
//
|
||||
this.smartLabel7.BackColor = System.Drawing.Color.Gainsboro;
|
||||
this.smartLabel7.BackPictureBox = null;
|
||||
this.smartLabel7.BackPictureBox1 = null;
|
||||
this.smartLabel7.BackPictureBox2 = null;
|
||||
this.smartLabel7.BorderColor = System.Drawing.Color.Black;
|
||||
this.smartLabel7.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.smartLabel7.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.smartLabel7.ForeColor = System.Drawing.Color.Black;
|
||||
this.smartLabel7.InitVisible = true;
|
||||
this.smartLabel7.LineSpacing = 0F;
|
||||
this.smartLabel7.Location = new System.Drawing.Point(35, 371);
|
||||
this.smartLabel7.Name = "smartLabel7";
|
||||
this.smartLabel7.Size = new System.Drawing.Size(958, 30);
|
||||
this.smartLabel7.TabIndex = 542;
|
||||
this.smartLabel7.Text = "Menu";
|
||||
this.smartLabel7.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||
this.smartLabel7.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.smartLabel7.Wordwrap = false;
|
||||
this.labelTitleMenu.BackColor = System.Drawing.Color.Gainsboro;
|
||||
this.labelTitleMenu.BackPictureBox = null;
|
||||
this.labelTitleMenu.BackPictureBox1 = null;
|
||||
this.labelTitleMenu.BackPictureBox2 = null;
|
||||
this.labelTitleMenu.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelTitleMenu.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTitleMenu.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelTitleMenu.ForeColor = System.Drawing.Color.Black;
|
||||
this.labelTitleMenu.InitVisible = true;
|
||||
this.labelTitleMenu.LineSpacing = 0F;
|
||||
this.labelTitleMenu.Location = new System.Drawing.Point(35, 371);
|
||||
this.labelTitleMenu.Name = "labelTitleMenu";
|
||||
this.labelTitleMenu.Size = new System.Drawing.Size(958, 30);
|
||||
this.labelTitleMenu.TabIndex = 542;
|
||||
this.labelTitleMenu.Text = "Menu";
|
||||
this.labelTitleMenu.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||
this.labelTitleMenu.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.labelTitleMenu.Wordwrap = false;
|
||||
//
|
||||
// smartLabel6
|
||||
// labelTitleSubMenu
|
||||
//
|
||||
this.smartLabel6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(151)))), ((int)(((byte)(150)))), ((int)(((byte)(151)))));
|
||||
this.smartLabel6.BackPictureBox = null;
|
||||
this.smartLabel6.BackPictureBox1 = null;
|
||||
this.smartLabel6.BackPictureBox2 = null;
|
||||
this.smartLabel6.BorderColor = System.Drawing.Color.Black;
|
||||
this.smartLabel6.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.smartLabel6.ForeColor = System.Drawing.Color.Black;
|
||||
this.smartLabel6.InitVisible = true;
|
||||
this.smartLabel6.LineSpacing = 0F;
|
||||
this.smartLabel6.Location = new System.Drawing.Point(35, 335);
|
||||
this.smartLabel6.Name = "smartLabel6";
|
||||
this.smartLabel6.Size = new System.Drawing.Size(200, 30);
|
||||
this.smartLabel6.TabIndex = 541;
|
||||
this.smartLabel6.Text = "SubMenu";
|
||||
this.smartLabel6.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||
this.smartLabel6.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.smartLabel6.Wordwrap = false;
|
||||
this.labelTitleSubMenu.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(151)))), ((int)(((byte)(150)))), ((int)(((byte)(151)))));
|
||||
this.labelTitleSubMenu.BackPictureBox = null;
|
||||
this.labelTitleSubMenu.BackPictureBox1 = null;
|
||||
this.labelTitleSubMenu.BackPictureBox2 = null;
|
||||
this.labelTitleSubMenu.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelTitleSubMenu.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTitleSubMenu.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.labelTitleSubMenu.ForeColor = System.Drawing.Color.Black;
|
||||
this.labelTitleSubMenu.InitVisible = true;
|
||||
this.labelTitleSubMenu.LineSpacing = 0F;
|
||||
this.labelTitleSubMenu.Location = new System.Drawing.Point(35, 335);
|
||||
this.labelTitleSubMenu.Name = "labelTitleSubMenu";
|
||||
this.labelTitleSubMenu.Size = new System.Drawing.Size(200, 30);
|
||||
this.labelTitleSubMenu.TabIndex = 541;
|
||||
this.labelTitleSubMenu.Text = "SubMenu";
|
||||
this.labelTitleSubMenu.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||
this.labelTitleSubMenu.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.labelTitleSubMenu.Wordwrap = false;
|
||||
//
|
||||
// smartLabel5
|
||||
// labelTitleClear
|
||||
//
|
||||
this.smartLabel5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(151)))), ((int)(((byte)(150)))), ((int)(((byte)(151)))));
|
||||
this.smartLabel5.BackPictureBox = null;
|
||||
this.smartLabel5.BackPictureBox1 = null;
|
||||
this.smartLabel5.BackPictureBox2 = null;
|
||||
this.smartLabel5.BorderColor = System.Drawing.Color.Black;
|
||||
this.smartLabel5.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.smartLabel5.ForeColor = System.Drawing.Color.Black;
|
||||
this.smartLabel5.InitVisible = true;
|
||||
this.smartLabel5.LineSpacing = 0F;
|
||||
this.smartLabel5.Location = new System.Drawing.Point(35, 304);
|
||||
this.smartLabel5.Name = "smartLabel5";
|
||||
this.smartLabel5.Size = new System.Drawing.Size(200, 30);
|
||||
this.smartLabel5.TabIndex = 540;
|
||||
this.smartLabel5.Text = "Clear";
|
||||
this.smartLabel5.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||
this.smartLabel5.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.smartLabel5.Wordwrap = false;
|
||||
this.labelTitleClear.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(151)))), ((int)(((byte)(150)))), ((int)(((byte)(151)))));
|
||||
this.labelTitleClear.BackPictureBox = null;
|
||||
this.labelTitleClear.BackPictureBox1 = null;
|
||||
this.labelTitleClear.BackPictureBox2 = null;
|
||||
this.labelTitleClear.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelTitleClear.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTitleClear.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.labelTitleClear.ForeColor = System.Drawing.Color.Black;
|
||||
this.labelTitleClear.InitVisible = true;
|
||||
this.labelTitleClear.LineSpacing = 0F;
|
||||
this.labelTitleClear.Location = new System.Drawing.Point(35, 304);
|
||||
this.labelTitleClear.Name = "labelTitleClear";
|
||||
this.labelTitleClear.Size = new System.Drawing.Size(200, 30);
|
||||
this.labelTitleClear.TabIndex = 540;
|
||||
this.labelTitleClear.Text = "Clear";
|
||||
this.labelTitleClear.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||
this.labelTitleClear.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.labelTitleClear.Wordwrap = false;
|
||||
//
|
||||
// smartLabel3
|
||||
// labelTitleWeightSetting
|
||||
//
|
||||
this.smartLabel3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(151)))), ((int)(((byte)(150)))), ((int)(((byte)(151)))));
|
||||
this.smartLabel3.BackPictureBox = null;
|
||||
this.smartLabel3.BackPictureBox1 = null;
|
||||
this.smartLabel3.BackPictureBox2 = null;
|
||||
this.smartLabel3.BorderColor = System.Drawing.Color.Black;
|
||||
this.smartLabel3.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.smartLabel3.ForeColor = System.Drawing.Color.Black;
|
||||
this.smartLabel3.InitVisible = true;
|
||||
this.smartLabel3.LineSpacing = 0F;
|
||||
this.smartLabel3.Location = new System.Drawing.Point(35, 273);
|
||||
this.smartLabel3.Name = "smartLabel3";
|
||||
this.smartLabel3.Size = new System.Drawing.Size(200, 30);
|
||||
this.smartLabel3.TabIndex = 539;
|
||||
this.smartLabel3.Text = "WeightSetting";
|
||||
this.smartLabel3.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||
this.smartLabel3.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.smartLabel3.Wordwrap = false;
|
||||
this.labelTitleWeightSetting.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(151)))), ((int)(((byte)(150)))), ((int)(((byte)(151)))));
|
||||
this.labelTitleWeightSetting.BackPictureBox = null;
|
||||
this.labelTitleWeightSetting.BackPictureBox1 = null;
|
||||
this.labelTitleWeightSetting.BackPictureBox2 = null;
|
||||
this.labelTitleWeightSetting.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelTitleWeightSetting.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTitleWeightSetting.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.labelTitleWeightSetting.ForeColor = System.Drawing.Color.Black;
|
||||
this.labelTitleWeightSetting.InitVisible = true;
|
||||
this.labelTitleWeightSetting.LineSpacing = 0F;
|
||||
this.labelTitleWeightSetting.Location = new System.Drawing.Point(35, 273);
|
||||
this.labelTitleWeightSetting.Name = "labelTitleWeightSetting";
|
||||
this.labelTitleWeightSetting.Size = new System.Drawing.Size(200, 30);
|
||||
this.labelTitleWeightSetting.TabIndex = 539;
|
||||
this.labelTitleWeightSetting.Text = "WeightSetting";
|
||||
this.labelTitleWeightSetting.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||
this.labelTitleWeightSetting.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.labelTitleWeightSetting.Wordwrap = false;
|
||||
//
|
||||
// smartLabel2
|
||||
// labelTitleProductNo
|
||||
//
|
||||
this.smartLabel2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(151)))), ((int)(((byte)(150)))), ((int)(((byte)(151)))));
|
||||
this.smartLabel2.BackPictureBox = null;
|
||||
this.smartLabel2.BackPictureBox1 = null;
|
||||
this.smartLabel2.BackPictureBox2 = null;
|
||||
this.smartLabel2.BorderColor = System.Drawing.Color.Black;
|
||||
this.smartLabel2.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.smartLabel2.ForeColor = System.Drawing.Color.Black;
|
||||
this.smartLabel2.InitVisible = true;
|
||||
this.smartLabel2.LineSpacing = 0F;
|
||||
this.smartLabel2.Location = new System.Drawing.Point(35, 242);
|
||||
this.smartLabel2.Name = "smartLabel2";
|
||||
this.smartLabel2.Size = new System.Drawing.Size(200, 30);
|
||||
this.smartLabel2.TabIndex = 538;
|
||||
this.smartLabel2.Text = "ProductNo";
|
||||
this.smartLabel2.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||
this.smartLabel2.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.smartLabel2.Wordwrap = false;
|
||||
this.labelTitleProductNo.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(151)))), ((int)(((byte)(150)))), ((int)(((byte)(151)))));
|
||||
this.labelTitleProductNo.BackPictureBox = null;
|
||||
this.labelTitleProductNo.BackPictureBox1 = null;
|
||||
this.labelTitleProductNo.BackPictureBox2 = null;
|
||||
this.labelTitleProductNo.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelTitleProductNo.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTitleProductNo.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.labelTitleProductNo.ForeColor = System.Drawing.Color.Black;
|
||||
this.labelTitleProductNo.InitVisible = true;
|
||||
this.labelTitleProductNo.LineSpacing = 0F;
|
||||
this.labelTitleProductNo.Location = new System.Drawing.Point(35, 242);
|
||||
this.labelTitleProductNo.Name = "labelTitleProductNo";
|
||||
this.labelTitleProductNo.Size = new System.Drawing.Size(200, 30);
|
||||
this.labelTitleProductNo.TabIndex = 538;
|
||||
this.labelTitleProductNo.Text = "ProductNo";
|
||||
this.labelTitleProductNo.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||
this.labelTitleProductNo.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.labelTitleProductNo.Wordwrap = false;
|
||||
//
|
||||
// smartLabel1
|
||||
// labelTitleMain
|
||||
//
|
||||
this.smartLabel1.BackColor = System.Drawing.Color.Gainsboro;
|
||||
this.smartLabel1.BackPictureBox = null;
|
||||
this.smartLabel1.BackPictureBox1 = null;
|
||||
this.smartLabel1.BackPictureBox2 = null;
|
||||
this.smartLabel1.BorderColor = System.Drawing.Color.Wheat;
|
||||
this.smartLabel1.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.smartLabel1.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.smartLabel1.ForeColor = System.Drawing.Color.Black;
|
||||
this.smartLabel1.InitVisible = true;
|
||||
this.smartLabel1.LineSpacing = 0F;
|
||||
this.smartLabel1.Location = new System.Drawing.Point(35, 206);
|
||||
this.smartLabel1.Name = "smartLabel1";
|
||||
this.smartLabel1.Size = new System.Drawing.Size(958, 30);
|
||||
this.smartLabel1.TabIndex = 537;
|
||||
this.smartLabel1.Text = "Main";
|
||||
this.smartLabel1.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||
this.smartLabel1.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.smartLabel1.Wordwrap = false;
|
||||
this.labelTitleMain.BackColor = System.Drawing.Color.Gainsboro;
|
||||
this.labelTitleMain.BackPictureBox = null;
|
||||
this.labelTitleMain.BackPictureBox1 = null;
|
||||
this.labelTitleMain.BackPictureBox2 = null;
|
||||
this.labelTitleMain.BorderColor = System.Drawing.Color.Wheat;
|
||||
this.labelTitleMain.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTitleMain.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelTitleMain.ForeColor = System.Drawing.Color.Black;
|
||||
this.labelTitleMain.InitVisible = true;
|
||||
this.labelTitleMain.LineSpacing = 0F;
|
||||
this.labelTitleMain.Location = new System.Drawing.Point(35, 206);
|
||||
this.labelTitleMain.Name = "labelTitleMain";
|
||||
this.labelTitleMain.Size = new System.Drawing.Size(958, 30);
|
||||
this.labelTitleMain.TabIndex = 537;
|
||||
this.labelTitleMain.Text = "Main";
|
||||
this.labelTitleMain.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||
this.labelTitleMain.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.labelTitleMain.Wordwrap = false;
|
||||
//
|
||||
// FormUserGroupEditor
|
||||
//
|
||||
|
|
@ -2642,23 +2660,23 @@
|
|||
private SmartX.SmartLabel labelTitle3;
|
||||
private SmartX.SmartLabel labelTitle2;
|
||||
private SmartX.SmartLabel labelTitle1;
|
||||
private SmartX.SmartLabel smartLabel21;
|
||||
private SmartX.SmartLabel smartLabel18;
|
||||
private SmartX.SmartLabel smartLabel16;
|
||||
private SmartX.SmartLabel smartLabel15;
|
||||
private SmartX.SmartLabel smartLabel14;
|
||||
private SmartX.SmartLabel smartLabel13;
|
||||
private SmartX.SmartLabel smartLabel12;
|
||||
private SmartX.SmartLabel smartLabel11;
|
||||
private SmartX.SmartLabel smartLabel10;
|
||||
private SmartX.SmartLabel smartLabel9;
|
||||
private SmartX.SmartLabel smartLabel8;
|
||||
private SmartX.SmartLabel smartLabel7;
|
||||
private SmartX.SmartLabel smartLabel6;
|
||||
private SmartX.SmartLabel smartLabel5;
|
||||
private SmartX.SmartLabel smartLabel3;
|
||||
private SmartX.SmartLabel smartLabel2;
|
||||
private SmartX.SmartLabel smartLabel1;
|
||||
private SmartX.SmartLabel labelTitleEquipment;
|
||||
private SmartX.SmartLabel labelTitleInitialization;
|
||||
private SmartX.SmartLabel labelTitleUpdate;
|
||||
private SmartX.SmartLabel labelTitleIoTest;
|
||||
private SmartX.SmartLabel labelTitleMotor;
|
||||
private SmartX.SmartLabel labelTitleSystem;
|
||||
private SmartX.SmartLabel labelTitleCalibration;
|
||||
private SmartX.SmartLabel labelTitleConfiguration;
|
||||
private SmartX.SmartLabel labelTitleDataBackup;
|
||||
private SmartX.SmartLabel labelTitleInformation;
|
||||
private SmartX.SmartLabel labelTitleTime;
|
||||
private SmartX.SmartLabel labelTitleMenu;
|
||||
private SmartX.SmartLabel labelTitleSubMenu;
|
||||
private SmartX.SmartLabel labelTitleClear;
|
||||
private SmartX.SmartLabel labelTitleWeightSetting;
|
||||
private SmartX.SmartLabel labelTitleProductNo;
|
||||
private SmartX.SmartLabel labelTitleMain;
|
||||
private SmartX.SmartLabel labelTitle;
|
||||
private SmartX.SmartLabel labelTitleNotLogin2;
|
||||
private SmartX.SmartLabel smartLabel17;
|
||||
|
|
|
|||
Binary file not shown.
Loading…
Reference in New Issue