Ejemplo n.º 1
0
 //DataLayoutControl
 public void SaveDataLayoutControl(DevExpress.XtraDataLayout.DataLayoutControl dataLayoutControl, string key)
 {
     try
     {
         key += DataLayout;
         System.IO.MemoryStream ms = new System.IO.MemoryStream();
         dataLayoutControl.SaveLayoutToStream(ms);
         StreamReader reader = new StreamReader(ms);
         ms.Position = 0;
         string strlayouts = reader.ReadToEnd();
         PropertyService.Set <string>(key, strlayouts);
     }
     catch (Exception ex)
     {
         MessageService.ShowException(ex);
     }
 }
Ejemplo n.º 2
0
 public void RestoreDataLayoutControl(DevExpress.XtraDataLayout.DataLayoutControl dataLayoutControl, string key)
 {
     try
     {
         key += DataLayout;
         string layout = PropertyService.Get(key);
         if (layout != string.Empty)
         {
             System.IO.MemoryStream ms     = new System.IO.MemoryStream();
             System.IO.StreamWriter writer = new System.IO.StreamWriter(ms);
             writer.AutoFlush = true;
             writer.Write(layout);
             ms.Position = 0;
             dataLayoutControl.RestoreLayoutFromStream(ms);
         }
     }
     catch (Exception ex)
     {
         MessageService.ShowException(ex);
     }
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(UserEditForm));
     this.bindingSource1 = new System.Windows.Forms.BindingSource();
     this.dataLayoutControl1 = new DevExpress.XtraDataLayout.DataLayoutControl();
     this.btnClose = new DevExpress.XtraEditors.SimpleButton();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.UserNoTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.UserNameTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.IsLockCheckEdit = new DevExpress.XtraEditors.CheckEdit();
     this.CreateNameTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.LastModifyNameTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.RemarkTextEdit = new DevExpress.XtraEditors.MemoEdit();
     this.CreateDateTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.LastModifyDateTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.ItemForUserNo = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForIsLock = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForRemark = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForCreateName = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForLastModifyName = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForUserName = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem1 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.emptySpaceItem2 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForCreateDate = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForLastModifyDate = new DevExpress.XtraLayout.LayoutControlItem();
     this.formLoadErrorExit1 = new FengSharp.OneCardAccess.Infrastructure.WinForm.Components.FormLoadErrorExit();
     this.formStyleSelect1 = new FengSharp.OneCardAccess.Infrastructure.WinForm.Components.FormStyleSelect();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataLayoutControl1)).BeginInit();
     this.dataLayoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.UserNoTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.UserNameTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IsLockCheckEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.CreateNameTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LastModifyNameTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.RemarkTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.CreateDateTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LastModifyDateTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForUserNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForIsLock)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForRemark)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForCreateName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForLastModifyName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForUserName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForCreateDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForLastModifyDate)).BeginInit();
     this.SuspendLayout();
     //
     // bindingSource1
     //
     this.bindingSource1.DataSource = typeof(FengSharp.OneCardAccess.Domain.RBACModule.Entity.UserWithCreateAndModify);
     //
     // dataLayoutControl1
     //
     this.dataLayoutControl1.Controls.Add(this.btnClose);
     this.dataLayoutControl1.Controls.Add(this.btnSave);
     this.dataLayoutControl1.Controls.Add(this.UserNoTextEdit);
     this.dataLayoutControl1.Controls.Add(this.UserNameTextEdit);
     this.dataLayoutControl1.Controls.Add(this.IsLockCheckEdit);
     this.dataLayoutControl1.Controls.Add(this.CreateNameTextEdit);
     this.dataLayoutControl1.Controls.Add(this.LastModifyNameTextEdit);
     this.dataLayoutControl1.Controls.Add(this.RemarkTextEdit);
     this.dataLayoutControl1.Controls.Add(this.CreateDateTextEdit);
     this.dataLayoutControl1.Controls.Add(this.LastModifyDateTextEdit);
     this.dataLayoutControl1.DataSource = this.bindingSource1;
     this.dataLayoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dataLayoutControl1.Location = new System.Drawing.Point(0, 0);
     this.dataLayoutControl1.Name = "dataLayoutControl1";
     this.dataLayoutControl1.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = new System.Drawing.Rectangle(637, 278, 470, 497);
     this.dataLayoutControl1.OptionsItemText.TextAlignMode = DevExpress.XtraLayout.TextAlignMode.AlignInGroups;
     this.dataLayoutControl1.Root = this.layoutControlGroup1;
     this.dataLayoutControl1.Size = new System.Drawing.Size(522, 280);
     this.dataLayoutControl1.TabIndex = 0;
     this.dataLayoutControl1.Text = "dataLayoutControl1";
     //
     // btnClose
     //
     this.btnClose.Image = ((System.Drawing.Image)(resources.GetObject("btnClose.Image")));
     this.btnClose.ImageToTextAlignment = DevExpress.XtraEditors.ImageAlignToText.LeftCenter;
     this.btnClose.Location = new System.Drawing.Point(410, 242);
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new System.Drawing.Size(100, 26);
     this.btnClose.StyleController = this.dataLayoutControl1;
     this.btnClose.TabIndex = 13;
     this.btnClose.Text = "关闭(&C)";
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
     //
     // btnSave
     //
     this.btnSave.Image = ((System.Drawing.Image)(resources.GetObject("btnSave.Image")));
     this.btnSave.ImageToTextAlignment = DevExpress.XtraEditors.ImageAlignToText.LeftCenter;
     this.btnSave.Location = new System.Drawing.Point(306, 242);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(100, 26);
     this.btnSave.StyleController = this.dataLayoutControl1;
     this.btnSave.TabIndex = 12;
     this.btnSave.Text = "保存(&S)";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // UserNoTextEdit
     //
     this.UserNoTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "UserNo", true));
     this.UserNoTextEdit.Location = new System.Drawing.Point(87, 12);
     this.UserNoTextEdit.Name = "UserNoTextEdit";
     this.UserNoTextEdit.Properties.NullValuePrompt = null;
     this.UserNoTextEdit.Size = new System.Drawing.Size(172, 20);
     this.UserNoTextEdit.StyleController = this.dataLayoutControl1;
     this.UserNoTextEdit.TabIndex = 4;
     //
     // UserNameTextEdit
     //
     this.UserNameTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "UserName", true));
     this.UserNameTextEdit.Location = new System.Drawing.Point(338, 12);
     this.UserNameTextEdit.Name = "UserNameTextEdit";
     this.UserNameTextEdit.Properties.NullValuePrompt = null;
     this.UserNameTextEdit.Size = new System.Drawing.Size(172, 20);
     this.UserNameTextEdit.StyleController = this.dataLayoutControl1;
     this.UserNameTextEdit.TabIndex = 5;
     //
     // IsLockCheckEdit
     //
     this.IsLockCheckEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "IsLock", true));
     this.IsLockCheckEdit.Location = new System.Drawing.Point(87, 36);
     this.IsLockCheckEdit.Name = "IsLockCheckEdit";
     this.IsLockCheckEdit.Properties.Caption = "是否锁定";
     this.IsLockCheckEdit.Size = new System.Drawing.Size(172, 19);
     this.IsLockCheckEdit.StyleController = this.dataLayoutControl1;
     this.IsLockCheckEdit.TabIndex = 6;
     //
     // CreateNameTextEdit
     //
     this.CreateNameTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "CreateName", true));
     this.CreateNameTextEdit.Location = new System.Drawing.Point(87, 194);
     this.CreateNameTextEdit.Name = "CreateNameTextEdit";
     this.CreateNameTextEdit.Properties.NullValuePrompt = null;
     this.CreateNameTextEdit.Properties.ReadOnly = true;
     this.CreateNameTextEdit.Size = new System.Drawing.Size(172, 20);
     this.CreateNameTextEdit.StyleController = this.dataLayoutControl1;
     this.CreateNameTextEdit.TabIndex = 10;
     //
     // LastModifyNameTextEdit
     //
     this.LastModifyNameTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "LastModifyName", true));
     this.LastModifyNameTextEdit.Location = new System.Drawing.Point(87, 218);
     this.LastModifyNameTextEdit.Name = "LastModifyNameTextEdit";
     this.LastModifyNameTextEdit.Properties.NullValuePrompt = null;
     this.LastModifyNameTextEdit.Properties.ReadOnly = true;
     this.LastModifyNameTextEdit.Size = new System.Drawing.Size(172, 20);
     this.LastModifyNameTextEdit.StyleController = this.dataLayoutControl1;
     this.LastModifyNameTextEdit.TabIndex = 11;
     //
     // RemarkTextEdit
     //
     this.RemarkTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "Remark", true));
     this.RemarkTextEdit.Location = new System.Drawing.Point(87, 59);
     this.RemarkTextEdit.Name = "RemarkTextEdit";
     this.RemarkTextEdit.Properties.NullValuePrompt = null;
     this.RemarkTextEdit.Size = new System.Drawing.Size(423, 131);
     this.RemarkTextEdit.StyleController = this.dataLayoutControl1;
     this.RemarkTextEdit.TabIndex = 7;
     //
     // CreateDateTextEdit
     //
     this.CreateDateTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "CreateDate", true));
     this.CreateDateTextEdit.Location = new System.Drawing.Point(338, 194);
     this.CreateDateTextEdit.Name = "CreateDateTextEdit";
     this.CreateDateTextEdit.Properties.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm:ss";
     this.CreateDateTextEdit.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.CreateDateTextEdit.Properties.EditFormat.FormatString = "yyyy-MM-dd HH:mm:ss";
     this.CreateDateTextEdit.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.CreateDateTextEdit.Properties.Mask.EditMask = "yyyy-MM-dd HH:mm:ss";
     this.CreateDateTextEdit.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
     this.CreateDateTextEdit.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.CreateDateTextEdit.Properties.NullValuePrompt = null;
     this.CreateDateTextEdit.Properties.ReadOnly = true;
     this.CreateDateTextEdit.Size = new System.Drawing.Size(172, 20);
     this.CreateDateTextEdit.StyleController = this.dataLayoutControl1;
     this.CreateDateTextEdit.TabIndex = 8;
     //
     // LastModifyDateTextEdit
     //
     this.LastModifyDateTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "LastModifyDate", true));
     this.LastModifyDateTextEdit.Location = new System.Drawing.Point(338, 218);
     this.LastModifyDateTextEdit.Name = "LastModifyDateTextEdit";
     this.LastModifyDateTextEdit.Properties.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm:ss";
     this.LastModifyDateTextEdit.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.LastModifyDateTextEdit.Properties.EditFormat.FormatString = "yyyy-MM-dd HH:mm:ss";
     this.LastModifyDateTextEdit.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.LastModifyDateTextEdit.Properties.Mask.EditMask = "yyyy-MM-dd HH:mm:ss";
     this.LastModifyDateTextEdit.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
     this.LastModifyDateTextEdit.Properties.NullValuePrompt = null;
     this.LastModifyDateTextEdit.Properties.ReadOnly = true;
     this.LastModifyDateTextEdit.Size = new System.Drawing.Size(172, 20);
     this.LastModifyDateTextEdit.StyleController = this.dataLayoutControl1;
     this.LastModifyDateTextEdit.TabIndex = 9;
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlGroup2});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "Root";
     this.layoutControlGroup1.Padding = new DevExpress.XtraLayout.Utils.Padding(3, 3, 3, 3);
     this.layoutControlGroup1.Size = new System.Drawing.Size(522, 280);
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlGroup2
     //
     this.layoutControlGroup2.AllowDrawBackground = false;
     this.layoutControlGroup2.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.ItemForUserNo,
     this.ItemForIsLock,
     this.ItemForRemark,
     this.ItemForCreateName,
     this.ItemForLastModifyName,
     this.ItemForUserName,
     this.emptySpaceItem1,
     this.emptySpaceItem2,
     this.layoutControlItem2,
     this.layoutControlItem1,
     this.ItemForCreateDate,
     this.ItemForLastModifyDate});
     this.layoutControlGroup2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup2.Name = "autoGeneratedGroup0";
     this.layoutControlGroup2.Padding = new DevExpress.XtraLayout.Utils.Padding(3, 3, 3, 3);
     this.layoutControlGroup2.Size = new System.Drawing.Size(514, 272);
     this.layoutControlGroup2.TextVisible = false;
     //
     // ItemForUserNo
     //
     this.ItemForUserNo.Control = this.UserNoTextEdit;
     this.ItemForUserNo.Location = new System.Drawing.Point(0, 0);
     this.ItemForUserNo.Name = "ItemForUserNo";
     this.ItemForUserNo.Size = new System.Drawing.Size(251, 24);
     this.ItemForUserNo.Text = "用户编号";
     this.ItemForUserNo.TextSize = new System.Drawing.Size(72, 13);
     //
     // ItemForIsLock
     //
     this.ItemForIsLock.Control = this.IsLockCheckEdit;
     this.ItemForIsLock.Location = new System.Drawing.Point(0, 24);
     this.ItemForIsLock.Name = "ItemForIsLock";
     this.ItemForIsLock.Size = new System.Drawing.Size(251, 23);
     this.ItemForIsLock.Text = " ";
     this.ItemForIsLock.TextSize = new System.Drawing.Size(72, 13);
     //
     // ItemForRemark
     //
     this.ItemForRemark.Control = this.RemarkTextEdit;
     this.ItemForRemark.Location = new System.Drawing.Point(0, 47);
     this.ItemForRemark.Name = "ItemForRemark";
     this.ItemForRemark.Size = new System.Drawing.Size(502, 135);
     this.ItemForRemark.Text = "备注";
     this.ItemForRemark.TextSize = new System.Drawing.Size(72, 13);
     //
     // ItemForCreateName
     //
     this.ItemForCreateName.Control = this.CreateNameTextEdit;
     this.ItemForCreateName.Location = new System.Drawing.Point(0, 182);
     this.ItemForCreateName.Name = "ItemForCreateName";
     this.ItemForCreateName.Size = new System.Drawing.Size(251, 24);
     this.ItemForCreateName.Text = "创建人";
     this.ItemForCreateName.TextSize = new System.Drawing.Size(72, 13);
     //
     // ItemForLastModifyName
     //
     this.ItemForLastModifyName.Control = this.LastModifyNameTextEdit;
     this.ItemForLastModifyName.Location = new System.Drawing.Point(0, 206);
     this.ItemForLastModifyName.Name = "ItemForLastModifyName";
     this.ItemForLastModifyName.Size = new System.Drawing.Size(251, 24);
     this.ItemForLastModifyName.Text = "最后修改人";
     this.ItemForLastModifyName.TextSize = new System.Drawing.Size(72, 13);
     //
     // ItemForUserName
     //
     this.ItemForUserName.Control = this.UserNameTextEdit;
     this.ItemForUserName.Location = new System.Drawing.Point(251, 0);
     this.ItemForUserName.Name = "ItemForUserName";
     this.ItemForUserName.Size = new System.Drawing.Size(251, 24);
     this.ItemForUserName.Text = "用户名";
     this.ItemForUserName.TextSize = new System.Drawing.Size(72, 13);
     //
     // emptySpaceItem1
     //
     this.emptySpaceItem1.AllowHotTrack = false;
     this.emptySpaceItem1.Location = new System.Drawing.Point(0, 230);
     this.emptySpaceItem1.Name = "emptySpaceItem1";
     this.emptySpaceItem1.Size = new System.Drawing.Size(294, 30);
     this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
     //
     // emptySpaceItem2
     //
     this.emptySpaceItem2.AllowHotTrack = false;
     this.emptySpaceItem2.Location = new System.Drawing.Point(251, 24);
     this.emptySpaceItem2.Name = "emptySpaceItem2";
     this.emptySpaceItem2.Size = new System.Drawing.Size(251, 23);
     this.emptySpaceItem2.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.btnClose;
     this.layoutControlItem2.Location = new System.Drawing.Point(398, 230);
     this.layoutControlItem2.MaxSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem2.MinSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(104, 30);
     this.layoutControlItem2.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem2.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem2.TextVisible = false;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.btnSave;
     this.layoutControlItem1.Location = new System.Drawing.Point(294, 230);
     this.layoutControlItem1.MaxSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem1.MinSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(104, 30);
     this.layoutControlItem1.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem1.TextVisible = false;
     //
     // ItemForCreateDate
     //
     this.ItemForCreateDate.Control = this.CreateDateTextEdit;
     this.ItemForCreateDate.Location = new System.Drawing.Point(251, 182);
     this.ItemForCreateDate.Name = "ItemForCreateDate";
     this.ItemForCreateDate.Size = new System.Drawing.Size(251, 24);
     this.ItemForCreateDate.Text = "创建日期";
     this.ItemForCreateDate.TextSize = new System.Drawing.Size(72, 13);
     //
     // ItemForLastModifyDate
     //
     this.ItemForLastModifyDate.Control = this.LastModifyDateTextEdit;
     this.ItemForLastModifyDate.Location = new System.Drawing.Point(251, 206);
     this.ItemForLastModifyDate.Name = "ItemForLastModifyDate";
     this.ItemForLastModifyDate.Size = new System.Drawing.Size(251, 24);
     this.ItemForLastModifyDate.Text = "最后修改日期";
     this.ItemForLastModifyDate.TextSize = new System.Drawing.Size(72, 13);
     //
     // formStyleSelect1
     //
     this.formStyleSelect1.Form = this;
     //
     // UserEditForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(522, 280);
     this.Controls.Add(this.dataLayoutControl1);
     this.formLoadErrorExit1.SetEnableLoadError(this, true);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "UserEditForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "用户信息";
     this.Load += new System.EventHandler(this.UserEditForm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataLayoutControl1)).EndInit();
     this.dataLayoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.UserNoTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.UserNameTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IsLockCheckEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.CreateNameTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LastModifyNameTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.RemarkTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.CreateDateTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LastModifyDateTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForUserNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForIsLock)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForRemark)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForCreateName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForLastModifyName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForUserName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForCreateDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForLastModifyDate)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ActionManageForm));
     this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.dataLayoutControl1 = new DevExpress.XtraDataLayout.DataLayoutControl();
     this.btnAdd = new DevExpress.XtraEditors.SimpleButton();
     this.btnAddChild = new DevExpress.XtraEditors.SimpleButton();
     this.btnDel = new DevExpress.XtraEditors.SimpleButton();
     this.btnClose = new DevExpress.XtraEditors.SimpleButton();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.ActionNoTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.bindingSource1 = new System.Windows.Forms.BindingSource();
     this.ActionNameTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.ParentActionNoTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.OrderSpinEdit = new DevExpress.XtraEditors.SpinEdit();
     this.RemarkMemoEdit = new DevExpress.XtraEditors.MemoEdit();
     this.ActionTypeTextEdit = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.Root = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.ItemForActionNo = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForActionName = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForParentActionNo = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForOrder = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForActionType = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForRemark = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem1 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem6 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem7 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem8 = new DevExpress.XtraLayout.LayoutControlItem();
     this.treeList1 = new DevExpress.XtraTreeList.TreeList();
     this.tcolActionName = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.formLoadErrorExit1 = new FengSharp.OneCardAccess.Infrastructure.WinForm.Components.FormLoadErrorExit();
     this.treeList_ShowLine1 = new FengSharp.WinForm.Dev.Components.TreeList_ShowLine();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataLayoutControl1)).BeginInit();
     this.dataLayoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ActionNoTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ActionNameTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ParentActionNoTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.OrderSpinEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.RemarkMemoEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ActionTypeTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Root)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForActionNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForActionName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForParentActionNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForOrder)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForActionType)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForRemark)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     this.SuspendLayout();
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.dataLayoutControl1);
     this.layoutControl1.Controls.Add(this.treeList1);
     this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.Location = new System.Drawing.Point(0, 0);
     this.layoutControl1.Name = "layoutControl1";
     this.layoutControl1.OptionsItemText.TextAlignMode = DevExpress.XtraLayout.TextAlignMode.AlignInGroups;
     this.layoutControl1.Root = this.layoutControlGroup1;
     this.layoutControl1.Size = new System.Drawing.Size(940, 559);
     this.layoutControl1.TabIndex = 0;
     this.layoutControl1.Text = "layoutControl1";
     //
     // dataLayoutControl1
     //
     this.dataLayoutControl1.Controls.Add(this.btnAdd);
     this.dataLayoutControl1.Controls.Add(this.btnAddChild);
     this.dataLayoutControl1.Controls.Add(this.btnDel);
     this.dataLayoutControl1.Controls.Add(this.btnClose);
     this.dataLayoutControl1.Controls.Add(this.btnSave);
     this.dataLayoutControl1.Controls.Add(this.ActionNoTextEdit);
     this.dataLayoutControl1.Controls.Add(this.ActionNameTextEdit);
     this.dataLayoutControl1.Controls.Add(this.ParentActionNoTextEdit);
     this.dataLayoutControl1.Controls.Add(this.OrderSpinEdit);
     this.dataLayoutControl1.Controls.Add(this.RemarkMemoEdit);
     this.dataLayoutControl1.Controls.Add(this.ActionTypeTextEdit);
     this.dataLayoutControl1.DataSource = this.bindingSource1;
     this.dataLayoutControl1.Location = new System.Drawing.Point(237, 6);
     this.dataLayoutControl1.Name = "dataLayoutControl1";
     this.dataLayoutControl1.OptionsItemText.TextAlignMode = DevExpress.XtraLayout.TextAlignMode.AlignInGroups;
     this.dataLayoutControl1.Root = this.Root;
     this.dataLayoutControl1.Size = new System.Drawing.Size(697, 547);
     this.dataLayoutControl1.TabIndex = 5;
     this.dataLayoutControl1.Text = "dataLayoutControl1";
     //
     // btnAdd
     //
     this.btnAdd.Image = ((System.Drawing.Image)(resources.GetObject("btnAdd.Image")));
     this.btnAdd.ImageToTextAlignment = DevExpress.XtraEditors.ImageAlignToText.LeftCenter;
     this.btnAdd.Location = new System.Drawing.Point(169, 509);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(100, 26);
     this.btnAdd.StyleController = this.dataLayoutControl1;
     this.btnAdd.TabIndex = 14;
     this.btnAdd.Text = "新增同级";
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // btnAddChild
     //
     this.btnAddChild.Image = ((System.Drawing.Image)(resources.GetObject("btnAddChild.Image")));
     this.btnAddChild.ImageToTextAlignment = DevExpress.XtraEditors.ImageAlignToText.LeftCenter;
     this.btnAddChild.Location = new System.Drawing.Point(273, 509);
     this.btnAddChild.Name = "btnAddChild";
     this.btnAddChild.Size = new System.Drawing.Size(100, 26);
     this.btnAddChild.StyleController = this.dataLayoutControl1;
     this.btnAddChild.TabIndex = 15;
     this.btnAddChild.Text = "新增子级";
     this.btnAddChild.Click += new System.EventHandler(this.btnAddChild_Click);
     //
     // btnDel
     //
     this.btnDel.Image = ((System.Drawing.Image)(resources.GetObject("btnDel.Image")));
     this.btnDel.ImageToTextAlignment = DevExpress.XtraEditors.ImageAlignToText.LeftCenter;
     this.btnDel.Location = new System.Drawing.Point(377, 509);
     this.btnDel.Name = "btnDel";
     this.btnDel.Size = new System.Drawing.Size(100, 26);
     this.btnDel.StyleController = this.dataLayoutControl1;
     this.btnDel.TabIndex = 16;
     this.btnDel.Text = "删除(&D)";
     this.btnDel.Click += new System.EventHandler(this.btnDel_Click);
     //
     // btnClose
     //
     this.btnClose.Image = ((System.Drawing.Image)(resources.GetObject("btnClose.Image")));
     this.btnClose.ImageToTextAlignment = DevExpress.XtraEditors.ImageAlignToText.LeftCenter;
     this.btnClose.Location = new System.Drawing.Point(585, 509);
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new System.Drawing.Size(100, 26);
     this.btnClose.StyleController = this.dataLayoutControl1;
     this.btnClose.TabIndex = 14;
     this.btnClose.Text = "关闭(&C)";
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
     //
     // btnSave
     //
     this.btnSave.Image = ((System.Drawing.Image)(resources.GetObject("btnSave.Image")));
     this.btnSave.ImageToTextAlignment = DevExpress.XtraEditors.ImageAlignToText.LeftCenter;
     this.btnSave.Location = new System.Drawing.Point(481, 509);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(100, 26);
     this.btnSave.StyleController = this.dataLayoutControl1;
     this.btnSave.TabIndex = 13;
     this.btnSave.Text = "保存(&S)";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // ActionNoTextEdit
     //
     this.ActionNoTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "ActionNo", true));
     this.ActionNoTextEdit.Location = new System.Drawing.Point(63, 12);
     this.ActionNoTextEdit.Name = "ActionNoTextEdit";
     this.ActionNoTextEdit.Properties.NullValuePrompt = null;
     this.ActionNoTextEdit.Size = new System.Drawing.Size(622, 20);
     this.ActionNoTextEdit.StyleController = this.dataLayoutControl1;
     this.ActionNoTextEdit.TabIndex = 4;
     //
     // bindingSource1
     //
     this.bindingSource1.DataSource = typeof(FengSharp.OneCardAccess.Domain.RBACModule.Entity.ActionEntity);
     //
     // ActionNameTextEdit
     //
     this.ActionNameTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "ActionName", true));
     this.ActionNameTextEdit.Location = new System.Drawing.Point(63, 36);
     this.ActionNameTextEdit.Name = "ActionNameTextEdit";
     this.ActionNameTextEdit.Properties.NullValuePrompt = null;
     this.ActionNameTextEdit.Size = new System.Drawing.Size(622, 20);
     this.ActionNameTextEdit.StyleController = this.dataLayoutControl1;
     this.ActionNameTextEdit.TabIndex = 5;
     //
     // ParentActionNoTextEdit
     //
     this.ParentActionNoTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "ParentActionNo", true));
     this.ParentActionNoTextEdit.Location = new System.Drawing.Point(63, 60);
     this.ParentActionNoTextEdit.Name = "ParentActionNoTextEdit";
     this.ParentActionNoTextEdit.Properties.NullValuePrompt = null;
     this.ParentActionNoTextEdit.Size = new System.Drawing.Size(622, 20);
     this.ParentActionNoTextEdit.StyleController = this.dataLayoutControl1;
     this.ParentActionNoTextEdit.TabIndex = 6;
     //
     // OrderSpinEdit
     //
     this.OrderSpinEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "Order", true));
     this.OrderSpinEdit.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.OrderSpinEdit.Location = new System.Drawing.Point(63, 84);
     this.OrderSpinEdit.Name = "OrderSpinEdit";
     this.OrderSpinEdit.Properties.Appearance.Options.UseTextOptions = true;
     this.OrderSpinEdit.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.OrderSpinEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.OrderSpinEdit.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Default;
     this.OrderSpinEdit.Properties.Mask.EditMask = "N0";
     this.OrderSpinEdit.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.OrderSpinEdit.Properties.NullValuePrompt = null;
     this.OrderSpinEdit.Size = new System.Drawing.Size(622, 20);
     this.OrderSpinEdit.StyleController = this.dataLayoutControl1;
     this.OrderSpinEdit.TabIndex = 10;
     //
     // RemarkMemoEdit
     //
     this.RemarkMemoEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "Remark", true));
     this.RemarkMemoEdit.Location = new System.Drawing.Point(63, 132);
     this.RemarkMemoEdit.Name = "RemarkMemoEdit";
     this.RemarkMemoEdit.Properties.NullValuePrompt = null;
     this.RemarkMemoEdit.Size = new System.Drawing.Size(622, 373);
     this.RemarkMemoEdit.StyleController = this.dataLayoutControl1;
     this.RemarkMemoEdit.TabIndex = 11;
     //
     // ActionTypeTextEdit
     //
     this.ActionTypeTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "ActionType", true));
     this.ActionTypeTextEdit.Location = new System.Drawing.Point(63, 108);
     this.ActionTypeTextEdit.Name = "ActionTypeTextEdit";
     this.ActionTypeTextEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.ActionTypeTextEdit.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("module", "module", -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("auth", "auth", -1)});
     this.ActionTypeTextEdit.Properties.NullValuePrompt = null;
     this.ActionTypeTextEdit.Size = new System.Drawing.Size(622, 20);
     this.ActionTypeTextEdit.StyleController = this.dataLayoutControl1;
     this.ActionTypeTextEdit.TabIndex = 8;
     //
     // Root
     //
     this.Root.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.Root.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlGroup2});
     this.Root.Location = new System.Drawing.Point(0, 0);
     this.Root.Name = "Root";
     this.Root.Padding = new DevExpress.XtraLayout.Utils.Padding(3, 3, 3, 3);
     this.Root.Size = new System.Drawing.Size(697, 547);
     this.Root.TextVisible = false;
     //
     // layoutControlGroup2
     //
     this.layoutControlGroup2.AllowDrawBackground = false;
     this.layoutControlGroup2.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.ItemForActionNo,
     this.ItemForActionName,
     this.ItemForParentActionNo,
     this.ItemForOrder,
     this.ItemForActionType,
     this.ItemForRemark,
     this.layoutControlItem3,
     this.layoutControlItem4,
     this.emptySpaceItem1,
     this.layoutControlItem6,
     this.layoutControlItem7,
     this.layoutControlItem8});
     this.layoutControlGroup2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup2.Name = "autoGeneratedGroup0";
     this.layoutControlGroup2.Padding = new DevExpress.XtraLayout.Utils.Padding(3, 3, 3, 3);
     this.layoutControlGroup2.Size = new System.Drawing.Size(689, 539);
     this.layoutControlGroup2.TextVisible = false;
     //
     // ItemForActionNo
     //
     this.ItemForActionNo.Control = this.ActionNoTextEdit;
     this.ItemForActionNo.Location = new System.Drawing.Point(0, 0);
     this.ItemForActionNo.Name = "ItemForActionNo";
     this.ItemForActionNo.Size = new System.Drawing.Size(677, 24);
     this.ItemForActionNo.Text = "权限编号";
     this.ItemForActionNo.TextSize = new System.Drawing.Size(48, 13);
     //
     // ItemForActionName
     //
     this.ItemForActionName.Control = this.ActionNameTextEdit;
     this.ItemForActionName.Location = new System.Drawing.Point(0, 24);
     this.ItemForActionName.Name = "ItemForActionName";
     this.ItemForActionName.Size = new System.Drawing.Size(677, 24);
     this.ItemForActionName.Text = "权限名称";
     this.ItemForActionName.TextSize = new System.Drawing.Size(48, 13);
     //
     // ItemForParentActionNo
     //
     this.ItemForParentActionNo.Control = this.ParentActionNoTextEdit;
     this.ItemForParentActionNo.CustomizationFormText = "父级编号";
     this.ItemForParentActionNo.Location = new System.Drawing.Point(0, 48);
     this.ItemForParentActionNo.Name = "ItemForParentActionNo";
     this.ItemForParentActionNo.Size = new System.Drawing.Size(677, 24);
     this.ItemForParentActionNo.Text = "父级编号";
     this.ItemForParentActionNo.TextSize = new System.Drawing.Size(48, 13);
     //
     // ItemForOrder
     //
     this.ItemForOrder.Control = this.OrderSpinEdit;
     this.ItemForOrder.CustomizationFormText = "序号";
     this.ItemForOrder.Location = new System.Drawing.Point(0, 72);
     this.ItemForOrder.Name = "ItemForOrder";
     this.ItemForOrder.Size = new System.Drawing.Size(677, 24);
     this.ItemForOrder.Text = "序号";
     this.ItemForOrder.TextSize = new System.Drawing.Size(48, 13);
     //
     // ItemForActionType
     //
     this.ItemForActionType.Control = this.ActionTypeTextEdit;
     this.ItemForActionType.CustomizationFormText = "类型";
     this.ItemForActionType.Location = new System.Drawing.Point(0, 96);
     this.ItemForActionType.Name = "ItemForActionType";
     this.ItemForActionType.Size = new System.Drawing.Size(677, 24);
     this.ItemForActionType.Text = "类型";
     this.ItemForActionType.TextSize = new System.Drawing.Size(48, 13);
     //
     // ItemForRemark
     //
     this.ItemForRemark.Control = this.RemarkMemoEdit;
     this.ItemForRemark.CustomizationFormText = "备注";
     this.ItemForRemark.Location = new System.Drawing.Point(0, 120);
     this.ItemForRemark.Name = "ItemForRemark";
     this.ItemForRemark.Size = new System.Drawing.Size(677, 377);
     this.ItemForRemark.Text = "备注";
     this.ItemForRemark.TextSize = new System.Drawing.Size(48, 13);
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.btnSave;
     this.layoutControlItem3.Location = new System.Drawing.Point(469, 497);
     this.layoutControlItem3.MaxSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem3.MinSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(104, 30);
     this.layoutControlItem3.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem3.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem3.TextVisible = false;
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.btnClose;
     this.layoutControlItem4.Location = new System.Drawing.Point(573, 497);
     this.layoutControlItem4.MaxSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem4.MinSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(104, 30);
     this.layoutControlItem4.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem4.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem4.TextVisible = false;
     //
     // emptySpaceItem1
     //
     this.emptySpaceItem1.AllowHotTrack = false;
     this.emptySpaceItem1.Location = new System.Drawing.Point(0, 497);
     this.emptySpaceItem1.Name = "emptySpaceItem1";
     this.emptySpaceItem1.Size = new System.Drawing.Size(157, 30);
     this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem6
     //
     this.layoutControlItem6.Control = this.btnDel;
     this.layoutControlItem6.Location = new System.Drawing.Point(365, 497);
     this.layoutControlItem6.MaxSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem6.MinSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem6.Name = "layoutControlItem6";
     this.layoutControlItem6.Size = new System.Drawing.Size(104, 30);
     this.layoutControlItem6.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem6.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem6.TextVisible = false;
     //
     // layoutControlItem7
     //
     this.layoutControlItem7.Control = this.btnAddChild;
     this.layoutControlItem7.Location = new System.Drawing.Point(261, 497);
     this.layoutControlItem7.MaxSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem7.MinSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem7.Name = "layoutControlItem7";
     this.layoutControlItem7.Size = new System.Drawing.Size(104, 30);
     this.layoutControlItem7.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem7.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem7.TextVisible = false;
     //
     // layoutControlItem8
     //
     this.layoutControlItem8.Control = this.btnAdd;
     this.layoutControlItem8.Location = new System.Drawing.Point(157, 497);
     this.layoutControlItem8.MaxSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem8.MinSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem8.Name = "layoutControlItem8";
     this.layoutControlItem8.Size = new System.Drawing.Size(104, 30);
     this.layoutControlItem8.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem8.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem8.TextVisible = false;
     //
     // treeList1
     //
     this.treeList1.Appearance.EvenRow.BackColor = System.Drawing.Color.LightYellow;
     this.treeList1.Appearance.EvenRow.Options.UseBackColor = true;
     this.treeList1.Appearance.OddRow.BackColor = System.Drawing.Color.White;
     this.treeList1.Appearance.OddRow.Options.UseBackColor = true;
     this.treeList1.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
     this.tcolActionName});
     this.treeList1.IndicatorWidth = 40;
     this.treeList1.KeyFieldName = "ActionNo";
     this.treeList_ShowLine1.SetLineNoFormatString(this.treeList1, "{0}");
     this.treeList1.Location = new System.Drawing.Point(6, 6);
     this.treeList1.Name = "treeList1";
     this.treeList1.OptionsBehavior.Editable = false;
     this.treeList1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.treeList1.OptionsSelection.UseIndicatorForSelection = true;
     this.treeList1.OptionsView.EnableAppearanceEvenRow = true;
     this.treeList1.OptionsView.EnableAppearanceOddRow = true;
     this.treeList1.ParentFieldName = "ParentActionNo";
     this.treeList_ShowLine1.SetShowLineNo(this.treeList1, true);
     this.treeList1.Size = new System.Drawing.Size(227, 547);
     this.treeList1.TabIndex = 4;
     //
     // tcolActionName
     //
     this.tcolActionName.Caption = "功能名称";
     this.tcolActionName.FieldName = "ActionName";
     this.tcolActionName.Name = "tcolActionName";
     this.tcolActionName.Visible = true;
     this.tcolActionName.VisibleIndex = 0;
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem1,
     this.layoutControlItem2});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "layoutControlGroup1";
     this.layoutControlGroup1.Padding = new DevExpress.XtraLayout.Utils.Padding(3, 3, 3, 3);
     this.layoutControlGroup1.Size = new System.Drawing.Size(940, 559);
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.treeList1;
     this.layoutControlItem1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(231, 551);
     this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem1.TextVisible = false;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.dataLayoutControl1;
     this.layoutControlItem2.Location = new System.Drawing.Point(231, 0);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(701, 551);
     this.layoutControlItem2.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem2.TextVisible = false;
     //
     // ActionManageForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(940, 559);
     this.Controls.Add(this.layoutControl1);
     this.formLoadErrorExit1.SetEnableLoadError(this, true);
     this.Name = "ActionManageForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "功能设置";
     this.Load += new System.EventHandler(this.ActionManageForm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataLayoutControl1)).EndInit();
     this.dataLayoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ActionNoTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ActionNameTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ParentActionNoTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.OrderSpinEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.RemarkMemoEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ActionTypeTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Root)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForActionNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForActionName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForParentActionNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForOrder)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForActionType)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForRemark)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule1 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule2 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule3 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule4 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule5 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule6 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RDM_ReceiptAddDlg));
     this.dataLayoutControlMain = new DevExpress.XtraDataLayout.DataLayoutControl();
     this.lueBaseProductId = new DevExpress.XtraEditors.GridLookUpEdit();
     this.LSMSBaseProductId = new DevExpress.Data.Linq.LinqServerModeSource();
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btnClear = new DevExpress.XtraEditors.SimpleButton();
     this.tbQun = new DevExpress.XtraEditors.TextEdit();
     this.deRDM_Date = new DevExpress.XtraEditors.DateEdit();
     this.lueRDM_Promo_Type_Id = new DevExpress.XtraEditors.GridLookUpEdit();
     this.LSMSRDM_Promo_Type = new DevExpress.Data.Linq.LinqServerModeSource();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lueRouteNumber = new DevExpress.XtraEditors.GridLookUpEdit();
     this.LSMSRoute = new DevExpress.Data.Linq.LinqServerModeSource();
     this.gridLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.tbOpenComment = new DevExpress.XtraEditors.MemoEdit();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
     this.tbReceiptNo = new DevExpress.XtraEditors.TextEdit();
     this.layoutControlGroupMain = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.ItemForAssetplaceId = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem6 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem8 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem13 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem14 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem9 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.dxValidationProviderMain = new DevExpress.XtraEditors.DXErrorProvider.DXValidationProvider(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.dataLayoutControlMain)).BeginInit();
     this.dataLayoutControlMain.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lueBaseProductId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSBaseProductId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbQun.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deRDM_Date.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deRDM_Date.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lueRDM_Promo_Type_Id.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSRDM_Promo_Type)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lueRouteNumber.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSRoute)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbOpenComment.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbReceiptNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroupMain)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForAssetplaceId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem13)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem14)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dxValidationProviderMain)).BeginInit();
     this.SuspendLayout();
     //
     // dataLayoutControlMain
     //
     this.dataLayoutControlMain.Controls.Add(this.lueBaseProductId);
     this.dataLayoutControlMain.Controls.Add(this.btnClear);
     this.dataLayoutControlMain.Controls.Add(this.tbQun);
     this.dataLayoutControlMain.Controls.Add(this.deRDM_Date);
     this.dataLayoutControlMain.Controls.Add(this.lueRDM_Promo_Type_Id);
     this.dataLayoutControlMain.Controls.Add(this.lueRouteNumber);
     this.dataLayoutControlMain.Controls.Add(this.tbOpenComment);
     this.dataLayoutControlMain.Controls.Add(this.btnSave);
     this.dataLayoutControlMain.Controls.Add(this.btnCancel);
     this.dataLayoutControlMain.Controls.Add(this.tbReceiptNo);
     this.dataLayoutControlMain.DataMember = "TblAssets";
     this.dataLayoutControlMain.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dataLayoutControlMain.Location = new System.Drawing.Point(0, 0);
     this.dataLayoutControlMain.Name = "dataLayoutControlMain";
     this.dataLayoutControlMain.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = new System.Drawing.Rectangle(737, 146, 330, 510);
     this.dataLayoutControlMain.OptionsView.RightToLeftMirroringApplied = true;
     this.dataLayoutControlMain.Root = this.layoutControlGroupMain;
     this.dataLayoutControlMain.Size = new System.Drawing.Size(439, 285);
     this.dataLayoutControlMain.TabIndex = 0;
     this.dataLayoutControlMain.Text = "dataLayoutControl1";
     //
     // lueBaseProductId
     //
     this.lueBaseProductId.Location = new System.Drawing.Point(90, 110);
     this.lueBaseProductId.Name = "lueBaseProductId";
     this.lueBaseProductId.Properties.BestFitMode = DevExpress.XtraEditors.Controls.BestFitMode.BestFitResizePopup;
     this.lueBaseProductId.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lueBaseProductId.Properties.DataSource = this.LSMSBaseProductId;
     this.lueBaseProductId.Properties.DisplayMember = "BaseProduct";
     this.lueBaseProductId.Properties.NullText = "";
     this.lueBaseProductId.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.lueBaseProductId.Properties.ValueMember = "BaseProductId";
     this.lueBaseProductId.Properties.View = this.gridView2;
     this.lueBaseProductId.Size = new System.Drawing.Size(337, 20);
     this.lueBaseProductId.StyleController = this.dataLayoutControlMain;
     this.lueBaseProductId.TabIndex = 35;
     conditionValidationRule1.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule1.ErrorText = "This value is not valid";
     conditionValidationRule1.ErrorType = DevExpress.XtraEditors.DXErrorProvider.ErrorType.Critical;
     this.dxValidationProviderMain.SetValidationRule(this.lueBaseProductId, conditionValidationRule1);
     //
     // LSMSBaseProductId
     //
     this.LSMSBaseProductId.ElementType = typeof(NICSQLTools.Data.Linq.PRD_BaseProduct);
     this.LSMSBaseProductId.KeyExpression = "[BaseProductId]";
     //
     // gridView2
     //
     this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn8});
     this.gridView2.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView2.Name = "gridView2";
     this.gridView2.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView2.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn8
     //
     this.gridColumn8.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn8.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn8.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn8.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn8.Caption = "Base Product";
     this.gridColumn8.FieldName = "BaseProduct";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 0;
     //
     // btnClear
     //
     this.btnClear.Image = global::NICSQLTools.Properties.Resources.clear_16x16;
     this.btnClear.Location = new System.Drawing.Point(277, 224);
     this.btnClear.Name = "btnClear";
     this.btnClear.Size = new System.Drawing.Size(150, 22);
     this.btnClear.StyleController = this.dataLayoutControlMain;
     this.btnClear.TabIndex = 34;
     this.btnClear.Text = "Clear";
     this.btnClear.Click += new System.EventHandler(this.btnClear_Click);
     //
     // tbQun
     //
     this.tbQun.Location = new System.Drawing.Point(90, 134);
     this.tbQun.Name = "tbQun";
     this.tbQun.Properties.DisplayFormat.FormatString = "n2";
     this.tbQun.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.tbQun.Properties.EditFormat.FormatString = "n2";
     this.tbQun.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.tbQun.Properties.Mask.EditMask = "\\d+";
     this.tbQun.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.tbQun.Properties.Mask.ShowPlaceHolders = false;
     this.tbQun.Size = new System.Drawing.Size(337, 20);
     this.tbQun.StyleController = this.dataLayoutControlMain;
     this.tbQun.TabIndex = 33;
     conditionValidationRule2.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule2.ErrorText = "This value is not valid";
     conditionValidationRule2.ErrorType = DevExpress.XtraEditors.DXErrorProvider.ErrorType.Critical;
     this.dxValidationProviderMain.SetValidationRule(this.tbQun, conditionValidationRule2);
     //
     // deRDM_Date
     //
     this.deRDM_Date.EditValue = null;
     this.deRDM_Date.Location = new System.Drawing.Point(90, 38);
     this.deRDM_Date.Name = "deRDM_Date";
     this.deRDM_Date.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.deRDM_Date.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.deRDM_Date.Size = new System.Drawing.Size(337, 20);
     this.deRDM_Date.StyleController = this.dataLayoutControlMain;
     this.deRDM_Date.TabIndex = 32;
     conditionValidationRule3.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule3.ErrorText = "This value is not valid";
     conditionValidationRule3.ErrorType = DevExpress.XtraEditors.DXErrorProvider.ErrorType.Critical;
     this.dxValidationProviderMain.SetValidationRule(this.deRDM_Date, conditionValidationRule3);
     //
     // lueRDM_Promo_Type_Id
     //
     this.lueRDM_Promo_Type_Id.Location = new System.Drawing.Point(90, 86);
     this.lueRDM_Promo_Type_Id.Name = "lueRDM_Promo_Type_Id";
     this.lueRDM_Promo_Type_Id.Properties.BestFitMode = DevExpress.XtraEditors.Controls.BestFitMode.BestFitResizePopup;
     this.lueRDM_Promo_Type_Id.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lueRDM_Promo_Type_Id.Properties.DataSource = this.LSMSRDM_Promo_Type;
     this.lueRDM_Promo_Type_Id.Properties.DisplayMember = "RDM_Promo_Type1";
     this.lueRDM_Promo_Type_Id.Properties.NullText = "";
     this.lueRDM_Promo_Type_Id.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.lueRDM_Promo_Type_Id.Properties.ValueMember = "RDM_Promo_Type_Id";
     this.lueRDM_Promo_Type_Id.Properties.View = this.gridView1;
     this.lueRDM_Promo_Type_Id.Size = new System.Drawing.Size(337, 20);
     this.lueRDM_Promo_Type_Id.StyleController = this.dataLayoutControlMain;
     this.lueRDM_Promo_Type_Id.TabIndex = 31;
     conditionValidationRule4.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule4.ErrorText = "This value is not valid";
     conditionValidationRule4.ErrorType = DevExpress.XtraEditors.DXErrorProvider.ErrorType.Critical;
     this.dxValidationProviderMain.SetValidationRule(this.lueRDM_Promo_Type_Id, conditionValidationRule4);
     //
     // LSMSRDM_Promo_Type
     //
     this.LSMSRDM_Promo_Type.ElementType = typeof(NICSQLTools.Data.Linq.RDM_Promo_Type);
     this.LSMSRDM_Promo_Type.KeyExpression = "[RDM_Promo_Type_Id]";
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn6,
     this.gridColumn7});
     this.gridView1.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn6
     //
     this.gridColumn6.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn6.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn6.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn6.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn6.Caption = "Type";
     this.gridColumn6.FieldName = "RDM_Promo_Type1";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 0;
     //
     // gridColumn7
     //
     this.gridColumn7.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn7.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn7.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn7.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn7.Caption = "Year";
     this.gridColumn7.FieldName = "YearNum";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 1;
     //
     // lueRouteNumber
     //
     this.lueRouteNumber.Location = new System.Drawing.Point(90, 62);
     this.lueRouteNumber.Name = "lueRouteNumber";
     this.lueRouteNumber.Properties.BestFitMode = DevExpress.XtraEditors.Controls.BestFitMode.BestFitResizePopup;
     this.lueRouteNumber.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lueRouteNumber.Properties.DataSource = this.LSMSRoute;
     this.lueRouteNumber.Properties.DisplayMember = "Route_Number";
     this.lueRouteNumber.Properties.NullText = "";
     this.lueRouteNumber.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.lueRouteNumber.Properties.ValueMember = "Route_Number";
     this.lueRouteNumber.Properties.View = this.gridLookUpEdit1View;
     this.lueRouteNumber.Size = new System.Drawing.Size(337, 20);
     this.lueRouteNumber.StyleController = this.dataLayoutControlMain;
     this.lueRouteNumber.TabIndex = 30;
     conditionValidationRule5.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule5.ErrorText = "This value is not valid";
     conditionValidationRule5.ErrorType = DevExpress.XtraEditors.DXErrorProvider.ErrorType.Critical;
     this.dxValidationProviderMain.SetValidationRule(this.lueRouteNumber, conditionValidationRule5);
     //
     // LSMSRoute
     //
     this.LSMSRoute.ElementType = typeof(NICSQLTools.Data.Linq.vRDM_Route_ByUser);
     this.LSMSRoute.KeyExpression = "[Route_Number], [UserId]";
     //
     // gridLookUpEdit1View
     //
     this.gridLookUpEdit1View.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn3,
     this.gridColumn4,
     this.gridColumn5});
     this.gridLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridLookUpEdit1View.Name = "gridLookUpEdit1View";
     this.gridLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridLookUpEdit1View.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn1
     //
     this.gridColumn1.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn1.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn1.Caption = "Route Number";
     this.gridColumn1.FieldName = "Route_Number";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     this.gridColumn1.Width = 79;
     //
     // gridColumn2
     //
     this.gridColumn2.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn2.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn2.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn2.Caption = "Route Name";
     this.gridColumn2.FieldName = "Route_Name";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     //
     // gridColumn3
     //
     this.gridColumn3.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn3.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn3.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn3.Caption = "Supervisor";
     this.gridColumn3.FieldName = "Supervisor";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 2;
     //
     // gridColumn4
     //
     this.gridColumn4.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn4.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn4.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn4.Caption = "Brand Route";
     this.gridColumn4.FieldName = "Brand_Route";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 3;
     //
     // gridColumn5
     //
     this.gridColumn5.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn5.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn5.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn5.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn5.Caption = "Sales District 2";
     this.gridColumn5.FieldName = "Sales_District_2";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 4;
     this.gridColumn5.Width = 80;
     //
     // tbOpenComment
     //
     this.tbOpenComment.Location = new System.Drawing.Point(90, 158);
     this.tbOpenComment.Name = "tbOpenComment";
     this.tbOpenComment.Properties.MaxLength = 255;
     this.tbOpenComment.Size = new System.Drawing.Size(337, 62);
     this.tbOpenComment.StyleController = this.dataLayoutControlMain;
     this.tbOpenComment.TabIndex = 24;
     //
     // btnSave
     //
     this.btnSave.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.btnSave.Appearance.Options.UseFont = true;
     this.btnSave.Image = global::NICSQLTools.Properties.Resources.apply_16x16;
     this.btnSave.Location = new System.Drawing.Point(12, 224);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(261, 49);
     this.btnSave.StyleController = this.dataLayoutControlMain;
     this.btnSave.TabIndex = 17;
     this.btnSave.Text = "Save";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // btnCancel
     //
     this.btnCancel.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.btnCancel.Appearance.Options.UseFont = true;
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Image = global::NICSQLTools.Properties.Resources.cancel_16x16;
     this.btnCancel.Location = new System.Drawing.Point(277, 250);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(150, 23);
     this.btnCancel.StyleController = this.dataLayoutControlMain;
     this.btnCancel.TabIndex = 16;
     this.btnCancel.Text = "Cancel";
     //
     // tbReceiptNo
     //
     this.tbReceiptNo.EnterMoveNextControl = true;
     this.tbReceiptNo.Location = new System.Drawing.Point(90, 12);
     this.tbReceiptNo.Name = "tbReceiptNo";
     this.tbReceiptNo.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.tbReceiptNo.Properties.Appearance.Options.UseFont = true;
     this.tbReceiptNo.Properties.Appearance.Options.UseTextOptions = true;
     this.tbReceiptNo.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.tbReceiptNo.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Buffered;
     this.tbReceiptNo.Size = new System.Drawing.Size(337, 22);
     this.tbReceiptNo.StyleController = this.dataLayoutControlMain;
     this.tbReceiptNo.TabIndex = 11;
     conditionValidationRule6.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule6.ErrorText = "This value is not valid";
     conditionValidationRule6.ErrorType = DevExpress.XtraEditors.DXErrorProvider.ErrorType.Critical;
     this.dxValidationProviderMain.SetValidationRule(this.tbReceiptNo, conditionValidationRule6);
     //
     // layoutControlGroupMain
     //
     this.layoutControlGroupMain.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroupMain.GroupBordersVisible = false;
     this.layoutControlGroupMain.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlGroup2});
     this.layoutControlGroupMain.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroupMain.Name = "Root";
     this.layoutControlGroupMain.Size = new System.Drawing.Size(439, 285);
     this.layoutControlGroupMain.TextVisible = false;
     //
     // layoutControlGroup2
     //
     this.layoutControlGroup2.AllowDrawBackground = false;
     this.layoutControlGroup2.GroupBordersVisible = false;
     this.layoutControlGroup2.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.ItemForAssetplaceId,
     this.layoutControlItem1,
     this.layoutControlItem2,
     this.layoutControlItem6,
     this.layoutControlItem8,
     this.layoutControlItem13,
     this.layoutControlItem14,
     this.layoutControlItem9,
     this.layoutControlItem3,
     this.layoutControlItem4});
     this.layoutControlGroup2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup2.Name = "autoGeneratedGroup0";
     this.layoutControlGroup2.Size = new System.Drawing.Size(419, 265);
     //
     // ItemForAssetplaceId
     //
     this.ItemForAssetplaceId.Control = this.tbReceiptNo;
     this.ItemForAssetplaceId.Location = new System.Drawing.Point(0, 0);
     this.ItemForAssetplaceId.Name = "ItemForAssetplaceId";
     this.ItemForAssetplaceId.Size = new System.Drawing.Size(419, 26);
     this.ItemForAssetplaceId.Text = "Receipt No";
     this.ItemForAssetplaceId.TextSize = new System.Drawing.Size(75, 13);
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.btnCancel;
     this.layoutControlItem1.Location = new System.Drawing.Point(265, 238);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(154, 27);
     this.layoutControlItem1.Text = "Cancel";
     this.layoutControlItem1.TextLocation = DevExpress.Utils.Locations.Right;
     this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem1.TextVisible = false;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.btnSave;
     this.layoutControlItem2.Location = new System.Drawing.Point(0, 212);
     this.layoutControlItem2.MinSize = new System.Drawing.Size(62, 27);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(265, 53);
     this.layoutControlItem2.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem2.Text = "Save";
     this.layoutControlItem2.TextLocation = DevExpress.Utils.Locations.Right;
     this.layoutControlItem2.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem2.TextVisible = false;
     //
     // layoutControlItem6
     //
     this.layoutControlItem6.Control = this.lueRouteNumber;
     this.layoutControlItem6.Location = new System.Drawing.Point(0, 50);
     this.layoutControlItem6.Name = "layoutControlItem6";
     this.layoutControlItem6.Size = new System.Drawing.Size(419, 24);
     this.layoutControlItem6.Text = "Route";
     this.layoutControlItem6.TextSize = new System.Drawing.Size(75, 13);
     //
     // layoutControlItem8
     //
     this.layoutControlItem8.Control = this.lueRDM_Promo_Type_Id;
     this.layoutControlItem8.Location = new System.Drawing.Point(0, 74);
     this.layoutControlItem8.Name = "layoutControlItem8";
     this.layoutControlItem8.Size = new System.Drawing.Size(419, 24);
     this.layoutControlItem8.Text = "Promotion Type";
     this.layoutControlItem8.TextSize = new System.Drawing.Size(75, 13);
     //
     // layoutControlItem13
     //
     this.layoutControlItem13.Control = this.deRDM_Date;
     this.layoutControlItem13.Location = new System.Drawing.Point(0, 26);
     this.layoutControlItem13.Name = "layoutControlItem13";
     this.layoutControlItem13.Size = new System.Drawing.Size(419, 24);
     this.layoutControlItem13.Text = "Date";
     this.layoutControlItem13.TextSize = new System.Drawing.Size(75, 13);
     //
     // layoutControlItem14
     //
     this.layoutControlItem14.Control = this.tbQun;
     this.layoutControlItem14.Location = new System.Drawing.Point(0, 122);
     this.layoutControlItem14.Name = "layoutControlItem14";
     this.layoutControlItem14.Size = new System.Drawing.Size(419, 24);
     this.layoutControlItem14.Text = "Quantity";
     this.layoutControlItem14.TextSize = new System.Drawing.Size(75, 13);
     //
     // layoutControlItem9
     //
     this.layoutControlItem9.AppearanceItemCaption.Options.UseTextOptions = true;
     this.layoutControlItem9.AppearanceItemCaption.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.layoutControlItem9.Control = this.tbOpenComment;
     this.layoutControlItem9.Location = new System.Drawing.Point(0, 146);
     this.layoutControlItem9.Name = "layoutControlItem9";
     this.layoutControlItem9.Size = new System.Drawing.Size(419, 66);
     this.layoutControlItem9.Text = "Comment";
     this.layoutControlItem9.TextSize = new System.Drawing.Size(75, 13);
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.btnClear;
     this.layoutControlItem3.Location = new System.Drawing.Point(265, 212);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(154, 26);
     this.layoutControlItem3.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem3.TextVisible = false;
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.lueBaseProductId;
     this.layoutControlItem4.Location = new System.Drawing.Point(0, 98);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(419, 24);
     this.layoutControlItem4.Text = "Product";
     this.layoutControlItem4.TextSize = new System.Drawing.Size(75, 13);
     //
     // RDM_ReceiptAddDlg
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton = this.btnCancel;
     this.ClientSize = new System.Drawing.Size(439, 285);
     this.Controls.Add(this.dataLayoutControlMain);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "RDM_ReceiptAddDlg";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Editor";
     this.Load += new System.EventHandler(this.Dlg_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dataLayoutControlMain)).EndInit();
     this.dataLayoutControlMain.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.lueBaseProductId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSBaseProductId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbQun.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deRDM_Date.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deRDM_Date.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lueRDM_Promo_Type_Id.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSRDM_Promo_Type)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lueRouteNumber.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSRoute)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbOpenComment.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbReceiptNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroupMain)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForAssetplaceId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem13)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem14)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dxValidationProviderMain)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule1 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule2 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule3 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MSrv_TicketCloseDlg));
     this.dataLayoutControlMain = new DevExpress.XtraDataLayout.DataLayoutControl();
     this.deClosedDate = new DevExpress.XtraEditors.DateEdit();
     this.lueCloseMSrvTypeId = new DevExpress.XtraEditors.LookUpEdit();
     this.tbOpenComment = new DevExpress.XtraEditors.MemoEdit();
     this.btnSearchSerial = new DevExpress.XtraEditors.SimpleButton();
     this.tbTecEquipmentSerial = new DevExpress.XtraEditors.TextEdit();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
     this.layoutControlGroupMain = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem7 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem9 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
     this.dxValidationProviderMain = new DevExpress.XtraEditors.DXErrorProvider.DXValidationProvider(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.dataLayoutControlMain)).BeginInit();
     this.dataLayoutControlMain.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.deClosedDate.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deClosedDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lueCloseMSrvTypeId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbOpenComment.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbTecEquipmentSerial.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroupMain)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dxValidationProviderMain)).BeginInit();
     this.SuspendLayout();
     //
     // dataLayoutControlMain
     //
     this.dataLayoutControlMain.Controls.Add(this.deClosedDate);
     this.dataLayoutControlMain.Controls.Add(this.lueCloseMSrvTypeId);
     this.dataLayoutControlMain.Controls.Add(this.tbOpenComment);
     this.dataLayoutControlMain.Controls.Add(this.btnSearchSerial);
     this.dataLayoutControlMain.Controls.Add(this.tbTecEquipmentSerial);
     this.dataLayoutControlMain.Controls.Add(this.btnSave);
     this.dataLayoutControlMain.Controls.Add(this.btnCancel);
     this.dataLayoutControlMain.DataMember = "TblAssets";
     this.dataLayoutControlMain.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dataLayoutControlMain.Location = new System.Drawing.Point(0, 0);
     this.dataLayoutControlMain.Name = "dataLayoutControlMain";
     this.dataLayoutControlMain.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = new System.Drawing.Rectangle(737, 146, 330, 510);
     this.dataLayoutControlMain.OptionsView.RightToLeftMirroringApplied = true;
     this.dataLayoutControlMain.Root = this.layoutControlGroupMain;
     this.dataLayoutControlMain.Size = new System.Drawing.Size(484, 282);
     this.dataLayoutControlMain.TabIndex = 0;
     this.dataLayoutControlMain.Text = "dataLayoutControl1";
     //
     // deClosedDate
     //
     this.deClosedDate.EditValue = null;
     this.deClosedDate.Location = new System.Drawing.Point(82, 62);
     this.deClosedDate.Name = "deClosedDate";
     this.deClosedDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.deClosedDate.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.deClosedDate.Properties.DisplayFormat.FormatString = "yyy-MM-dd HH:mm";
     this.deClosedDate.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.deClosedDate.Properties.EditFormat.FormatString = "yyy-MM-dd HH:mm";
     this.deClosedDate.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.deClosedDate.Properties.Mask.EditMask = "yyy-MM-dd HH:mm";
     this.deClosedDate.Size = new System.Drawing.Size(390, 20);
     this.deClosedDate.StyleController = this.dataLayoutControlMain;
     this.deClosedDate.TabIndex = 26;
     conditionValidationRule1.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule1.ErrorText = "This value is not valid";
     this.dxValidationProviderMain.SetValidationRule(this.deClosedDate, conditionValidationRule1);
     //
     // lueCloseMSrvTypeId
     //
     this.lueCloseMSrvTypeId.Location = new System.Drawing.Point(82, 38);
     this.lueCloseMSrvTypeId.Name = "lueCloseMSrvTypeId";
     this.lueCloseMSrvTypeId.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lueCloseMSrvTypeId.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("MSrvType", "Reason", 61, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Near)});
     this.lueCloseMSrvTypeId.Properties.DisplayMember = "MSrvType";
     this.lueCloseMSrvTypeId.Properties.DropDownRows = 10;
     this.lueCloseMSrvTypeId.Properties.NullText = "";
     this.lueCloseMSrvTypeId.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.lueCloseMSrvTypeId.Properties.ValueMember = "MSrvTypeId";
     this.lueCloseMSrvTypeId.Size = new System.Drawing.Size(390, 20);
     this.lueCloseMSrvTypeId.StyleController = this.dataLayoutControlMain;
     this.lueCloseMSrvTypeId.TabIndex = 25;
     conditionValidationRule2.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule2.ErrorText = "This value is not valid";
     this.dxValidationProviderMain.SetValidationRule(this.lueCloseMSrvTypeId, conditionValidationRule2);
     //
     // tbOpenComment
     //
     this.tbOpenComment.Location = new System.Drawing.Point(82, 86);
     this.tbOpenComment.Name = "tbOpenComment";
     this.tbOpenComment.Properties.MaxLength = 255;
     this.tbOpenComment.Size = new System.Drawing.Size(390, 157);
     this.tbOpenComment.StyleController = this.dataLayoutControlMain;
     this.tbOpenComment.TabIndex = 24;
     //
     // btnSearchSerial
     //
     this.btnSearchSerial.Image = global::NICSQLTools.Properties.Resources.find_16x16;
     this.btnSearchSerial.Location = new System.Drawing.Point(410, 12);
     this.btnSearchSerial.Name = "btnSearchSerial";
     this.btnSearchSerial.Size = new System.Drawing.Size(62, 22);
     this.btnSearchSerial.StyleController = this.dataLayoutControlMain;
     this.btnSearchSerial.TabIndex = 22;
     this.btnSearchSerial.Text = "Find";
     this.btnSearchSerial.Click += new System.EventHandler(this.btnSearchSerial_Click);
     //
     // tbTecEquipmentSerial
     //
     this.tbTecEquipmentSerial.EnterMoveNextControl = true;
     this.tbTecEquipmentSerial.Location = new System.Drawing.Point(82, 12);
     this.tbTecEquipmentSerial.Name = "tbTecEquipmentSerial";
     this.tbTecEquipmentSerial.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.tbTecEquipmentSerial.Properties.Appearance.Options.UseFont = true;
     this.tbTecEquipmentSerial.Size = new System.Drawing.Size(324, 22);
     this.tbTecEquipmentSerial.StyleController = this.dataLayoutControlMain;
     this.tbTecEquipmentSerial.TabIndex = 18;
     conditionValidationRule3.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule3.ErrorText = "This value is not valid";
     this.dxValidationProviderMain.SetValidationRule(this.tbTecEquipmentSerial, conditionValidationRule3);
     //
     // btnSave
     //
     this.btnSave.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.btnSave.Appearance.Options.UseFont = true;
     this.btnSave.Image = global::NICSQLTools.Properties.Resources.apply_16x16;
     this.btnSave.Location = new System.Drawing.Point(12, 247);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(309, 23);
     this.btnSave.StyleController = this.dataLayoutControlMain;
     this.btnSave.TabIndex = 17;
     this.btnSave.Text = "Save";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // btnCancel
     //
     this.btnCancel.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.btnCancel.Appearance.Options.UseFont = true;
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Image = global::NICSQLTools.Properties.Resources.cancel_16x16;
     this.btnCancel.Location = new System.Drawing.Point(325, 247);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(147, 23);
     this.btnCancel.StyleController = this.dataLayoutControlMain;
     this.btnCancel.TabIndex = 16;
     this.btnCancel.Text = "Cancel";
     //
     // layoutControlGroupMain
     //
     this.layoutControlGroupMain.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroupMain.GroupBordersVisible = false;
     this.layoutControlGroupMain.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlGroup2});
     this.layoutControlGroupMain.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroupMain.Name = "Root";
     this.layoutControlGroupMain.Size = new System.Drawing.Size(484, 282);
     this.layoutControlGroupMain.TextVisible = false;
     //
     // layoutControlGroup2
     //
     this.layoutControlGroup2.AllowDrawBackground = false;
     this.layoutControlGroup2.GroupBordersVisible = false;
     this.layoutControlGroup2.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem1,
     this.layoutControlItem2,
     this.layoutControlItem3,
     this.layoutControlItem7,
     this.layoutControlItem9,
     this.layoutControlItem4,
     this.layoutControlItem5});
     this.layoutControlGroup2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup2.Name = "autoGeneratedGroup0";
     this.layoutControlGroup2.Size = new System.Drawing.Size(464, 262);
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.btnCancel;
     this.layoutControlItem1.Location = new System.Drawing.Point(313, 235);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(151, 27);
     this.layoutControlItem1.Text = "Cancel";
     this.layoutControlItem1.TextLocation = DevExpress.Utils.Locations.Right;
     this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem1.TextVisible = false;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.btnSave;
     this.layoutControlItem2.Location = new System.Drawing.Point(0, 235);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(313, 27);
     this.layoutControlItem2.Text = "Save";
     this.layoutControlItem2.TextLocation = DevExpress.Utils.Locations.Right;
     this.layoutControlItem2.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem2.TextVisible = false;
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.tbTecEquipmentSerial;
     this.layoutControlItem3.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(398, 26);
     this.layoutControlItem3.Text = "Serial";
     this.layoutControlItem3.TextSize = new System.Drawing.Size(67, 13);
     //
     // layoutControlItem7
     //
     this.layoutControlItem7.Control = this.btnSearchSerial;
     this.layoutControlItem7.Location = new System.Drawing.Point(398, 0);
     this.layoutControlItem7.Name = "layoutControlItem7";
     this.layoutControlItem7.Size = new System.Drawing.Size(66, 26);
     this.layoutControlItem7.Text = "Find Serial";
     this.layoutControlItem7.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem7.TextVisible = false;
     //
     // layoutControlItem9
     //
     this.layoutControlItem9.AppearanceItemCaption.Options.UseTextOptions = true;
     this.layoutControlItem9.AppearanceItemCaption.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.layoutControlItem9.Control = this.tbOpenComment;
     this.layoutControlItem9.Location = new System.Drawing.Point(0, 74);
     this.layoutControlItem9.Name = "layoutControlItem9";
     this.layoutControlItem9.Size = new System.Drawing.Size(464, 161);
     this.layoutControlItem9.Text = "Comment";
     this.layoutControlItem9.TextSize = new System.Drawing.Size(67, 13);
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.lueCloseMSrvTypeId;
     this.layoutControlItem4.Location = new System.Drawing.Point(0, 26);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(464, 24);
     this.layoutControlItem4.Text = "Ticket Reason";
     this.layoutControlItem4.TextSize = new System.Drawing.Size(67, 13);
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.Control = this.deClosedDate;
     this.layoutControlItem5.Location = new System.Drawing.Point(0, 50);
     this.layoutControlItem5.Name = "layoutControlItem5";
     this.layoutControlItem5.Size = new System.Drawing.Size(464, 24);
     this.layoutControlItem5.Text = "Close In";
     this.layoutControlItem5.TextSize = new System.Drawing.Size(67, 13);
     //
     // MSrv_TicketCloseDlg
     //
     this.AcceptButton = this.btnSave;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton = this.btnCancel;
     this.ClientSize = new System.Drawing.Size(484, 282);
     this.Controls.Add(this.dataLayoutControlMain);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "MSrv_TicketCloseDlg";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Editor";
     this.Load += new System.EventHandler(this.Dlg_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dataLayoutControlMain)).EndInit();
     this.dataLayoutControlMain.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.deClosedDate.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deClosedDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lueCloseMSrvTypeId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbOpenComment.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbTecEquipmentSerial.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroupMain)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dxValidationProviderMain)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule1 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule2 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule3 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule4 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MSrvTicketVisitAddDlg));
     this.dataLayoutControlMain = new DevExpress.XtraDataLayout.DataLayoutControl();
     this.lueDamage = new DevExpress.XtraEditors.LookUpEdit();
     this.deDate = new DevExpress.XtraEditors.DateEdit();
     this.lblContactPerson = new DevExpress.XtraEditors.LabelControl();
     this.clbcReason = new DevExpress.XtraEditors.CheckedListBoxControl();
     this.gridControlPart = new DevExpress.XtraGrid.GridControl();
     this.mSrvTicketVisitPartBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dsMSrc = new NICSQLTools.Data.dsMSrc();
     this.gridViewPart = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colPartId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditPartId = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.colQuantity = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCalcEditn2 = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.colActualPrice = new DevExpress.XtraGrid.Columns.GridColumn();
     this.deEndDate = new DevExpress.XtraEditors.DateEdit();
     this.deStartDate = new DevExpress.XtraEditors.DateEdit();
     this.tbOpenComment = new DevExpress.XtraEditors.MemoEdit();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
     this.lueTicket = new DevExpress.XtraEditors.LookUpEdit();
     this.lueTechnicianId = new DevExpress.XtraEditors.LookUpEdit();
     this.layoutControlGroupMain = new DevExpress.XtraLayout.LayoutControlGroup();
     this.ItemForAssetplaceId = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem9 = new DevExpress.XtraLayout.LayoutControlItem();
     this.tabbedControlGroupDetails = new DevExpress.XtraLayout.TabbedControlGroup();
     this.layoutControlGroup3 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem7 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem1 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.splitterItem1 = new DevExpress.XtraLayout.SplitterItem();
     this.layoutControlGroup4 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem10 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem6 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem8 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem11 = new DevExpress.XtraLayout.LayoutControlItem();
     this.dxValidationProviderMain = new DevExpress.XtraEditors.DXErrorProvider.DXValidationProvider(this.components);
     this.mSrv_TicketVisitPartTableAdapter = new NICSQLTools.Data.dsMSrcTableAdapters.MSrv_TicketVisitPartTableAdapter();
     ((System.ComponentModel.ISupportInitialize)(this.dataLayoutControlMain)).BeginInit();
     this.dataLayoutControlMain.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lueDamage.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deDate.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.clbcReason)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlPart)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mSrvTicketVisitPartBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsMSrc)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewPart)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditPartId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditn2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deEndDate.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deEndDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deStartDate.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deStartDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbOpenComment.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lueTicket.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lueTechnicianId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroupMain)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForAssetplaceId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabbedControlGroupDetails)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitterItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dxValidationProviderMain)).BeginInit();
     this.SuspendLayout();
     //
     // dataLayoutControlMain
     //
     this.dataLayoutControlMain.Controls.Add(this.lueDamage);
     this.dataLayoutControlMain.Controls.Add(this.deDate);
     this.dataLayoutControlMain.Controls.Add(this.lblContactPerson);
     this.dataLayoutControlMain.Controls.Add(this.clbcReason);
     this.dataLayoutControlMain.Controls.Add(this.gridControlPart);
     this.dataLayoutControlMain.Controls.Add(this.deEndDate);
     this.dataLayoutControlMain.Controls.Add(this.deStartDate);
     this.dataLayoutControlMain.Controls.Add(this.tbOpenComment);
     this.dataLayoutControlMain.Controls.Add(this.btnSave);
     this.dataLayoutControlMain.Controls.Add(this.btnCancel);
     this.dataLayoutControlMain.Controls.Add(this.lueTicket);
     this.dataLayoutControlMain.Controls.Add(this.lueTechnicianId);
     this.dataLayoutControlMain.DataMember = "TblAssets";
     this.dataLayoutControlMain.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dataLayoutControlMain.Location = new System.Drawing.Point(0, 0);
     this.dataLayoutControlMain.Name = "dataLayoutControlMain";
     this.dataLayoutControlMain.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = new System.Drawing.Rectangle(1171, 152, 330, 622);
     this.dataLayoutControlMain.OptionsView.RightToLeftMirroringApplied = true;
     this.dataLayoutControlMain.Root = this.layoutControlGroupMain;
     this.dataLayoutControlMain.Size = new System.Drawing.Size(622, 545);
     this.dataLayoutControlMain.TabIndex = 0;
     this.dataLayoutControlMain.Text = "dataLayoutControl1";
     //
     // lueDamage
     //
     this.lueDamage.Location = new System.Drawing.Point(87, 239);
     this.lueDamage.Name = "lueDamage";
     this.lueDamage.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lueDamage.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("msrv_dmg_reason_name", "name", 130, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Near)});
     this.lueDamage.Properties.NullText = "";
     this.lueDamage.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.lueDamage.Size = new System.Drawing.Size(523, 20);
     this.lueDamage.StyleController = this.dataLayoutControlMain;
     this.lueDamage.TabIndex = 12;
     //
     // deDate
     //
     this.deDate.EditValue = null;
     this.deDate.Location = new System.Drawing.Point(99, 179);
     this.deDate.Name = "deDate";
     this.deDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.deDate.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.deDate.Properties.DisplayFormat.FormatString = "yyyy-MM-dd";
     this.deDate.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.deDate.Properties.EditFormat.FormatString = "yyyy-MM-dd";
     this.deDate.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.deDate.Properties.Mask.EditMask = "yyyy-MM-dd";
     this.deDate.Size = new System.Drawing.Size(499, 20);
     this.deDate.StyleController = this.dataLayoutControlMain;
     this.deDate.TabIndex = 11;
     this.deDate.EditValueChanged += new System.EventHandler(this.deDate_EditValueChanged);
     //
     // lblContactPerson
     //
     this.lblContactPerson.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))));
     this.lblContactPerson.Appearance.ForeColor = System.Drawing.Color.Blue;
     this.lblContactPerson.Location = new System.Drawing.Point(24, 68);
     this.lblContactPerson.Name = "lblContactPerson";
     this.lblContactPerson.Size = new System.Drawing.Size(9, 13);
     this.lblContactPerson.StyleController = this.dataLayoutControlMain;
     this.lblContactPerson.TabIndex = 10;
     this.lblContactPerson.Text = "...";
     //
     // clbcReason
     //
     this.clbcReason.HorizontalScrollbar = true;
     this.clbcReason.Location = new System.Drawing.Point(24, 366);
     this.clbcReason.Name = "clbcReason";
     this.clbcReason.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
     this.clbcReason.Size = new System.Drawing.Size(574, 128);
     this.clbcReason.SortOrder = System.Windows.Forms.SortOrder.Ascending;
     this.clbcReason.StyleController = this.dataLayoutControlMain;
     this.clbcReason.TabIndex = 1;
     //
     // gridControlPart
     //
     this.gridControlPart.DataSource = this.mSrvTicketVisitPartBindingSource;
     this.gridControlPart.Location = new System.Drawing.Point(24, 366);
     this.gridControlPart.MainView = this.gridViewPart;
     this.gridControlPart.Name = "gridControlPart";
     this.gridControlPart.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemCalcEditn2,
     this.repositoryItemLookUpEditPartId});
     this.gridControlPart.Size = new System.Drawing.Size(574, 128);
     this.gridControlPart.TabIndex = 7;
     this.gridControlPart.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewPart});
     //
     // mSrvTicketVisitPartBindingSource
     //
     this.mSrvTicketVisitPartBindingSource.DataMember = "MSrv_TicketVisitPart";
     this.mSrvTicketVisitPartBindingSource.DataSource = this.dsMSrc;
     //
     // dsMSrc
     //
     this.dsMSrc.DataSetName = "dsMSrc";
     this.dsMSrc.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // gridViewPart
     //
     this.gridViewPart.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colPartId,
     this.colQuantity,
     this.colActualPrice});
     this.gridViewPart.GridControl = this.gridControlPart;
     this.gridViewPart.Name = "gridViewPart";
     this.gridViewPart.NewItemRowText = "Click here to add new part";
     this.gridViewPart.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Top;
     this.gridViewPart.OptionsView.ShowDetailButtons = false;
     this.gridViewPart.OptionsView.ShowFooter = true;
     this.gridViewPart.OptionsView.ShowGroupPanel = false;
     this.gridViewPart.OptionsView.ShowIndicator = false;
     this.gridViewPart.InitNewRow += new DevExpress.XtraGrid.Views.Grid.InitNewRowEventHandler(this.gridViewPart_InitNewRow);
     //
     // colPartId
     //
     this.colPartId.Caption = "Part Type";
     this.colPartId.ColumnEdit = this.repositoryItemLookUpEditPartId;
     this.colPartId.FieldName = "PartId";
     this.colPartId.Name = "colPartId";
     this.colPartId.Visible = true;
     this.colPartId.VisibleIndex = 0;
     this.colPartId.Width = 333;
     //
     // repositoryItemLookUpEditPartId
     //
     this.repositoryItemLookUpEditPartId.AutoHeight = false;
     this.repositoryItemLookUpEditPartId.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditPartId.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("PartName", "Part Name", 60, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Near),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("PartPrice", "Part Price", 56, DevExpress.Utils.FormatType.Numeric, "", true, DevExpress.Utils.HorzAlignment.Far)});
     this.repositoryItemLookUpEditPartId.Name = "repositoryItemLookUpEditPartId";
     this.repositoryItemLookUpEditPartId.NullText = "";
     this.repositoryItemLookUpEditPartId.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemLookUpEditPartId.EditValueChanged += new System.EventHandler(this.repositoryItemLookUpEditPartId_EditValueChanged);
     //
     // colQuantity
     //
     this.colQuantity.Caption = "Quantity";
     this.colQuantity.ColumnEdit = this.repositoryItemCalcEditn2;
     this.colQuantity.FieldName = "Quantity";
     this.colQuantity.Name = "colQuantity";
     this.colQuantity.Visible = true;
     this.colQuantity.VisibleIndex = 1;
     //
     // repositoryItemCalcEditn2
     //
     this.repositoryItemCalcEditn2.AutoHeight = false;
     this.repositoryItemCalcEditn2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemCalcEditn2.DisplayFormat.FormatString = "n2";
     this.repositoryItemCalcEditn2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditn2.EditFormat.FormatString = "n2";
     this.repositoryItemCalcEditn2.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditn2.Mask.EditMask = "n2";
     this.repositoryItemCalcEditn2.Name = "repositoryItemCalcEditn2";
     //
     // colActualPrice
     //
     this.colActualPrice.Caption = "Price";
     this.colActualPrice.ColumnEdit = this.repositoryItemCalcEditn2;
     this.colActualPrice.FieldName = "ActualPrice";
     this.colActualPrice.Name = "colActualPrice";
     this.colActualPrice.Visible = true;
     this.colActualPrice.VisibleIndex = 2;
     this.colActualPrice.Width = 162;
     //
     // deEndDate
     //
     this.deEndDate.EditValue = null;
     this.deEndDate.Location = new System.Drawing.Point(387, 203);
     this.deEndDate.Name = "deEndDate";
     this.deEndDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.deEndDate.Properties.CalendarDateEditing = false;
     this.deEndDate.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.deEndDate.Properties.DisplayFormat.FormatString = "t";
     this.deEndDate.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.deEndDate.Properties.EditFormat.FormatString = "t";
     this.deEndDate.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.deEndDate.Properties.Mask.EditMask = "t";
     this.deEndDate.Size = new System.Drawing.Size(211, 20);
     this.deEndDate.StyleController = this.dataLayoutControlMain;
     this.deEndDate.TabIndex = 4;
     conditionValidationRule1.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule1.ErrorText = "This value is not valid";
     this.dxValidationProviderMain.SetValidationRule(this.deEndDate, conditionValidationRule1);
     //
     // deStartDate
     //
     this.deStartDate.EditValue = null;
     this.deStartDate.Location = new System.Drawing.Point(99, 203);
     this.deStartDate.Name = "deStartDate";
     this.deStartDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.deStartDate.Properties.CalendarDateEditing = false;
     this.deStartDate.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.deStartDate.Properties.DisplayFormat.FormatString = "t";
     this.deStartDate.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.deStartDate.Properties.EditFormat.FormatString = "t";
     this.deStartDate.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.deStartDate.Properties.Mask.EditMask = "t";
     this.deStartDate.Size = new System.Drawing.Size(209, 20);
     this.deStartDate.StyleController = this.dataLayoutControlMain;
     this.deStartDate.TabIndex = 3;
     conditionValidationRule2.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule2.ErrorText = "This value is not valid";
     this.dxValidationProviderMain.SetValidationRule(this.deStartDate, conditionValidationRule2);
     //
     // tbOpenComment
     //
     this.tbOpenComment.Location = new System.Drawing.Point(87, 263);
     this.tbOpenComment.Name = "tbOpenComment";
     this.tbOpenComment.Properties.MaxLength = 255;
     this.tbOpenComment.Size = new System.Drawing.Size(523, 60);
     this.tbOpenComment.StyleController = this.dataLayoutControlMain;
     this.tbOpenComment.TabIndex = 5;
     //
     // btnSave
     //
     this.btnSave.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.btnSave.Appearance.Options.UseFont = true;
     this.btnSave.Image = global::NICSQLTools.Properties.Resources.apply_16x16;
     this.btnSave.Location = new System.Drawing.Point(12, 510);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(411, 23);
     this.btnSave.StyleController = this.dataLayoutControlMain;
     this.btnSave.TabIndex = 8;
     this.btnSave.Text = "Save";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // btnCancel
     //
     this.btnCancel.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.btnCancel.Appearance.Options.UseFont = true;
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Image = global::NICSQLTools.Properties.Resources.cancel_16x16;
     this.btnCancel.Location = new System.Drawing.Point(427, 510);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(183, 23);
     this.btnCancel.StyleController = this.dataLayoutControlMain;
     this.btnCancel.TabIndex = 9;
     this.btnCancel.Text = "Cancel";
     //
     // lueTicket
     //
     this.lueTicket.EnterMoveNextControl = true;
     this.lueTicket.Location = new System.Drawing.Point(24, 42);
     this.lueTicket.Name = "lueTicket";
     this.lueTicket.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.lueTicket.Properties.Appearance.Options.UseFont = true;
     this.lueTicket.Properties.Appearance.Options.UseTextOptions = true;
     this.lueTicket.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.lueTicket.Properties.BestFitMode = DevExpress.XtraEditors.Controls.BestFitMode.BestFitResizePopup;
     this.lueTicket.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lueTicket.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("TicketId", "Ticket Id", 72, DevExpress.Utils.FormatType.Numeric, "", true, DevExpress.Utils.HorzAlignment.Far),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("CustomerId", "Customer Id", 80, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Near),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("IssueContactPerson", "Customer Name"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("EquipmentSerial", "Equipment Serial", 107, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Near),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Route", "Route", 43, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Near),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("OpenDate", "Open Date", 70, DevExpress.Utils.FormatType.DateTime, "yyyy-MM-dd HH:mm", true, DevExpress.Utils.HorzAlignment.Near)});
     this.lueTicket.Properties.DropDownRows = 10;
     this.lueTicket.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Buffered;
     this.lueTicket.Properties.NullText = "";
     this.lueTicket.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.lueTicket.Size = new System.Drawing.Size(574, 22);
     this.lueTicket.StyleController = this.dataLayoutControlMain;
     this.lueTicket.TabIndex = 0;
     conditionValidationRule3.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule3.ErrorText = "This value is not valid";
     this.dxValidationProviderMain.SetValidationRule(this.lueTicket, conditionValidationRule3);
     this.lueTicket.EditValueChanged += new System.EventHandler(this.lueTicket_EditValueChanged);
     //
     // lueTechnicianId
     //
     this.lueTechnicianId.EnterMoveNextControl = true;
     this.lueTechnicianId.Location = new System.Drawing.Point(87, 123);
     this.lueTechnicianId.Name = "lueTechnicianId";
     this.lueTechnicianId.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.lueTechnicianId.Properties.Appearance.Options.UseFont = true;
     this.lueTechnicianId.Properties.Appearance.Options.UseTextOptions = true;
     this.lueTechnicianId.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.lueTechnicianId.Properties.BestFitMode = DevExpress.XtraEditors.Controls.BestFitMode.BestFitResizePopup;
     this.lueTechnicianId.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lueTechnicianId.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("TechnicianId", "Technician Id", 99, DevExpress.Utils.FormatType.Numeric, "", true, DevExpress.Utils.HorzAlignment.Far),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("TechnicianName", "Technician Name", 108, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Near),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("TechnicianCompany", "Technician Company", 128, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Near)});
     this.lueTechnicianId.Properties.DropDownRows = 10;
     this.lueTechnicianId.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Buffered;
     this.lueTechnicianId.Properties.NullText = "";
     this.lueTechnicianId.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.lueTechnicianId.Size = new System.Drawing.Size(523, 22);
     this.lueTechnicianId.StyleController = this.dataLayoutControlMain;
     this.lueTechnicianId.TabIndex = 2;
     conditionValidationRule4.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule4.ErrorText = "This value is not valid";
     this.dxValidationProviderMain.SetValidationRule(this.lueTechnicianId, conditionValidationRule4);
     //
     // layoutControlGroupMain
     //
     this.layoutControlGroupMain.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroupMain.GroupBordersVisible = false;
     this.layoutControlGroupMain.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.ItemForAssetplaceId,
     this.layoutControlItem1,
     this.layoutControlItem2,
     this.layoutControlItem9,
     this.tabbedControlGroupDetails,
     this.layoutControlGroup2,
     this.emptySpaceItem1,
     this.splitterItem1,
     this.layoutControlGroup4,
     this.layoutControlItem11});
     this.layoutControlGroupMain.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroupMain.Name = "Root";
     this.layoutControlGroupMain.Size = new System.Drawing.Size(622, 545);
     this.layoutControlGroupMain.TextVisible = false;
     //
     // ItemForAssetplaceId
     //
     this.ItemForAssetplaceId.Control = this.lueTechnicianId;
     this.ItemForAssetplaceId.Location = new System.Drawing.Point(0, 111);
     this.ItemForAssetplaceId.Name = "ItemForAssetplaceId";
     this.ItemForAssetplaceId.Size = new System.Drawing.Size(602, 26);
     this.ItemForAssetplaceId.Text = "Technician";
     this.ItemForAssetplaceId.TextSize = new System.Drawing.Size(72, 13);
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.btnCancel;
     this.layoutControlItem1.Location = new System.Drawing.Point(415, 498);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(187, 27);
     this.layoutControlItem1.Text = "Cancel";
     this.layoutControlItem1.TextLocation = DevExpress.Utils.Locations.Right;
     this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem1.TextVisible = false;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.btnSave;
     this.layoutControlItem2.Location = new System.Drawing.Point(0, 498);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(415, 27);
     this.layoutControlItem2.Text = "Save";
     this.layoutControlItem2.TextLocation = DevExpress.Utils.Locations.Right;
     this.layoutControlItem2.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem2.TextVisible = false;
     //
     // layoutControlItem9
     //
     this.layoutControlItem9.AppearanceItemCaption.Options.UseTextOptions = true;
     this.layoutControlItem9.AppearanceItemCaption.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.layoutControlItem9.Control = this.tbOpenComment;
     this.layoutControlItem9.Location = new System.Drawing.Point(0, 251);
     this.layoutControlItem9.Name = "layoutControlItem9";
     this.layoutControlItem9.Size = new System.Drawing.Size(602, 64);
     this.layoutControlItem9.Text = "Comment";
     this.layoutControlItem9.TextSize = new System.Drawing.Size(72, 13);
     //
     // tabbedControlGroupDetails
     //
     this.tabbedControlGroupDetails.Location = new System.Drawing.Point(0, 320);
     this.tabbedControlGroupDetails.Name = "tabbedControlGroupDetails";
     this.tabbedControlGroupDetails.SelectedTabPage = this.layoutControlGroup3;
     this.tabbedControlGroupDetails.SelectedTabPageIndex = 0;
     this.tabbedControlGroupDetails.Size = new System.Drawing.Size(602, 178);
     this.tabbedControlGroupDetails.TabPages.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlGroup3,
     this.layoutControlGroup1});
     this.tabbedControlGroupDetails.Text = "Details";
     //
     // layoutControlGroup3
     //
     this.layoutControlGroup3.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem4});
     this.layoutControlGroup3.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup3.Name = "layoutControlGroup3";
     this.layoutControlGroup3.Size = new System.Drawing.Size(578, 132);
     this.layoutControlGroup3.Text = "Resolution";
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.clbcReason;
     this.layoutControlItem4.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(578, 132);
     this.layoutControlItem4.Text = "Reasons List";
     this.layoutControlItem4.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem4.TextVisible = false;
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem3});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "layoutControlGroup1";
     this.layoutControlGroup1.Size = new System.Drawing.Size(578, 132);
     this.layoutControlGroup1.Text = "Parts Usage";
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.gridControlPart;
     this.layoutControlItem3.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(578, 132);
     this.layoutControlItem3.Text = "Parts";
     this.layoutControlItem3.TextLocation = DevExpress.Utils.Locations.Top;
     this.layoutControlItem3.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem3.TextVisible = false;
     //
     // layoutControlGroup2
     //
     this.layoutControlGroup2.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem5,
     this.layoutControlItem7});
     this.layoutControlGroup2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup2.Name = "layoutControlGroup2";
     this.layoutControlGroup2.Size = new System.Drawing.Size(602, 85);
     this.layoutControlGroup2.Text = "Select Ticket";
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.Control = this.lueTicket;
     this.layoutControlItem5.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem5.Name = "layoutControlItem5";
     this.layoutControlItem5.Size = new System.Drawing.Size(578, 26);
     this.layoutControlItem5.Text = "Select Ticket";
     this.layoutControlItem5.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem5.TextVisible = false;
     //
     // layoutControlItem7
     //
     this.layoutControlItem7.AppearanceItemCaption.Options.UseTextOptions = true;
     this.layoutControlItem7.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.layoutControlItem7.AppearanceItemCaption.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
     this.layoutControlItem7.Control = this.lblContactPerson;
     this.layoutControlItem7.Location = new System.Drawing.Point(0, 26);
     this.layoutControlItem7.Name = "layoutControlItem7";
     this.layoutControlItem7.Size = new System.Drawing.Size(578, 17);
     this.layoutControlItem7.Text = "Ticket Info";
     this.layoutControlItem7.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem7.TextVisible = false;
     //
     // emptySpaceItem1
     //
     this.emptySpaceItem1.AllowHotTrack = false;
     this.emptySpaceItem1.Location = new System.Drawing.Point(0, 85);
     this.emptySpaceItem1.MaxSize = new System.Drawing.Size(0, 26);
     this.emptySpaceItem1.MinSize = new System.Drawing.Size(10, 26);
     this.emptySpaceItem1.Name = "emptySpaceItem1";
     this.emptySpaceItem1.Size = new System.Drawing.Size(602, 26);
     this.emptySpaceItem1.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
     //
     // splitterItem1
     //
     this.splitterItem1.AllowHotTrack = true;
     this.splitterItem1.Location = new System.Drawing.Point(0, 315);
     this.splitterItem1.Name = "splitterItem1";
     this.splitterItem1.Size = new System.Drawing.Size(602, 5);
     //
     // layoutControlGroup4
     //
     this.layoutControlGroup4.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem10,
     this.layoutControlItem6,
     this.layoutControlItem8});
     this.layoutControlGroup4.Location = new System.Drawing.Point(0, 137);
     this.layoutControlGroup4.Name = "layoutControlGroup4";
     this.layoutControlGroup4.Size = new System.Drawing.Size(602, 90);
     this.layoutControlGroup4.Text = "Date of visit";
     //
     // layoutControlItem10
     //
     this.layoutControlItem10.Control = this.deDate;
     this.layoutControlItem10.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem10.Name = "layoutControlItem10";
     this.layoutControlItem10.Size = new System.Drawing.Size(578, 24);
     this.layoutControlItem10.Text = "Date of visit";
     this.layoutControlItem10.TextSize = new System.Drawing.Size(72, 13);
     //
     // layoutControlItem6
     //
     this.layoutControlItem6.Control = this.deStartDate;
     this.layoutControlItem6.Location = new System.Drawing.Point(0, 24);
     this.layoutControlItem6.Name = "layoutControlItem6";
     this.layoutControlItem6.Size = new System.Drawing.Size(288, 24);
     this.layoutControlItem6.Text = "From time";
     this.layoutControlItem6.TextSize = new System.Drawing.Size(72, 13);
     //
     // layoutControlItem8
     //
     this.layoutControlItem8.Control = this.deEndDate;
     this.layoutControlItem8.Location = new System.Drawing.Point(288, 24);
     this.layoutControlItem8.Name = "layoutControlItem8";
     this.layoutControlItem8.Size = new System.Drawing.Size(290, 24);
     this.layoutControlItem8.Text = "To time";
     this.layoutControlItem8.TextSize = new System.Drawing.Size(72, 13);
     //
     // layoutControlItem11
     //
     this.layoutControlItem11.Control = this.lueDamage;
     this.layoutControlItem11.Location = new System.Drawing.Point(0, 227);
     this.layoutControlItem11.Name = "layoutControlItem11";
     this.layoutControlItem11.Size = new System.Drawing.Size(602, 24);
     this.layoutControlItem11.Text = "Damage Found";
     this.layoutControlItem11.TextSize = new System.Drawing.Size(72, 13);
     //
     // mSrv_TicketVisitPartTableAdapter
     //
     this.mSrv_TicketVisitPartTableAdapter.ClearBeforeFill = true;
     //
     // MSrvTicketVisitAddDlg
     //
     this.AcceptButton = this.btnSave;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton = this.btnCancel;
     this.ClientSize = new System.Drawing.Size(622, 545);
     this.Controls.Add(this.dataLayoutControlMain);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "MSrvTicketVisitAddDlg";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Editor";
     this.Load += new System.EventHandler(this.Dlg_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dataLayoutControlMain)).EndInit();
     this.dataLayoutControlMain.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.lueDamage.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deDate.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.clbcReason)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlPart)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mSrvTicketVisitPartBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsMSrc)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewPart)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditPartId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditn2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deEndDate.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deEndDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deStartDate.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deStartDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbOpenComment.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lueTicket.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lueTechnicianId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroupMain)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForAssetplaceId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabbedControlGroupDetails)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitterItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dxValidationProviderMain)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MenuManageForm));
     this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.dataLayoutControl1 = new DevExpress.XtraDataLayout.DataLayoutControl();
     this.btnAddChild = new DevExpress.XtraEditors.SimpleButton();
     this.btnAdd = new DevExpress.XtraEditors.SimpleButton();
     this.btnDel = new DevExpress.XtraEditors.SimpleButton();
     this.MenuControlComboBoxEdit = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.bindingSource1 = new System.Windows.Forms.BindingSource();
     this.btnClose = new DevExpress.XtraEditors.SimpleButton();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.MenuNoTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.MenuNameTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.OrderSpinEdit = new DevExpress.XtraEditors.SpinEdit();
     this.GlyphMemoEdit = new DevExpress.XtraEditors.MemoEdit();
     this.OnClickMemoEdit = new DevExpress.XtraEditors.MemoEdit();
     this.KeyTipTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.PNoTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.Root = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.ItemForMenuNo = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForMenuName = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForOrder = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForGlyph = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForOnClick = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForKeyTip = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem1 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.ItemForMenuControl = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForPNo = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem6 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem7 = new DevExpress.XtraLayout.LayoutControlItem();
     this.treeList1 = new DevExpress.XtraTreeList.TreeList();
     this.tcolMenuName = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.formLoadErrorExit1 = new FengSharp.OneCardAccess.Infrastructure.WinForm.Components.FormLoadErrorExit();
     this.treeList_ShowLine1 = new FengSharp.WinForm.Dev.Components.TreeList_ShowLine();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataLayoutControl1)).BeginInit();
     this.dataLayoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.MenuControlComboBoxEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.MenuNoTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.MenuNameTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.OrderSpinEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GlyphMemoEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.OnClickMemoEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.KeyTipTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.PNoTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Root)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForMenuNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForMenuName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForOrder)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForGlyph)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForOnClick)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForKeyTip)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForMenuControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForPNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     this.SuspendLayout();
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.dataLayoutControl1);
     this.layoutControl1.Controls.Add(this.treeList1);
     this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.Location = new System.Drawing.Point(0, 0);
     this.layoutControl1.Name = "layoutControl1";
     this.layoutControl1.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = new System.Drawing.Rectangle(351, 319, 551, 543);
     this.layoutControl1.OptionsItemText.TextAlignMode = DevExpress.XtraLayout.TextAlignMode.AlignInGroups;
     this.layoutControl1.Root = this.layoutControlGroup1;
     this.layoutControl1.Size = new System.Drawing.Size(997, 496);
     this.layoutControl1.TabIndex = 0;
     this.layoutControl1.Text = "layoutControl1";
     //
     // dataLayoutControl1
     //
     this.dataLayoutControl1.Controls.Add(this.btnAddChild);
     this.dataLayoutControl1.Controls.Add(this.btnAdd);
     this.dataLayoutControl1.Controls.Add(this.btnDel);
     this.dataLayoutControl1.Controls.Add(this.MenuControlComboBoxEdit);
     this.dataLayoutControl1.Controls.Add(this.btnClose);
     this.dataLayoutControl1.Controls.Add(this.btnSave);
     this.dataLayoutControl1.Controls.Add(this.MenuNoTextEdit);
     this.dataLayoutControl1.Controls.Add(this.MenuNameTextEdit);
     this.dataLayoutControl1.Controls.Add(this.OrderSpinEdit);
     this.dataLayoutControl1.Controls.Add(this.GlyphMemoEdit);
     this.dataLayoutControl1.Controls.Add(this.OnClickMemoEdit);
     this.dataLayoutControl1.Controls.Add(this.KeyTipTextEdit);
     this.dataLayoutControl1.Controls.Add(this.PNoTextEdit);
     this.dataLayoutControl1.DataSource = this.bindingSource1;
     this.dataLayoutControl1.Location = new System.Drawing.Point(366, 6);
     this.dataLayoutControl1.Name = "dataLayoutControl1";
     this.dataLayoutControl1.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = new System.Drawing.Rectangle(446, 375, 456, 528);
     this.dataLayoutControl1.OptionsItemText.TextAlignMode = DevExpress.XtraLayout.TextAlignMode.AlignInGroups;
     this.dataLayoutControl1.Root = this.Root;
     this.dataLayoutControl1.Size = new System.Drawing.Size(625, 484);
     this.dataLayoutControl1.TabIndex = 5;
     this.dataLayoutControl1.Text = "dataLayoutControl1";
     //
     // btnAddChild
     //
     this.btnAddChild.Image = ((System.Drawing.Image)(resources.GetObject("btnAddChild.Image")));
     this.btnAddChild.ImageToTextAlignment = DevExpress.XtraEditors.ImageAlignToText.LeftCenter;
     this.btnAddChild.Location = new System.Drawing.Point(201, 446);
     this.btnAddChild.Name = "btnAddChild";
     this.btnAddChild.Size = new System.Drawing.Size(100, 26);
     this.btnAddChild.StyleController = this.dataLayoutControl1;
     this.btnAddChild.TabIndex = 14;
     this.btnAddChild.Text = "新增子级";
     this.btnAddChild.Click += new System.EventHandler(this.btnAddChild_Click);
     //
     // btnAdd
     //
     this.btnAdd.Image = ((System.Drawing.Image)(resources.GetObject("btnAdd.Image")));
     this.btnAdd.ImageToTextAlignment = DevExpress.XtraEditors.ImageAlignToText.LeftCenter;
     this.btnAdd.Location = new System.Drawing.Point(97, 446);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(100, 26);
     this.btnAdd.StyleController = this.dataLayoutControl1;
     this.btnAdd.TabIndex = 13;
     this.btnAdd.Text = "新增同级";
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // btnDel
     //
     this.btnDel.Image = ((System.Drawing.Image)(resources.GetObject("btnDel.Image")));
     this.btnDel.ImageToTextAlignment = DevExpress.XtraEditors.ImageAlignToText.LeftCenter;
     this.btnDel.Location = new System.Drawing.Point(305, 446);
     this.btnDel.Name = "btnDel";
     this.btnDel.Size = new System.Drawing.Size(100, 26);
     this.btnDel.StyleController = this.dataLayoutControl1;
     this.btnDel.TabIndex = 14;
     this.btnDel.Text = "删除(&D)";
     this.btnDel.Click += new System.EventHandler(this.btnDel_Click);
     //
     // MenuControlComboBoxEdit
     //
     this.MenuControlComboBoxEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "MenuControl", true));
     this.MenuControlComboBoxEdit.Location = new System.Drawing.Point(87, 84);
     this.MenuControlComboBoxEdit.Name = "MenuControlComboBoxEdit";
     this.MenuControlComboBoxEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.MenuControlComboBoxEdit.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("RibbonPage", "RibbonPage", -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("RibbonPageGroup", "RibbonPageGroup", -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("BarSubItem", "BarSubItem", -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("BarItem", "BarItem", -1)});
     this.MenuControlComboBoxEdit.Properties.NullValuePrompt = null;
     this.MenuControlComboBoxEdit.Size = new System.Drawing.Size(526, 20);
     this.MenuControlComboBoxEdit.StyleController = this.dataLayoutControl1;
     this.MenuControlComboBoxEdit.TabIndex = 9;
     //
     // bindingSource1
     //
     this.bindingSource1.DataSource = typeof(FengSharp.OneCardAccess.Domain.RBACModule.Entity.MenuEntity);
     //
     // btnClose
     //
     this.btnClose.Image = ((System.Drawing.Image)(resources.GetObject("btnClose.Image")));
     this.btnClose.ImageToTextAlignment = DevExpress.XtraEditors.ImageAlignToText.LeftCenter;
     this.btnClose.Location = new System.Drawing.Point(513, 446);
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new System.Drawing.Size(100, 26);
     this.btnClose.StyleController = this.dataLayoutControl1;
     this.btnClose.TabIndex = 13;
     this.btnClose.Text = "关闭(&C)";
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
     //
     // btnSave
     //
     this.btnSave.Image = ((System.Drawing.Image)(resources.GetObject("btnSave.Image")));
     this.btnSave.ImageToTextAlignment = DevExpress.XtraEditors.ImageAlignToText.LeftCenter;
     this.btnSave.Location = new System.Drawing.Point(409, 446);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(100, 26);
     this.btnSave.StyleController = this.dataLayoutControl1;
     this.btnSave.TabIndex = 12;
     this.btnSave.Text = "保存(&S)";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // MenuNoTextEdit
     //
     this.MenuNoTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "MenuNo", true));
     this.MenuNoTextEdit.Location = new System.Drawing.Point(87, 12);
     this.MenuNoTextEdit.Name = "MenuNoTextEdit";
     this.MenuNoTextEdit.Properties.NullValuePrompt = null;
     this.MenuNoTextEdit.Properties.ReadOnly = true;
     this.MenuNoTextEdit.Size = new System.Drawing.Size(526, 20);
     this.MenuNoTextEdit.StyleController = this.dataLayoutControl1;
     this.MenuNoTextEdit.TabIndex = 4;
     //
     // MenuNameTextEdit
     //
     this.MenuNameTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "MenuName", true));
     this.MenuNameTextEdit.Location = new System.Drawing.Point(87, 60);
     this.MenuNameTextEdit.Name = "MenuNameTextEdit";
     this.MenuNameTextEdit.Properties.NullValuePrompt = null;
     this.MenuNameTextEdit.Size = new System.Drawing.Size(526, 20);
     this.MenuNameTextEdit.StyleController = this.dataLayoutControl1;
     this.MenuNameTextEdit.TabIndex = 5;
     //
     // OrderSpinEdit
     //
     this.OrderSpinEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "Order", true));
     this.OrderSpinEdit.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.OrderSpinEdit.Location = new System.Drawing.Point(87, 108);
     this.OrderSpinEdit.Name = "OrderSpinEdit";
     this.OrderSpinEdit.Properties.Appearance.Options.UseTextOptions = true;
     this.OrderSpinEdit.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.OrderSpinEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.OrderSpinEdit.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Default;
     this.OrderSpinEdit.Properties.Mask.EditMask = "N0";
     this.OrderSpinEdit.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.OrderSpinEdit.Properties.NullValuePrompt = null;
     this.OrderSpinEdit.Size = new System.Drawing.Size(526, 20);
     this.OrderSpinEdit.StyleController = this.dataLayoutControl1;
     this.OrderSpinEdit.TabIndex = 8;
     //
     // GlyphMemoEdit
     //
     this.GlyphMemoEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "Glyph", true));
     this.GlyphMemoEdit.Location = new System.Drawing.Point(87, 132);
     this.GlyphMemoEdit.Name = "GlyphMemoEdit";
     this.GlyphMemoEdit.Properties.NullValuePrompt = null;
     this.GlyphMemoEdit.Size = new System.Drawing.Size(526, 111);
     this.GlyphMemoEdit.StyleController = this.dataLayoutControl1;
     this.GlyphMemoEdit.TabIndex = 9;
     //
     // OnClickMemoEdit
     //
     this.OnClickMemoEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "OnClick", true));
     this.OnClickMemoEdit.Location = new System.Drawing.Point(87, 247);
     this.OnClickMemoEdit.Name = "OnClickMemoEdit";
     this.OnClickMemoEdit.Properties.NullValuePrompt = null;
     this.OnClickMemoEdit.Size = new System.Drawing.Size(526, 171);
     this.OnClickMemoEdit.StyleController = this.dataLayoutControl1;
     this.OnClickMemoEdit.TabIndex = 10;
     //
     // KeyTipTextEdit
     //
     this.KeyTipTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "KeyTip", true));
     this.KeyTipTextEdit.Location = new System.Drawing.Point(87, 422);
     this.KeyTipTextEdit.Name = "KeyTipTextEdit";
     this.KeyTipTextEdit.Properties.NullValuePrompt = null;
     this.KeyTipTextEdit.Size = new System.Drawing.Size(526, 20);
     this.KeyTipTextEdit.StyleController = this.dataLayoutControl1;
     this.KeyTipTextEdit.TabIndex = 11;
     //
     // PNoTextEdit
     //
     this.PNoTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "PNo", true));
     this.PNoTextEdit.Location = new System.Drawing.Point(87, 36);
     this.PNoTextEdit.Name = "PNoTextEdit";
     this.PNoTextEdit.Properties.NullValuePrompt = null;
     this.PNoTextEdit.Properties.ReadOnly = true;
     this.PNoTextEdit.Size = new System.Drawing.Size(526, 20);
     this.PNoTextEdit.StyleController = this.dataLayoutControl1;
     this.PNoTextEdit.TabIndex = 14;
     //
     // Root
     //
     this.Root.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.Root.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlGroup2});
     this.Root.Location = new System.Drawing.Point(0, 0);
     this.Root.Name = "Root";
     this.Root.Padding = new DevExpress.XtraLayout.Utils.Padding(3, 3, 3, 3);
     this.Root.Size = new System.Drawing.Size(625, 484);
     this.Root.TextVisible = false;
     //
     // layoutControlGroup2
     //
     this.layoutControlGroup2.AllowDrawBackground = false;
     this.layoutControlGroup2.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.ItemForMenuNo,
     this.ItemForMenuName,
     this.ItemForOrder,
     this.ItemForGlyph,
     this.ItemForOnClick,
     this.ItemForKeyTip,
     this.layoutControlItem3,
     this.layoutControlItem4,
     this.emptySpaceItem1,
     this.ItemForMenuControl,
     this.ItemForPNo,
     this.layoutControlItem5,
     this.layoutControlItem6,
     this.layoutControlItem7});
     this.layoutControlGroup2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup2.Name = "autoGeneratedGroup0";
     this.layoutControlGroup2.Padding = new DevExpress.XtraLayout.Utils.Padding(3, 3, 3, 3);
     this.layoutControlGroup2.Size = new System.Drawing.Size(617, 476);
     this.layoutControlGroup2.TextVisible = false;
     //
     // ItemForMenuNo
     //
     this.ItemForMenuNo.Control = this.MenuNoTextEdit;
     this.ItemForMenuNo.Location = new System.Drawing.Point(0, 0);
     this.ItemForMenuNo.Name = "ItemForMenuNo";
     this.ItemForMenuNo.Size = new System.Drawing.Size(605, 24);
     this.ItemForMenuNo.Text = "菜单编号";
     this.ItemForMenuNo.TextSize = new System.Drawing.Size(72, 13);
     //
     // ItemForMenuName
     //
     this.ItemForMenuName.Control = this.MenuNameTextEdit;
     this.ItemForMenuName.Location = new System.Drawing.Point(0, 48);
     this.ItemForMenuName.Name = "ItemForMenuName";
     this.ItemForMenuName.Size = new System.Drawing.Size(605, 24);
     this.ItemForMenuName.Text = "菜单名称";
     this.ItemForMenuName.TextSize = new System.Drawing.Size(72, 13);
     //
     // ItemForOrder
     //
     this.ItemForOrder.Control = this.OrderSpinEdit;
     this.ItemForOrder.Location = new System.Drawing.Point(0, 96);
     this.ItemForOrder.Name = "ItemForOrder";
     this.ItemForOrder.Size = new System.Drawing.Size(605, 24);
     this.ItemForOrder.Text = "菜单序号";
     this.ItemForOrder.TextSize = new System.Drawing.Size(72, 13);
     //
     // ItemForGlyph
     //
     this.ItemForGlyph.Control = this.GlyphMemoEdit;
     this.ItemForGlyph.Location = new System.Drawing.Point(0, 120);
     this.ItemForGlyph.Name = "ItemForGlyph";
     this.ItemForGlyph.Size = new System.Drawing.Size(605, 115);
     this.ItemForGlyph.StartNewLine = true;
     this.ItemForGlyph.Text = "显示图像";
     this.ItemForGlyph.TextSize = new System.Drawing.Size(72, 13);
     //
     // ItemForOnClick
     //
     this.ItemForOnClick.Control = this.OnClickMemoEdit;
     this.ItemForOnClick.Location = new System.Drawing.Point(0, 235);
     this.ItemForOnClick.Name = "ItemForOnClick";
     this.ItemForOnClick.Size = new System.Drawing.Size(605, 175);
     this.ItemForOnClick.StartNewLine = true;
     this.ItemForOnClick.Text = "点击事件";
     this.ItemForOnClick.TextSize = new System.Drawing.Size(72, 13);
     //
     // ItemForKeyTip
     //
     this.ItemForKeyTip.Control = this.KeyTipTextEdit;
     this.ItemForKeyTip.Location = new System.Drawing.Point(0, 410);
     this.ItemForKeyTip.Name = "ItemForKeyTip";
     this.ItemForKeyTip.Size = new System.Drawing.Size(605, 24);
     this.ItemForKeyTip.Text = "提示";
     this.ItemForKeyTip.TextSize = new System.Drawing.Size(72, 13);
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.btnSave;
     this.layoutControlItem3.Location = new System.Drawing.Point(397, 434);
     this.layoutControlItem3.MaxSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem3.MinSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(104, 30);
     this.layoutControlItem3.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem3.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem3.TextVisible = false;
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.btnClose;
     this.layoutControlItem4.Location = new System.Drawing.Point(501, 434);
     this.layoutControlItem4.MaxSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem4.MinSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(104, 30);
     this.layoutControlItem4.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem4.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem4.TextVisible = false;
     //
     // emptySpaceItem1
     //
     this.emptySpaceItem1.AllowHotTrack = false;
     this.emptySpaceItem1.Location = new System.Drawing.Point(0, 434);
     this.emptySpaceItem1.Name = "emptySpaceItem1";
     this.emptySpaceItem1.Size = new System.Drawing.Size(85, 30);
     this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
     //
     // ItemForMenuControl
     //
     this.ItemForMenuControl.Control = this.MenuControlComboBoxEdit;
     this.ItemForMenuControl.Location = new System.Drawing.Point(0, 72);
     this.ItemForMenuControl.Name = "ItemForMenuControl";
     this.ItemForMenuControl.Size = new System.Drawing.Size(605, 24);
     this.ItemForMenuControl.Text = "菜单编程控件";
     this.ItemForMenuControl.TextSize = new System.Drawing.Size(72, 13);
     //
     // ItemForPNo
     //
     this.ItemForPNo.Control = this.PNoTextEdit;
     this.ItemForPNo.Location = new System.Drawing.Point(0, 24);
     this.ItemForPNo.Name = "ItemForPNo";
     this.ItemForPNo.Size = new System.Drawing.Size(605, 24);
     this.ItemForPNo.Text = "上级编号";
     this.ItemForPNo.TextSize = new System.Drawing.Size(72, 13);
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.Control = this.btnDel;
     this.layoutControlItem5.Location = new System.Drawing.Point(293, 434);
     this.layoutControlItem5.MaxSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem5.MinSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem5.Name = "layoutControlItem5";
     this.layoutControlItem5.Size = new System.Drawing.Size(104, 30);
     this.layoutControlItem5.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem5.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem5.TextVisible = false;
     //
     // layoutControlItem6
     //
     this.layoutControlItem6.Control = this.btnAdd;
     this.layoutControlItem6.Location = new System.Drawing.Point(85, 434);
     this.layoutControlItem6.MaxSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem6.MinSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem6.Name = "layoutControlItem6";
     this.layoutControlItem6.Size = new System.Drawing.Size(104, 30);
     this.layoutControlItem6.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem6.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem6.TextVisible = false;
     //
     // layoutControlItem7
     //
     this.layoutControlItem7.Control = this.btnAddChild;
     this.layoutControlItem7.Location = new System.Drawing.Point(189, 434);
     this.layoutControlItem7.MaxSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem7.MinSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem7.Name = "layoutControlItem7";
     this.layoutControlItem7.Size = new System.Drawing.Size(104, 30);
     this.layoutControlItem7.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem7.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem7.TextVisible = false;
     //
     // treeList1
     //
     this.treeList1.Appearance.EvenRow.BackColor = System.Drawing.Color.LightYellow;
     this.treeList1.Appearance.EvenRow.Options.UseBackColor = true;
     this.treeList1.Appearance.OddRow.BackColor = System.Drawing.Color.White;
     this.treeList1.Appearance.OddRow.Options.UseBackColor = true;
     this.treeList1.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
     this.tcolMenuName});
     this.treeList1.IndicatorWidth = 40;
     this.treeList1.KeyFieldName = "MenuNo";
     this.treeList_ShowLine1.SetLineNoFormatString(this.treeList1, "{0}");
     this.treeList1.Location = new System.Drawing.Point(6, 6);
     this.treeList1.Name = "treeList1";
     this.treeList1.OptionsBehavior.Editable = false;
     this.treeList1.OptionsBehavior.ReadOnly = true;
     this.treeList1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.treeList1.OptionsSelection.UseIndicatorForSelection = true;
     this.treeList1.OptionsView.EnableAppearanceEvenRow = true;
     this.treeList1.OptionsView.EnableAppearanceOddRow = true;
     this.treeList1.ParentFieldName = "PNo";
     this.treeList_ShowLine1.SetShowLineNo(this.treeList1, true);
     this.treeList1.Size = new System.Drawing.Size(356, 484);
     this.treeList1.TabIndex = 4;
     //
     // tcolMenuName
     //
     this.tcolMenuName.Caption = "菜单名称";
     this.tcolMenuName.FieldName = "MenuName";
     this.tcolMenuName.Name = "tcolMenuName";
     this.tcolMenuName.Visible = true;
     this.tcolMenuName.VisibleIndex = 0;
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem1,
     this.layoutControlItem2});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "Root";
     this.layoutControlGroup1.Padding = new DevExpress.XtraLayout.Utils.Padding(3, 3, 3, 3);
     this.layoutControlGroup1.Size = new System.Drawing.Size(997, 496);
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.treeList1;
     this.layoutControlItem1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(360, 488);
     this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem1.TextVisible = false;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.dataLayoutControl1;
     this.layoutControlItem2.Location = new System.Drawing.Point(360, 0);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(629, 488);
     this.layoutControlItem2.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem2.TextVisible = false;
     //
     // MenuManageForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(997, 496);
     this.Controls.Add(this.layoutControl1);
     this.formLoadErrorExit1.SetEnableLoadError(this, true);
     this.Name = "MenuManageForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "菜单权限设置";
     this.Load += new System.EventHandler(this.MenuManageForm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataLayoutControl1)).EndInit();
     this.dataLayoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.MenuControlComboBoxEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.MenuNoTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.MenuNameTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.OrderSpinEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GlyphMemoEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.OnClickMemoEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.KeyTipTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.PNoTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Root)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForMenuNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForMenuName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForOrder)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForGlyph)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForOnClick)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForKeyTip)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForMenuControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForPNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmEdtAddExt));
     this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
     this.bar1 = new DevExpress.XtraBars.Bar();
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
     this.sharedImageCollection1 = new DevExpress.Utils.SharedImageCollection(this.components);
     this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.dataLayoutControl1 = new DevExpress.XtraDataLayout.DataLayoutControl();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.Root = new DevExpress.XtraLayout.LayoutControlGroup();
     this.aDDTIONCHECKHISTORYEXTBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.ECGTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.ItemForECG = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.CHEST_X_RAYTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.ItemForCHEST_X_RAY = new DevExpress.XtraLayout.LayoutControlItem();
     this.CARDIOTHORACIC_RATIOTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.ItemForCARDIOTHORACIC_RATIO = new DevExpress.XtraLayout.LayoutControlItem();
     this.ECHOCARDIOGRAPHYTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.ItemForECHOCARDIOGRAPHY = new DevExpress.XtraLayout.LayoutControlItem();
     this.B_KIDNEYSTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.ItemForB_KIDNEYS = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForMEMO = new DevExpress.XtraLayout.LayoutControlItem();
     this.MEMOTextEdit = new DevExpress.XtraEditors.MemoEdit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.sharedImageCollection1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.sharedImageCollection1.ImageSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataLayoutControl1)).BeginInit();
     this.dataLayoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Root)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.aDDTIONCHECKHISTORYEXTBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ECGTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForECG)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.CHEST_X_RAYTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForCHEST_X_RAY)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.CARDIOTHORACIC_RATIOTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForCARDIOTHORACIC_RATIO)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ECHOCARDIOGRAPHYTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForECHOCARDIOGRAPHY)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.B_KIDNEYSTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForB_KIDNEYS)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForMEMO)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.MEMOTextEdit.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // barManager1
     //
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.bar1});
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.Form = this;
     this.barManager1.Images = this.sharedImageCollection1;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.barButtonItem1,
     this.barButtonItem2});
     this.barManager1.MaxItemId = 2;
     //
     // bar1
     //
     this.bar1.BarName = "Tools";
     this.bar1.DockCol = 0;
     this.bar1.DockRow = 1;
     this.bar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barButtonItem1, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barButtonItem2, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph)});
     this.bar1.Text = "Tools";
     //
     // barDockControlTop
     //
     this.barDockControlTop.CausesValidation = false;
     this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Size = new System.Drawing.Size(498, 31);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 255);
     this.barDockControlBottom.Size = new System.Drawing.Size(498, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.CausesValidation = false;
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 31);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 224);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(498, 31);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 224);
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "保存并关闭";
     this.barButtonItem1.Id = 0;
     this.barButtonItem1.ImageIndex = 59;
     this.barButtonItem1.Name = "barButtonItem1";
     this.barButtonItem1.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem1_ItemClick);
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption = "取消";
     this.barButtonItem2.Id = 1;
     this.barButtonItem2.ImageIndex = 53;
     this.barButtonItem2.Name = "barButtonItem2";
     this.barButtonItem2.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem2_ItemClick);
     //
     // sharedImageCollection1
     //
     //
     //
     //
     this.sharedImageCollection1.ImageSource.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("sharedImageCollection1.ImageSource.ImageStream")));
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._1, "_1", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 0);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(0, "_1");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._10, "_10", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 1);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(1, "_10");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._100, "_100", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 2);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(2, "_100");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._101, "_101", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 3);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(3, "_101");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._102, "_102", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 4);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(4, "_102");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._103, "_103", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 5);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(5, "_103");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._104, "_104", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 6);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(6, "_104");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._105, "_105", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 7);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(7, "_105");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._106, "_106", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 8);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(8, "_106");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._107, "_107", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 9);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(9, "_107");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._108, "_108", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 10);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(10, "_108");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._11, "_11", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 11);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(11, "_11");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._12, "_12", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 12);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(12, "_12");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._13, "_13", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 13);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(13, "_13");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._14, "_14", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 14);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(14, "_14");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._15, "_15", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 15);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(15, "_15");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._16, "_16", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 16);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(16, "_16");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._17, "_17", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 17);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(17, "_17");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._18, "_18", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 18);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(18, "_18");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._19, "_19", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 19);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(19, "_19");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._2, "_2", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 20);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(20, "_2");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._20, "_20", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 21);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(21, "_20");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._21, "_21", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 22);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(22, "_21");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._22, "_22", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 23);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(23, "_22");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._23, "_23", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 24);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(24, "_23");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._24, "_24", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 25);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(25, "_24");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._25, "_25", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 26);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(26, "_25");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._26, "_26", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 27);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(27, "_26");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._27, "_27", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 28);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(28, "_27");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._28, "_28", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 29);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(29, "_28");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._29, "_29", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 30);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(30, "_29");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._3, "_3", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 31);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(31, "_3");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._30, "_30", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 32);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(32, "_30");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._31, "_31", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 33);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(33, "_31");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._32, "_32", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 34);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(34, "_32");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._33, "_33", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 35);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(35, "_33");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._34, "_34", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 36);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(36, "_34");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._35, "_35", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 37);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(37, "_35");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._36, "_36", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 38);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(38, "_36");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._37, "_37", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 39);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(39, "_37");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._38, "_38", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 40);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(40, "_38");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._39, "_39", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 41);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(41, "_39");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._4, "_4", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 42);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(42, "_4");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._40, "_40", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 43);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(43, "_40");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._41, "_41", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 44);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(44, "_41");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._42, "_42", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 45);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(45, "_42");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._43, "_43", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 46);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(46, "_43");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._44, "_44", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 47);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(47, "_44");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._45, "_45", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 48);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(48, "_45");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._46, "_46", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 49);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(49, "_46");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._47, "_47", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 50);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(50, "_47");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._48, "_48", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 51);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(51, "_48");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._49, "_49", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 52);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(52, "_49");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._5, "_5", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 53);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(53, "_5");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._50, "_50", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 54);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(54, "_50");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._51, "_51", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 55);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(55, "_51");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._52, "_52", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 56);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(56, "_52");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._53, "_53", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 57);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(57, "_53");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._54, "_54", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 58);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(58, "_54");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._55, "_55", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 59);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(59, "_55");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._56, "_56", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 60);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(60, "_56");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._57, "_57", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 61);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(61, "_57");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._58, "_58", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 62);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(62, "_58");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._59, "_59", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 63);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(63, "_59");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._6, "_6", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 64);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(64, "_6");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._60, "_60", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 65);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(65, "_60");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._61, "_61", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 66);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(66, "_61");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._62, "_62", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 67);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(67, "_62");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._63, "_63", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 68);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(68, "_63");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._64, "_64", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 69);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(69, "_64");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._65, "_65", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 70);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(70, "_65");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._66, "_66", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 71);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(71, "_66");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._67, "_67", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 72);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(72, "_67");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._68, "_68", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 73);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(73, "_68");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._69, "_69", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 74);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(74, "_69");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._7, "_7", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 75);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(75, "_7");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._70, "_70", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 76);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(76, "_70");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._71, "_71", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 77);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(77, "_71");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._72, "_72", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 78);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(78, "_72");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._73, "_73", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 79);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(79, "_73");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._74, "_74", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 80);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(80, "_74");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._75, "_75", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 81);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(81, "_75");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._76, "_76", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 82);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(82, "_76");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._77, "_77", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 83);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(83, "_77");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._78, "_78", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 84);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(84, "_78");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._79, "_79", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 85);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(85, "_79");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._8, "_8", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 86);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(86, "_8");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._80, "_80", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 87);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(87, "_80");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._81, "_81", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 88);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(88, "_81");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._82, "_82", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 89);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(89, "_82");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._83, "_83", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 90);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(90, "_83");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._84, "_84", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 91);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(91, "_84");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._85, "_85", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 92);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(92, "_85");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._86, "_86", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 93);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(93, "_86");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._87, "_87", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 94);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(94, "_87");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._88, "_88", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 95);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(95, "_88");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._89, "_89", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 96);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(96, "_89");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._9, "_9", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 97);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(97, "_9");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._90, "_90", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 98);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(98, "_90");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._91, "_91", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 99);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(99, "_91");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._92, "_92", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 100);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(100, "_92");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._93, "_93", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 101);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(101, "_93");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._94, "_94", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 102);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(102, "_94");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._95, "_95", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 103);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(103, "_95");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._96, "_96", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 104);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(104, "_96");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._97, "_97", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 105);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(105, "_97");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._98, "_98", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 106);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(106, "_98");
     this.sharedImageCollection1.ImageSource.InsertImage(global::BloodInfo_MngPlatform.Properties.Resources._99, "_99", typeof(global::BloodInfo_MngPlatform.Properties.Resources), 107);
     this.sharedImageCollection1.ImageSource.Images.SetKeyName(107, "_99");
     this.sharedImageCollection1.ParentControl = this;
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.dataLayoutControl1);
     this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.Location = new System.Drawing.Point(0, 31);
     this.layoutControl1.Name = "layoutControl1";
     this.layoutControl1.Root = this.layoutControlGroup1;
     this.layoutControl1.Size = new System.Drawing.Size(498, 224);
     this.layoutControl1.TabIndex = 4;
     this.layoutControl1.Text = "layoutControl1";
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.CustomizationFormText = "layoutControlGroup1";
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.GroupBordersVisible = false;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem1});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "layoutControlGroup1";
     this.layoutControlGroup1.Size = new System.Drawing.Size(498, 224);
     this.layoutControlGroup1.Text = "layoutControlGroup1";
     this.layoutControlGroup1.TextVisible = false;
     //
     // dataLayoutControl1
     //
     this.dataLayoutControl1.Controls.Add(this.ECGTextEdit);
     this.dataLayoutControl1.Controls.Add(this.CHEST_X_RAYTextEdit);
     this.dataLayoutControl1.Controls.Add(this.CARDIOTHORACIC_RATIOTextEdit);
     this.dataLayoutControl1.Controls.Add(this.ECHOCARDIOGRAPHYTextEdit);
     this.dataLayoutControl1.Controls.Add(this.B_KIDNEYSTextEdit);
     this.dataLayoutControl1.Controls.Add(this.MEMOTextEdit);
     this.dataLayoutControl1.DataSource = this.aDDTIONCHECKHISTORYEXTBindingSource;
     this.dataLayoutControl1.Location = new System.Drawing.Point(12, 12);
     this.dataLayoutControl1.Name = "dataLayoutControl1";
     this.dataLayoutControl1.Root = this.Root;
     this.dataLayoutControl1.Size = new System.Drawing.Size(474, 200);
     this.dataLayoutControl1.TabIndex = 4;
     this.dataLayoutControl1.Text = "dataLayoutControl1";
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.dataLayoutControl1;
     this.layoutControlItem1.CustomizationFormText = "layoutControlItem1";
     this.layoutControlItem1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(478, 204);
     this.layoutControlItem1.Text = "layoutControlItem1";
     this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem1.TextToControlDistance = 0;
     this.layoutControlItem1.TextVisible = false;
     //
     // Root
     //
     this.Root.CustomizationFormText = "Root";
     this.Root.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.Root.GroupBordersVisible = false;
     this.Root.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlGroup2});
     this.Root.Location = new System.Drawing.Point(0, 0);
     this.Root.Name = "Root";
     this.Root.Size = new System.Drawing.Size(474, 200);
     this.Root.Text = "Root";
     this.Root.TextVisible = false;
     //
     // aDDTIONCHECKHISTORYEXTBindingSource
     //
     this.aDDTIONCHECKHISTORYEXTBindingSource.DataSource = typeof(BloodInfo_MngPlatform.Models.ADDTION_CHECK_HISTORY_EXT);
     //
     // ECGTextEdit
     //
     this.ECGTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.aDDTIONCHECKHISTORYEXTBindingSource, "ECG", true));
     this.ECGTextEdit.Location = new System.Drawing.Point(160, 12);
     this.ECGTextEdit.MenuManager = this.barManager1;
     this.ECGTextEdit.Name = "ECGTextEdit";
     this.ECGTextEdit.Size = new System.Drawing.Size(302, 20);
     this.ECGTextEdit.StyleController = this.dataLayoutControl1;
     this.ECGTextEdit.TabIndex = 4;
     //
     // ItemForECG
     //
     this.ItemForECG.Control = this.ECGTextEdit;
     this.ItemForECG.CustomizationFormText = "ECG";
     this.ItemForECG.Location = new System.Drawing.Point(0, 0);
     this.ItemForECG.Name = "ItemForECG";
     this.ItemForECG.Size = new System.Drawing.Size(454, 24);
     this.ItemForECG.Text = "ECG";
     this.ItemForECG.TextSize = new System.Drawing.Size(144, 14);
     //
     // layoutControlGroup2
     //
     this.layoutControlGroup2.AllowDrawBackground = false;
     this.layoutControlGroup2.CustomizationFormText = "autoGeneratedGroup0";
     this.layoutControlGroup2.GroupBordersVisible = false;
     this.layoutControlGroup2.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.ItemForECG,
     this.ItemForCHEST_X_RAY,
     this.ItemForCARDIOTHORACIC_RATIO,
     this.ItemForECHOCARDIOGRAPHY,
     this.ItemForB_KIDNEYS,
     this.ItemForMEMO});
     this.layoutControlGroup2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup2.Name = "autoGeneratedGroup0";
     this.layoutControlGroup2.Size = new System.Drawing.Size(454, 180);
     this.layoutControlGroup2.Text = "autoGeneratedGroup0";
     //
     // CHEST_X_RAYTextEdit
     //
     this.CHEST_X_RAYTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.aDDTIONCHECKHISTORYEXTBindingSource, "CHEST_X_RAY", true));
     this.CHEST_X_RAYTextEdit.Location = new System.Drawing.Point(160, 36);
     this.CHEST_X_RAYTextEdit.MenuManager = this.barManager1;
     this.CHEST_X_RAYTextEdit.Name = "CHEST_X_RAYTextEdit";
     this.CHEST_X_RAYTextEdit.Size = new System.Drawing.Size(302, 20);
     this.CHEST_X_RAYTextEdit.StyleController = this.dataLayoutControl1;
     this.CHEST_X_RAYTextEdit.TabIndex = 5;
     //
     // ItemForCHEST_X_RAY
     //
     this.ItemForCHEST_X_RAY.Control = this.CHEST_X_RAYTextEdit;
     this.ItemForCHEST_X_RAY.CustomizationFormText = "CHEST_X_RAY";
     this.ItemForCHEST_X_RAY.Location = new System.Drawing.Point(0, 24);
     this.ItemForCHEST_X_RAY.Name = "ItemForCHEST_X_RAY";
     this.ItemForCHEST_X_RAY.Size = new System.Drawing.Size(454, 24);
     this.ItemForCHEST_X_RAY.Text = "CHEST_X_RAY";
     this.ItemForCHEST_X_RAY.TextSize = new System.Drawing.Size(144, 14);
     //
     // CARDIOTHORACIC_RATIOTextEdit
     //
     this.CARDIOTHORACIC_RATIOTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.aDDTIONCHECKHISTORYEXTBindingSource, "CARDIOTHORACIC_RATIO", true));
     this.CARDIOTHORACIC_RATIOTextEdit.Location = new System.Drawing.Point(160, 60);
     this.CARDIOTHORACIC_RATIOTextEdit.MenuManager = this.barManager1;
     this.CARDIOTHORACIC_RATIOTextEdit.Name = "CARDIOTHORACIC_RATIOTextEdit";
     this.CARDIOTHORACIC_RATIOTextEdit.Size = new System.Drawing.Size(302, 20);
     this.CARDIOTHORACIC_RATIOTextEdit.StyleController = this.dataLayoutControl1;
     this.CARDIOTHORACIC_RATIOTextEdit.TabIndex = 6;
     //
     // ItemForCARDIOTHORACIC_RATIO
     //
     this.ItemForCARDIOTHORACIC_RATIO.Control = this.CARDIOTHORACIC_RATIOTextEdit;
     this.ItemForCARDIOTHORACIC_RATIO.CustomizationFormText = "CARDIOTHORACIC_RATIO";
     this.ItemForCARDIOTHORACIC_RATIO.Location = new System.Drawing.Point(0, 48);
     this.ItemForCARDIOTHORACIC_RATIO.Name = "ItemForCARDIOTHORACIC_RATIO";
     this.ItemForCARDIOTHORACIC_RATIO.Size = new System.Drawing.Size(454, 24);
     this.ItemForCARDIOTHORACIC_RATIO.Text = "CARDIOTHORACIC_RATIO";
     this.ItemForCARDIOTHORACIC_RATIO.TextSize = new System.Drawing.Size(144, 14);
     //
     // ECHOCARDIOGRAPHYTextEdit
     //
     this.ECHOCARDIOGRAPHYTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.aDDTIONCHECKHISTORYEXTBindingSource, "ECHOCARDIOGRAPHY", true));
     this.ECHOCARDIOGRAPHYTextEdit.Location = new System.Drawing.Point(160, 84);
     this.ECHOCARDIOGRAPHYTextEdit.MenuManager = this.barManager1;
     this.ECHOCARDIOGRAPHYTextEdit.Name = "ECHOCARDIOGRAPHYTextEdit";
     this.ECHOCARDIOGRAPHYTextEdit.Size = new System.Drawing.Size(302, 20);
     this.ECHOCARDIOGRAPHYTextEdit.StyleController = this.dataLayoutControl1;
     this.ECHOCARDIOGRAPHYTextEdit.TabIndex = 7;
     //
     // ItemForECHOCARDIOGRAPHY
     //
     this.ItemForECHOCARDIOGRAPHY.Control = this.ECHOCARDIOGRAPHYTextEdit;
     this.ItemForECHOCARDIOGRAPHY.CustomizationFormText = "ECHOCARDIOGRAPHY";
     this.ItemForECHOCARDIOGRAPHY.Location = new System.Drawing.Point(0, 72);
     this.ItemForECHOCARDIOGRAPHY.Name = "ItemForECHOCARDIOGRAPHY";
     this.ItemForECHOCARDIOGRAPHY.Size = new System.Drawing.Size(454, 24);
     this.ItemForECHOCARDIOGRAPHY.Text = "ECHOCARDIOGRAPHY";
     this.ItemForECHOCARDIOGRAPHY.TextSize = new System.Drawing.Size(144, 14);
     //
     // B_KIDNEYSTextEdit
     //
     this.B_KIDNEYSTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.aDDTIONCHECKHISTORYEXTBindingSource, "B_KIDNEYS", true));
     this.B_KIDNEYSTextEdit.Location = new System.Drawing.Point(160, 108);
     this.B_KIDNEYSTextEdit.MenuManager = this.barManager1;
     this.B_KIDNEYSTextEdit.Name = "B_KIDNEYSTextEdit";
     this.B_KIDNEYSTextEdit.Size = new System.Drawing.Size(302, 20);
     this.B_KIDNEYSTextEdit.StyleController = this.dataLayoutControl1;
     this.B_KIDNEYSTextEdit.TabIndex = 8;
     //
     // ItemForB_KIDNEYS
     //
     this.ItemForB_KIDNEYS.Control = this.B_KIDNEYSTextEdit;
     this.ItemForB_KIDNEYS.CustomizationFormText = "B_KIDNEYS";
     this.ItemForB_KIDNEYS.Location = new System.Drawing.Point(0, 96);
     this.ItemForB_KIDNEYS.Name = "ItemForB_KIDNEYS";
     this.ItemForB_KIDNEYS.Size = new System.Drawing.Size(454, 24);
     this.ItemForB_KIDNEYS.Text = "B_KIDNEYS";
     this.ItemForB_KIDNEYS.TextSize = new System.Drawing.Size(144, 14);
     //
     // ItemForMEMO
     //
     this.ItemForMEMO.Control = this.MEMOTextEdit;
     this.ItemForMEMO.CustomizationFormText = "MEMO";
     this.ItemForMEMO.Location = new System.Drawing.Point(0, 120);
     this.ItemForMEMO.Name = "ItemForMEMO";
     this.ItemForMEMO.Size = new System.Drawing.Size(454, 60);
     this.ItemForMEMO.Text = "MEMO";
     this.ItemForMEMO.TextSize = new System.Drawing.Size(144, 14);
     //
     // MEMOTextEdit
     //
     this.MEMOTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.aDDTIONCHECKHISTORYEXTBindingSource, "MEMO", true));
     this.MEMOTextEdit.Location = new System.Drawing.Point(160, 132);
     this.MEMOTextEdit.MenuManager = this.barManager1;
     this.MEMOTextEdit.Name = "MEMOTextEdit";
     this.MEMOTextEdit.Size = new System.Drawing.Size(302, 56);
     this.MEMOTextEdit.StyleController = this.dataLayoutControl1;
     this.MEMOTextEdit.TabIndex = 9;
     //
     // FrmEdtAddExt
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(498, 255);
     this.Controls.Add(this.layoutControl1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "FrmEdtAddExt";
     this.Text = "FrmEdtAddExt";
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.sharedImageCollection1.ImageSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.sharedImageCollection1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataLayoutControl1)).EndInit();
     this.dataLayoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Root)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.aDDTIONCHECKHISTORYEXTBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ECGTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForECG)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.CHEST_X_RAYTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForCHEST_X_RAY)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.CARDIOTHORACIC_RATIOTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForCARDIOTHORACIC_RATIO)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ECHOCARDIOGRAPHYTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForECHOCARDIOGRAPHY)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.B_KIDNEYSTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForB_KIDNEYS)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForMEMO)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.MEMOTextEdit.Properties)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule1 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule2 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule3 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule4 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule5 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule6 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule7 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DynamicForecastEditorDlg));
     this.dsData = new NICSQLTools.Data.dsData();
     this.dataLayoutControlMain = new DevExpress.XtraDataLayout.DataLayoutControl();
     this.tbType = new DevExpress.XtraEditors.TextEdit();
     this.tbDF = new DevExpress.XtraEditors.TextEdit();
     this.tbPeriod = new DevExpress.XtraEditors.TextEdit();
     this.tbBusinessUnit = new DevExpress.XtraEditors.TextEdit();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
     this.lueCostcenter = new DevExpress.XtraEditors.LookUpEdit();
     this.LSMSCostcenter = new DevExpress.Data.Linq.LinqServerModeSource();
     this.lueGLAccount = new DevExpress.XtraEditors.LookUpEdit();
     this.LSMSGLAccount = new DevExpress.Data.Linq.LinqServerModeSource();
     this.tbYear = new DevExpress.XtraEditors.TextEdit();
     this.layoutControlGroupMain = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.ItemForAssetplaceId = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForEmpOhda = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForAssetsdate = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem6 = new DevExpress.XtraLayout.LayoutControlItem();
     this.dxValidationProviderMain = new DevExpress.XtraEditors.DXErrorProvider.DXValidationProvider(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.dsData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataLayoutControlMain)).BeginInit();
     this.dataLayoutControlMain.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbDF.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbPeriod.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbBusinessUnit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lueCostcenter.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSCostcenter)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lueGLAccount.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSGLAccount)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbYear.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroupMain)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForAssetplaceId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForEmpOhda)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForAssetsdate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dxValidationProviderMain)).BeginInit();
     this.SuspendLayout();
     //
     // dsData
     //
     this.dsData.DataSetName = "dsData";
     this.dsData.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // dataLayoutControlMain
     //
     this.dataLayoutControlMain.Controls.Add(this.tbType);
     this.dataLayoutControlMain.Controls.Add(this.tbDF);
     this.dataLayoutControlMain.Controls.Add(this.tbPeriod);
     this.dataLayoutControlMain.Controls.Add(this.tbBusinessUnit);
     this.dataLayoutControlMain.Controls.Add(this.btnSave);
     this.dataLayoutControlMain.Controls.Add(this.btnCancel);
     this.dataLayoutControlMain.Controls.Add(this.lueCostcenter);
     this.dataLayoutControlMain.Controls.Add(this.lueGLAccount);
     this.dataLayoutControlMain.Controls.Add(this.tbYear);
     this.dataLayoutControlMain.DataMember = "TblAssets";
     this.dataLayoutControlMain.DataSource = this.dsData;
     this.dataLayoutControlMain.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dataLayoutControlMain.Location = new System.Drawing.Point(0, 0);
     this.dataLayoutControlMain.Name = "dataLayoutControlMain";
     this.dataLayoutControlMain.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = new System.Drawing.Rectangle(789, 140, 330, 510);
     this.dataLayoutControlMain.OptionsPrint.AppearanceGroupCaption.BackColor = System.Drawing.Color.LightGray;
     this.dataLayoutControlMain.OptionsPrint.AppearanceGroupCaption.Font = new System.Drawing.Font("Tahoma", 10.25F);
     this.dataLayoutControlMain.OptionsPrint.AppearanceGroupCaption.Options.UseBackColor = true;
     this.dataLayoutControlMain.OptionsPrint.AppearanceGroupCaption.Options.UseFont = true;
     this.dataLayoutControlMain.OptionsPrint.AppearanceGroupCaption.Options.UseTextOptions = true;
     this.dataLayoutControlMain.OptionsPrint.AppearanceGroupCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.dataLayoutControlMain.OptionsPrint.AppearanceGroupCaption.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
     this.dataLayoutControlMain.OptionsPrint.AppearanceItemCaption.Options.UseTextOptions = true;
     this.dataLayoutControlMain.OptionsPrint.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.dataLayoutControlMain.OptionsPrint.AppearanceItemCaption.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
     this.dataLayoutControlMain.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.dataLayoutControlMain.Root = this.layoutControlGroupMain;
     this.dataLayoutControlMain.Size = new System.Drawing.Size(414, 230);
     this.dataLayoutControlMain.TabIndex = 0;
     this.dataLayoutControlMain.Text = "dataLayoutControl1";
     //
     // tbType
     //
     this.tbType.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.dsData, "CostDynamicForecast.Type", true));
     this.tbType.Location = new System.Drawing.Point(75, 168);
     this.tbType.Name = "tbType";
     this.tbType.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.tbType.Properties.Appearance.Options.UseFont = true;
     this.tbType.Size = new System.Drawing.Size(327, 22);
     this.tbType.StyleController = this.dataLayoutControlMain;
     this.tbType.TabIndex = 21;
     conditionValidationRule1.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule1.ErrorText = "This value is not valid";
     this.dxValidationProviderMain.SetValidationRule(this.tbType, conditionValidationRule1);
     //
     // tbDF
     //
     this.tbDF.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.dsData, "CostDynamicForecast.DF", true));
     this.tbDF.Location = new System.Drawing.Point(75, 142);
     this.tbDF.Name = "tbDF";
     this.tbDF.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.tbDF.Properties.Appearance.Options.UseFont = true;
     this.tbDF.Properties.DisplayFormat.FormatString = "f2";
     this.tbDF.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.tbDF.Properties.EditFormat.FormatString = "f2";
     this.tbDF.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.tbDF.Properties.Mask.EditMask = "f2";
     this.tbDF.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.tbDF.Size = new System.Drawing.Size(327, 22);
     this.tbDF.StyleController = this.dataLayoutControlMain;
     this.tbDF.TabIndex = 20;
     conditionValidationRule2.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule2.ErrorText = "This value is not valid";
     this.dxValidationProviderMain.SetValidationRule(this.tbDF, conditionValidationRule2);
     //
     // tbPeriod
     //
     this.tbPeriod.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.dsData, "CostDynamicForecast.Period", true));
     this.tbPeriod.Location = new System.Drawing.Point(75, 116);
     this.tbPeriod.Name = "tbPeriod";
     this.tbPeriod.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.tbPeriod.Properties.Appearance.Options.UseFont = true;
     this.tbPeriod.Properties.MaxLength = 1;
     this.tbPeriod.Size = new System.Drawing.Size(327, 22);
     this.tbPeriod.StyleController = this.dataLayoutControlMain;
     this.tbPeriod.TabIndex = 19;
     conditionValidationRule3.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule3.ErrorText = "This value is not valid";
     this.dxValidationProviderMain.SetValidationRule(this.tbPeriod, conditionValidationRule3);
     //
     // tbBusinessUnit
     //
     this.tbBusinessUnit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.dsData, "CostDynamicForecast.BusinessUnit", true));
     this.tbBusinessUnit.Location = new System.Drawing.Point(75, 90);
     this.tbBusinessUnit.Name = "tbBusinessUnit";
     this.tbBusinessUnit.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.tbBusinessUnit.Properties.Appearance.Options.UseFont = true;
     this.tbBusinessUnit.Size = new System.Drawing.Size(327, 22);
     this.tbBusinessUnit.StyleController = this.dataLayoutControlMain;
     this.tbBusinessUnit.TabIndex = 18;
     conditionValidationRule4.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule4.ErrorText = "This value is not valid";
     this.dxValidationProviderMain.SetValidationRule(this.tbBusinessUnit, conditionValidationRule4);
     //
     // btnSave
     //
     this.btnSave.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.btnSave.Appearance.Options.UseFont = true;
     this.btnSave.Image = global::NICSQLTools.Properties.Resources.apply_16x16;
     this.btnSave.Location = new System.Drawing.Point(12, 194);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(263, 23);
     this.btnSave.StyleController = this.dataLayoutControlMain;
     this.btnSave.TabIndex = 17;
     this.btnSave.Text = "Save";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // btnCancel
     //
     this.btnCancel.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.btnCancel.Appearance.Options.UseFont = true;
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Image = global::NICSQLTools.Properties.Resources.cancel_16x16;
     this.btnCancel.Location = new System.Drawing.Point(279, 194);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(123, 23);
     this.btnCancel.StyleController = this.dataLayoutControlMain;
     this.btnCancel.TabIndex = 16;
     this.btnCancel.Text = "Cancel";
     //
     // lueCostcenter
     //
     this.lueCostcenter.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.dsData, "CostDynamicForecast.Costcenter", true));
     this.lueCostcenter.Location = new System.Drawing.Point(75, 12);
     this.lueCostcenter.Name = "lueCostcenter";
     this.lueCostcenter.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.lueCostcenter.Properties.Appearance.Options.UseFont = true;
     this.lueCostcenter.Properties.Appearance.Options.UseTextOptions = true;
     this.lueCostcenter.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.lueCostcenter.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lueCostcenter.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("CostCenter", "Cost Center", 90, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Near),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("CostCenterDesc", "Cost Center Desc", 108, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Near),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Magnitude", "Magnitude", 69, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Near),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("BusinessUnit", "Business Unit", 85, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Near),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Owner", "Owner", 48, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Near),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Owner2", "Owner2", 55, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Near),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Department", "Department", 77, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Near),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Assetplace", "Assetplace", 71, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Near)});
     this.lueCostcenter.Properties.DataSource = this.LSMSCostcenter;
     this.lueCostcenter.Properties.DisplayMember = "CostCenter";
     this.lueCostcenter.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Buffered;
     this.lueCostcenter.Properties.NullText = "";
     this.lueCostcenter.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.lueCostcenter.Properties.ValueMember = "CostCenter";
     this.lueCostcenter.Size = new System.Drawing.Size(327, 22);
     this.lueCostcenter.StyleController = this.dataLayoutControlMain;
     this.lueCostcenter.TabIndex = 11;
     conditionValidationRule5.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule5.ErrorText = "This value is not valid";
     this.dxValidationProviderMain.SetValidationRule(this.lueCostcenter, conditionValidationRule5);
     //
     // LSMSCostcenter
     //
     this.LSMSCostcenter.ElementType = typeof(NICSQLTools.Data.Linq.CostCostcenter);
     this.LSMSCostcenter.KeyExpression = "[CostCenter]";
     //
     // lueGLAccount
     //
     this.lueGLAccount.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.dsData, "CostDynamicForecast.GLAccount", true));
     this.lueGLAccount.Location = new System.Drawing.Point(75, 38);
     this.lueGLAccount.Name = "lueGLAccount";
     this.lueGLAccount.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.lueGLAccount.Properties.Appearance.Options.UseFont = true;
     this.lueGLAccount.Properties.Appearance.Options.UseTextOptions = true;
     this.lueGLAccount.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.lueGLAccount.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lueGLAccount.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("GLAccount", "GL Account", 86, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Near),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("AccountDesc", "Account Desc", 86, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Near),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("AccountNature", "Account Nature", 97, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Near),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("AccountNature2", "Account Nature2", 104, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Near),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("ShouldPaid", "Should Paid", 77, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Near),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Controllable", "Controllable", 78, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Near),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Category", "Category", 61, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Near),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("EmpName", "Emp Name", 72, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Near)});
     this.lueGLAccount.Properties.DataSource = this.LSMSGLAccount;
     this.lueGLAccount.Properties.DisplayMember = "GLAccount";
     this.lueGLAccount.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Buffered;
     this.lueGLAccount.Properties.NullText = "";
     this.lueGLAccount.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.lueGLAccount.Properties.ValueMember = "GLAccount";
     this.lueGLAccount.Size = new System.Drawing.Size(327, 22);
     this.lueGLAccount.StyleController = this.dataLayoutControlMain;
     this.lueGLAccount.TabIndex = 14;
     conditionValidationRule6.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule6.ErrorText = "This value is not valid";
     this.dxValidationProviderMain.SetValidationRule(this.lueGLAccount, conditionValidationRule6);
     //
     // LSMSGLAccount
     //
     this.LSMSGLAccount.ElementType = typeof(NICSQLTools.Data.Linq.CostAccountNature);
     this.LSMSGLAccount.KeyExpression = "[GLAccount]";
     //
     // tbYear
     //
     this.tbYear.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.dsData, "CostDynamicForecast.Year", true));
     this.tbYear.Location = new System.Drawing.Point(75, 64);
     this.tbYear.Name = "tbYear";
     this.tbYear.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.tbYear.Properties.Appearance.Options.UseFont = true;
     this.tbYear.Properties.Mask.EditMask = "n0";
     this.tbYear.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.tbYear.Size = new System.Drawing.Size(327, 22);
     this.tbYear.StyleController = this.dataLayoutControlMain;
     this.tbYear.TabIndex = 6;
     conditionValidationRule7.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule7.ErrorText = "This value is not valid";
     this.dxValidationProviderMain.SetValidationRule(this.tbYear, conditionValidationRule7);
     //
     // layoutControlGroupMain
     //
     this.layoutControlGroupMain.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroupMain.GroupBordersVisible = false;
     this.layoutControlGroupMain.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlGroup2});
     this.layoutControlGroupMain.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroupMain.Name = "Root";
     this.layoutControlGroupMain.Size = new System.Drawing.Size(414, 230);
     this.layoutControlGroupMain.TextVisible = false;
     //
     // layoutControlGroup2
     //
     this.layoutControlGroup2.AllowDrawBackground = false;
     this.layoutControlGroup2.GroupBordersVisible = false;
     this.layoutControlGroup2.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.ItemForAssetplaceId,
     this.ItemForEmpOhda,
     this.layoutControlItem1,
     this.ItemForAssetsdate,
     this.layoutControlItem2,
     this.layoutControlItem3,
     this.layoutControlItem4,
     this.layoutControlItem5,
     this.layoutControlItem6});
     this.layoutControlGroup2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup2.Name = "autoGeneratedGroup0";
     this.layoutControlGroup2.Size = new System.Drawing.Size(394, 210);
     //
     // ItemForAssetplaceId
     //
     this.ItemForAssetplaceId.Control = this.lueCostcenter;
     this.ItemForAssetplaceId.Location = new System.Drawing.Point(0, 0);
     this.ItemForAssetplaceId.Name = "ItemForAssetplaceId";
     this.ItemForAssetplaceId.Size = new System.Drawing.Size(394, 26);
     this.ItemForAssetplaceId.Text = "Costcenter";
     this.ItemForAssetplaceId.TextSize = new System.Drawing.Size(60, 13);
     //
     // ItemForEmpOhda
     //
     this.ItemForEmpOhda.Control = this.lueGLAccount;
     this.ItemForEmpOhda.Location = new System.Drawing.Point(0, 26);
     this.ItemForEmpOhda.Name = "ItemForEmpOhda";
     this.ItemForEmpOhda.Size = new System.Drawing.Size(394, 26);
     this.ItemForEmpOhda.Text = "GLAccount";
     this.ItemForEmpOhda.TextSize = new System.Drawing.Size(60, 13);
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.btnCancel;
     this.layoutControlItem1.Location = new System.Drawing.Point(267, 182);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(127, 28);
     this.layoutControlItem1.Text = "Cancel";
     this.layoutControlItem1.TextLocation = DevExpress.Utils.Locations.Right;
     this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem1.TextVisible = false;
     //
     // ItemForAssetsdate
     //
     this.ItemForAssetsdate.Control = this.tbYear;
     this.ItemForAssetsdate.Location = new System.Drawing.Point(0, 52);
     this.ItemForAssetsdate.Name = "ItemForAssetsdate";
     this.ItemForAssetsdate.Size = new System.Drawing.Size(394, 26);
     this.ItemForAssetsdate.Text = "Year";
     this.ItemForAssetsdate.TextSize = new System.Drawing.Size(60, 13);
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.btnSave;
     this.layoutControlItem2.Location = new System.Drawing.Point(0, 182);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(267, 28);
     this.layoutControlItem2.Text = "Save";
     this.layoutControlItem2.TextLocation = DevExpress.Utils.Locations.Right;
     this.layoutControlItem2.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem2.TextVisible = false;
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.tbBusinessUnit;
     this.layoutControlItem3.Location = new System.Drawing.Point(0, 78);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(394, 26);
     this.layoutControlItem3.Text = "BusinessUnit";
     this.layoutControlItem3.TextSize = new System.Drawing.Size(60, 13);
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.tbPeriod;
     this.layoutControlItem4.Location = new System.Drawing.Point(0, 104);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(394, 26);
     this.layoutControlItem4.Text = "Period";
     this.layoutControlItem4.TextSize = new System.Drawing.Size(60, 13);
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.Control = this.tbDF;
     this.layoutControlItem5.Location = new System.Drawing.Point(0, 130);
     this.layoutControlItem5.Name = "layoutControlItem5";
     this.layoutControlItem5.Size = new System.Drawing.Size(394, 26);
     this.layoutControlItem5.Text = "DF";
     this.layoutControlItem5.TextSize = new System.Drawing.Size(60, 13);
     //
     // layoutControlItem6
     //
     this.layoutControlItem6.Control = this.tbType;
     this.layoutControlItem6.Location = new System.Drawing.Point(0, 156);
     this.layoutControlItem6.Name = "layoutControlItem6";
     this.layoutControlItem6.Size = new System.Drawing.Size(394, 26);
     this.layoutControlItem6.Text = "Type";
     this.layoutControlItem6.TextSize = new System.Drawing.Size(60, 13);
     //
     // DynamicForecastEditorDlg
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton = this.btnCancel;
     this.ClientSize = new System.Drawing.Size(414, 230);
     this.Controls.Add(this.dataLayoutControlMain);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "DynamicForecastEditorDlg";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Editor";
     ((System.ComponentModel.ISupportInitialize)(this.dsData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataLayoutControlMain)).EndInit();
     this.dataLayoutControlMain.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tbType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbDF.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbPeriod.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbBusinessUnit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lueCostcenter.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSCostcenter)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lueGLAccount.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSGLAccount)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbYear.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroupMain)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForAssetplaceId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForEmpOhda)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForAssetsdate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dxValidationProviderMain)).EndInit();
     this.ResumeLayout(false);
 }