유저설정 화면 Access right 메뉴 목록 User/Equipment 삭제

master
DESKTOP-999R8N3\CJY 2023-08-16 09:53:30 +09:00
parent 03a3d70462
commit 007e07067d
2 changed files with 92 additions and 144 deletions

View File

@ -388,11 +388,9 @@ namespace INT69DC_7C.Forms
this.labelSystem.ForeColor = this.ReturnColor(this.ParentForm.CurrentUserGroup.Level1.IsMenuSystem);
this.labelMotor.ForeColor = this.ReturnColor(this.ParentForm.CurrentUserGroup.Level1.IsMenuMotor);
this.labelIOTest.ForeColor = this.ReturnColor(this.ParentForm.CurrentUserGroup.Level1.IsMenuIOTest);
this.labelEquipment.ForeColor = this.ReturnColor(this.ParentForm.CurrentUserGroup.Level1.IsMenuEquipment);
this.labelUpdate.ForeColor = this.ReturnColor(this.ParentForm.CurrentUserGroup.Level1.IsMenuUpdate);
this.labelInitialization.ForeColor = this.ReturnColor(this.ParentForm.CurrentUserGroup.Level1.IsMenuInitialization);
this.labelTime.ForeColor = this.ReturnColor(this.ParentForm.CurrentUserGroup.Level1.IsMenuTime);
this.labelUser.ForeColor = this.ReturnColor(this.ParentForm.CurrentUserGroup.Level1.IsMenuUser);
this.labelDataBackup.ForeColor = this.ReturnColor(this.ParentForm.CurrentUserGroup.Level1.IsMenuDataBackup);
this.labelStatistics.ForeColor = this.ReturnColor(this.ParentForm.CurrentUserGroup.Level1.IsMenuStatistics);
this.labelViewer.ForeColor = this.ReturnColor(this.ParentForm.CurrentUserGroup.Level1.IsMenuViewer);
@ -410,11 +408,9 @@ namespace INT69DC_7C.Forms
this.labelSystem.ForeColor = this.ReturnColor(this.ParentForm.CurrentUserGroup.Level2.IsMenuSystem);
this.labelMotor.ForeColor = this.ReturnColor(this.ParentForm.CurrentUserGroup.Level2.IsMenuMotor);
this.labelIOTest.ForeColor = this.ReturnColor(this.ParentForm.CurrentUserGroup.Level2.IsMenuIOTest);
this.labelEquipment.ForeColor = this.ReturnColor(this.ParentForm.CurrentUserGroup.Level2.IsMenuEquipment);
this.labelUpdate.ForeColor = this.ReturnColor(this.ParentForm.CurrentUserGroup.Level2.IsMenuUpdate);
this.labelInitialization.ForeColor = this.ReturnColor(this.ParentForm.CurrentUserGroup.Level2.IsMenuInitialization);
this.labelTime.ForeColor = this.ReturnColor(this.ParentForm.CurrentUserGroup.Level2.IsMenuTime);
this.labelUser.ForeColor = this.ReturnColor(this.ParentForm.CurrentUserGroup.Level2.IsMenuUser);
this.labelDataBackup.ForeColor = this.ReturnColor(this.ParentForm.CurrentUserGroup.Level2.IsMenuDataBackup);
this.labelStatistics.ForeColor = this.ReturnColor(this.ParentForm.CurrentUserGroup.Level2.IsMenuStatistics);
this.labelViewer.ForeColor = this.ReturnColor(this.ParentForm.CurrentUserGroup.Level2.IsMenuViewer);
@ -432,11 +428,9 @@ namespace INT69DC_7C.Forms
this.labelSystem.ForeColor = this.ReturnColor(this.ParentForm.CurrentUserGroup.Level3.IsMenuSystem);
this.labelMotor.ForeColor = this.ReturnColor(this.ParentForm.CurrentUserGroup.Level3.IsMenuMotor);
this.labelIOTest.ForeColor = this.ReturnColor(this.ParentForm.CurrentUserGroup.Level3.IsMenuIOTest);
this.labelEquipment.ForeColor = this.ReturnColor(this.ParentForm.CurrentUserGroup.Level3.IsMenuEquipment);
this.labelUpdate.ForeColor = this.ReturnColor(this.ParentForm.CurrentUserGroup.Level3.IsMenuUpdate);
this.labelInitialization.ForeColor = this.ReturnColor(this.ParentForm.CurrentUserGroup.Level3.IsMenuInitialization);
this.labelTime.ForeColor = this.ReturnColor(this.ParentForm.CurrentUserGroup.Level3.IsMenuTime);
this.labelUser.ForeColor = this.ReturnColor(this.ParentForm.CurrentUserGroup.Level3.IsMenuUser);
this.labelDataBackup.ForeColor = this.ReturnColor(this.ParentForm.CurrentUserGroup.Level3.IsMenuDataBackup);
this.labelStatistics.ForeColor = this.ReturnColor(this.ParentForm.CurrentUserGroup.Level3.IsMenuStatistics);
this.labelViewer.ForeColor = this.ReturnColor(this.ParentForm.CurrentUserGroup.Level3.IsMenuViewer);
@ -455,11 +449,9 @@ namespace INT69DC_7C.Forms
this.labelSystem.ForeColor = Color.Black;
this.labelMotor.ForeColor = Color.Black;
this.labelIOTest.ForeColor = Color.Black;
this.labelEquipment.ForeColor = Color.Black;
this.labelUpdate.ForeColor = Color.Black;
this.labelInitialization.ForeColor = Color.Black;
this.labelTime.ForeColor = Color.Black;
this.labelUser.ForeColor = Color.Black;
this.labelDataBackup.ForeColor = Color.Black;
this.labelStatistics.ForeColor = Color.Black;
this.labelViewer.ForeColor = Color.Black;
@ -653,11 +645,9 @@ namespace INT69DC_7C.Forms
this.labelSystem.ForeColor = this.ReturnColor(item.IsMenuSystem);
this.labelMotor.ForeColor = this.ReturnColor(item.IsMenuMotor);
this.labelIOTest.ForeColor = this.ReturnColor(item.IsMenuIOTest);
this.labelEquipment.ForeColor = this.ReturnColor(item.IsMenuEquipment);
this.labelUpdate.ForeColor = this.ReturnColor(item.IsMenuUpdate);
this.labelInitialization.ForeColor = this.ReturnColor(item.IsMenuInitialization);
this.labelTime.ForeColor = this.ReturnColor(item.IsMenuTime);
this.labelUser.ForeColor = this.ReturnColor(item.IsMenuUser);
this.labelDataBackup.ForeColor = this.ReturnColor(item.IsMenuDataBackup);
this.labelStatistics.ForeColor = this.ReturnColor(item.IsMenuStatistics);
this.labelViewer.ForeColor = this.ReturnColor(item.IsMenuViewer);

View File

@ -34,6 +34,11 @@
this.buttonBack = new SmartX.SmartButton();
this.listBoxUserList = new SmartX.SmartListBox();
this.smartGroupBox1 = new SmartX.SmartGroupBox();
this.comboBoxAccessRight = new System.Windows.Forms.ComboBox();
this.labelAccessRightAdmin = new SmartX.SmartLabel();
this.labelAutoLogoutWarning = new SmartX.SmartLabel();
this.smartSeparatorLine2 = new SmartX.SmartSeparatorLine();
this.smartSeparatorLine1 = new SmartX.SmartSeparatorLine();
this.labelTitleAccessRight = new SmartX.SmartLabel();
this.labelExpiryDateOfPassword = new SmartX.SmartLabel();
this.labelExpiryDateOfAccount = new SmartX.SmartLabel();
@ -45,7 +50,6 @@
this.labelAutomaticLogoutTime = new SmartX.SmartLabel();
this.buttonDelete = new SmartX.SmartButton();
this.smartGroupBox2 = new SmartX.SmartGroupBox();
this.labelEquipment = new SmartX.SmartLabel();
this.labelMenu = new SmartX.SmartLabel();
this.labelMain = new SmartX.SmartLabel();
this.labelViewer = new SmartX.SmartLabel();
@ -55,7 +59,6 @@
this.labelMotor = new SmartX.SmartLabel();
this.labelSystem = new SmartX.SmartLabel();
this.labelDataBackup = new SmartX.SmartLabel();
this.labelUser = new SmartX.SmartLabel();
this.labelCalibration = new SmartX.SmartLabel();
this.labelCommunication = new SmartX.SmartLabel();
this.labelTime = new SmartX.SmartLabel();
@ -79,11 +82,6 @@
this.labelID = new SmartX.SmartLabel();
this.labelTitleID = new SmartX.SmartLabel();
this.buttonGroupEditor = new SmartX.SmartButton();
this.smartSeparatorLine1 = new SmartX.SmartSeparatorLine();
this.smartSeparatorLine2 = new SmartX.SmartSeparatorLine();
this.labelAutoLogoutWarning = new SmartX.SmartLabel();
this.comboBoxAccessRight = new System.Windows.Forms.ComboBox();
this.labelAccessRightAdmin = new SmartX.SmartLabel();
((System.ComponentModel.ISupportInitialize)(this.smartForm1)).BeginInit();
this.smartGroupBox1.SuspendLayout();
this.smartGroupBox2.SuspendLayout();
@ -235,6 +233,87 @@
this.smartGroupBox1.TabIndex = 192;
this.smartGroupBox1.TextColor = System.Drawing.Color.Black;
//
// comboBoxAccessRight
//
this.comboBoxAccessRight.Font = new System.Drawing.Font("새굴림", 15F, System.Drawing.FontStyle.Regular);
this.comboBoxAccessRight.Location = new System.Drawing.Point(219, 156);
this.comboBoxAccessRight.Name = "comboBoxAccessRight";
this.comboBoxAccessRight.Size = new System.Drawing.Size(291, 29);
this.comboBoxAccessRight.TabIndex = 241;
this.comboBoxAccessRight.SelectedIndexChanged += new System.EventHandler(this.comboBoxAccessRight_SelectedIndexChanged);
//
// labelAccessRightAdmin
//
this.labelAccessRightAdmin.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(228)))), ((int)(((byte)(180)))));
this.labelAccessRightAdmin.BackPictureBox = this.smartForm1;
this.labelAccessRightAdmin.BackPictureBox1 = null;
this.labelAccessRightAdmin.BackPictureBox2 = null;
this.labelAccessRightAdmin.BorderColor = System.Drawing.Color.White;
this.labelAccessRightAdmin.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelAccessRightAdmin.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold);
this.labelAccessRightAdmin.ForeColor = System.Drawing.Color.Black;
this.labelAccessRightAdmin.InitVisible = true;
this.labelAccessRightAdmin.LineSpacing = 0F;
this.labelAccessRightAdmin.Location = new System.Drawing.Point(219, 156);
this.labelAccessRightAdmin.Name = "labelAccessRightAdmin";
this.labelAccessRightAdmin.Size = new System.Drawing.Size(291, 30);
this.labelAccessRightAdmin.TabIndex = 242;
this.labelAccessRightAdmin.Text = "Administrator";
this.labelAccessRightAdmin.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left;
this.labelAccessRightAdmin.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
this.labelAccessRightAdmin.Wordwrap = false;
//
// labelAutoLogoutWarning
//
this.labelAutoLogoutWarning.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(30)))), ((int)(((byte)(30)))));
this.labelAutoLogoutWarning.BackPictureBox = this.smartForm1;
this.labelAutoLogoutWarning.BackPictureBox1 = null;
this.labelAutoLogoutWarning.BackPictureBox2 = null;
this.labelAutoLogoutWarning.BorderColor = System.Drawing.Color.White;
this.labelAutoLogoutWarning.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelAutoLogoutWarning.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
this.labelAutoLogoutWarning.ForeColor = System.Drawing.Color.DarkRed;
this.labelAutoLogoutWarning.InitVisible = true;
this.labelAutoLogoutWarning.LineSpacing = 0F;
this.labelAutoLogoutWarning.Location = new System.Drawing.Point(341, 503);
this.labelAutoLogoutWarning.Name = "labelAutoLogoutWarning";
this.labelAutoLogoutWarning.Size = new System.Drawing.Size(235, 30);
this.labelAutoLogoutWarning.TabIndex = 240;
this.labelAutoLogoutWarning.Text = "* 모든 ID에 적용됨";
this.labelAutoLogoutWarning.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left;
this.labelAutoLogoutWarning.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
this.labelAutoLogoutWarning.Wordwrap = false;
//
// smartSeparatorLine2
//
this.smartSeparatorLine2.InitVisible = true;
this.smartSeparatorLine2.Line1Color = System.Drawing.Color.DimGray;
this.smartSeparatorLine2.Line1Width = 1F;
this.smartSeparatorLine2.Line2Color = System.Drawing.Color.LightGray;
this.smartSeparatorLine2.Line2Visible = true;
this.smartSeparatorLine2.Line2Width = 1F;
this.smartSeparatorLine2.LineDirection = SmartX.SmartSeparatorLine.DIR.Horizontal;
this.smartSeparatorLine2.Location = new System.Drawing.Point(13, 487);
this.smartSeparatorLine2.Name = "smartSeparatorLine2";
this.smartSeparatorLine2.Size = new System.Drawing.Size(603, 2);
this.smartSeparatorLine2.TabIndex = 238;
this.smartSeparatorLine2.Text = "smartSeparatorLine2";
//
// smartSeparatorLine1
//
this.smartSeparatorLine1.InitVisible = true;
this.smartSeparatorLine1.Line1Color = System.Drawing.Color.DimGray;
this.smartSeparatorLine1.Line1Width = 1F;
this.smartSeparatorLine1.Line2Color = System.Drawing.Color.LightGray;
this.smartSeparatorLine1.Line2Visible = true;
this.smartSeparatorLine1.Line2Width = 1F;
this.smartSeparatorLine1.LineDirection = SmartX.SmartSeparatorLine.DIR.Horizontal;
this.smartSeparatorLine1.Location = new System.Drawing.Point(13, 388);
this.smartSeparatorLine1.Name = "smartSeparatorLine1";
this.smartSeparatorLine1.Size = new System.Drawing.Size(603, 2);
this.smartSeparatorLine1.TabIndex = 237;
this.smartSeparatorLine1.Text = "smartSeparatorLine1";
//
// labelTitleAccessRight
//
this.labelTitleAccessRight.BackColor = System.Drawing.Color.Black;
@ -456,7 +535,6 @@
//
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);
@ -466,7 +544,6 @@
this.smartGroupBox2.Controls.Add(this.labelMotor);
this.smartGroupBox2.Controls.Add(this.labelSystem);
this.smartGroupBox2.Controls.Add(this.labelDataBackup);
this.smartGroupBox2.Controls.Add(this.labelUser);
this.smartGroupBox2.Controls.Add(this.labelCalibration);
this.smartGroupBox2.Controls.Add(this.labelCommunication);
this.smartGroupBox2.Controls.Add(this.labelTime);
@ -491,24 +568,6 @@
this.smartGroupBox2.Text = "Access right";
this.smartGroupBox2.TextColor = System.Drawing.Color.Black;
//
// labelEquipment
//
this.labelEquipment.BackPictureBox = this.smartForm1;
this.labelEquipment.BackPictureBox1 = null;
this.labelEquipment.BackPictureBox2 = null;
this.labelEquipment.BorderColor = System.Drawing.Color.Black;
this.labelEquipment.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelEquipment.InitVisible = true;
this.labelEquipment.LineSpacing = 0F;
this.labelEquipment.Location = new System.Drawing.Point(291, 103);
this.labelEquipment.Name = "labelEquipment";
this.labelEquipment.Size = new System.Drawing.Size(130, 18);
this.labelEquipment.TabIndex = 264;
this.labelEquipment.Text = "Equipment";
this.labelEquipment.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left;
this.labelEquipment.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
this.labelEquipment.Wordwrap = false;
//
// labelMenu
//
this.labelMenu.BackColor = System.Drawing.Color.Black;
@ -560,7 +619,7 @@
this.labelViewer.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelViewer.InitVisible = true;
this.labelViewer.LineSpacing = 0F;
this.labelViewer.Location = new System.Drawing.Point(427, 151);
this.labelViewer.Location = new System.Drawing.Point(427, 103);
this.labelViewer.Name = "labelViewer";
this.labelViewer.Size = new System.Drawing.Size(130, 18);
this.labelViewer.TabIndex = 261;
@ -578,7 +637,7 @@
this.labelStatistics.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelStatistics.InitVisible = true;
this.labelStatistics.LineSpacing = 0F;
this.labelStatistics.Location = new System.Drawing.Point(427, 127);
this.labelStatistics.Location = new System.Drawing.Point(427, 79);
this.labelStatistics.Name = "labelStatistics";
this.labelStatistics.Size = new System.Drawing.Size(130, 18);
this.labelStatistics.TabIndex = 260;
@ -596,7 +655,7 @@
this.labelUpdate.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelUpdate.InitVisible = true;
this.labelUpdate.LineSpacing = 0F;
this.labelUpdate.Location = new System.Drawing.Point(291, 127);
this.labelUpdate.Location = new System.Drawing.Point(291, 103);
this.labelUpdate.Name = "labelUpdate";
this.labelUpdate.Size = new System.Drawing.Size(130, 18);
this.labelUpdate.TabIndex = 259;
@ -668,7 +727,7 @@
this.labelDataBackup.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelDataBackup.InitVisible = true;
this.labelDataBackup.LineSpacing = 0F;
this.labelDataBackup.Location = new System.Drawing.Point(427, 103);
this.labelDataBackup.Location = new System.Drawing.Point(427, 55);
this.labelDataBackup.Name = "labelDataBackup";
this.labelDataBackup.Size = new System.Drawing.Size(130, 18);
this.labelDataBackup.TabIndex = 255;
@ -677,24 +736,6 @@
this.labelDataBackup.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
this.labelDataBackup.Wordwrap = false;
//
// labelUser
//
this.labelUser.BackPictureBox = this.smartForm1;
this.labelUser.BackPictureBox1 = null;
this.labelUser.BackPictureBox2 = null;
this.labelUser.BorderColor = System.Drawing.Color.Black;
this.labelUser.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelUser.InitVisible = true;
this.labelUser.LineSpacing = 0F;
this.labelUser.Location = new System.Drawing.Point(427, 79);
this.labelUser.Name = "labelUser";
this.labelUser.Size = new System.Drawing.Size(130, 18);
this.labelUser.TabIndex = 254;
this.labelUser.Text = "User";
this.labelUser.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left;
this.labelUser.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
this.labelUser.Wordwrap = false;
//
// labelCalibration
//
this.labelCalibration.BackPictureBox = this.smartForm1;
@ -740,7 +781,7 @@
this.labelTime.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelTime.InitVisible = true;
this.labelTime.LineSpacing = 0F;
this.labelTime.Location = new System.Drawing.Point(427, 55);
this.labelTime.Location = new System.Drawing.Point(291, 151);
this.labelTime.Name = "labelTime";
this.labelTime.Size = new System.Drawing.Size(130, 18);
this.labelTime.TabIndex = 251;
@ -758,7 +799,7 @@
this.labelInitialization.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelInitialization.InitVisible = true;
this.labelInitialization.LineSpacing = 0F;
this.labelInitialization.Location = new System.Drawing.Point(291, 151);
this.labelInitialization.Location = new System.Drawing.Point(291, 127);
this.labelInitialization.Name = "labelInitialization";
this.labelInitialization.Size = new System.Drawing.Size(130, 18);
this.labelInitialization.TabIndex = 250;
@ -1175,87 +1216,6 @@
this.buttonGroupEditor.UpImage = ((System.Drawing.Image)(resources.GetObject("buttonGroupEditor.UpImage")));
this.buttonGroupEditor.Click += new System.EventHandler(this.buttonGroupEditor_Click);
//
// smartSeparatorLine1
//
this.smartSeparatorLine1.InitVisible = true;
this.smartSeparatorLine1.Line1Color = System.Drawing.Color.DimGray;
this.smartSeparatorLine1.Line1Width = 1F;
this.smartSeparatorLine1.Line2Color = System.Drawing.Color.LightGray;
this.smartSeparatorLine1.Line2Visible = true;
this.smartSeparatorLine1.Line2Width = 1F;
this.smartSeparatorLine1.LineDirection = SmartX.SmartSeparatorLine.DIR.Horizontal;
this.smartSeparatorLine1.Location = new System.Drawing.Point(13, 388);
this.smartSeparatorLine1.Name = "smartSeparatorLine1";
this.smartSeparatorLine1.Size = new System.Drawing.Size(603, 2);
this.smartSeparatorLine1.TabIndex = 237;
this.smartSeparatorLine1.Text = "smartSeparatorLine1";
//
// smartSeparatorLine2
//
this.smartSeparatorLine2.InitVisible = true;
this.smartSeparatorLine2.Line1Color = System.Drawing.Color.DimGray;
this.smartSeparatorLine2.Line1Width = 1F;
this.smartSeparatorLine2.Line2Color = System.Drawing.Color.LightGray;
this.smartSeparatorLine2.Line2Visible = true;
this.smartSeparatorLine2.Line2Width = 1F;
this.smartSeparatorLine2.LineDirection = SmartX.SmartSeparatorLine.DIR.Horizontal;
this.smartSeparatorLine2.Location = new System.Drawing.Point(13, 487);
this.smartSeparatorLine2.Name = "smartSeparatorLine2";
this.smartSeparatorLine2.Size = new System.Drawing.Size(603, 2);
this.smartSeparatorLine2.TabIndex = 238;
this.smartSeparatorLine2.Text = "smartSeparatorLine2";
//
// labelAutoLogoutWarning
//
this.labelAutoLogoutWarning.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(30)))), ((int)(((byte)(30)))));
this.labelAutoLogoutWarning.BackPictureBox = this.smartForm1;
this.labelAutoLogoutWarning.BackPictureBox1 = null;
this.labelAutoLogoutWarning.BackPictureBox2 = null;
this.labelAutoLogoutWarning.BorderColor = System.Drawing.Color.White;
this.labelAutoLogoutWarning.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelAutoLogoutWarning.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
this.labelAutoLogoutWarning.ForeColor = System.Drawing.Color.DarkRed;
this.labelAutoLogoutWarning.InitVisible = true;
this.labelAutoLogoutWarning.LineSpacing = 0F;
this.labelAutoLogoutWarning.Location = new System.Drawing.Point(341, 503);
this.labelAutoLogoutWarning.Name = "labelAutoLogoutWarning";
this.labelAutoLogoutWarning.Size = new System.Drawing.Size(235, 30);
this.labelAutoLogoutWarning.TabIndex = 240;
this.labelAutoLogoutWarning.Text = "* 모든 ID에 적용됨";
this.labelAutoLogoutWarning.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left;
this.labelAutoLogoutWarning.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
this.labelAutoLogoutWarning.Wordwrap = false;
//
// comboBoxAccessRight
//
this.comboBoxAccessRight.Font = new System.Drawing.Font("새굴림", 15F, System.Drawing.FontStyle.Regular);
this.comboBoxAccessRight.Location = new System.Drawing.Point(219, 156);
this.comboBoxAccessRight.Name = "comboBoxAccessRight";
this.comboBoxAccessRight.Size = new System.Drawing.Size(291, 29);
this.comboBoxAccessRight.TabIndex = 241;
this.comboBoxAccessRight.SelectedIndexChanged += new System.EventHandler(this.comboBoxAccessRight_SelectedIndexChanged);
//
// labelAccessRightAdmin
//
this.labelAccessRightAdmin.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(228)))), ((int)(((byte)(180)))));
this.labelAccessRightAdmin.BackPictureBox = this.smartForm1;
this.labelAccessRightAdmin.BackPictureBox1 = null;
this.labelAccessRightAdmin.BackPictureBox2 = null;
this.labelAccessRightAdmin.BorderColor = System.Drawing.Color.White;
this.labelAccessRightAdmin.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelAccessRightAdmin.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold);
this.labelAccessRightAdmin.ForeColor = System.Drawing.Color.Black;
this.labelAccessRightAdmin.InitVisible = true;
this.labelAccessRightAdmin.LineSpacing = 0F;
this.labelAccessRightAdmin.Location = new System.Drawing.Point(219, 156);
this.labelAccessRightAdmin.Name = "labelAccessRightAdmin";
this.labelAccessRightAdmin.Size = new System.Drawing.Size(291, 30);
this.labelAccessRightAdmin.TabIndex = 242;
this.labelAccessRightAdmin.Text = "Administrator";
this.labelAccessRightAdmin.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left;
this.labelAccessRightAdmin.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
this.labelAccessRightAdmin.Wordwrap = false;
//
// FormUserEditor
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
@ -1308,7 +1268,6 @@
private SmartX.SmartLabel labelTitleMin;
private SmartX.SmartLabel labelTitleDayPassword;
private SmartX.SmartLabel labelTitleAccessRight;
private SmartX.SmartLabel labelEquipment;
private SmartX.SmartLabel labelMenu;
private SmartX.SmartLabel labelMain;
private SmartX.SmartLabel labelViewer;
@ -1318,7 +1277,6 @@
private SmartX.SmartLabel labelMotor;
private SmartX.SmartLabel labelSystem;
private SmartX.SmartLabel labelDataBackup;
private SmartX.SmartLabel labelUser;
private SmartX.SmartLabel labelCalibration;
private SmartX.SmartLabel labelCommunication;
private SmartX.SmartLabel labelTime;