/// <summary>
        /// 生成按钮
        /// </summary>
        /// <param name="layoutItem"></param>
        /// <param name="button"></param>
        private BarItem GenerateBarButton(FanLayoutRibbonItem layoutItem)
        {
            FanBarButtonItem button = new FanBarButtonItem();

            button.Caption = layoutItem.Title;
            AddImageToBarItem(button, layoutItem);
            button.Name    = layoutItem.Name;
            button.Enabled = layoutItem.Enabled;
            if (!string.IsNullOrWhiteSpace(layoutItem.Tip))
            {
                DevExpress.Utils.SuperToolTip toolTip     = new DevExpress.Utils.SuperToolTip();
                DevExpress.Utils.ToolTipItem  toolTipItem = new DevExpress.Utils.ToolTipItem();
                toolTipItem.Text = layoutItem.Tip;
                toolTip.Items.Add(toolTipItem);
                button.SuperTip = toolTip;
            }
            if (!string.IsNullOrEmpty(layoutItem.Event_OnClick))
            {
                button.ItemClickMethodName = layoutItem.Event_OnClick;
                button.ItemClick          += button.button_ItemClick;
            }

            //绑定事件
            //BarItemBindEvent(barItem, button);

            return(button);
        }
Пример #2
0
 private void showToolTip(String str)
 {
     try
     {
         toolTipController1.HideHint();
         DevExpress.Utils.ToolTipControllerShowEventArgs args = new DevExpress.Utils.ToolTipControllerShowEventArgs();
         DevExpress.Utils.SuperToolTip tip = new DevExpress.Utils.SuperToolTip();
         //setup the SuperToolTip...
         DevExpress.Utils.ToolTipTitleItem titleItem1 = new DevExpress.Utils.ToolTipTitleItem();
         titleItem1.Text = "Thông báo";
         // Create a tooltip item that represents the SuperTooltip's contents.
         DevExpress.Utils.ToolTipItem item1 = new DevExpress.Utils.ToolTipItem();
         item1.Text = str;
         // Add the tooltip items to the SuperTooltip.
         tip.Items.Add(titleItem1);
         tip.Items.Add(item1);
         args.SuperTip        = tip;
         args.IconType        = DevExpress.Utils.ToolTipIconType.Information;
         args.ToolTipType     = DevExpress.Utils.ToolTipType.SuperTip;
         args.ToolTipLocation = DevExpress.Utils.ToolTipLocation.BottomCenter;
         Point p = new Point((this.Location.X + this.Size.Width / 2), this.Location.Y + this.Size.Height / 2);
         toolTipController1.ShowHint(args, p);
     }
     catch (Exception ex)
     {
         Debug.WriteLine(this.Name + "->showToolTip: " + ex.Message);
     }
 }
        /// <summary>
        /// 生成皮肤控件
        /// </summary>
        /// <param name="layoutItem"></param>
        /// <returns></returns>
        private BarItem GenerateBarSkinRibbonGallery(FanLayoutRibbonItem layoutItem)
        {
            FanSkinRibbonGalleryBarItem skinGallery = new FanSkinRibbonGalleryBarItem();

            skinGallery.Caption = layoutItem.Title;
            skinGallery.Name    = layoutItem.Name;
            skinGallery.Id      = new Random().Next(100);
            skinGallery.Enabled = layoutItem.Enabled;
            if (!string.IsNullOrWhiteSpace(layoutItem.Tip))
            {
                DevExpress.Utils.SuperToolTip toolTip     = new DevExpress.Utils.SuperToolTip();
                DevExpress.Utils.ToolTipItem  toolTipItem = new DevExpress.Utils.ToolTipItem();
                toolTipItem.Text = layoutItem.Tip;
                toolTip.Items.Add(toolTipItem);
                skinGallery.SuperTip = toolTip;
            }
            skinGallery.GalleryItemClick += (sender, e) =>
            {
                var skinStyle = e.Item.Tag.ToString();
                GlobalParamService.SystemSettingParam.LayoutSettingParam.SkinStyle = skinStyle;
                DevExpress.LookAndFeel.UserLookAndFeel.Default.SkinName            = skinStyle;
            };
            if (!string.IsNullOrEmpty(layoutItem.Event_OnClick))
            {
                skinGallery.ItemClickMethodName = layoutItem.Event_OnMouseClick;
                skinGallery.ItemClick          += skinGallery.EventDefinedSkinRibbonGalleryBarItem_ItemClick;
            }
            //绑定事件
            //BarItemBindEvent(barItem, skinGallery);

            return(skinGallery);
        }
Пример #4
0
        private DevExpress.Utils.SuperToolTip CreateToolTip(IFileItem item)
        {
            DevExpress.Utils.SuperToolTip     superToolTip  = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitle  = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem      toolTipBody   = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.ToolTipItem      toolTipFooter = new DevExpress.Utils.ToolTipItem();

            toolTipTitle.Text = item.Title;
            toolTipTitle.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;

            toolTipBody.ImageOptions.Image = item.Image;
//            toolTipBody.Appearance.Options.UseImage = true;

            toolTipFooter.Text = "Location: " + item.File.Group.Name + "\\" + item.File.Name + ". Slide " + item.Index;

            toolTipFooter.Appearance.Image                  = imageCollection1.Images[item.Type == ItemType.Shape ? 0:1];
            toolTipFooter.Appearance.Options.UseImage       = true;
            toolTipFooter.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
            toolTipFooter.Appearance.Options.UseTextOptions = true;

            superToolTip.Items.Add(toolTipTitle);
            superToolTip.Items.Add(toolTipBody);
            superToolTip.Items.Add(toolTipFooter);

            superToolTip.FixedTooltipWidth = true;
            superToolTip.MaxWidth          = 400;

            return(superToolTip);
        }
Пример #5
0
        /// <summary>
        /// 添加分组的ButtonItem按钮
        /// </summary>
        /// <param name="rbGroup"></param>
        /// <param name="sParentNode"></param>
        void AddRibbonItem(RibbonPageGroup rbGroup, string sParentNode)
        {
            //获得当前登录用户权限表
            DataView _GroupView = new DataView(SystemAuthentication.UserAuthorities);

            //按照菜单排序进行重新排序
            _GroupView.Sort = "MenuOrder ASC";
            //获取Group菜单
            _GroupView.RowFilter = "MenuLevel = 3 AND  ParentMenuID='" + sParentNode + "'";

            //操作提示注册
            DevExpress.Utils.SuperToolTip     PageToolTip  = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem TitleToolTip = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem      ItemToolTip  = new DevExpress.Utils.ToolTipItem();
            TitleToolTip.Text = "操作提示";
            foreach (DataRowView drv in _GroupView)
            {
                BarButtonItem AddBtnItem = new BarButtonItem();
                //菜单显示名称
                AddBtnItem.Caption    = drv.Row["MenuText"].ToString();
                AddBtnItem.Tag        = drv.Row["MenuNewID"].ToString();
                AddBtnItem.Name       = drv.Row["MenuName"].ToString();
                AddBtnItem.MergeOrder = Convertto.ToInt(drv.Row["MenuOrder"]);
                AddBtnItem.LargeGlyph = Globals.LoadImage(drv.Row["MenuIcon"].ToString(), 32);
                ItemToolTip.Text      = drv.Row["MenuTips"].ToString();
                PageToolTip.Items.Clear();
                PageToolTip.Items.Add(TitleToolTip);
                PageToolTip.Items.Add(ItemToolTip);
                AddBtnItem.SuperTip = PageToolTip;
                rbGroup.ItemLinks.Add(AddBtnItem);
                AddBtnItem.ItemClick += new ItemClickEventHandler(AddBtnItem_ItemClick);
            }
        }
Пример #6
0
        private void AddSettingsItem()
        {
            AccordionControlElement aceSettings;

            DevExpress.Utils.SuperToolTip         superToolTip1         = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem     toolTipTitleItem1     = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem          toolTipItem1          = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.ToolTipSeparatorItem toolTipSeparatorItem1 = new DevExpress.Utils.ToolTipSeparatorItem();
            DevExpress.Utils.ToolTipTitleItem     toolTipTitleItem2     = new DevExpress.Utils.ToolTipTitleItem();

            aceSettings = new AccordionControlElement
            {
                ControlFooterAlignment = AccordionItemFooterAlignment.Far,
                Expanded = true,
                Name     = "aceSettings",
                Image    = ImageResourceCache.Default.GetImage("images/setup/properties_32x32.png")
            };

            toolTipTitleItem1.Text       = "Settings";
            toolTipItem1.LeftIndent      = 6;
            toolTipItem1.Text            = "Modify general settings which apply to all instances.";
            toolTipTitleItem2.LeftIndent = 6;
            superToolTip1.Items.Add(toolTipTitleItem1);
            superToolTip1.Items.Add(toolTipItem1);
            superToolTip1.Items.Add(toolTipSeparatorItem1);
            superToolTip1.Items.Add(toolTipTitleItem2);
            aceSettings.SuperTip = superToolTip1;
            aceSettings.Text     = "Settings";
            aceSettings.Click   += this.Settings_Click;

            this.accordionControl.Elements.Add(aceSettings);
        }
Пример #7
0
        private void AddButtonsToList(DevExpress.XtraEditors.Controls.EditorButtonCollection listButtons)
        {
            foreach (DevExpress.XtraEditors.Controls.EditorButton b in listButtons)
            {
                if (b.Caption.ToLower() == "Refresh".ToLower())
                {
                    return;
                }
            }

            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
            System.Drawing.Image          refreshIcon           = DevExpress.Images.ImageResourceCache.Default.GetImage("grayscaleimages/actions/refresh_16x16.png");
            DevExpress.Utils.ToolTipItem  toolTipItem1          = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip1         = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
            toolTipTitleItem1.Appearance.Image            = refreshIcon;
            toolTipTitleItem1.Appearance.Options.UseImage = true;
            toolTipTitleItem1.Image = refreshIcon;
            toolTipTitleItem1.Text  = "Refresh list from database";
            toolTipItem1.LeftIndent = 6;
            toolTipItem1.Text       = "Press this button only when you want to retrieve new inserted rows from database " +
                                      "";
            superToolTip1.Items.Add(toolTipTitleItem1);
            superToolTip1.Items.Add(toolTipItem1);
            DevExpress.XtraEditors.Controls.EditorButton refreshButton = new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "Refresh", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, refreshIcon, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", null, superToolTip1, true);

            listButtons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { refreshButton /*,new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)*/ });

            //
        }
		/// <summary>
		/// Since the strings constantly get lost, create
		/// them in code instead in the designer.
		/// </summary>
		private void createToolTips()
		{
			var superToolTip4 = new DevExpress.Utils.SuperToolTip();
			var toolTipTitleItem4 = new DevExpress.Utils.ToolTipTitleItem();
			var toolTipItem4 = new DevExpress.Utils.ToolTipItem();

			var superToolTip5 = new DevExpress.Utils.SuperToolTip();
			var toolTipTitleItem5 = new DevExpress.Utils.ToolTipTitleItem();
			var toolTipItem5 = new DevExpress.Utils.ToolTipItem();

			var superToolTip6 = new DevExpress.Utils.SuperToolTip();
			var toolTipTitleItem6 = new DevExpress.Utils.ToolTipTitleItem();
			var toolTipItem6 = new DevExpress.Utils.ToolTipItem();

			// --

			toolTipTitleItem4.Text = Resources.SR_toolTipTitleItem4Text;
			toolTipItem4.Text = Resources.SR_toolTipItem4Text;
			superToolTip4.Items.Add(toolTipTitleItem4);
			superToolTip4.Items.Add(toolTipItem4);
			defaultToolTipController1.SetSuperTip(pictureBox8, superToolTip4);

			toolTipTitleItem5.Text = Resources.SR_toolTipTitleItem5Text;
			toolTipItem5.Text = Resources.SR_toolTipItem5Text;
			superToolTip5.Items.Add(toolTipTitleItem5);
			superToolTip5.Items.Add(toolTipItem5);
			defaultToolTipController1.SetSuperTip(pictureBox6, superToolTip5);

			toolTipTitleItem6.Text = Resources.SR_toolTipTitleItem6Text;
			toolTipItem6.Text = Resources.SR_toolTipItem6Text;
			superToolTip6.Items.Add(toolTipTitleItem6);
			superToolTip6.Items.Add(toolTipItem6);
			defaultToolTipController1.SetSuperTip(pictureBox7, superToolTip6);
		}
Пример #9
0
        public void AddNavItem(NavBarGroup NavGroup, string sParentMenuID)
        {
            DataView _ItemView = new DataView(SystemAuthentication.UserAuthorities);

            _ItemView.Sort      = "MenuOrder ASC";
            _ItemView.RowFilter = "MenuLevel = 2 and ParentMenuID='" + sParentMenuID + "'";
            DevExpress.Utils.SuperToolTip     IToolTip      = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem ITitleToolTip = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem      IItemToolTip  = new DevExpress.Utils.ToolTipItem();
            ITitleToolTip.Text = "操作提示";

            foreach (DataRowView drv in _ItemView)
            {
                NavBarItem additems = new NavBarItem();
                additems.Caption    = drv.Row["MenuText"].ToString();
                additems.Tag        = drv.Row["MenuNewID"].ToString();
                additems.Name       = drv.Row["MenuName"].ToString();
                additems.SmallImage = Globals.LoadImage(drv.Row["MenuIcon"].ToString(), 32);
                IItemToolTip.Text   = drv.Row["MenuTips"].ToString();
                IToolTip.Items.Clear();
                IToolTip.Items.Add(ITitleToolTip);
                IToolTip.Items.Add(IItemToolTip);
                additems.LinkClicked += new NavBarLinkEventHandler(ADDItem_LinkClicked);
                NavGroup.ItemLinks.Add(additems);
            }
        }
Пример #10
0
        /// <summary>
        /// Since the strings constantly get lost, create
        /// them in code instead in the designer.
        /// </summary>
        private void createToolTips()
        {
            var superToolTip4     = new DevExpress.Utils.SuperToolTip();
            var toolTipTitleItem4 = new DevExpress.Utils.ToolTipTitleItem();
            var toolTipItem4      = new DevExpress.Utils.ToolTipItem();

            var superToolTip5     = new DevExpress.Utils.SuperToolTip();
            var toolTipTitleItem5 = new DevExpress.Utils.ToolTipTitleItem();
            var toolTipItem5      = new DevExpress.Utils.ToolTipItem();

            var superToolTip6     = new DevExpress.Utils.SuperToolTip();
            var toolTipTitleItem6 = new DevExpress.Utils.ToolTipTitleItem();
            var toolTipItem6      = new DevExpress.Utils.ToolTipItem();

            // --

            toolTipTitleItem4.Text = Resources.SR_toolTipTitleItem4Text;
            toolTipItem4.Text      = Resources.SR_toolTipItem4Text;
            superToolTip4.Items.Add(toolTipTitleItem4);
            superToolTip4.Items.Add(toolTipItem4);
            defaultToolTipController1.SetSuperTip(pictureBox8, superToolTip4);

            toolTipTitleItem5.Text = Resources.SR_toolTipTitleItem5Text;
            toolTipItem5.Text      = Resources.SR_toolTipItem5Text;
            superToolTip5.Items.Add(toolTipTitleItem5);
            superToolTip5.Items.Add(toolTipItem5);
            defaultToolTipController1.SetSuperTip(pictureBox6, superToolTip5);

            toolTipTitleItem6.Text = Resources.SR_toolTipTitleItem6Text;
            toolTipItem6.Text      = Resources.SR_toolTipItem6Text;
            superToolTip6.Items.Add(toolTipTitleItem6);
            superToolTip6.Items.Add(toolTipItem6);
            defaultToolTipController1.SetSuperTip(pictureBox7, superToolTip6);
        }
Пример #11
0
 void AddRibbonItemNew(RibbonPageGroup rbGroup, List <MenuListDto> menus)
 {
     if (menus.Any())
     {
         //操作提示注册
         DevExpress.Utils.SuperToolTip     PageToolTip  = new DevExpress.Utils.SuperToolTip();
         DevExpress.Utils.ToolTipTitleItem TitleToolTip = new DevExpress.Utils.ToolTipTitleItem();
         DevExpress.Utils.ToolTipItem      ItemToolTip  = new DevExpress.Utils.ToolTipItem();
         TitleToolTip.Text = "操作提示";
         foreach (var menu in menus)
         {
             BarButtonItem AddBtnItem = new BarButtonItem();
             //菜单显示名称
             AddBtnItem.Caption    = menu.MenuText;
             AddBtnItem.Tag        = menu.MenuId;
             AddBtnItem.Name       = menu.MenuText;
             AddBtnItem.MergeOrder = menu.MenuSort;
             AddBtnItem.LargeGlyph = Globals.LoadImage(menu.Icon, 32);
             ItemToolTip.Text      = menu.MenuText;
             PageToolTip.Items.Clear();
             PageToolTip.Items.Add(TitleToolTip);
             PageToolTip.Items.Add(ItemToolTip);
             AddBtnItem.SuperTip = PageToolTip;
             rbGroup.ItemLinks.Add(AddBtnItem);
             AddBtnItem.ItemClick += new ItemClickEventHandler(AddBtnItem_ItemClick);
         }
     }
 }
Пример #12
0
        /// <summary>
        /// 生成开关按钮
        /// </summary>
        /// <param name="barItem"></param>
        /// <param name="toggleSwitch"></param>
        private BarItem GenerateBarToggleSwitch(FanLayoutRibbonItem layoutItem)
        {
            FanBarToggleSwitchItem toggleSwitch = new FanBarToggleSwitchItem();

            toggleSwitch.Caption = layoutItem.Title;
            AddImageToBarItem(toggleSwitch, layoutItem);
            toggleSwitch.Name    = layoutItem.Name;
            toggleSwitch.Checked = layoutItem.Checked;
            toggleSwitch.Enabled = layoutItem.Enabled;
            if (!string.IsNullOrWhiteSpace(layoutItem.Tip))
            {
                DevExpress.Utils.SuperToolTip toolTip     = new DevExpress.Utils.SuperToolTip();
                DevExpress.Utils.ToolTipItem  toolTipItem = new DevExpress.Utils.ToolTipItem();
                toolTipItem.Text = layoutItem.Tip;
                toolTip.Items.Add(toolTipItem);
                toggleSwitch.SuperTip = toolTip;
            }
            if (!string.IsNullOrEmpty(layoutItem.Event_OnChange))
            {
                toggleSwitch.ChangeMethodName = layoutItem.Event_OnChange;
                toggleSwitch.CheckedChanged  += toggleSwitch.EventDefinedBarToggleSwitchItem_CheckedChanged;
            }
            //绑定事件
            //BarItemBindEvent(layoutItem, toggleSwitch);
            return(toggleSwitch);
        }
Пример #13
0
        /// <summary>
        /// 生成复选框
        /// </summary>
        /// <param name="barItem"></param>
        /// <param name="checkbox"></param>
        private BarItem GenerateBarCheckbox(FanLayoutRibbonItem layoutItem)
        {
            FanBarCheckItem checkbox = new FanBarCheckItem();

            checkbox.Caption = layoutItem.Title;
            AddImageToBarItem(checkbox, layoutItem);
            checkbox.Name               = layoutItem.Name;
            checkbox.CheckStyle         = BarCheckStyles.Standard;
            checkbox.CheckBoxVisibility = CheckBoxVisibility.BeforeText;
            checkbox.Checked            = layoutItem.Checked;
            checkbox.Enabled            = layoutItem.Enabled;
            if (!string.IsNullOrWhiteSpace(layoutItem.Tip))
            {
                DevExpress.Utils.SuperToolTip toolTip     = new DevExpress.Utils.SuperToolTip();
                DevExpress.Utils.ToolTipItem  toolTipItem = new DevExpress.Utils.ToolTipItem();
                toolTipItem.Text = layoutItem.Tip;
                toolTip.Items.Add(toolTipItem);
                checkbox.SuperTip = toolTip;
            }
            if (!string.IsNullOrEmpty(layoutItem.Event_OnChange))
            {
                checkbox.ChangeMethodName = layoutItem.Event_OnChange;
                checkbox.CheckedChanged  += checkbox.EventDefinedBarCheckItem_CheckedChanged;
            }
            //绑定事件
            //BarItemBindEvent(barItem, checkbox);

            return(checkbox);
        }
Пример #14
0
        private void CreateFieldEditors()
        {
            int            count        = 0;
            AXFieldMapping fieldMapping = null;

            if (axFolder.Fields.Length > 0)
            {
                string[] fields = axFolder.Fields.Split('|');

                foreach (string field in fields)
                {
                    fieldMapping = GetAxFieldMapping(field);
                    RepositoryItem[] repositoryItems = GetRepositoryEditor(fieldMapping);
                    rbnCntrlAxFolderPnal.RepositoryItems.AddRange(repositoryItems);

                    BarEditItem barEditItem = new DevExpress.XtraBars.BarEditItem();

                    barEditItem.Caption = field + ":";
                    barEditItem.Edit    = repositoryItems[0];
                    barEditItem.Id      = count;
                    barEditItem.Name    = "barEditItem" + field;
                    barEditItem.Width   = 100;

                    if (!fieldMapping.DefaultValue.Contains(","))
                    {
                        barEditItem.EditValue = fieldMapping.DefaultValue;
                    }

                    if (fieldMapping != null)
                    {
                        if (fieldMapping.DisplayName != "")
                        {
                            barEditItem.Caption = fieldMapping.DisplayName + ":";
                        }
                        if (fieldMapping.Width != "")
                        {
                            barEditItem.Width = Convert.ToInt16(fieldMapping.Width);
                        }

                        DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
                        DevExpress.Utils.SuperToolTip     superToolTip1     = new DevExpress.Utils.SuperToolTip();
                        DevExpress.Utils.ToolTipItem      toolTipItem1      = new DevExpress.Utils.ToolTipItem();

                        toolTipTitleItem1.Text  = "Field Information";
                        toolTipItem1.LeftIndent = 6;
                        toolTipItem1.Text       = fieldMapping.HelpDisplay;
                        superToolTip1.Items.Add(toolTipTitleItem1);
                        superToolTip1.Items.Add(toolTipItem1);
                        barEditItem.SuperTip = superToolTip1;
                    }
                    rbnCntrlAxFolderPnal.Items.AddRange(new DevExpress.XtraBars.BarItem[] { barEditItem });
                    rbnCntrlAxFolderPnal.Toolbar.ItemLinks.Add(barEditItem);
                    ribnPageGrpAxFields.ItemLinks.Add(barEditItem);
                    count++;
                }
            }
        }
Пример #15
0
 /// <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.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject2 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SuperToolTip     superToolTip1     = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem      toolTipItem1      = new DevExpress.Utils.ToolTipItem();
     this.txtAddress        = new DevExpress.XtraEditors.SpinEdit();
     this.toolTipController = new DevExpress.Utils.ToolTipController(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.txtAddress.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // txtAddress
     //
     this.txtAddress.Dock      = System.Windows.Forms.DockStyle.Top;
     this.txtAddress.EditValue = new decimal(new int[] {
         0,
         0,
         0,
         0
     });
     this.txtAddress.Location = new System.Drawing.Point(0, 0);
     this.txtAddress.Name     = "txtAddress";
     this.txtAddress.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo),
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, global::Rwm.Studio.Plugins.Control.Properties.Resources.ICO_FIND_16, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "Find next free", null, null, true),
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, global::Rwm.Studio.Plugins.Control.Properties.Resources.ICO_CHECK_16, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject2, "Check address", null, null, true)
     });
     this.txtAddress.Size = new System.Drawing.Size(109, 22);
     toolTipTitleItem1.Appearance.Image            = global::Rwm.Studio.Plugins.Control.Properties.Resources.ICO_ERROR_16;
     toolTipTitleItem1.Appearance.Options.UseImage = true;
     toolTipTitleItem1.Image = global::Rwm.Studio.Plugins.Control.Properties.Resources.ICO_ERROR_16;
     toolTipTitleItem1.Text  = "TITLE";
     toolTipItem1.LeftIndent = 6;
     toolTipItem1.Text       = "CONTENTS";
     superToolTip1.Items.Add(toolTipTitleItem1);
     superToolTip1.Items.Add(toolTipItem1);
     this.txtAddress.SuperTip     = superToolTip1;
     this.txtAddress.TabIndex     = 0;
     this.txtAddress.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.txtAddress_ButtonClick);
     //
     // AddressEditorControl
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.txtAddress);
     this.Name    = "AddressEditorControl";
     this.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.Size    = new System.Drawing.Size(109, 20);
     ((System.ComponentModel.ISupportInitialize)(this.txtAddress.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()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ProfileEditWindow));
     DevExpress.Utils.SuperToolTip     superToolTip1          = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1      = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem      toolTipItem1           = new DevExpress.Utils.ToolTipItem();
     this.usrProfileEdit1 = new BodyArchitect.Controls.UserControls.usrProfileEdit();
     this.usrProgressIndicatorButtons1 = new BodyArchitect.Controls.ProgressIndicator.usrProgressIndicatorButtons();
     this.btnDeleteProfile             = new DevExpress.XtraEditors.SimpleButton();
     this.SuspendLayout();
     //
     // usrProfileEdit1
     //
     resources.ApplyResources(this.usrProfileEdit1, "usrProfileEdit1");
     this.usrProfileEdit1.Name = "usrProfileEdit1";
     //
     // usrProgressIndicatorButtons1
     //
     resources.ApplyResources(this.usrProgressIndicatorButtons1, "usrProgressIndicatorButtons1");
     this.usrProgressIndicatorButtons1.CausesValidation = false;
     this.usrProgressIndicatorButtons1.Name             = "usrProgressIndicatorButtons1";
     this.usrProgressIndicatorButtons1.OkClick         += new System.EventHandler <BodyArchitect.Controls.ProgressIndicator.CancellationSourceEventArgs>(this.okButton1_Click);
     //
     // btnDeleteProfile
     //
     resources.ApplyResources(this.btnDeleteProfile, "btnDeleteProfile");
     this.btnDeleteProfile.Image         = ((System.Drawing.Image)(resources.GetObject("btnDeleteProfile.Image")));
     this.btnDeleteProfile.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.btnDeleteProfile.Name          = "btnDeleteProfile";
     superToolTip1.AllowHtmlText         = DevExpress.Utils.DefaultBoolean.True;
     resources.ApplyResources(toolTipTitleItem1, "toolTipTitleItem1");
     toolTipItem1.LeftIndent = 6;
     resources.ApplyResources(toolTipItem1, "toolTipItem1");
     superToolTip1.Items.Add(toolTipTitleItem1);
     superToolTip1.Items.Add(toolTipItem1);
     this.btnDeleteProfile.SuperTip = superToolTip1;
     this.btnDeleteProfile.Click   += new System.EventHandler(this.btnDeleteProfile_Click);
     //
     // ProfileEditWindow
     //
     resources.ApplyResources(this, "$this");
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.btnDeleteProfile);
     this.Controls.Add(this.usrProgressIndicatorButtons1);
     this.Controls.Add(this.usrProfileEdit1);
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "ProfileEditWindow";
     this.ShowInTaskbar = false;
     this.Load         += new System.EventHandler(this.ProfileEditWindow_Load);
     this.ResumeLayout(false);
 }
Пример #17
0
 /// <summary>
 /// Set tooltip for control
 /// </summary>
 /// <param name="tip"></param>
 /// <param name="control"></param>
 /// <param name="title"></param>
 /// <param name="contents"></param>
 /// <param name="footer"></param>
 /// <param name="html"></param>
 public static void SetToolTip(DevExpress.Utils.ToolTipController tip, System.Windows.Forms.Control control, string title, string contents, string footer, bool html)
 {
     DevExpress.Utils.SuperToolTip superToolTip = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem  toolTipItem  = new DevExpress.Utils.ToolTipItem {
         Text = contents, Image = DevExpress.Common.Properties.Resources.note
     };
     superToolTip.Items.AddTitle(title);
     superToolTip.Items.Add(toolTipItem);
     superToolTip.Items.AddSeparator();
     superToolTip.Items.AddTitle(footer);
     tip.AllowHtmlText = html;
     if (control is DevExpress.XtraEditors.TextEdit)
     {
         ((DevExpress.XtraEditors.TextEdit)control).SuperTip = superToolTip;
         tip.SetSuperTip((DevExpress.XtraEditors.TextEdit)control, superToolTip);
     }
     else
     if (control is DevExpress.XtraEditors.CheckEdit)
     {
         ((DevExpress.XtraEditors.CheckEdit)control).SuperTip = superToolTip;
         tip.SetSuperTip((DevExpress.XtraEditors.CheckEdit)control, superToolTip);
     }
     else
     if (control is DevExpress.XtraEditors.ComboBoxEdit)
     {
         ((DevExpress.XtraEditors.ComboBoxEdit)control).SuperTip = superToolTip;
         tip.SetSuperTip((DevExpress.XtraEditors.ComboBoxEdit)control, superToolTip);
     }
     else
     if (control is DevExpress.XtraEditors.SimpleButton)
     {
         ((DevExpress.XtraEditors.SimpleButton)control).SuperTip = superToolTip;
         tip.SetSuperTip((DevExpress.XtraEditors.SimpleButton)control, superToolTip);
     }
     else
     if (control is DevExpress.XtraEditors.SpinEdit)
     {
         ((DevExpress.XtraEditors.SpinEdit)control).SuperTip = superToolTip;
         tip.SetSuperTip((DevExpress.XtraEditors.SpinEdit)control, superToolTip);
     }
     else
     if (control is DevExpress.XtraEditors.CheckedListBoxControl)
     {
         ((DevExpress.XtraEditors.CheckedListBoxControl)control).SuperTip = superToolTip;
         tip.SetSuperTip((DevExpress.XtraEditors.CheckedListBoxControl)control, superToolTip);
     }
 }
Пример #18
0
        private void initForm()
        {
            this.linkLabel1.Text    = string.Format("{0} ({1}) ", TableDefine.TableDefine.DisplayTitle, RecordCount);
            this.checkEdit1.Checked = false;
            DevExpress.Utils.SuperToolTip     superToolTip1     = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem      toolTipItem1      = new DevExpress.Utils.ToolTipItem();

            toolTipTitleItem1.Text  = TableDefine.TableDefine.DisplayTitle;
            toolTipItem1.LeftIndent = 6;
            toolTipItem1.Text       = string.Format("共有记录数{0}条!", RecordCount);
            superToolTip1.Items.Add(toolTipTitleItem1);
            superToolTip1.Items.Add(toolTipItem1);
            this.toolTipController1.SetSuperTip(this.linkLabel1, superToolTip1);

            initFinished = true;
        }
Пример #19
0
 void CheckRule(BarItem i)
 {
     DevExpress.Utils.SuperToolTip superToolTip1 = null;
     DevExpress.Utils.ToolTipItem  toolTipItem1  = null;
     if (i.Tag != null)
     {
         try
         {
             i.Enabled = FormBase.CheckRule(i.Tag.ToString());
         }
         catch
         {
             superToolTip1     = new DevExpress.Utils.SuperToolTip();
             toolTipItem1      = new DevExpress.Utils.ToolTipItem();
             toolTipItem1.Text = string.Concat("Error regla de seguridad : ", i.Tag.ToString());
             superToolTip1.Items.Add(toolTipItem1);
             i.Enabled  = false;
             i.SuperTip = superToolTip1;
             i.AppearanceDisabled.ForeColor = Color.Red;
         }
     }
 }
Пример #20
0
 /// <summary>
 /// CJiaTextSearch构造函数
 /// </summary>
 public CJiaTextSearch()
 {
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem  toolTipItem1  = new DevExpress.Utils.ToolTipItem();
     Properties.Appearance.BorderColor            = System.Drawing.Color.Salmon;
     Properties.Appearance.Font                   = new System.Drawing.Font("Tahoma", 14F);
     Properties.Appearance.ForeColor              = System.Drawing.Color.LightGray;
     Properties.Appearance.Options.UseBorderColor = true;
     Properties.Appearance.Options.UseFont        = true;
     Properties.Appearance.Options.UseForeColor   = true;
     toolTipItem1.Text = "查询";
     superToolTip1.Items.Add(toolTipItem1);
     Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, CJia.Controls.Properties.Resources.Bigsearch, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", null, superToolTip1, true)
     });
     Properties.LookAndFeel.SkinName = "Office 2010 Blue";
     Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     Size   = new System.Drawing.Size(300, 32);
     Enter += CJiaTextSearch_Enter;
     Leave += CJiaTextSearch_Leave;
 }
Пример #21
0
        public void AddNavGroup(NavBarControl NavMain)
        {
            NavMain.SuspendLayout();
            //获得当前登录用户权限表
            DataView _GroupView = new DataView(SystemAuthentication.UserAuthorities);

            //按照菜单排序进行重新排序
            _GroupView.Sort = "MenuOrder ASC";
            //获取Group菜单
            _GroupView.RowFilter = "MenuLevel = 1";

            //操作提示注册
            DevExpress.Utils.SuperToolTip     GroupToolTip = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem TitleToolTip = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem      ItemToolTip  = new DevExpress.Utils.ToolTipItem();
            TitleToolTip.Text = "操作提示";
            foreach (DataRowView drv in _GroupView)
            {
                NavBarGroup addgp = new NavBarGroup();
                //菜单显示名称
                addgp.Caption    = drv.Row["MenuText"].ToString();
                addgp.Tag        = drv.Row["MenuNewID"].ToString();
                addgp.Name       = drv.Row["MenuName"].ToString();
                addgp.SmallImage = Globals.LoadImage(drv.Row["MenuIcon"].ToString(), 32);
                //添加操作鼠标提示
                ItemToolTip.Text = drv.Row["MenuTips"].ToString();
                GroupToolTip.Items.Clear();
                GroupToolTip.Items.Add(TitleToolTip);
                GroupToolTip.Items.Add(ItemToolTip);
                AddNavItem(addgp, drv.Row["MenuID"].ToString());
                NavMain.Groups.Add(addgp);
            }


            NavMain.ResumeLayout();
            NavMain.GroupExpanded += new NavBarGroupEventHandler(NavMain_GroupExpanded);
            //NavMain.Groups.AddRange(AddGROUP);
        }
Пример #22
0
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmMain));
     DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem1 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip2 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem2 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip3 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem3 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip4 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem4 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip5 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem5 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip6 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem6 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip7 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem7 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip8 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem8 = new DevExpress.Utils.ToolTipItem();
     this.rbcMain = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.imgCollection = new DevExpress.Utils.ImageCollection(this.components);
     this.bbiKhachHang = new DevExpress.XtraBars.BarButtonItem();
     this.bbiHangHoa = new DevExpress.XtraBars.BarButtonItem();
     this.bbiNhomHang = new DevExpress.XtraBars.BarButtonItem();
     this.bbiKho = new DevExpress.XtraBars.BarButtonItem();
     this.bbiAuthor = new DevExpress.XtraBars.BarButtonItem();
     this.bbiKhuVuc = new DevExpress.XtraBars.BarButtonItem();
     this.bbiNhapKho = new DevExpress.XtraBars.BarButtonItem();
     this.bbiXuatKho = new DevExpress.XtraBars.BarButtonItem();
     this.bbiTonKho = new DevExpress.XtraBars.BarButtonItem();
     this.lblServer = new DevExpress.XtraBars.BarStaticItem();
     this.lblDatabase = new DevExpress.XtraBars.BarStaticItem();
     this.ISystem = new DevExpress.XtraBars.BarButtonItem();
     this.IInit = new DevExpress.XtraBars.BarButtonItem();
     this.IInward = new DevExpress.XtraBars.BarButtonItem();
     this.IOutward = new DevExpress.XtraBars.BarButtonItem();
     this.ITransfer = new DevExpress.XtraBars.BarButtonItem();
     this.IAdjustment = new DevExpress.XtraBars.BarButtonItem();
     this.IInventory = new DevExpress.XtraBars.BarButtonItem();
     this.IPacket = new DevExpress.XtraBars.BarButtonItem();
     this.bbiClose = new DevExpress.XtraBars.BarButtonItem();
     this.bbiUserGroup = new DevExpress.XtraBars.BarButtonItem();
     this.bbiUsers = new DevExpress.XtraBars.BarButtonItem();
     this.bbiUpdateOnline = new DevExpress.XtraBars.BarButtonItem();
     this.bbiUpdateOffline = new DevExpress.XtraBars.BarButtonItem();
     this.biiHelpNormal = new DevExpress.XtraBars.BarButtonItem();
     this.biiHelpVideo = new DevExpress.XtraBars.BarButtonItem();
     this.bbiSaoLuu = new DevExpress.XtraBars.BarButtonItem();
     this.bbiPhucHoi = new DevExpress.XtraBars.BarButtonItem();
     this.bbiXuatNhapTon = new DevExpress.XtraBars.BarButtonItem();
     this.bbiLichSu = new DevExpress.XtraBars.BarButtonItem();
     this.bbiTheKho = new DevExpress.XtraBars.BarButtonItem();
     this.bbiNhanVien = new DevExpress.XtraBars.BarButtonItem();
     this.bbiCuaHang = new DevExpress.XtraBars.BarButtonItem();
     this.bbiThuChi = new DevExpress.XtraBars.BarButtonItem();
     this.bbiCongNo = new DevExpress.XtraBars.BarButtonItem();
     this.bbiTheNo = new DevExpress.XtraBars.BarButtonItem();
     this.bbiDoanhThu = new DevExpress.XtraBars.BarButtonItem();
     this.bbiCongNoChungTu = new DevExpress.XtraBars.BarButtonItem();
     this.rbpHeThong = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.rbpgDong = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.rbpDanhMuc = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.rbpgDoiTac = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.rbpgKhoHang = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.rbpgThongTinCuaHang = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.rbpKhoHang = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.rbpgQuanLyKho = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.rbpgBaoCao = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.rpbgCongNo = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.rpbgDoanhThu = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.rbsMain = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.tabMdi = new DevExpress.XtraTabbedMdi.XtraTabbedMdiManager(this.components);
     this.ImgSmall = new DevExpress.Utils.ImageCollection(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.rbcMain)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.imgCollection)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabMdi)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ImgSmall)).BeginInit();
     this.SuspendLayout();
     //
     // rbcMain
     //
     this.rbcMain.ApplicationCaption = "Phần Mềm Quản Lý Kho";
     this.rbcMain.ApplicationIcon = global::Do_An_Quan_Ly_Kho.Properties.Resources._1438776525_deliverables;
     this.rbcMain.AutoSizeItems = true;
     this.rbcMain.ExpandCollapseItem.Id = 0;
     this.rbcMain.Images = this.imgCollection;
     this.rbcMain.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.rbcMain.ExpandCollapseItem,
     this.bbiKhachHang,
     this.bbiHangHoa,
     this.bbiNhomHang,
     this.bbiKho,
     this.bbiAuthor,
     this.bbiKhuVuc,
     this.bbiNhapKho,
     this.bbiXuatKho,
     this.bbiTonKho,
     this.lblServer,
     this.lblDatabase,
     this.ISystem,
     this.IInit,
     this.IInward,
     this.IOutward,
     this.ITransfer,
     this.IAdjustment,
     this.IInventory,
     this.IPacket,
     this.bbiClose,
     this.bbiUserGroup,
     this.bbiUsers,
     this.bbiUpdateOnline,
     this.bbiUpdateOffline,
     this.biiHelpNormal,
     this.biiHelpVideo,
     this.bbiSaoLuu,
     this.bbiPhucHoi,
     this.bbiXuatNhapTon,
     this.bbiLichSu,
     this.bbiTheKho,
     this.bbiNhanVien,
     this.bbiCuaHang,
     this.bbiThuChi,
     this.bbiCongNo,
     this.bbiTheNo,
     this.bbiDoanhThu,
     this.bbiCongNoChungTu});
     this.rbcMain.LargeImages = this.imgCollection;
     this.rbcMain.Location = new System.Drawing.Point(0, 0);
     this.rbcMain.MaxItemId = 330;
     this.rbcMain.MdiMergeStyle = DevExpress.XtraBars.Ribbon.RibbonMdiMergeStyle.Always;
     this.rbcMain.Name = "rbcMain";
     this.rbcMain.PageHeaderItemLinks.Add(this.lblServer);
     this.rbcMain.PageHeaderItemLinks.Add(this.lblDatabase);
     this.rbcMain.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
     this.rbpHeThong,
     this.rbpDanhMuc,
     this.rbpKhoHang});
     this.rbcMain.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemTextEdit1});
     this.rbcMain.ShowCategoryInCaption = false;
     this.rbcMain.Size = new System.Drawing.Size(1016, 144);
     this.rbcMain.StatusBar = this.rbsMain;
     this.rbcMain.TransparentEditors = true;
     //
     // imgCollection
     //
     this.imgCollection.ImageSize = new System.Drawing.Size(32, 32);
     this.imgCollection.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imgCollection.ImageStream")));
     this.imgCollection.Images.SetKeyName(0, "Ket Thuc.png");
     this.imgCollection.Images.SetKeyName(1, "Nguoi Dung.png");
     this.imgCollection.Images.SetKeyName(2, "Phan Quyen.png");
     this.imgCollection.Images.SetKeyName(3, "Thay Doi Mat Khau.png");
     this.imgCollection.Images.SetKeyName(4, "Thong Tin.png");
     this.imgCollection.Images.SetKeyName(5, "Ton Kho.png");
     this.imgCollection.Images.SetKeyName(6, "Tuy Chon.png");
     this.imgCollection.Images.SetKeyName(7, "Import.png");
     this.imgCollection.Images.SetKeyName(8, "Khoa So.png");
     this.imgCollection.Images.SetKeyName(9, "Bo Phan.png");
     this.imgCollection.Images.SetKeyName(10, "Dinh Muc.png");
     this.imgCollection.Images.SetKeyName(11, "Don Vi Tinh.png");
     this.imgCollection.Images.SetKeyName(12, "Hang Hoa.png");
     this.imgCollection.Images.SetKeyName(13, "Khach Hang.png");
     this.imgCollection.Images.SetKeyName(14, "Kho.png");
     this.imgCollection.Images.SetKeyName(15, "Nha Phan Phoi.png");
     this.imgCollection.Images.SetKeyName(16, "Nhan Vien.png");
     this.imgCollection.Images.SetKeyName(17, "Nhom Hang.png");
     this.imgCollection.Images.SetKeyName(18, "Loai Doi Tac.png");
     this.imgCollection.Images.SetKeyName(19, "Nhom Doi Tac.png");
     this.imgCollection.Images.SetKeyName(20, "Bang Ke Chuyen Kho.png");
     this.imgCollection.Images.SetKeyName(21, "Bang Ke Kiem Ke.png");
     this.imgCollection.Images.SetKeyName(22, "Bang Ke Xuat Kho.png");
     this.imgCollection.Images.SetKeyName(23, "Bang KeNhap Kho.png");
     this.imgCollection.Images.SetKeyName(24, "Canh Bao Ton Kho.png");
     this.imgCollection.Images.SetKeyName(25, "Chuyen Kho.png");
     this.imgCollection.Images.SetKeyName(26, "Dong Goi BTP.png");
     this.imgCollection.Images.SetKeyName(27, "Kiem Ke.png");
     this.imgCollection.Images.SetKeyName(28, "Nhap Kho.png");
     this.imgCollection.Images.SetKeyName(29, "ReportWithChart256.png");
     this.imgCollection.Images.SetKeyName(30, "Ton Kho.png");
     this.imgCollection.Images.SetKeyName(31, "Xuat Kho.png");
     this.imgCollection.Images.SetKeyName(32, "Xuat Va Dong Goi.png");
     this.imgCollection.Images.SetKeyName(33, "Yeu Cau Dat Hang.png");
     this.imgCollection.Images.SetKeyName(34, "Yeu Cau Dat Hang.png");
     this.imgCollection.Images.SetKeyName(35, "Bang Ke Lap Rap.png");
     this.imgCollection.Images.SetKeyName(36, "Bang Len Ke Hoach.png");
     this.imgCollection.Images.SetKeyName(37, "Ke Hoach.png");
     this.imgCollection.Images.SetKeyName(38, "Lap Rap.png");
     this.imgCollection.Images.SetKeyName(39, "Tinh Gia Ban.png");
     this.imgCollection.Images.SetKeyName(40, "Bao Cao The Kho.png");
     this.imgCollection.Images.SetKeyName(41, "Bao Cao Ton Kho.png");
     this.imgCollection.Images.SetKeyName(42, "Duoi Dinh Muc.png");
     this.imgCollection.Images.SetKeyName(43, "Khac.png");
     this.imgCollection.Images.SetKeyName(44, "So Chi Tiet.png");
     this.imgCollection.Images.SetKeyName(45, "Vuot Dinh Muc.png");
     this.imgCollection.Images.SetKeyName(46, "Han Su Dung.png");
     this.imgCollection.Images.SetKeyName(47, "Dong Goi Thanh Pham.png");
     this.imgCollection.Images.SetKeyName(48, "Cap Nhat.png");
     this.imgCollection.Images.SetKeyName(49, "Dang Ky.png");
     this.imgCollection.Images.SetKeyName(50, "Huong Dan Su Dung.png");
     this.imgCollection.Images.SetKeyName(51, "Lien He.png");
     this.imgCollection.Images.SetKeyName(52, "Thong Tin.png");
     this.imgCollection.Images.SetKeyName(53, "Trang Chu.png");
     this.imgCollection.Images.SetKeyName(54, "Dang Ky.png");
     this.imgCollection.Images.SetKeyName(55, "databasebackup.png");
     this.imgCollection.Images.SetKeyName(56, "databaserestore.png");
     this.imgCollection.Images.SetKeyName(57, "Ban Ke Xuat Kho.png");
     this.imgCollection.Images.SetKeyName(58, "Bang Ke Nhap Kho.png");
     this.imgCollection.Images.SetKeyName(59, "Bang Ke Chuyen kho1.png");
     this.imgCollection.Images.SetKeyName(60, "Trang Chu.ico");
     this.imgCollection.Images.SetKeyName(61, "Cap Nhap Truc Tuyen.ico");
     this.imgCollection.Images.SetKeyName(62, "Huong Dan Su Dung.ico");
     this.imgCollection.Images.SetKeyName(63, "Lien He.ico");
     this.imgCollection.Images.SetKeyName(64, "Dang Xuat.png");
     this.imgCollection.Images.SetKeyName(65, "Copy of Stop.png");
     this.imgCollection.Images.SetKeyName(66, "Copy of Sync.png");
     this.imgCollection.Images.SetKeyName(67, "SuaChua.png");
     this.imgCollection.Images.SetKeyName(68, "NhatKyHeThong.png");
     this.imgCollection.Images.SetKeyName(69, "TimKiemChungTu.png");
     this.imgCollection.Images.SetKeyName(70, "16.ico");
     this.imgCollection.Images.SetKeyName(71, "database.ico");
     this.imgCollection.Images.SetKeyName(72, "StockPNG.png");
     this.imgCollection.Images.SetKeyName(73, "RibbonPrintPreview_DocumentMapLarge.png");
     this.imgCollection.Images.SetKeyName(74, "RibbonPrintPreview_CustomizeLarge.png");
     this.imgCollection.Images.SetKeyName(75, "plugin.ico");
     this.imgCollection.Images.SetKeyName(76, "Cau Hinh.png");
     this.imgCollection.Images.SetKeyName(77, "Sua Chua.png");
     this.imgCollection.Images.SetKeyName(78, "System868632.png");
     this.imgCollection.Images.SetKeyName(79, "Dossier fichier compressé32.png");
     this.imgCollection.Images.SetKeyName(80, "Barcode32.png");
     this.imgCollection.Images.SetKeyName(81, "PhanQuyen.png");
     this.imgCollection.Images.SetKeyName(82, "PhanQuyen.png");
     this.imgCollection.Images.SetKeyName(83, "1285643018_gnutella.png");
     this.imgCollection.Images.SetKeyName(84, "1285643049_network-offline.png");
     this.imgCollection.Images.SetKeyName(85, "1285643131_network-offline.png");
     this.imgCollection.Images.SetKeyName(86, "1285643150_gnutella.png");
     this.imgCollection.Images.SetKeyName(87, "1284429314_import.png");
     this.imgCollection.Images.SetKeyName(88, "1287538982_help-contents.png");
     this.imgCollection.Images.SetKeyName(89, "1287539858_page_white_world.png");
     this.imgCollection.Images.SetKeyName(90, "1287540090_video.png");
     this.imgCollection.Images.SetKeyName(91, "Lap Rap.png");
     this.imgCollection.Images.SetKeyName(92, "Yeu Cau Dat Hang.png");
     this.imgCollection.Images.SetKeyName(93, "Noi Ha.png");
     this.imgCollection.Images.SetKeyName(94, "1316226941_currencyexchange.png");
     this.imgCollection.Images.SetKeyName(95, "1323220185_home_page.png");
     this.imgCollection.Images.SetKeyName(96, "1323224048_home.png");
     this.imgCollection.Images.SetKeyName(97, "1323224110_1 - Home.png");
     this.imgCollection.Images.SetKeyName(98, "6_barcode_box.gif");
     this.imgCollection.Images.SetKeyName(99, "20-512.png");
     this.imgCollection.Images.SetKeyName(100, "1438422363_receipt.png");
     this.imgCollection.Images.SetKeyName(101, "1438776229_product.png");
     this.imgCollection.Images.SetKeyName(102, "1438776525_deliverables.png");
     this.imgCollection.Images.SetKeyName(103, "1438776535_Box_Empty.png");
     this.imgCollection.Images.SetKeyName(104, "1438776543_package-x-generic.png");
     this.imgCollection.Images.SetKeyName(105, "Address_Book.png");
     this.imgCollection.Images.SetKeyName(106, "barcode_icon (1).jpg");
     this.imgCollection.Images.SetKeyName(107, "barcode_icon.jpg");
     this.imgCollection.Images.SetKeyName(108, "connect_creating.png");
     this.imgCollection.Images.SetKeyName(109, "connect_no (1).png");
     this.imgCollection.Images.SetKeyName(110, "connect_no (2).png");
     this.imgCollection.Images.SetKeyName(111, "connect_no.png");
     this.imgCollection.Images.SetKeyName(112, "default_logo.png");
     this.imgCollection.Images.SetKeyName(113, "document-excel-icon - Copy - Copy - Copy.png");
     this.imgCollection.Images.SetKeyName(114, "document-excel-icon - Copy - Copy (2).png");
     this.imgCollection.Images.SetKeyName(115, "document-excel-icon - Copy - Copy.png");
     this.imgCollection.Images.SetKeyName(116, "document-excel-icon - Copy (2) - Copy.png");
     this.imgCollection.Images.SetKeyName(117, "document-excel-icon - Copy (2).png");
     this.imgCollection.Images.SetKeyName(118, "document-excel-icon - Copy (3).png");
     this.imgCollection.Images.SetKeyName(119, "document-excel-icon - Copy.png");
     this.imgCollection.Images.SetKeyName(120, "document-excel-icon.png");
     this.imgCollection.Images.SetKeyName(121, "Dust_factory_gas_industry_oil_plant_pollution_building_company_production_smoke-5" +
     "12 - Copy.png");
     this.imgCollection.Images.SetKeyName(122, "Dust_factory_gas_industry_oil_plant_pollution_building_company_production_smoke-5" +
     "12.png");
     this.imgCollection.Images.SetKeyName(123, "Excel-icon (1) - Copy - Copy - Copy.png");
     this.imgCollection.Images.SetKeyName(124, "Excel-icon (1) - Copy - Copy.png");
     this.imgCollection.Images.SetKeyName(125, "Excel-icon (1) - Copy.png");
     this.imgCollection.Images.SetKeyName(126, "Excel-icon (1).png");
     this.imgCollection.Images.SetKeyName(127, "Excel-icon (2) - Copy - Copy.png");
     this.imgCollection.Images.SetKeyName(128, "Excel-icon (2) - Copy.png");
     this.imgCollection.Images.SetKeyName(129, "Excel-icon (2).png");
     this.imgCollection.Images.SetKeyName(130, "Excel-icon.png");
     this.imgCollection.Images.SetKeyName(131, "file-complete-icon.png");
     this.imgCollection.Images.SetKeyName(132, "general_options.png");
     this.imgCollection.Images.SetKeyName(133, "Group-icon.png");
     this.imgCollection.Images.SetKeyName(134, "icon_company.png");
     this.imgCollection.Images.SetKeyName(135, "icon-companies.png");
     this.imgCollection.Images.SetKeyName(136, "icon-company-incorporation.png");
     this.imgCollection.Images.SetKeyName(137, "Icon-Printer.png");
     this.imgCollection.Images.SetKeyName(138, "Icon-Printer02-Black.png");
     this.imgCollection.Images.SetKeyName(139, "images.jpg");
     this.imgCollection.Images.SetKeyName(140, "location-icon-map-map-pin-icon.png");
     this.imgCollection.Images.SetKeyName(141, "map.png");
     this.imgCollection.Images.SetKeyName(142, "Multimedia_communication_flat_mobile_Technology-08-31-512.png");
     this.imgCollection.Images.SetKeyName(143, "point-512.png");
     this.imgCollection.Images.SetKeyName(144, "printer (1).png");
     this.imgCollection.Images.SetKeyName(145, "printer.png");
     this.imgCollection.Images.SetKeyName(146, "printer-icon-clip-art.jpg");
     this.imgCollection.Images.SetKeyName(147, "Receipt-2-icon.png");
     this.imgCollection.Images.SetKeyName(148, "Receipt-4-icon.png");
     this.imgCollection.Images.SetKeyName(149, "Receipt-icon.png");
     this.imgCollection.Images.SetKeyName(150, "redlaser-icon.png");
     this.imgCollection.Images.SetKeyName(151, "unnamed.png");
     this.imgCollection.Images.SetKeyName(152, "usb_port_2-512.png");
     this.imgCollection.Images.SetKeyName(153, "users-icon.png");
     this.imgCollection.Images.SetKeyName(154, "vector-printer-icon-14574274.jpg");
     this.imgCollection.Images.SetKeyName(155, "vspc-icon-256.png");
     this.imgCollection.Images.SetKeyName(156, "24-7.png");
     this.imgCollection.Images.SetKeyName(157, "A-baby-cot.png");
     this.imgCollection.Images.SetKeyName(158, "Account.png");
     this.imgCollection.Images.SetKeyName(159, "Add Event.png");
     this.imgCollection.Images.SetKeyName(160, "Alarm-clock.png");
     this.imgCollection.Images.SetKeyName(161, "A-rollaway-bed.png");
     this.imgCollection.Images.SetKeyName(162, "Autoship.png");
     this.imgCollection.Images.SetKeyName(163, "Baby.png");
     this.imgCollection.Images.SetKeyName(164, "Binary-tree.png");
     this.imgCollection.Images.SetKeyName(165, "Breakfast.png");
     this.imgCollection.Images.SetKeyName(166, "Business-info.png");
     this.imgCollection.Images.SetKeyName(167, "Calendar-selection-all.png");
     this.imgCollection.Images.SetKeyName(168, "Calendar-selection-day.png");
     this.imgCollection.Images.SetKeyName(169, "calendar-selection-month.png");
     this.imgCollection.Images.SetKeyName(170, "Calendar-selection-week.png");
     this.imgCollection.Images.SetKeyName(171, "Contact.png");
     this.imgCollection.Images.SetKeyName(172, "Couple.png");
     this.imgCollection.Images.SetKeyName(173, "Create-ticket.png");
     this.imgCollection.Images.SetKeyName(174, "Direct-walkway.png");
     this.imgCollection.Images.SetKeyName(175, "Distributor-report.png");
     this.imgCollection.Images.SetKeyName(176, "Download.png");
     this.imgCollection.Images.SetKeyName(177, "Drive.png");
     this.imgCollection.Images.SetKeyName(178, "Earning-statement.png");
     this.imgCollection.Images.SetKeyName(179, "Event-search.png");
     this.imgCollection.Images.SetKeyName(180, "Female-user-accept.png");
     this.imgCollection.Images.SetKeyName(181, "Female-user-add.png");
     this.imgCollection.Images.SetKeyName(182, "Female-user-edit.png");
     this.imgCollection.Images.SetKeyName(183, "Female-user-help.png");
     this.imgCollection.Images.SetKeyName(184, "Female-user-info.png");
     this.imgCollection.Images.SetKeyName(185, "Female-user-remove.png");
     this.imgCollection.Images.SetKeyName(186, "Female-user-search.png");
     this.imgCollection.Images.SetKeyName(187, "Female-user-warning.png");
     this.imgCollection.Images.SetKeyName(188, "Geology-view.png");
     this.imgCollection.Images.SetKeyName(189, "Globe-download.png");
     this.imgCollection.Images.SetKeyName(190, "Globe-warning.png");
     this.imgCollection.Images.SetKeyName(191, "Gift.png");
     this.imgCollection.Images.SetKeyName(192, "Insert-hyperlink.png");
     this.imgCollection.Images.SetKeyName(193, "Library.png");
     this.imgCollection.Images.SetKeyName(194, "Library2.png");
     this.imgCollection.Images.SetKeyName(195, "Link.png");
     this.imgCollection.Images.SetKeyName(196, "Mail-search.png");
     this.imgCollection.Images.SetKeyName(197, "Message-already-read.png");
     this.imgCollection.Images.SetKeyName(198, "My-tickets.png");
     this.imgCollection.Images.SetKeyName(199, "Order-history.png");
     this.imgCollection.Images.SetKeyName(200, "Ordering.png");
     this.imgCollection.Images.SetKeyName(201, "Packing1.png");
     this.imgCollection.Images.SetKeyName(202, "Payment-card.png");
     this.imgCollection.Images.SetKeyName(203, "Product-sale-report.png");
     this.imgCollection.Images.SetKeyName(204, "Rank History.png");
     this.imgCollection.Images.SetKeyName(205, "Reports.png");
     this.imgCollection.Images.SetKeyName(206, "Sales-by-payment-method.png");
     this.imgCollection.Images.SetKeyName(207, "Sales-report.png");
     this.imgCollection.Images.SetKeyName(208, "Search-globe.png");
     this.imgCollection.Images.SetKeyName(209, "Select-language.png");
     this.imgCollection.Images.SetKeyName(210, "Upline.png");
     this.imgCollection.Images.SetKeyName(211, "Upload.png");
     this.imgCollection.Images.SetKeyName(212, "Web-management.png");
     this.imgCollection.Images.SetKeyName(213, "Woman.png");
     this.imgCollection.Images.SetKeyName(214, "Zoom-in.png");
     this.imgCollection.Images.SetKeyName(215, "Zoom-out.png");
     this.imgCollection.Images.SetKeyName(216, "addons256.png");
     this.imgCollection.Images.SetKeyName(217, "analysis256.png");
     this.imgCollection.Images.SetKeyName(218, "announcements256.png");
     this.imgCollection.Images.SetKeyName(219, "attachment256.png");
     this.imgCollection.Images.SetKeyName(220, "Autocomplete256.png");
     this.imgCollection.Images.SetKeyName(221, "billboard256.png");
     this.imgCollection.Images.SetKeyName(222, "calendar-selection-all256.png");
     this.imgCollection.Images.SetKeyName(223, "calendar-selection-day256.png");
     this.imgCollection.Images.SetKeyName(224, "calendar-selection-month256.png");
     this.imgCollection.Images.SetKeyName(225, "calendar-selection-week256.png");
     this.imgCollection.Images.SetKeyName(226, "catalog256.png");
     this.imgCollection.Images.SetKeyName(227, "content256.png");
     this.imgCollection.Images.SetKeyName(228, "content-reorder256.png");
     this.imgCollection.Images.SetKeyName(229, "content-tree256.png");
     this.imgCollection.Images.SetKeyName(230, "continue256.png");
     this.imgCollection.Images.SetKeyName(231, "examples256.png");
     this.imgCollection.Images.SetKeyName(232, "file-explorer256.png");
     this.imgCollection.Images.SetKeyName(233, "Folder-Accept256.png");
     this.imgCollection.Images.SetKeyName(234, "Folder-Add256.png");
     this.imgCollection.Images.SetKeyName(235, "Folder-Delete256.png");
     this.imgCollection.Images.SetKeyName(236, "Folder-Info256.png");
     this.imgCollection.Images.SetKeyName(237, "Folder-Warning256.png");
     this.imgCollection.Images.SetKeyName(238, "glossary256.png");
     this.imgCollection.Images.SetKeyName(239, "go-into256.png");
     this.imgCollection.Images.SetKeyName(240, "hide-left256.png");
     this.imgCollection.Images.SetKeyName(241, "hide-right256.png");
     this.imgCollection.Images.SetKeyName(242, "key256.png");
     this.imgCollection.Images.SetKeyName(243, "keys256.png");
     this.imgCollection.Images.SetKeyName(244, "layout256.png");
     this.imgCollection.Images.SetKeyName(245, "locked256.png");
     this.imgCollection.Images.SetKeyName(246, "mailbox256.png");
     this.imgCollection.Images.SetKeyName(247, "maintenance256.png");
     this.imgCollection.Images.SetKeyName(248, "navigate-down256.png");
     this.imgCollection.Images.SetKeyName(249, "navigate-left256.png");
     this.imgCollection.Images.SetKeyName(250, "navigate-right256.png");
     this.imgCollection.Images.SetKeyName(251, "navigate-up256.png");
     this.imgCollection.Images.SetKeyName(252, "options256.png");
     this.imgCollection.Images.SetKeyName(253, "1438776229_product.png");
     this.imgCollection.Images.SetKeyName(254, "1438776525_deliverables.png");
     this.imgCollection.Images.SetKeyName(255, "1438776535_Box_Empty.png");
     this.imgCollection.Images.SetKeyName(256, "1438776543_package-x-generic.png");
     this.imgCollection.Images.SetKeyName(257, "1438862627_vector_65_04.png");
     this.imgCollection.Images.SetKeyName(258, "1438862630_atm-money-machine.png");
     this.imgCollection.Images.SetKeyName(259, "1438862633_atm-machine.png");
     this.imgCollection.Images.SetKeyName(260, "1438862635_Emblem-Money-64.png");
     this.imgCollection.Images.SetKeyName(261, "1438862637_safe.png");
     this.imgCollection.Images.SetKeyName(262, "1438862639_money_bag.png");
     this.imgCollection.Images.SetKeyName(263, "1438862738_7.png");
     this.imgCollection.Images.SetKeyName(264, "1438862746_list.png");
     this.imgCollection.Images.SetKeyName(265, "1438862750_download box seule.png");
     this.imgCollection.Images.SetKeyName(266, "1438862755_inventory-maintenance.png");
     this.imgCollection.Images.SetKeyName(267, "1438862762_Box.png");
     this.imgCollection.Images.SetKeyName(268, "1438862828_floppy-disk.png");
     this.imgCollection.Images.SetKeyName(269, "1438862828_vector_66_12.png");
     this.imgCollection.Images.SetKeyName(270, "1438862829_Black-Drive-Backup.png");
     this.imgCollection.Images.SetKeyName(271, "1438862831_backup.png");
     this.imgCollection.Images.SetKeyName(272, "1438862832__Drive_Restore.png");
     this.imgCollection.Images.SetKeyName(273, "1438862834_restore.png");
     this.imgCollection.Images.SetKeyName(274, "1438862836_restore_window.png");
     this.imgCollection.Images.SetKeyName(275, "Address_Book.png");
     this.imgCollection.Images.SetKeyName(276, "1438863911_box-in.png");
     this.imgCollection.Images.SetKeyName(277, "1438863913_03_In.png");
     this.imgCollection.Images.SetKeyName(278, "1438863914_open_in_browser.png");
     this.imgCollection.Images.SetKeyName(279, "1438863917_sign-out.png");
     this.imgCollection.Images.SetKeyName(280, "1438863919_sign-out.png");
     this.imgCollection.Images.SetKeyName(281, "1438863921_box-out.png");
     this.imgCollection.Images.SetKeyName(282, "1438863924_02_Out.png");
     //
     // bbiKhachHang
     //
     this.bbiKhachHang.Caption = "Khách Hàng";
     this.bbiKhachHang.Id = 25;
     this.bbiKhachHang.ImageIndex = 13;
     this.bbiKhachHang.LargeImageIndex = 198;
     this.bbiKhachHang.Name = "bbiKhachHang";
     toolTipItem1.Text = "Quản lý khách hàng";
     superToolTip1.Items.Add(toolTipItem1);
     this.bbiKhachHang.SuperTip = superToolTip1;
     this.bbiKhachHang.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiKhachHang_ItemClick);
     //
     // bbiHangHoa
     //
     this.bbiHangHoa.Caption = "Hàng Hoá";
     this.bbiHangHoa.Id = 27;
     this.bbiHangHoa.ImageIndex = 47;
     this.bbiHangHoa.LargeImageIndex = 158;
     this.bbiHangHoa.Name = "bbiHangHoa";
     toolTipItem2.Text = "Quản lý hàng hoá, dịch vụ";
     superToolTip2.Items.Add(toolTipItem2);
     this.bbiHangHoa.SuperTip = superToolTip2;
     this.bbiHangHoa.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiHangHoa_ItemClick);
     //
     // bbiNhomHang
     //
     this.bbiNhomHang.Caption = "Nhóm Hàng";
     this.bbiNhomHang.Id = 29;
     this.bbiNhomHang.ImageIndex = 75;
     this.bbiNhomHang.LargeImageIndex = 188;
     this.bbiNhomHang.Name = "bbiNhomHang";
     toolTipItem3.Text = "Nhóm sản phẩm";
     superToolTip3.Items.Add(toolTipItem3);
     this.bbiNhomHang.SuperTip = superToolTip3;
     this.bbiNhomHang.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiNhomHang_ItemClick);
     //
     // bbiKho
     //
     this.bbiKho.Caption = "Kho";
     this.bbiKho.Id = 30;
     this.bbiKho.ImageIndex = 14;
     this.bbiKho.LargeImageIndex = 201;
     this.bbiKho.Name = "bbiKho";
     toolTipItem4.Text = "Quản lý kho hàng";
     superToolTip4.Items.Add(toolTipItem4);
     this.bbiKho.SuperTip = superToolTip4;
     this.bbiKho.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiKho_ItemClick);
     //
     // bbiAuthor
     //
     this.bbiAuthor.Caption = "Tác giả";
     this.bbiAuthor.Id = 38;
     this.bbiAuthor.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("bbiAuthor.LargeGlyph")));
     this.bbiAuthor.Name = "bbiAuthor";
     //
     // bbiKhuVuc
     //
     this.bbiKhuVuc.Caption = "Khu Vực";
     this.bbiKhuVuc.Id = 133;
     this.bbiKhuVuc.ImageIndex = 19;
     this.bbiKhuVuc.LargeImageIndex = 172;
     this.bbiKhuVuc.Name = "bbiKhuVuc";
     this.bbiKhuVuc.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiKhuVuc_ItemClick);
     //
     // bbiNhapKho
     //
     this.bbiNhapKho.Caption = "Nhập";
     this.bbiNhapKho.Description = "Quản lý nhập kho";
     this.bbiNhapKho.Glyph = ((System.Drawing.Image)(resources.GetObject("bbiNhapKho.Glyph")));
     this.bbiNhapKho.Hint = "Quản lý nhập kho";
     this.bbiNhapKho.Id = 136;
     this.bbiNhapKho.LargeImageIndex = 276;
     this.bbiNhapKho.Name = "bbiNhapKho";
     toolTipItem5.Text = "Quản lý nhập kho";
     superToolTip5.Items.Add(toolTipItem5);
     this.bbiNhapKho.SuperTip = superToolTip5;
     this.bbiNhapKho.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiNhapKho_ItemClick);
     //
     // bbiXuatKho
     //
     this.bbiXuatKho.Caption = "Xuất";
     this.bbiXuatKho.Description = "Quản lý xuất kho";
     this.bbiXuatKho.Glyph = ((System.Drawing.Image)(resources.GetObject("bbiXuatKho.Glyph")));
     this.bbiXuatKho.Hint = "Quản lý xuất kho";
     this.bbiXuatKho.Id = 138;
     this.bbiXuatKho.LargeImageIndex = 281;
     this.bbiXuatKho.Name = "bbiXuatKho";
     toolTipItem6.Text = "Quản lý xuất kho\r\n";
     superToolTip6.Items.Add(toolTipItem6);
     this.bbiXuatKho.SuperTip = superToolTip6;
     this.bbiXuatKho.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiXuatKho_ItemClick);
     //
     // bbiTonKho
     //
     this.bbiTonKho.Caption = "Tồn Kho";
     this.bbiTonKho.Id = 187;
     this.bbiTonKho.ImageIndex = 30;
     this.bbiTonKho.LargeImageIndex = 267;
     this.bbiTonKho.Name = "bbiTonKho";
     this.bbiTonKho.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiTonKho_ItemClick);
     //
     // lblServer
     //
     this.lblServer.Caption = "Máy Chủ: ";
     this.lblServer.Id = 227;
     this.lblServer.ImageIndex = 233;
     this.lblServer.ItemAppearance.Normal.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblServer.ItemAppearance.Normal.Options.UseFont = true;
     this.lblServer.Name = "lblServer";
     toolTipTitleItem1.Text = "Nhấn đúp chuột vào để mở phần mềm quản lý cơ sở dữ liệu";
     toolTipItem7.LeftIndent = 6;
     toolTipItem7.Text = "Chú ý: mọi thao tác trên trên phần mềm quản lý cơ sở dữ liệu đều phải sao lưu dữ " +
     "liệu trước, phòng trường hợp thao tác nhằm, hoặc lỗi do sự cố ngoài ý muốn...";
     superToolTip7.Items.Add(toolTipTitleItem1);
     superToolTip7.Items.Add(toolTipItem7);
     this.lblServer.SuperTip = superToolTip7;
     this.lblServer.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // lblDatabase
     //
     this.lblDatabase.Caption = "CSDL:";
     this.lblDatabase.Id = 237;
     this.lblDatabase.ImageIndex = 273;
     this.lblDatabase.ItemAppearance.Normal.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblDatabase.ItemAppearance.Normal.Options.UseFont = true;
     this.lblDatabase.Name = "lblDatabase";
     toolTipTitleItem2.Text = "Nhấn đúp chuột vào đây để sử dụng một cơ sở dữ liệu khác.";
     toolTipItem8.LeftIndent = 6;
     toolTipItem8.Text = "Chú ý: Sau khi cấu hình thành công, khởi động lại phần mềm để nạp cấu hình mới.";
     superToolTip8.Items.Add(toolTipTitleItem2);
     superToolTip8.Items.Add(toolTipItem8);
     this.lblDatabase.SuperTip = superToolTip8;
     this.lblDatabase.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // ISystem
     //
     this.ISystem.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.ISystem.Caption = "Hệ Thống";
     this.ISystem.Id = 255;
     this.ISystem.ImageIndex = 78;
     this.ISystem.LargeImageIndex = 78;
     this.ISystem.Name = "ISystem";
     this.ISystem.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
     //
     // IInit
     //
     this.IInit.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.IInit.Caption = "Nhập Số Dư Ban Đầu";
     this.IInit.Id = 256;
     this.IInit.ImageIndex = 79;
     this.IInit.LargeImageIndex = 79;
     this.IInit.Name = "IInit";
     this.IInit.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
     //
     // IInward
     //
     this.IInward.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.IInward.Caption = "Nhập Kho";
     this.IInward.Id = 257;
     this.IInward.ImageIndex = 28;
     this.IInward.LargeImageIndex = 28;
     this.IInward.Name = "IInward";
     this.IInward.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
     //
     // IOutward
     //
     this.IOutward.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.IOutward.Caption = "Xuất Kho";
     this.IOutward.Id = 258;
     this.IOutward.ImageIndex = 31;
     this.IOutward.LargeImageIndex = 31;
     this.IOutward.Name = "IOutward";
     this.IOutward.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
     //
     // ITransfer
     //
     this.ITransfer.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.ITransfer.Caption = "Chuyển Kho";
     this.ITransfer.Id = 259;
     this.ITransfer.ImageIndex = 25;
     this.ITransfer.LargeImageIndex = 25;
     this.ITransfer.Name = "ITransfer";
     this.ITransfer.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
     //
     // IAdjustment
     //
     this.IAdjustment.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.IAdjustment.Caption = "Kiểm Kê";
     this.IAdjustment.Id = 260;
     this.IAdjustment.ImageIndex = 27;
     this.IAdjustment.LargeImageIndex = 27;
     this.IAdjustment.Name = "IAdjustment";
     this.IAdjustment.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
     //
     // IInventory
     //
     this.IInventory.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.IInventory.Caption = "Tồn Kho";
     this.IInventory.Id = 261;
     this.IInventory.ImageIndex = 30;
     this.IInventory.LargeImageIndex = 30;
     this.IInventory.Name = "IInventory";
     this.IInventory.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
     //
     // IPacket
     //
     this.IPacket.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.IPacket.Caption = "Đóng Gói";
     this.IPacket.Id = 264;
     this.IPacket.ImageIndex = 26;
     this.IPacket.LargeImageIndex = 26;
     this.IPacket.Name = "IPacket";
     //
     // bbiClose
     //
     this.bbiClose.Caption = "Kết Thúc";
     this.bbiClose.Description = "Kết thúc";
     this.bbiClose.Hint = "Kết thúc";
     this.bbiClose.Id = 132;
     this.bbiClose.ImageIndex = 0;
     this.bbiClose.LargeImageIndex = 239;
     this.bbiClose.Name = "bbiClose";
     this.bbiClose.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.BbiCloseItemClick);
     //
     // bbiUserGroup
     //
     this.bbiUserGroup.Caption = "Vai Trò && Quyền Hạn";
     this.bbiUserGroup.Id = 295;
     this.bbiUserGroup.ImageIndex = 2;
     this.bbiUserGroup.LargeImageIndex = 2;
     this.bbiUserGroup.Name = "bbiUserGroup";
     this.bbiUserGroup.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // bbiUsers
     //
     this.bbiUsers.Caption = "Người Dùng";
     this.bbiUsers.Id = 296;
     this.bbiUsers.ImageIndex = 1;
     this.bbiUsers.LargeImageIndex = 1;
     this.bbiUsers.Name = "bbiUsers";
     this.bbiUsers.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // bbiUpdateOnline
     //
     this.bbiUpdateOnline.Caption = "Cập Nhật Trực Tuyến";
     this.bbiUpdateOnline.Id = 300;
     this.bbiUpdateOnline.ImageIndex = 86;
     this.bbiUpdateOnline.Name = "bbiUpdateOnline";
     //
     // bbiUpdateOffline
     //
     this.bbiUpdateOffline.Caption = "Cập Nhật Thông Thường";
     this.bbiUpdateOffline.Id = 301;
     this.bbiUpdateOffline.ImageIndex = 85;
     this.bbiUpdateOffline.Name = "bbiUpdateOffline";
     //
     // biiHelpNormal
     //
     this.biiHelpNormal.Caption = "Tài Liệu Hướng Dẫn";
     this.biiHelpNormal.Id = 306;
     this.biiHelpNormal.ImageIndex = 89;
     this.biiHelpNormal.LargeImageIndex = 89;
     this.biiHelpNormal.Name = "biiHelpNormal";
     //
     // biiHelpVideo
     //
     this.biiHelpVideo.Caption = "Video Hướng Dẫn";
     this.biiHelpVideo.Id = 307;
     this.biiHelpVideo.ImageIndex = 90;
     this.biiHelpVideo.LargeImageIndex = 90;
     this.biiHelpVideo.Name = "biiHelpVideo";
     //
     // bbiSaoLuu
     //
     this.bbiSaoLuu.Caption = "Sao Lưu";
     this.bbiSaoLuu.Id = 315;
     this.bbiSaoLuu.ImageIndex = 55;
     this.bbiSaoLuu.LargeImageIndex = 177;
     this.bbiSaoLuu.Name = "bbiSaoLuu";
     this.bbiSaoLuu.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiBackUp_ItemClick);
     //
     // bbiPhucHoi
     //
     this.bbiPhucHoi.Caption = "Phục Hồi";
     this.bbiPhucHoi.Id = 316;
     this.bbiPhucHoi.ImageIndex = 56;
     this.bbiPhucHoi.LargeImageIndex = 271;
     this.bbiPhucHoi.Name = "bbiPhucHoi";
     this.bbiPhucHoi.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiPhucHoi_ItemClick);
     //
     // bbiXuatNhapTon
     //
     this.bbiXuatNhapTon.Caption = "Xuất Nhập Tồn";
     this.bbiXuatNhapTon.Id = 318;
     this.bbiXuatNhapTon.ImageIndex = 33;
     this.bbiXuatNhapTon.LargeImageIndex = 103;
     this.bbiXuatNhapTon.Name = "bbiXuatNhapTon";
     this.bbiXuatNhapTon.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiXuatNhapTon_ItemClick);
     //
     // bbiLichSu
     //
     this.bbiLichSu.Caption = "Lịch Sử";
     this.bbiLichSu.Id = 319;
     this.bbiLichSu.ImageIndex = 68;
     this.bbiLichSu.LargeImageIndex = 238;
     this.bbiLichSu.Name = "bbiLichSu";
     this.bbiLichSu.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiLichSu_ItemClick);
     //
     // bbiTheKho
     //
     this.bbiTheKho.Caption = "Thẻ Kho";
     this.bbiTheKho.Id = 320;
     this.bbiTheKho.ImageIndex = 26;
     this.bbiTheKho.LargeImageIndex = 218;
     this.bbiTheKho.Name = "bbiTheKho";
     this.bbiTheKho.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiTheKho_ItemClick);
     //
     // bbiNhanVien
     //
     this.bbiNhanVien.Caption = "Nhân Viên";
     this.bbiNhanVien.Id = 322;
     this.bbiNhanVien.LargeImageIndex = 163;
     this.bbiNhanVien.Name = "bbiNhanVien";
     this.bbiNhanVien.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiNhanVien_ItemClick);
     //
     // bbiCuaHang
     //
     this.bbiCuaHang.Caption = "Cửa Hàng";
     this.bbiCuaHang.Id = 323;
     this.bbiCuaHang.LargeImageIndex = 246;
     this.bbiCuaHang.Name = "bbiCuaHang";
     this.bbiCuaHang.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiCuaHang_ItemClick);
     //
     // bbiThuChi
     //
     this.bbiThuChi.Caption = "Thu Chi";
     this.bbiThuChi.Id = 324;
     this.bbiThuChi.ImageIndex = 39;
     this.bbiThuChi.LargeImageIndex = 147;
     this.bbiThuChi.Name = "bbiThuChi";
     this.bbiThuChi.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiThuChi_ItemClick);
     //
     // bbiCongNo
     //
     this.bbiCongNo.Caption = "Công Nợ";
     this.bbiCongNo.Id = 325;
     this.bbiCongNo.LargeImageIndex = 262;
     this.bbiCongNo.Name = "bbiCongNo";
     this.bbiCongNo.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiCongNo_ItemClick);
     //
     // bbiTheNo
     //
     this.bbiTheNo.Caption = "Thẻ Nợ";
     this.bbiTheNo.Id = 326;
     this.bbiTheNo.LargeImageIndex = 257;
     this.bbiTheNo.Name = "bbiTheNo";
     this.bbiTheNo.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiTheNo_ItemClick);
     //
     // bbiDoanhThu
     //
     this.bbiDoanhThu.Caption = "Doanh Thu";
     this.bbiDoanhThu.Id = 328;
     this.bbiDoanhThu.LargeImageIndex = 263;
     this.bbiDoanhThu.Name = "bbiDoanhThu";
     this.bbiDoanhThu.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiDoanhThu_ItemClick);
     //
     // bbiCongNoChungTu
     //
     this.bbiCongNoChungTu.Caption = "Công Nợ Chứng Từ";
     this.bbiCongNoChungTu.Id = 329;
     this.bbiCongNoChungTu.LargeImageIndex = 93;
     this.bbiCongNoChungTu.Name = "bbiCongNoChungTu";
     this.bbiCongNoChungTu.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiCongNoChungTu_ItemClick);
     //
     // rbpHeThong
     //
     this.rbpHeThong.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.rbpgDong});
     this.rbpHeThong.Name = "rbpHeThong";
     this.rbpHeThong.Text = "Hệ Thống";
     //
     // rbpgDong
     //
     this.rbpgDong.ItemLinks.Add(this.bbiClose);
     this.rbpgDong.ItemLinks.Add(this.bbiSaoLuu);
     this.rbpgDong.ItemLinks.Add(this.bbiPhucHoi);
     this.rbpgDong.KeyTip = "KE";
     this.rbpgDong.Name = "rbpgDong";
     this.rbpgDong.ShowCaptionButton = false;
     this.rbpgDong.Text = "Hệ Thống";
     //
     // rbpDanhMuc
     //
     this.rbpDanhMuc.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.rbpgDoiTac,
     this.rbpgKhoHang,
     this.rbpgThongTinCuaHang});
     this.rbpDanhMuc.Name = "rbpDanhMuc";
     this.rbpDanhMuc.Text = "Danh Mục";
     //
     // rbpgDoiTac
     //
     this.rbpgDoiTac.ItemLinks.Add(this.bbiKhuVuc);
     this.rbpgDoiTac.ItemLinks.Add(this.bbiKhachHang);
     this.rbpgDoiTac.Name = "rbpgDoiTac";
     this.rbpgDoiTac.ShowCaptionButton = false;
     this.rbpgDoiTac.Text = "Đối Tác";
     //
     // rbpgKhoHang
     //
     this.rbpgKhoHang.ItemLinks.Add(this.bbiKho);
     this.rbpgKhoHang.ItemLinks.Add(this.bbiNhomHang);
     this.rbpgKhoHang.ItemLinks.Add(this.bbiHangHoa);
     this.rbpgKhoHang.Name = "rbpgKhoHang";
     this.rbpgKhoHang.ShowCaptionButton = false;
     this.rbpgKhoHang.Text = "Kho Hàng";
     //
     // rbpgThongTinCuaHang
     //
     this.rbpgThongTinCuaHang.ItemLinks.Add(this.bbiNhanVien);
     this.rbpgThongTinCuaHang.ItemLinks.Add(this.bbiCuaHang);
     this.rbpgThongTinCuaHang.Name = "rbpgThongTinCuaHang";
     this.rbpgThongTinCuaHang.Text = "Thông Tin Cửa Hàng";
     //
     // rbpKhoHang
     //
     this.rbpKhoHang.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.rbpgQuanLyKho,
     this.rbpgBaoCao,
     this.rpbgCongNo,
     this.rpbgDoanhThu});
     this.rbpKhoHang.Name = "rbpKhoHang";
     this.rbpKhoHang.Text = "Kho Hàng";
     //
     // rbpgQuanLyKho
     //
     this.rbpgQuanLyKho.ItemLinks.Add(this.bbiNhapKho);
     this.rbpgQuanLyKho.ItemLinks.Add(this.bbiXuatKho);
     this.rbpgQuanLyKho.Name = "rbpgQuanLyKho";
     this.rbpgQuanLyKho.ShowCaptionButton = false;
     this.rbpgQuanLyKho.Text = "Quản Lý Kho";
     //
     // rbpgBaoCao
     //
     this.rbpgBaoCao.ItemLinks.Add(this.bbiTonKho);
     this.rbpgBaoCao.ItemLinks.Add(this.bbiXuatNhapTon);
     this.rbpgBaoCao.ItemLinks.Add(this.bbiTheKho);
     this.rbpgBaoCao.ItemLinks.Add(this.bbiLichSu);
     this.rbpgBaoCao.Name = "rbpgBaoCao";
     this.rbpgBaoCao.Text = "Báo Cáo";
     //
     // rpbgCongNo
     //
     this.rpbgCongNo.ItemLinks.Add(this.bbiThuChi);
     this.rpbgCongNo.ItemLinks.Add(this.bbiCongNo);
     this.rpbgCongNo.ItemLinks.Add(this.bbiTheNo);
     this.rpbgCongNo.ItemLinks.Add(this.bbiCongNoChungTu);
     this.rpbgCongNo.Name = "rpbgCongNo";
     this.rpbgCongNo.Text = "Công Nợ";
     //
     // rpbgDoanhThu
     //
     this.rpbgDoanhThu.ItemLinks.Add(this.bbiDoanhThu);
     this.rpbgDoanhThu.Name = "rpbgDoanhThu";
     this.rpbgDoanhThu.Text = "Doanh Thu";
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     //
     // rbsMain
     //
     this.rbsMain.Location = new System.Drawing.Point(0, 736);
     this.rbsMain.Name = "rbsMain";
     this.rbsMain.Ribbon = this.rbcMain;
     this.rbsMain.Size = new System.Drawing.Size(1016, 31);
     //
     // tabMdi
     //
     this.tabMdi.ClosePageButtonShowMode = DevExpress.XtraTab.ClosePageButtonShowMode.InAllTabPagesAndTabControlHeader;
     this.tabMdi.HeaderButtons = ((DevExpress.XtraTab.TabButtons)((((DevExpress.XtraTab.TabButtons.Prev | DevExpress.XtraTab.TabButtons.Next)
     | DevExpress.XtraTab.TabButtons.Close)
     | DevExpress.XtraTab.TabButtons.Default)));
     this.tabMdi.HeaderButtonsShowMode = DevExpress.XtraTab.TabButtonShowMode.Always;
     this.tabMdi.HeaderOrientation = DevExpress.XtraTab.TabOrientation.Horizontal;
     this.tabMdi.MdiParent = this;
     this.tabMdi.SetNextMdiChildMode = DevExpress.XtraTabbedMdi.SetNextMdiChildMode.Windows;
     this.tabMdi.ShowHeaderFocus = DevExpress.Utils.DefaultBoolean.True;
     this.tabMdi.ShowToolTips = DevExpress.Utils.DefaultBoolean.True;
     //
     // ImgSmall
     //
     this.ImgSmall.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("ImgSmall.ImageStream")));
     this.ImgSmall.Images.SetKeyName(0, "Ket Thuc.png");
     this.ImgSmall.Images.SetKeyName(1, "1285643018_gnutella.png");
     this.ImgSmall.Images.SetKeyName(2, "1285643049_network-offline.png");
     this.ImgSmall.Images.SetKeyName(3, "1284429314_import.png");
     this.ImgSmall.Images.SetKeyName(4, "1287538982_help-contents.png");
     //
     // FrmMain
     //
     this.ClientSize = new System.Drawing.Size(1016, 767);
     this.Controls.Add(this.rbsMain);
     this.Controls.Add(this.rbcMain);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.IsMdiContainer = true;
     this.Name = "FrmMain";
     this.Ribbon = this.rbcMain;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.StatusBar = this.rbsMain;
     this.Text = "Phần Mềm Quản Lý Kho";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     ((System.ComponentModel.ISupportInitialize)(this.rbcMain)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.imgCollection)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabMdi)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ImgSmall)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
        /// <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.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem1 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip2 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem2 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip3 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem3 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem3 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip4 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem4 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem4 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip5 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem5 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem5 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip6 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem6 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem6 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip7 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem7 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem7 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip8 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem8 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem8 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip9 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem9 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem9 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip10 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem10 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem10 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip11 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem11 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem11 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip12 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem12 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem12 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip13 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem13 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem13 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip14 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem14 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem14 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip15 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem15 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem15 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip16 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem16 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem16 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip17 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem17 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem17 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip18 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem18 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem18 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip19 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem19 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem19 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip20 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem20 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem20 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip21 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem21 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem21 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip22 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem22 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem22 = new DevExpress.Utils.ToolTipItem();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmProductsReport));
            DevExpress.Utils.SuperToolTip superToolTip23 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem23 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem23 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip24 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem24 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem24 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip25 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem25 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem25 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip26 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem26 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem26 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip27 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem27 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem27 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip28 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem28 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem28 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip29 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem29 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem29 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip30 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem30 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem30 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip31 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem31 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem31 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip32 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem32 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem32 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip33 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem33 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem33 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip34 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem34 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem34 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip35 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem35 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem35 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip36 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem36 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem36 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip37 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem37 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem37 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip38 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem38 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem38 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip39 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem39 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem39 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip40 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem40 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem40 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip41 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem41 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem41 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip42 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem42 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem42 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip43 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem43 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem43 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip44 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem44 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem44 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip45 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem45 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem45 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip46 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem46 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem46 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip47 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem47 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem47 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip48 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem48 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem48 = new DevExpress.Utils.ToolTipItem();
            this.documentViewer1 = new DevExpress.XtraPrinting.Preview.DocumentViewer();
            this.documentViewerRibbonController1 = new DevExpress.XtraPrinting.Preview.DocumentViewerRibbonController(this.components);
            this.ribbonControl1 = new DevExpress.XtraBars.Ribbon.RibbonControl();
            this.printPreviewBarItem1 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem2 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem3 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem4 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem5 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem6 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem7 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem8 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem9 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem10 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem11 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem12 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem13 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem14 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem15 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem16 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem17 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem18 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem19 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem20 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem21 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem22 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem23 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem24 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem25 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem26 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem27 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem28 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem29 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem30 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem31 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem32 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem33 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem34 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem35 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem36 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem37 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem38 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem39 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem40 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem41 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem42 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem43 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem44 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem45 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem46 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem47 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewStaticItem1 = new DevExpress.XtraPrinting.Preview.PrintPreviewStaticItem();
            this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
            this.progressBarEditItem1 = new DevExpress.XtraPrinting.Preview.ProgressBarEditItem();
            this.repositoryItemProgressBar1 = new DevExpress.XtraEditors.Repository.RepositoryItemProgressBar();
            this.printPreviewBarItem48 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
            this.printPreviewStaticItem2 = new DevExpress.XtraPrinting.Preview.PrintPreviewStaticItem();
            this.zoomTrackBarEditItem1 = new DevExpress.XtraPrinting.Preview.ZoomTrackBarEditItem();
            this.repositoryItemZoomTrackBar1 = new DevExpress.XtraEditors.Repository.RepositoryItemZoomTrackBar();
            this.printPreviewRibbonPage1 = new DevExpress.XtraPrinting.Preview.PrintPreviewRibbonPage();
            this.printPreviewRibbonPageGroup1 = new DevExpress.XtraPrinting.Preview.PrintPreviewRibbonPageGroup();
            this.printPreviewRibbonPageGroup2 = new DevExpress.XtraPrinting.Preview.PrintPreviewRibbonPageGroup();
            this.printPreviewRibbonPageGroup3 = new DevExpress.XtraPrinting.Preview.PrintPreviewRibbonPageGroup();
            this.printPreviewRibbonPageGroup4 = new DevExpress.XtraPrinting.Preview.PrintPreviewRibbonPageGroup();
            this.printPreviewRibbonPageGroup5 = new DevExpress.XtraPrinting.Preview.PrintPreviewRibbonPageGroup();
            this.printPreviewRibbonPageGroup6 = new DevExpress.XtraPrinting.Preview.PrintPreviewRibbonPageGroup();
            this.printPreviewRibbonPageGroup7 = new DevExpress.XtraPrinting.Preview.PrintPreviewRibbonPageGroup();
            this.ribbonStatusBar1 = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
            ((System.ComponentModel.ISupportInitialize)(this.documentViewerRibbonController1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemProgressBar1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemZoomTrackBar1)).BeginInit();
            this.SuspendLayout();
            // 
            // documentViewer1
            // 
            this.documentViewer1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.documentViewer1.IsMetric = false;
            this.documentViewer1.Location = new System.Drawing.Point(0, 142);
            this.documentViewer1.Name = "documentViewer1";
            this.documentViewer1.Size = new System.Drawing.Size(787, 244);
            this.documentViewer1.TabIndex = 0;
            // 
            // documentViewerRibbonController1
            // 
            this.documentViewerRibbonController1.DocumentViewer = this.documentViewer1;
            this.documentViewerRibbonController1.RibbonControl = this.ribbonControl1;
            this.documentViewerRibbonController1.RibbonStatusBar = this.ribbonStatusBar1;
            // 
            // ribbonControl1
            // 
            this.ribbonControl1.ExpandCollapseItem.Id = 0;
            this.ribbonControl1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.ribbonControl1.ExpandCollapseItem,
            this.printPreviewBarItem1,
            this.printPreviewBarItem2,
            this.printPreviewBarItem3,
            this.printPreviewBarItem4,
            this.printPreviewBarItem5,
            this.printPreviewBarItem6,
            this.printPreviewBarItem7,
            this.printPreviewBarItem8,
            this.printPreviewBarItem9,
            this.printPreviewBarItem10,
            this.printPreviewBarItem11,
            this.printPreviewBarItem12,
            this.printPreviewBarItem13,
            this.printPreviewBarItem14,
            this.printPreviewBarItem15,
            this.printPreviewBarItem16,
            this.printPreviewBarItem17,
            this.printPreviewBarItem18,
            this.printPreviewBarItem19,
            this.printPreviewBarItem20,
            this.printPreviewBarItem21,
            this.printPreviewBarItem22,
            this.printPreviewBarItem23,
            this.printPreviewBarItem24,
            this.printPreviewBarItem25,
            this.printPreviewBarItem26,
            this.printPreviewBarItem27,
            this.printPreviewBarItem28,
            this.printPreviewBarItem29,
            this.printPreviewBarItem30,
            this.printPreviewBarItem31,
            this.printPreviewBarItem32,
            this.printPreviewBarItem33,
            this.printPreviewBarItem34,
            this.printPreviewBarItem35,
            this.printPreviewBarItem36,
            this.printPreviewBarItem37,
            this.printPreviewBarItem38,
            this.printPreviewBarItem39,
            this.printPreviewBarItem40,
            this.printPreviewBarItem41,
            this.printPreviewBarItem42,
            this.printPreviewBarItem43,
            this.printPreviewBarItem44,
            this.printPreviewBarItem45,
            this.printPreviewBarItem46,
            this.printPreviewBarItem47,
            this.printPreviewStaticItem1,
            this.barStaticItem1,
            this.progressBarEditItem1,
            this.printPreviewBarItem48,
            this.barButtonItem1,
            this.printPreviewStaticItem2,
            this.zoomTrackBarEditItem1});
            this.ribbonControl1.Location = new System.Drawing.Point(0, 0);
            this.ribbonControl1.MaxItemId = 55;
            this.ribbonControl1.Name = "ribbonControl1";
            this.ribbonControl1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.printPreviewRibbonPage1});
            this.ribbonControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemProgressBar1,
            this.repositoryItemZoomTrackBar1});
            this.ribbonControl1.Size = new System.Drawing.Size(787, 142);
            this.ribbonControl1.StatusBar = this.ribbonStatusBar1;
            this.ribbonControl1.TransparentEditors = true;
            // 
            // printPreviewBarItem1
            // 
            this.printPreviewBarItem1.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            this.printPreviewBarItem1.Caption = "Bookmarks";
            this.printPreviewBarItem1.Command = DevExpress.XtraPrinting.PrintingSystemCommand.DocumentMap;
            this.printPreviewBarItem1.ContextSpecifier = this.documentViewerRibbonController1;
            this.printPreviewBarItem1.Enabled = false;
            this.printPreviewBarItem1.Glyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_DocumentMap;
            this.printPreviewBarItem1.Id = 1;
            this.printPreviewBarItem1.LargeGlyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_DocumentMapLarge;
            this.printPreviewBarItem1.Name = "printPreviewBarItem1";
            superToolTip1.FixedTooltipWidth = true;
            toolTipTitleItem1.Text = "Document Map";
            toolTipItem1.LeftIndent = 6;
            toolTipItem1.Text = "Open the Document Map, which allows you to navigate through a structural view of " +
    "the document.";
            superToolTip1.Items.Add(toolTipTitleItem1);
            superToolTip1.Items.Add(toolTipItem1);
            superToolTip1.MaxWidth = 210;
            this.printPreviewBarItem1.SuperTip = superToolTip1;
            // 
            // printPreviewBarItem2
            // 
            this.printPreviewBarItem2.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            this.printPreviewBarItem2.Caption = "Parameters";
            this.printPreviewBarItem2.Command = DevExpress.XtraPrinting.PrintingSystemCommand.Parameters;
            this.printPreviewBarItem2.ContextSpecifier = this.documentViewerRibbonController1;
            this.printPreviewBarItem2.Enabled = false;
            this.printPreviewBarItem2.Glyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_Parameters;
            this.printPreviewBarItem2.Id = 2;
            this.printPreviewBarItem2.LargeGlyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_ParametersLarge;
            this.printPreviewBarItem2.Name = "printPreviewBarItem2";
            superToolTip2.FixedTooltipWidth = true;
            toolTipTitleItem2.Text = "Parameters";
            toolTipItem2.LeftIndent = 6;
            toolTipItem2.Text = "Open the Parameters pane, which allows you to enter values for report parameters." +
    "";
            superToolTip2.Items.Add(toolTipTitleItem2);
            superToolTip2.Items.Add(toolTipItem2);
            superToolTip2.MaxWidth = 210;
            this.printPreviewBarItem2.SuperTip = superToolTip2;
            // 
            // printPreviewBarItem3
            // 
            this.printPreviewBarItem3.Caption = "Find";
            this.printPreviewBarItem3.Command = DevExpress.XtraPrinting.PrintingSystemCommand.Find;
            this.printPreviewBarItem3.ContextSpecifier = this.documentViewerRibbonController1;
            this.printPreviewBarItem3.Enabled = false;
            this.printPreviewBarItem3.Glyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_Find;
            this.printPreviewBarItem3.Id = 3;
            this.printPreviewBarItem3.LargeGlyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_FindLarge;
            this.printPreviewBarItem3.Name = "printPreviewBarItem3";
            superToolTip3.FixedTooltipWidth = true;
            toolTipTitleItem3.Text = "Find";
            toolTipItem3.LeftIndent = 6;
            toolTipItem3.Text = "Show the Find dialog to find text in the document.";
            superToolTip3.Items.Add(toolTipTitleItem3);
            superToolTip3.Items.Add(toolTipItem3);
            superToolTip3.MaxWidth = 210;
            this.printPreviewBarItem3.SuperTip = superToolTip3;
            // 
            // printPreviewBarItem4
            // 
            this.printPreviewBarItem4.Caption = "Options";
            this.printPreviewBarItem4.Command = DevExpress.XtraPrinting.PrintingSystemCommand.Customize;
            this.printPreviewBarItem4.ContextSpecifier = this.documentViewerRibbonController1;
            this.printPreviewBarItem4.Enabled = false;
            this.printPreviewBarItem4.Glyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_Customize;
            this.printPreviewBarItem4.Id = 4;
            this.printPreviewBarItem4.LargeGlyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_CustomizeLarge;
            this.printPreviewBarItem4.Name = "printPreviewBarItem4";
            superToolTip4.FixedTooltipWidth = true;
            toolTipTitleItem4.Text = "Options";
            toolTipItem4.LeftIndent = 6;
            toolTipItem4.Text = "Open the Print Options dialog, in which you can change printing options.";
            superToolTip4.Items.Add(toolTipTitleItem4);
            superToolTip4.Items.Add(toolTipItem4);
            superToolTip4.MaxWidth = 210;
            this.printPreviewBarItem4.SuperTip = superToolTip4;
            // 
            // printPreviewBarItem5
            // 
            this.printPreviewBarItem5.Caption = "Print";
            this.printPreviewBarItem5.Command = DevExpress.XtraPrinting.PrintingSystemCommand.Print;
            this.printPreviewBarItem5.ContextSpecifier = this.documentViewerRibbonController1;
            this.printPreviewBarItem5.Enabled = false;
            this.printPreviewBarItem5.Glyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_Print;
            this.printPreviewBarItem5.Id = 5;
            this.printPreviewBarItem5.LargeGlyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_PrintLarge;
            this.printPreviewBarItem5.Name = "printPreviewBarItem5";
            superToolTip5.FixedTooltipWidth = true;
            toolTipTitleItem5.Text = "Print (Ctrl+P)";
            toolTipItem5.LeftIndent = 6;
            toolTipItem5.Text = "Select a printer, number of copies and other printing options before printing.";
            superToolTip5.Items.Add(toolTipTitleItem5);
            superToolTip5.Items.Add(toolTipItem5);
            superToolTip5.MaxWidth = 210;
            this.printPreviewBarItem5.SuperTip = superToolTip5;
            // 
            // printPreviewBarItem6
            // 
            this.printPreviewBarItem6.Caption = "Quick Print";
            this.printPreviewBarItem6.Command = DevExpress.XtraPrinting.PrintingSystemCommand.PrintDirect;
            this.printPreviewBarItem6.ContextSpecifier = this.documentViewerRibbonController1;
            this.printPreviewBarItem6.Enabled = false;
            this.printPreviewBarItem6.Glyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_PrintDirect;
            this.printPreviewBarItem6.Id = 6;
            this.printPreviewBarItem6.LargeGlyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_PrintDirectLarge;
            this.printPreviewBarItem6.Name = "printPreviewBarItem6";
            superToolTip6.FixedTooltipWidth = true;
            toolTipTitleItem6.Text = "Quick Print";
            toolTipItem6.LeftIndent = 6;
            toolTipItem6.Text = "Send the document directly to the default printer without making changes.";
            superToolTip6.Items.Add(toolTipTitleItem6);
            superToolTip6.Items.Add(toolTipItem6);
            superToolTip6.MaxWidth = 210;
            this.printPreviewBarItem6.SuperTip = superToolTip6;
            // 
            // printPreviewBarItem7
            // 
            this.printPreviewBarItem7.Caption = "Custom Margins...";
            this.printPreviewBarItem7.Command = DevExpress.XtraPrinting.PrintingSystemCommand.PageSetup;
            this.printPreviewBarItem7.ContextSpecifier = this.documentViewerRibbonController1;
            this.printPreviewBarItem7.Enabled = false;
            this.printPreviewBarItem7.Id = 7;
            this.printPreviewBarItem7.Name = "printPreviewBarItem7";
            superToolTip7.FixedTooltipWidth = true;
            toolTipTitleItem7.Text = "Page Setup";
            toolTipItem7.LeftIndent = 6;
            toolTipItem7.Text = "Show the Page Setup dialog.";
            superToolTip7.Items.Add(toolTipTitleItem7);
            superToolTip7.Items.Add(toolTipItem7);
            superToolTip7.MaxWidth = 210;
            this.printPreviewBarItem7.SuperTip = superToolTip7;
            // 
            // printPreviewBarItem8
            // 
            this.printPreviewBarItem8.Caption = "Header/Footer";
            this.printPreviewBarItem8.Command = DevExpress.XtraPrinting.PrintingSystemCommand.EditPageHF;
            this.printPreviewBarItem8.ContextSpecifier = this.documentViewerRibbonController1;
            this.printPreviewBarItem8.Enabled = false;
            this.printPreviewBarItem8.Glyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_EditPageHF;
            this.printPreviewBarItem8.Id = 8;
            this.printPreviewBarItem8.LargeGlyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_EditPageHFLarge;
            this.printPreviewBarItem8.Name = "printPreviewBarItem8";
            superToolTip8.FixedTooltipWidth = true;
            toolTipTitleItem8.Text = "Header and Footer";
            toolTipItem8.LeftIndent = 6;
            toolTipItem8.Text = "Edit the header and footer of the document.";
            superToolTip8.Items.Add(toolTipTitleItem8);
            superToolTip8.Items.Add(toolTipItem8);
            superToolTip8.MaxWidth = 210;
            this.printPreviewBarItem8.SuperTip = superToolTip8;
            // 
            // printPreviewBarItem9
            // 
            this.printPreviewBarItem9.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.printPreviewBarItem9.Caption = "Scale";
            this.printPreviewBarItem9.Command = DevExpress.XtraPrinting.PrintingSystemCommand.Scale;
            this.printPreviewBarItem9.ContextSpecifier = this.documentViewerRibbonController1;
            this.printPreviewBarItem9.Enabled = false;
            this.printPreviewBarItem9.Glyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_Scale;
            this.printPreviewBarItem9.Id = 9;
            this.printPreviewBarItem9.LargeGlyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_ScaleLarge;
            this.printPreviewBarItem9.Name = "printPreviewBarItem9";
            superToolTip9.FixedTooltipWidth = true;
            toolTipTitleItem9.Text = "Scale";
            toolTipItem9.LeftIndent = 6;
            toolTipItem9.Text = "Stretch or shrink the printed output to a percentage of its actual size.";
            superToolTip9.Items.Add(toolTipTitleItem9);
            superToolTip9.Items.Add(toolTipItem9);
            superToolTip9.MaxWidth = 210;
            this.printPreviewBarItem9.SuperTip = superToolTip9;
            // 
            // printPreviewBarItem10
            // 
            this.printPreviewBarItem10.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            this.printPreviewBarItem10.Caption = "Pointer";
            this.printPreviewBarItem10.Command = DevExpress.XtraPrinting.PrintingSystemCommand.Pointer;
            this.printPreviewBarItem10.ContextSpecifier = this.documentViewerRibbonController1;
            this.printPreviewBarItem10.Down = true;
            this.printPreviewBarItem10.Enabled = false;
            this.printPreviewBarItem10.Glyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_Pointer;
            this.printPreviewBarItem10.GroupIndex = 1;
            this.printPreviewBarItem10.Id = 10;
            this.printPreviewBarItem10.Name = "printPreviewBarItem10";
            this.printPreviewBarItem10.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            superToolTip10.FixedTooltipWidth = true;
            toolTipTitleItem10.Text = "Mouse Pointer";
            toolTipItem10.LeftIndent = 6;
            toolTipItem10.Text = "Show the mouse pointer.";
            superToolTip10.Items.Add(toolTipTitleItem10);
            superToolTip10.Items.Add(toolTipItem10);
            superToolTip10.MaxWidth = 210;
            this.printPreviewBarItem10.SuperTip = superToolTip10;
            // 
            // printPreviewBarItem11
            // 
            this.printPreviewBarItem11.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            this.printPreviewBarItem11.Caption = "Hand Tool";
            this.printPreviewBarItem11.Command = DevExpress.XtraPrinting.PrintingSystemCommand.HandTool;
            this.printPreviewBarItem11.ContextSpecifier = this.documentViewerRibbonController1;
            this.printPreviewBarItem11.Enabled = false;
            this.printPreviewBarItem11.Glyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_HandTool;
            this.printPreviewBarItem11.GroupIndex = 1;
            this.printPreviewBarItem11.Id = 11;
            this.printPreviewBarItem11.Name = "printPreviewBarItem11";
            this.printPreviewBarItem11.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            superToolTip11.FixedTooltipWidth = true;
            toolTipTitleItem11.Text = "Hand Tool";
            toolTipItem11.LeftIndent = 6;
            toolTipItem11.Text = "Invoke the Hand tool to manually scroll through pages.";
            superToolTip11.Items.Add(toolTipTitleItem11);
            superToolTip11.Items.Add(toolTipItem11);
            superToolTip11.MaxWidth = 210;
            this.printPreviewBarItem11.SuperTip = superToolTip11;
            // 
            // printPreviewBarItem12
            // 
            this.printPreviewBarItem12.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            this.printPreviewBarItem12.Caption = "Magnifier";
            this.printPreviewBarItem12.Command = DevExpress.XtraPrinting.PrintingSystemCommand.Magnifier;
            this.printPreviewBarItem12.ContextSpecifier = this.documentViewerRibbonController1;
            this.printPreviewBarItem12.Enabled = false;
            this.printPreviewBarItem12.Glyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_Magnifier;
            this.printPreviewBarItem12.GroupIndex = 1;
            this.printPreviewBarItem12.Id = 12;
            this.printPreviewBarItem12.Name = "printPreviewBarItem12";
            this.printPreviewBarItem12.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            superToolTip12.FixedTooltipWidth = true;
            toolTipTitleItem12.Text = "Magnifier";
            toolTipItem12.LeftIndent = 6;
            toolTipItem12.Text = "Invoke the Magnifier tool.\r\n\r\nClicking once on a document zooms it so that a sing" +
    "le page becomes entirely visible, while clicking another time zooms it to 100% o" +
    "f the normal size.";
            superToolTip12.Items.Add(toolTipTitleItem12);
            superToolTip12.Items.Add(toolTipItem12);
            superToolTip12.MaxWidth = 210;
            this.printPreviewBarItem12.SuperTip = superToolTip12;
            // 
            // printPreviewBarItem13
            // 
            this.printPreviewBarItem13.Caption = "Zoom Out";
            this.printPreviewBarItem13.Command = DevExpress.XtraPrinting.PrintingSystemCommand.ZoomOut;
            this.printPreviewBarItem13.ContextSpecifier = this.documentViewerRibbonController1;
            this.printPreviewBarItem13.Enabled = false;
            this.printPreviewBarItem13.Glyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_ZoomOut;
            this.printPreviewBarItem13.Id = 13;
            this.printPreviewBarItem13.LargeGlyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_ZoomOutLarge;
            this.printPreviewBarItem13.Name = "printPreviewBarItem13";
            superToolTip13.FixedTooltipWidth = true;
            toolTipTitleItem13.Text = "Zoom Out";
            toolTipItem13.LeftIndent = 6;
            toolTipItem13.Text = "Zoom out to see more of the page at a reduced size.";
            superToolTip13.Items.Add(toolTipTitleItem13);
            superToolTip13.Items.Add(toolTipItem13);
            superToolTip13.MaxWidth = 210;
            this.printPreviewBarItem13.SuperTip = superToolTip13;
            // 
            // printPreviewBarItem14
            // 
            this.printPreviewBarItem14.Caption = "Zoom In";
            this.printPreviewBarItem14.Command = DevExpress.XtraPrinting.PrintingSystemCommand.ZoomIn;
            this.printPreviewBarItem14.ContextSpecifier = this.documentViewerRibbonController1;
            this.printPreviewBarItem14.Enabled = false;
            this.printPreviewBarItem14.Glyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_ZoomIn;
            this.printPreviewBarItem14.Id = 14;
            this.printPreviewBarItem14.LargeGlyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_ZoomInLarge;
            this.printPreviewBarItem14.Name = "printPreviewBarItem14";
            superToolTip14.FixedTooltipWidth = true;
            toolTipTitleItem14.Text = "Zoom In";
            toolTipItem14.LeftIndent = 6;
            toolTipItem14.Text = "Zoom in to get a close-up view of the document.";
            superToolTip14.Items.Add(toolTipTitleItem14);
            superToolTip14.Items.Add(toolTipItem14);
            superToolTip14.MaxWidth = 210;
            this.printPreviewBarItem14.SuperTip = superToolTip14;
            // 
            // printPreviewBarItem15
            // 
            this.printPreviewBarItem15.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.printPreviewBarItem15.Caption = "Zoom";
            this.printPreviewBarItem15.Command = DevExpress.XtraPrinting.PrintingSystemCommand.Zoom;
            this.printPreviewBarItem15.ContextSpecifier = this.documentViewerRibbonController1;
            this.printPreviewBarItem15.Enabled = false;
            this.printPreviewBarItem15.Glyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_Zoom;
            this.printPreviewBarItem15.Id = 15;
            this.printPreviewBarItem15.LargeGlyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_ZoomLarge;
            this.printPreviewBarItem15.Name = "printPreviewBarItem15";
            superToolTip15.FixedTooltipWidth = true;
            toolTipTitleItem15.Text = "Zoom";
            toolTipItem15.LeftIndent = 6;
            toolTipItem15.Text = "Change the zoom level of the document preview.";
            superToolTip15.Items.Add(toolTipTitleItem15);
            superToolTip15.Items.Add(toolTipItem15);
            superToolTip15.MaxWidth = 210;
            this.printPreviewBarItem15.SuperTip = superToolTip15;
            // 
            // printPreviewBarItem16
            // 
            this.printPreviewBarItem16.Caption = "First Page";
            this.printPreviewBarItem16.Command = DevExpress.XtraPrinting.PrintingSystemCommand.ShowFirstPage;
            this.printPreviewBarItem16.ContextSpecifier = this.documentViewerRibbonController1;
            this.printPreviewBarItem16.Enabled = false;
            this.printPreviewBarItem16.Glyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_ShowFirstPage;
            this.printPreviewBarItem16.Id = 16;
            this.printPreviewBarItem16.LargeGlyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_ShowFirstPageLarge;
            this.printPreviewBarItem16.Name = "printPreviewBarItem16";
            superToolTip16.FixedTooltipWidth = true;
            toolTipTitleItem16.Text = "First Page (Ctrl+Home)";
            toolTipItem16.LeftIndent = 6;
            toolTipItem16.Text = "Navigate to the first page of the document.";
            superToolTip16.Items.Add(toolTipTitleItem16);
            superToolTip16.Items.Add(toolTipItem16);
            superToolTip16.MaxWidth = 210;
            this.printPreviewBarItem16.SuperTip = superToolTip16;
            // 
            // printPreviewBarItem17
            // 
            this.printPreviewBarItem17.Caption = "Previous Page";
            this.printPreviewBarItem17.Command = DevExpress.XtraPrinting.PrintingSystemCommand.ShowPrevPage;
            this.printPreviewBarItem17.ContextSpecifier = this.documentViewerRibbonController1;
            this.printPreviewBarItem17.Enabled = false;
            this.printPreviewBarItem17.Glyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_ShowPrevPage;
            this.printPreviewBarItem17.Id = 17;
            this.printPreviewBarItem17.LargeGlyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_ShowPrevPageLarge;
            this.printPreviewBarItem17.Name = "printPreviewBarItem17";
            superToolTip17.FixedTooltipWidth = true;
            toolTipTitleItem17.Text = "Previous Page (PageUp)";
            toolTipItem17.LeftIndent = 6;
            toolTipItem17.Text = "Navigate to the previous page of the document.";
            superToolTip17.Items.Add(toolTipTitleItem17);
            superToolTip17.Items.Add(toolTipItem17);
            superToolTip17.MaxWidth = 210;
            this.printPreviewBarItem17.SuperTip = superToolTip17;
            // 
            // printPreviewBarItem18
            // 
            this.printPreviewBarItem18.Caption = "Next  Page ";
            this.printPreviewBarItem18.Command = DevExpress.XtraPrinting.PrintingSystemCommand.ShowNextPage;
            this.printPreviewBarItem18.ContextSpecifier = this.documentViewerRibbonController1;
            this.printPreviewBarItem18.Enabled = false;
            this.printPreviewBarItem18.Glyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_ShowNextPage;
            this.printPreviewBarItem18.Id = 18;
            this.printPreviewBarItem18.LargeGlyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_ShowNextPageLarge;
            this.printPreviewBarItem18.Name = "printPreviewBarItem18";
            superToolTip18.FixedTooltipWidth = true;
            toolTipTitleItem18.Text = "Next Page (PageDown)";
            toolTipItem18.LeftIndent = 6;
            toolTipItem18.Text = "Navigate to the next page of the document.";
            superToolTip18.Items.Add(toolTipTitleItem18);
            superToolTip18.Items.Add(toolTipItem18);
            superToolTip18.MaxWidth = 210;
            this.printPreviewBarItem18.SuperTip = superToolTip18;
            // 
            // printPreviewBarItem19
            // 
            this.printPreviewBarItem19.Caption = "Last  Page ";
            this.printPreviewBarItem19.Command = DevExpress.XtraPrinting.PrintingSystemCommand.ShowLastPage;
            this.printPreviewBarItem19.ContextSpecifier = this.documentViewerRibbonController1;
            this.printPreviewBarItem19.Enabled = false;
            this.printPreviewBarItem19.Glyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_ShowLastPage;
            this.printPreviewBarItem19.Id = 19;
            this.printPreviewBarItem19.LargeGlyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_ShowLastPageLarge;
            this.printPreviewBarItem19.Name = "printPreviewBarItem19";
            superToolTip19.FixedTooltipWidth = true;
            toolTipTitleItem19.Text = "Last Page (Ctrl+End)";
            toolTipItem19.LeftIndent = 6;
            toolTipItem19.Text = "Navigate to the last page of the document.";
            superToolTip19.Items.Add(toolTipTitleItem19);
            superToolTip19.Items.Add(toolTipItem19);
            superToolTip19.MaxWidth = 210;
            this.printPreviewBarItem19.SuperTip = superToolTip19;
            // 
            // printPreviewBarItem20
            // 
            this.printPreviewBarItem20.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.printPreviewBarItem20.Caption = "Many Pages";
            this.printPreviewBarItem20.Command = DevExpress.XtraPrinting.PrintingSystemCommand.MultiplePages;
            this.printPreviewBarItem20.ContextSpecifier = this.documentViewerRibbonController1;
            this.printPreviewBarItem20.Enabled = false;
            this.printPreviewBarItem20.Glyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_MultiplePages;
            this.printPreviewBarItem20.Id = 20;
            this.printPreviewBarItem20.LargeGlyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_MultiplePagesLarge;
            this.printPreviewBarItem20.Name = "printPreviewBarItem20";
            superToolTip20.FixedTooltipWidth = true;
            toolTipTitleItem20.Text = "View Many Pages";
            toolTipItem20.LeftIndent = 6;
            toolTipItem20.Text = "Choose the page layout to arrange the document pages in preview.";
            superToolTip20.Items.Add(toolTipTitleItem20);
            superToolTip20.Items.Add(toolTipItem20);
            superToolTip20.MaxWidth = 210;
            this.printPreviewBarItem20.SuperTip = superToolTip20;
            // 
            // printPreviewBarItem21
            // 
            this.printPreviewBarItem21.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.printPreviewBarItem21.Caption = "Page Color";
            this.printPreviewBarItem21.Command = DevExpress.XtraPrinting.PrintingSystemCommand.FillBackground;
            this.printPreviewBarItem21.ContextSpecifier = this.documentViewerRibbonController1;
            this.printPreviewBarItem21.Enabled = false;
            this.printPreviewBarItem21.Glyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_FillBackground;
            this.printPreviewBarItem21.Id = 21;
            this.printPreviewBarItem21.LargeGlyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_FillBackgroundLarge;
            this.printPreviewBarItem21.Name = "printPreviewBarItem21";
            superToolTip21.FixedTooltipWidth = true;
            toolTipTitleItem21.Text = "Background Color";
            toolTipItem21.LeftIndent = 6;
            toolTipItem21.Text = "Choose a color for the background of the document pages.";
            superToolTip21.Items.Add(toolTipTitleItem21);
            superToolTip21.Items.Add(toolTipItem21);
            superToolTip21.MaxWidth = 210;
            this.printPreviewBarItem21.SuperTip = superToolTip21;
            // 
            // printPreviewBarItem22
            // 
            this.printPreviewBarItem22.Caption = "Watermark";
            this.printPreviewBarItem22.Command = DevExpress.XtraPrinting.PrintingSystemCommand.Watermark;
            this.printPreviewBarItem22.ContextSpecifier = this.documentViewerRibbonController1;
            this.printPreviewBarItem22.Enabled = false;
            this.printPreviewBarItem22.Glyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_Watermark;
            this.printPreviewBarItem22.Id = 22;
            this.printPreviewBarItem22.LargeGlyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_WatermarkLarge;
            this.printPreviewBarItem22.Name = "printPreviewBarItem22";
            superToolTip22.FixedTooltipWidth = true;
            toolTipTitleItem22.Text = "Watermark";
            toolTipItem22.LeftIndent = 6;
            toolTipItem22.Text = "Insert ghosted text or image behind the content of a page.\r\n\r\nThis is often used " +
    "to indicate that a document is to be treated specially.";
            superToolTip22.Items.Add(toolTipTitleItem22);
            superToolTip22.Items.Add(toolTipItem22);
            superToolTip22.MaxWidth = 210;
            this.printPreviewBarItem22.SuperTip = superToolTip22;
            // 
            // printPreviewBarItem23
            // 
            this.printPreviewBarItem23.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.printPreviewBarItem23.Caption = "Export To";
            this.printPreviewBarItem23.Command = DevExpress.XtraPrinting.PrintingSystemCommand.ExportFile;
            this.printPreviewBarItem23.ContextSpecifier = this.documentViewerRibbonController1;
            this.printPreviewBarItem23.Enabled = false;
            this.printPreviewBarItem23.Glyph = ((System.Drawing.Image)(resources.GetObject("printPreviewBarItem23.Glyph")));
            this.printPreviewBarItem23.Id = 23;
            this.printPreviewBarItem23.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("printPreviewBarItem23.LargeGlyph")));
            this.printPreviewBarItem23.Name = "printPreviewBarItem23";
            superToolTip23.FixedTooltipWidth = true;
            toolTipTitleItem23.Text = "Export To...";
            toolTipItem23.LeftIndent = 6;
            toolTipItem23.Text = "Export the current document in one of the available formats, and save it to the f" +
    "ile on a disk.";
            superToolTip23.Items.Add(toolTipTitleItem23);
            superToolTip23.Items.Add(toolTipItem23);
            superToolTip23.MaxWidth = 210;
            this.printPreviewBarItem23.SuperTip = superToolTip23;
            // 
            // printPreviewBarItem24
            // 
            this.printPreviewBarItem24.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.printPreviewBarItem24.Caption = "E-Mail As";
            this.printPreviewBarItem24.Command = DevExpress.XtraPrinting.PrintingSystemCommand.SendFile;
            this.printPreviewBarItem24.ContextSpecifier = this.documentViewerRibbonController1;
            this.printPreviewBarItem24.Enabled = false;
            this.printPreviewBarItem24.Glyph = ((System.Drawing.Image)(resources.GetObject("printPreviewBarItem24.Glyph")));
            this.printPreviewBarItem24.Id = 24;
            this.printPreviewBarItem24.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("printPreviewBarItem24.LargeGlyph")));
            this.printPreviewBarItem24.Name = "printPreviewBarItem24";
            superToolTip24.FixedTooltipWidth = true;
            toolTipTitleItem24.Text = "E-Mail As...";
            toolTipItem24.LeftIndent = 6;
            toolTipItem24.Text = "Export the current document in one of the available formats, and attach it to the" +
    " e-mail.";
            superToolTip24.Items.Add(toolTipTitleItem24);
            superToolTip24.Items.Add(toolTipItem24);
            superToolTip24.MaxWidth = 210;
            this.printPreviewBarItem24.SuperTip = superToolTip24;
            // 
            // printPreviewBarItem25
            // 
            this.printPreviewBarItem25.Caption = "Close Print Preview";
            this.printPreviewBarItem25.Command = DevExpress.XtraPrinting.PrintingSystemCommand.ClosePreview;
            this.printPreviewBarItem25.ContextSpecifier = this.documentViewerRibbonController1;
            this.printPreviewBarItem25.Enabled = false;
            this.printPreviewBarItem25.Glyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_ClosePreview;
            this.printPreviewBarItem25.Id = 25;
            this.printPreviewBarItem25.LargeGlyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_ClosePreviewLarge;
            this.printPreviewBarItem25.Name = "printPreviewBarItem25";
            superToolTip25.FixedTooltipWidth = true;
            toolTipTitleItem25.Text = "Close Print Preview";
            toolTipItem25.LeftIndent = 6;
            toolTipItem25.Text = "Close Print Preview of the document.";
            superToolTip25.Items.Add(toolTipTitleItem25);
            superToolTip25.Items.Add(toolTipItem25);
            superToolTip25.MaxWidth = 210;
            this.printPreviewBarItem25.SuperTip = superToolTip25;
            // 
            // printPreviewBarItem26
            // 
            this.printPreviewBarItem26.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.printPreviewBarItem26.Caption = "Orientation";
            this.printPreviewBarItem26.Command = DevExpress.XtraPrinting.PrintingSystemCommand.PageOrientation;
            this.printPreviewBarItem26.ContextSpecifier = this.documentViewerRibbonController1;
            this.printPreviewBarItem26.Enabled = false;
            this.printPreviewBarItem26.Glyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_PageOrientation;
            this.printPreviewBarItem26.Id = 26;
            this.printPreviewBarItem26.LargeGlyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_PageOrientationLarge;
            this.printPreviewBarItem26.Name = "printPreviewBarItem26";
            superToolTip26.FixedTooltipWidth = true;
            toolTipTitleItem26.Text = "Page Orientation";
            toolTipItem26.LeftIndent = 6;
            toolTipItem26.Text = "Switch the pages between portrait and landscape layouts.";
            superToolTip26.Items.Add(toolTipTitleItem26);
            superToolTip26.Items.Add(toolTipItem26);
            superToolTip26.MaxWidth = 210;
            this.printPreviewBarItem26.SuperTip = superToolTip26;
            // 
            // printPreviewBarItem27
            // 
            this.printPreviewBarItem27.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.printPreviewBarItem27.Caption = "Size";
            this.printPreviewBarItem27.Command = DevExpress.XtraPrinting.PrintingSystemCommand.PaperSize;
            this.printPreviewBarItem27.ContextSpecifier = this.documentViewerRibbonController1;
            this.printPreviewBarItem27.Enabled = false;
            this.printPreviewBarItem27.Glyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_PaperSize;
            this.printPreviewBarItem27.Id = 27;
            this.printPreviewBarItem27.LargeGlyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_PaperSizeLarge;
            this.printPreviewBarItem27.Name = "printPreviewBarItem27";
            superToolTip27.FixedTooltipWidth = true;
            toolTipTitleItem27.Text = "Page Size";
            toolTipItem27.LeftIndent = 6;
            toolTipItem27.Text = "Choose the paper size of the document.";
            superToolTip27.Items.Add(toolTipTitleItem27);
            superToolTip27.Items.Add(toolTipItem27);
            superToolTip27.MaxWidth = 210;
            this.printPreviewBarItem27.SuperTip = superToolTip27;
            // 
            // printPreviewBarItem28
            // 
            this.printPreviewBarItem28.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.printPreviewBarItem28.Caption = "Margins";
            this.printPreviewBarItem28.Command = DevExpress.XtraPrinting.PrintingSystemCommand.PageMargins;
            this.printPreviewBarItem28.ContextSpecifier = this.documentViewerRibbonController1;
            this.printPreviewBarItem28.Enabled = false;
            this.printPreviewBarItem28.Glyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_PageMargins;
            this.printPreviewBarItem28.Id = 28;
            this.printPreviewBarItem28.LargeGlyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_PageMarginsLarge;
            this.printPreviewBarItem28.Name = "printPreviewBarItem28";
            superToolTip28.FixedTooltipWidth = true;
            toolTipTitleItem28.Text = "Page Margins";
            toolTipItem28.LeftIndent = 6;
            toolTipItem28.Text = "Select the margin sizes for the entire document.\r\n\r\nTo apply specific margin size" +
    "s to the document, click Custom Margins.";
            superToolTip28.Items.Add(toolTipTitleItem28);
            superToolTip28.Items.Add(toolTipItem28);
            superToolTip28.MaxWidth = 210;
            this.printPreviewBarItem28.SuperTip = superToolTip28;
            // 
            // printPreviewBarItem29
            // 
            this.printPreviewBarItem29.Caption = "PDF File";
            this.printPreviewBarItem29.Command = DevExpress.XtraPrinting.PrintingSystemCommand.SendPdf;
            this.printPreviewBarItem29.ContextSpecifier = this.documentViewerRibbonController1;
            this.printPreviewBarItem29.Description = "Adobe Portable Document Format";
            this.printPreviewBarItem29.Enabled = false;
            this.printPreviewBarItem29.Glyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_SendPdf;
            this.printPreviewBarItem29.Id = 29;
            this.printPreviewBarItem29.LargeGlyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_SendPdfLarge;
            this.printPreviewBarItem29.Name = "printPreviewBarItem29";
            superToolTip29.FixedTooltipWidth = true;
            toolTipTitleItem29.Text = "E-Mail As PDF";
            toolTipItem29.LeftIndent = 6;
            toolTipItem29.Text = "Export the document to PDF and attach it to the e-mail.";
            superToolTip29.Items.Add(toolTipTitleItem29);
            superToolTip29.Items.Add(toolTipItem29);
            superToolTip29.MaxWidth = 210;
            this.printPreviewBarItem29.SuperTip = superToolTip29;
            // 
            // printPreviewBarItem30
            // 
            this.printPreviewBarItem30.Caption = "Text File";
            this.printPreviewBarItem30.Command = DevExpress.XtraPrinting.PrintingSystemCommand.SendTxt;
            this.printPreviewBarItem30.ContextSpecifier = this.documentViewerRibbonController1;
            this.printPreviewBarItem30.Description = "Plain Text";
            this.printPreviewBarItem30.Enabled = false;
            this.printPreviewBarItem30.Glyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_SendTxt;
            this.printPreviewBarItem30.Id = 30;
            this.printPreviewBarItem30.LargeGlyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_SendTxtLarge;
            this.printPreviewBarItem30.Name = "printPreviewBarItem30";
            superToolTip30.FixedTooltipWidth = true;
            toolTipTitleItem30.Text = "E-Mail As Text";
            toolTipItem30.LeftIndent = 6;
            toolTipItem30.Text = "Export the document to Text and attach it to the e-mail.";
            superToolTip30.Items.Add(toolTipTitleItem30);
            superToolTip30.Items.Add(toolTipItem30);
            superToolTip30.MaxWidth = 210;
            this.printPreviewBarItem30.SuperTip = superToolTip30;
            // 
            // printPreviewBarItem31
            // 
            this.printPreviewBarItem31.Caption = "CSV File";
            this.printPreviewBarItem31.Command = DevExpress.XtraPrinting.PrintingSystemCommand.SendCsv;
            this.printPreviewBarItem31.ContextSpecifier = this.documentViewerRibbonController1;
            this.printPreviewBarItem31.Description = "Comma-Separated Values Text";
            this.printPreviewBarItem31.Enabled = false;
            this.printPreviewBarItem31.Glyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_SendCsv;
            this.printPreviewBarItem31.Id = 31;
            this.printPreviewBarItem31.LargeGlyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_SendCsvLarge;
            this.printPreviewBarItem31.Name = "printPreviewBarItem31";
            superToolTip31.FixedTooltipWidth = true;
            toolTipTitleItem31.Text = "E-Mail As CSV";
            toolTipItem31.LeftIndent = 6;
            toolTipItem31.Text = "Export the document to CSV and attach it to the e-mail.";
            superToolTip31.Items.Add(toolTipTitleItem31);
            superToolTip31.Items.Add(toolTipItem31);
            superToolTip31.MaxWidth = 210;
            this.printPreviewBarItem31.SuperTip = superToolTip31;
            // 
            // printPreviewBarItem32
            // 
            this.printPreviewBarItem32.Caption = "MHT File";
            this.printPreviewBarItem32.Command = DevExpress.XtraPrinting.PrintingSystemCommand.SendMht;
            this.printPreviewBarItem32.ContextSpecifier = this.documentViewerRibbonController1;
            this.printPreviewBarItem32.Description = "Single File Web Page";
            this.printPreviewBarItem32.Enabled = false;
            this.printPreviewBarItem32.Glyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_SendMht;
            this.printPreviewBarItem32.Id = 32;
            this.printPreviewBarItem32.LargeGlyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_SendMhtLarge;
            this.printPreviewBarItem32.Name = "printPreviewBarItem32";
            superToolTip32.FixedTooltipWidth = true;
            toolTipTitleItem32.Text = "E-Mail As MHT";
            toolTipItem32.LeftIndent = 6;
            toolTipItem32.Text = "Export the document to MHT and attach it to the e-mail.";
            superToolTip32.Items.Add(toolTipTitleItem32);
            superToolTip32.Items.Add(toolTipItem32);
            superToolTip32.MaxWidth = 210;
            this.printPreviewBarItem32.SuperTip = superToolTip32;
            // 
            // printPreviewBarItem33
            // 
            this.printPreviewBarItem33.Caption = "XLS File";
            this.printPreviewBarItem33.Command = DevExpress.XtraPrinting.PrintingSystemCommand.SendXls;
            this.printPreviewBarItem33.ContextSpecifier = this.documentViewerRibbonController1;
            this.printPreviewBarItem33.Description = "Microsoft Excel 2000-2003 Workbook";
            this.printPreviewBarItem33.Enabled = false;
            this.printPreviewBarItem33.Glyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_SendXls;
            this.printPreviewBarItem33.Id = 33;
            this.printPreviewBarItem33.LargeGlyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_SendXlsLarge;
            this.printPreviewBarItem33.Name = "printPreviewBarItem33";
            superToolTip33.FixedTooltipWidth = true;
            toolTipTitleItem33.Text = "E-Mail As XLS";
            toolTipItem33.LeftIndent = 6;
            toolTipItem33.Text = "Export the document to XLS and attach it to the e-mail.";
            superToolTip33.Items.Add(toolTipTitleItem33);
            superToolTip33.Items.Add(toolTipItem33);
            superToolTip33.MaxWidth = 210;
            this.printPreviewBarItem33.SuperTip = superToolTip33;
            // 
            // printPreviewBarItem34
            // 
            this.printPreviewBarItem34.Caption = "XLSX File";
            this.printPreviewBarItem34.Command = DevExpress.XtraPrinting.PrintingSystemCommand.SendXlsx;
            this.printPreviewBarItem34.ContextSpecifier = this.documentViewerRibbonController1;
            this.printPreviewBarItem34.Description = "Microsoft Excel 2007 Workbook";
            this.printPreviewBarItem34.Enabled = false;
            this.printPreviewBarItem34.Glyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_SendXlsx;
            this.printPreviewBarItem34.Id = 34;
            this.printPreviewBarItem34.LargeGlyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_SendXlsxLarge;
            this.printPreviewBarItem34.Name = "printPreviewBarItem34";
            superToolTip34.FixedTooltipWidth = true;
            toolTipTitleItem34.Text = "E-Mail As XLSX";
            toolTipItem34.LeftIndent = 6;
            toolTipItem34.Text = "Export the document to XLSX and attach it to the e-mail.";
            superToolTip34.Items.Add(toolTipTitleItem34);
            superToolTip34.Items.Add(toolTipItem34);
            superToolTip34.MaxWidth = 210;
            this.printPreviewBarItem34.SuperTip = superToolTip34;
            // 
            // printPreviewBarItem35
            // 
            this.printPreviewBarItem35.Caption = "RTF File";
            this.printPreviewBarItem35.Command = DevExpress.XtraPrinting.PrintingSystemCommand.SendRtf;
            this.printPreviewBarItem35.ContextSpecifier = this.documentViewerRibbonController1;
            this.printPreviewBarItem35.Description = "Rich Text Format";
            this.printPreviewBarItem35.Enabled = false;
            this.printPreviewBarItem35.Glyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_SendRtf;
            this.printPreviewBarItem35.Id = 35;
            this.printPreviewBarItem35.LargeGlyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_SendRtfLarge;
            this.printPreviewBarItem35.Name = "printPreviewBarItem35";
            superToolTip35.FixedTooltipWidth = true;
            toolTipTitleItem35.Text = "E-Mail As RTF";
            toolTipItem35.LeftIndent = 6;
            toolTipItem35.Text = "Export the document to RTF and attach it to the e-mail.";
            superToolTip35.Items.Add(toolTipTitleItem35);
            superToolTip35.Items.Add(toolTipItem35);
            superToolTip35.MaxWidth = 210;
            this.printPreviewBarItem35.SuperTip = superToolTip35;
            // 
            // printPreviewBarItem36
            // 
            this.printPreviewBarItem36.Caption = "Image File";
            this.printPreviewBarItem36.Command = DevExpress.XtraPrinting.PrintingSystemCommand.SendGraphic;
            this.printPreviewBarItem36.ContextSpecifier = this.documentViewerRibbonController1;
            this.printPreviewBarItem36.Description = "BMP, GIF, JPEG, PNG, TIFF, EMF, WMF";
            this.printPreviewBarItem36.Enabled = false;
            this.printPreviewBarItem36.Glyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_SendGraphic;
            this.printPreviewBarItem36.Id = 36;
            this.printPreviewBarItem36.LargeGlyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_SendGraphicLarge;
            this.printPreviewBarItem36.Name = "printPreviewBarItem36";
            superToolTip36.FixedTooltipWidth = true;
            toolTipTitleItem36.Text = "E-Mail As Image";
            toolTipItem36.LeftIndent = 6;
            toolTipItem36.Text = "Export the document to Image and attach it to the e-mail.";
            superToolTip36.Items.Add(toolTipTitleItem36);
            superToolTip36.Items.Add(toolTipItem36);
            superToolTip36.MaxWidth = 210;
            this.printPreviewBarItem36.SuperTip = superToolTip36;
            // 
            // printPreviewBarItem37
            // 
            this.printPreviewBarItem37.Caption = "PDF File";
            this.printPreviewBarItem37.Command = DevExpress.XtraPrinting.PrintingSystemCommand.ExportPdf;
            this.printPreviewBarItem37.ContextSpecifier = this.documentViewerRibbonController1;
            this.printPreviewBarItem37.Description = "Adobe Portable Document Format";
            this.printPreviewBarItem37.Enabled = false;
            this.printPreviewBarItem37.Glyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_ExportPdf;
            this.printPreviewBarItem37.Id = 37;
            this.printPreviewBarItem37.LargeGlyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_ExportPdfLarge;
            this.printPreviewBarItem37.Name = "printPreviewBarItem37";
            superToolTip37.FixedTooltipWidth = true;
            toolTipTitleItem37.Text = "Export to PDF";
            toolTipItem37.LeftIndent = 6;
            toolTipItem37.Text = "Export the document to PDF and save it to the file on a disk.";
            superToolTip37.Items.Add(toolTipTitleItem37);
            superToolTip37.Items.Add(toolTipItem37);
            superToolTip37.MaxWidth = 210;
            this.printPreviewBarItem37.SuperTip = superToolTip37;
            // 
            // printPreviewBarItem38
            // 
            this.printPreviewBarItem38.Caption = "HTML File";
            this.printPreviewBarItem38.Command = DevExpress.XtraPrinting.PrintingSystemCommand.ExportHtm;
            this.printPreviewBarItem38.ContextSpecifier = this.documentViewerRibbonController1;
            this.printPreviewBarItem38.Description = "Web Page";
            this.printPreviewBarItem38.Enabled = false;
            this.printPreviewBarItem38.Glyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_ExportHtm;
            this.printPreviewBarItem38.Id = 38;
            this.printPreviewBarItem38.LargeGlyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_ExportHtmLarge;
            this.printPreviewBarItem38.Name = "printPreviewBarItem38";
            superToolTip38.FixedTooltipWidth = true;
            toolTipTitleItem38.Text = "Export to HTML";
            toolTipItem38.LeftIndent = 6;
            toolTipItem38.Text = "Export the document to HTML and save it to the file on a disk.";
            superToolTip38.Items.Add(toolTipTitleItem38);
            superToolTip38.Items.Add(toolTipItem38);
            superToolTip38.MaxWidth = 210;
            this.printPreviewBarItem38.SuperTip = superToolTip38;
            // 
            // printPreviewBarItem39
            // 
            this.printPreviewBarItem39.Caption = "Text File";
            this.printPreviewBarItem39.Command = DevExpress.XtraPrinting.PrintingSystemCommand.ExportTxt;
            this.printPreviewBarItem39.ContextSpecifier = this.documentViewerRibbonController1;
            this.printPreviewBarItem39.Description = "Plain Text";
            this.printPreviewBarItem39.Enabled = false;
            this.printPreviewBarItem39.Glyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_ExportTxt;
            this.printPreviewBarItem39.Id = 39;
            this.printPreviewBarItem39.LargeGlyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_ExportTxtLarge;
            this.printPreviewBarItem39.Name = "printPreviewBarItem39";
            superToolTip39.FixedTooltipWidth = true;
            toolTipTitleItem39.Text = "Export to Text";
            toolTipItem39.LeftIndent = 6;
            toolTipItem39.Text = "Export the document to Text and save it to the file on a disk.";
            superToolTip39.Items.Add(toolTipTitleItem39);
            superToolTip39.Items.Add(toolTipItem39);
            superToolTip39.MaxWidth = 210;
            this.printPreviewBarItem39.SuperTip = superToolTip39;
            // 
            // printPreviewBarItem40
            // 
            this.printPreviewBarItem40.Caption = "CSV File";
            this.printPreviewBarItem40.Command = DevExpress.XtraPrinting.PrintingSystemCommand.ExportCsv;
            this.printPreviewBarItem40.ContextSpecifier = this.documentViewerRibbonController1;
            this.printPreviewBarItem40.Description = "Comma-Separated Values Text";
            this.printPreviewBarItem40.Enabled = false;
            this.printPreviewBarItem40.Glyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_ExportCsv;
            this.printPreviewBarItem40.Id = 40;
            this.printPreviewBarItem40.LargeGlyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_ExportCsvLarge;
            this.printPreviewBarItem40.Name = "printPreviewBarItem40";
            superToolTip40.FixedTooltipWidth = true;
            toolTipTitleItem40.Text = "Export to CSV";
            toolTipItem40.LeftIndent = 6;
            toolTipItem40.Text = "Export the document to CSV and save it to the file on a disk.";
            superToolTip40.Items.Add(toolTipTitleItem40);
            superToolTip40.Items.Add(toolTipItem40);
            superToolTip40.MaxWidth = 210;
            this.printPreviewBarItem40.SuperTip = superToolTip40;
            // 
            // printPreviewBarItem41
            // 
            this.printPreviewBarItem41.Caption = "MHT File";
            this.printPreviewBarItem41.Command = DevExpress.XtraPrinting.PrintingSystemCommand.ExportMht;
            this.printPreviewBarItem41.ContextSpecifier = this.documentViewerRibbonController1;
            this.printPreviewBarItem41.Description = "Single File Web Page";
            this.printPreviewBarItem41.Enabled = false;
            this.printPreviewBarItem41.Glyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_ExportMht;
            this.printPreviewBarItem41.Id = 41;
            this.printPreviewBarItem41.LargeGlyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_ExportMhtLarge;
            this.printPreviewBarItem41.Name = "printPreviewBarItem41";
            superToolTip41.FixedTooltipWidth = true;
            toolTipTitleItem41.Text = "Export to MHT";
            toolTipItem41.LeftIndent = 6;
            toolTipItem41.Text = "Export the document to MHT and save it to the file on a disk.";
            superToolTip41.Items.Add(toolTipTitleItem41);
            superToolTip41.Items.Add(toolTipItem41);
            superToolTip41.MaxWidth = 210;
            this.printPreviewBarItem41.SuperTip = superToolTip41;
            // 
            // printPreviewBarItem42
            // 
            this.printPreviewBarItem42.Caption = "XLS File";
            this.printPreviewBarItem42.Command = DevExpress.XtraPrinting.PrintingSystemCommand.ExportXls;
            this.printPreviewBarItem42.ContextSpecifier = this.documentViewerRibbonController1;
            this.printPreviewBarItem42.Description = "Microsoft Excel 2000-2003 Workbook";
            this.printPreviewBarItem42.Enabled = false;
            this.printPreviewBarItem42.Glyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_ExportXls;
            this.printPreviewBarItem42.Id = 42;
            this.printPreviewBarItem42.LargeGlyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_ExportXlsLarge;
            this.printPreviewBarItem42.Name = "printPreviewBarItem42";
            superToolTip42.FixedTooltipWidth = true;
            toolTipTitleItem42.Text = "Export to XLS";
            toolTipItem42.LeftIndent = 6;
            toolTipItem42.Text = "Export the document to XLS and save it to the file on a disk.";
            superToolTip42.Items.Add(toolTipTitleItem42);
            superToolTip42.Items.Add(toolTipItem42);
            superToolTip42.MaxWidth = 210;
            this.printPreviewBarItem42.SuperTip = superToolTip42;
            // 
            // printPreviewBarItem43
            // 
            this.printPreviewBarItem43.Caption = "XLSX File";
            this.printPreviewBarItem43.Command = DevExpress.XtraPrinting.PrintingSystemCommand.ExportXlsx;
            this.printPreviewBarItem43.ContextSpecifier = this.documentViewerRibbonController1;
            this.printPreviewBarItem43.Description = "Microsoft Excel 2007 Workbook";
            this.printPreviewBarItem43.Enabled = false;
            this.printPreviewBarItem43.Glyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_ExportXlsx;
            this.printPreviewBarItem43.Id = 43;
            this.printPreviewBarItem43.LargeGlyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_ExportXlsxLarge;
            this.printPreviewBarItem43.Name = "printPreviewBarItem43";
            superToolTip43.FixedTooltipWidth = true;
            toolTipTitleItem43.Text = "Export to XLSX";
            toolTipItem43.LeftIndent = 6;
            toolTipItem43.Text = "Export the document to XLSX and save it to the file on a disk.";
            superToolTip43.Items.Add(toolTipTitleItem43);
            superToolTip43.Items.Add(toolTipItem43);
            superToolTip43.MaxWidth = 210;
            this.printPreviewBarItem43.SuperTip = superToolTip43;
            // 
            // printPreviewBarItem44
            // 
            this.printPreviewBarItem44.Caption = "RTF File";
            this.printPreviewBarItem44.Command = DevExpress.XtraPrinting.PrintingSystemCommand.ExportRtf;
            this.printPreviewBarItem44.ContextSpecifier = this.documentViewerRibbonController1;
            this.printPreviewBarItem44.Description = "Rich Text Format";
            this.printPreviewBarItem44.Enabled = false;
            this.printPreviewBarItem44.Glyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_ExportRtf;
            this.printPreviewBarItem44.Id = 44;
            this.printPreviewBarItem44.LargeGlyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_ExportRtfLarge;
            this.printPreviewBarItem44.Name = "printPreviewBarItem44";
            superToolTip44.FixedTooltipWidth = true;
            toolTipTitleItem44.Text = "Export to RTF";
            toolTipItem44.LeftIndent = 6;
            toolTipItem44.Text = "Export the document to RTF and save it to the file on a disk.";
            superToolTip44.Items.Add(toolTipTitleItem44);
            superToolTip44.Items.Add(toolTipItem44);
            superToolTip44.MaxWidth = 210;
            this.printPreviewBarItem44.SuperTip = superToolTip44;
            // 
            // printPreviewBarItem45
            // 
            this.printPreviewBarItem45.Caption = "Image File";
            this.printPreviewBarItem45.Command = DevExpress.XtraPrinting.PrintingSystemCommand.ExportGraphic;
            this.printPreviewBarItem45.ContextSpecifier = this.documentViewerRibbonController1;
            this.printPreviewBarItem45.Description = "BMP, GIF, JPEG, PNG, TIFF, EMF, WMF";
            this.printPreviewBarItem45.Enabled = false;
            this.printPreviewBarItem45.Glyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_ExportGraphic;
            this.printPreviewBarItem45.Id = 45;
            this.printPreviewBarItem45.LargeGlyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_ExportGraphicLarge;
            this.printPreviewBarItem45.Name = "printPreviewBarItem45";
            superToolTip45.FixedTooltipWidth = true;
            toolTipTitleItem45.Text = "Export to Image";
            toolTipItem45.LeftIndent = 6;
            toolTipItem45.Text = "Export the document to Image and save it to the file on a disk.";
            superToolTip45.Items.Add(toolTipTitleItem45);
            superToolTip45.Items.Add(toolTipItem45);
            superToolTip45.MaxWidth = 210;
            this.printPreviewBarItem45.SuperTip = superToolTip45;
            // 
            // printPreviewBarItem46
            // 
            this.printPreviewBarItem46.Caption = "Open";
            this.printPreviewBarItem46.Command = DevExpress.XtraPrinting.PrintingSystemCommand.Open;
            this.printPreviewBarItem46.ContextSpecifier = this.documentViewerRibbonController1;
            this.printPreviewBarItem46.Enabled = false;
            this.printPreviewBarItem46.Glyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_Open;
            this.printPreviewBarItem46.Id = 46;
            this.printPreviewBarItem46.LargeGlyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_OpenLarge;
            this.printPreviewBarItem46.Name = "printPreviewBarItem46";
            superToolTip46.FixedTooltipWidth = true;
            toolTipTitleItem46.Text = "Open (Ctrl + O)";
            toolTipItem46.LeftIndent = 6;
            toolTipItem46.Text = "Open a document.";
            superToolTip46.Items.Add(toolTipTitleItem46);
            superToolTip46.Items.Add(toolTipItem46);
            superToolTip46.MaxWidth = 210;
            this.printPreviewBarItem46.SuperTip = superToolTip46;
            // 
            // printPreviewBarItem47
            // 
            this.printPreviewBarItem47.Caption = "Save";
            this.printPreviewBarItem47.Command = DevExpress.XtraPrinting.PrintingSystemCommand.Save;
            this.printPreviewBarItem47.ContextSpecifier = this.documentViewerRibbonController1;
            this.printPreviewBarItem47.Enabled = false;
            this.printPreviewBarItem47.Glyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_Save;
            this.printPreviewBarItem47.Id = 47;
            this.printPreviewBarItem47.LargeGlyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_SaveLarge;
            this.printPreviewBarItem47.Name = "printPreviewBarItem47";
            superToolTip47.FixedTooltipWidth = true;
            toolTipTitleItem47.Text = "Save (Ctrl + S)";
            toolTipItem47.LeftIndent = 6;
            toolTipItem47.Text = "Save the document.";
            superToolTip47.Items.Add(toolTipTitleItem47);
            superToolTip47.Items.Add(toolTipItem47);
            superToolTip47.MaxWidth = 210;
            this.printPreviewBarItem47.SuperTip = superToolTip47;
            // 
            // printPreviewStaticItem1
            // 
            this.printPreviewStaticItem1.Caption = "Nothing";
            this.printPreviewStaticItem1.Id = 48;
            this.printPreviewStaticItem1.LeftIndent = 1;
            this.printPreviewStaticItem1.Name = "printPreviewStaticItem1";
            this.printPreviewStaticItem1.RightIndent = 1;
            this.printPreviewStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
            this.printPreviewStaticItem1.Type = "PageOfPages";
            // 
            // barStaticItem1
            // 
            this.barStaticItem1.Id = 49;
            this.barStaticItem1.Name = "barStaticItem1";
            this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
            this.barStaticItem1.Visibility = DevExpress.XtraBars.BarItemVisibility.OnlyInRuntime;
            // 
            // progressBarEditItem1
            // 
            this.progressBarEditItem1.ContextSpecifier = this.documentViewerRibbonController1;
            this.progressBarEditItem1.Edit = this.repositoryItemProgressBar1;
            this.progressBarEditItem1.EditHeight = 12;
            this.progressBarEditItem1.Id = 50;
            this.progressBarEditItem1.Name = "progressBarEditItem1";
            this.progressBarEditItem1.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
            this.progressBarEditItem1.Width = 150;
            // 
            // repositoryItemProgressBar1
            // 
            this.repositoryItemProgressBar1.Name = "repositoryItemProgressBar1";
            // 
            // printPreviewBarItem48
            // 
            this.printPreviewBarItem48.Caption = "Stop";
            this.printPreviewBarItem48.Command = DevExpress.XtraPrinting.PrintingSystemCommand.StopPageBuilding;
            this.printPreviewBarItem48.ContextSpecifier = this.documentViewerRibbonController1;
            this.printPreviewBarItem48.Enabled = false;
            this.printPreviewBarItem48.Hint = "Stop";
            this.printPreviewBarItem48.Id = 51;
            this.printPreviewBarItem48.Name = "printPreviewBarItem48";
            this.printPreviewBarItem48.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
            // 
            // barButtonItem1
            // 
            this.barButtonItem1.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Left;
            this.barButtonItem1.Enabled = false;
            this.barButtonItem1.Id = 52;
            this.barButtonItem1.Name = "barButtonItem1";
            this.barButtonItem1.Visibility = DevExpress.XtraBars.BarItemVisibility.OnlyInRuntime;
            // 
            // printPreviewStaticItem2
            // 
            this.printPreviewStaticItem2.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.printPreviewStaticItem2.AutoSize = DevExpress.XtraBars.BarStaticItemSize.None;
            this.printPreviewStaticItem2.Caption = "100%";
            this.printPreviewStaticItem2.Id = 53;
            this.printPreviewStaticItem2.Name = "printPreviewStaticItem2";
            this.printPreviewStaticItem2.TextAlignment = System.Drawing.StringAlignment.Near;
            this.printPreviewStaticItem2.Type = "ZoomFactorText";
            this.printPreviewStaticItem2.Width = 42;
            // 
            // zoomTrackBarEditItem1
            // 
            this.zoomTrackBarEditItem1.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.zoomTrackBarEditItem1.ContextSpecifier = this.documentViewerRibbonController1;
            this.zoomTrackBarEditItem1.Edit = this.repositoryItemZoomTrackBar1;
            this.zoomTrackBarEditItem1.EditValue = 90;
            this.zoomTrackBarEditItem1.Enabled = false;
            this.zoomTrackBarEditItem1.Id = 54;
            this.zoomTrackBarEditItem1.Name = "zoomTrackBarEditItem1";
            this.zoomTrackBarEditItem1.Range = new int[] {
        10,
        500};
            this.zoomTrackBarEditItem1.Width = 140;
            // 
            // repositoryItemZoomTrackBar1
            // 
            this.repositoryItemZoomTrackBar1.Alignment = DevExpress.Utils.VertAlignment.Center;
            this.repositoryItemZoomTrackBar1.AllowFocused = false;
            this.repositoryItemZoomTrackBar1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.repositoryItemZoomTrackBar1.Maximum = 180;
            this.repositoryItemZoomTrackBar1.Middle = 5;
            this.repositoryItemZoomTrackBar1.Name = "repositoryItemZoomTrackBar1";
            this.repositoryItemZoomTrackBar1.ScrollThumbStyle = DevExpress.XtraEditors.Repository.ScrollThumbStyle.ArrowDownRight;
            // 
            // printPreviewRibbonPage1
            // 
            this.printPreviewRibbonPage1.ContextSpecifier = this.documentViewerRibbonController1;
            this.printPreviewRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.printPreviewRibbonPageGroup1,
            this.printPreviewRibbonPageGroup2,
            this.printPreviewRibbonPageGroup3,
            this.printPreviewRibbonPageGroup4,
            this.printPreviewRibbonPageGroup5,
            this.printPreviewRibbonPageGroup6,
            this.printPreviewRibbonPageGroup7});
            this.printPreviewRibbonPage1.Name = "printPreviewRibbonPage1";
            this.printPreviewRibbonPage1.Text = "Print Preview";
            // 
            // printPreviewRibbonPageGroup1
            // 
            this.printPreviewRibbonPageGroup1.ContextSpecifier = this.documentViewerRibbonController1;
            this.printPreviewRibbonPageGroup1.Glyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_Document;
            this.printPreviewRibbonPageGroup1.ItemLinks.Add(this.printPreviewBarItem46);
            this.printPreviewRibbonPageGroup1.ItemLinks.Add(this.printPreviewBarItem47);
            this.printPreviewRibbonPageGroup1.Kind = DevExpress.XtraPrinting.Preview.PrintPreviewRibbonPageGroupKind.Document;
            this.printPreviewRibbonPageGroup1.Name = "printPreviewRibbonPageGroup1";
            this.printPreviewRibbonPageGroup1.ShowCaptionButton = false;
            this.printPreviewRibbonPageGroup1.Text = "Document";
            // 
            // printPreviewRibbonPageGroup2
            // 
            this.printPreviewRibbonPageGroup2.ContextSpecifier = this.documentViewerRibbonController1;
            this.printPreviewRibbonPageGroup2.Glyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_PrintDirect;
            this.printPreviewRibbonPageGroup2.ItemLinks.Add(this.printPreviewBarItem5);
            this.printPreviewRibbonPageGroup2.ItemLinks.Add(this.printPreviewBarItem6);
            this.printPreviewRibbonPageGroup2.ItemLinks.Add(this.printPreviewBarItem4);
            this.printPreviewRibbonPageGroup2.ItemLinks.Add(this.printPreviewBarItem2);
            this.printPreviewRibbonPageGroup2.Kind = DevExpress.XtraPrinting.Preview.PrintPreviewRibbonPageGroupKind.Print;
            this.printPreviewRibbonPageGroup2.Name = "printPreviewRibbonPageGroup2";
            this.printPreviewRibbonPageGroup2.ShowCaptionButton = false;
            this.printPreviewRibbonPageGroup2.Text = "Print";
            // 
            // printPreviewRibbonPageGroup3
            // 
            this.printPreviewRibbonPageGroup3.ContextSpecifier = this.documentViewerRibbonController1;
            this.printPreviewRibbonPageGroup3.Glyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_PageMargins;
            this.printPreviewRibbonPageGroup3.ItemLinks.Add(this.printPreviewBarItem8);
            this.printPreviewRibbonPageGroup3.ItemLinks.Add(this.printPreviewBarItem9);
            this.printPreviewRibbonPageGroup3.ItemLinks.Add(this.printPreviewBarItem28);
            this.printPreviewRibbonPageGroup3.ItemLinks.Add(this.printPreviewBarItem26);
            this.printPreviewRibbonPageGroup3.ItemLinks.Add(this.printPreviewBarItem27);
            this.printPreviewRibbonPageGroup3.Kind = DevExpress.XtraPrinting.Preview.PrintPreviewRibbonPageGroupKind.PageSetup;
            this.printPreviewRibbonPageGroup3.Name = "printPreviewRibbonPageGroup3";
            superToolTip48.FixedTooltipWidth = true;
            toolTipTitleItem48.Text = "Page Setup";
            toolTipItem48.Appearance.Image = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_PageSetupDialog;
            toolTipItem48.Appearance.Options.UseImage = true;
            toolTipItem48.Image = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_PageSetupDialog;
            toolTipItem48.LeftIndent = 6;
            toolTipItem48.Text = "Show the Page Setup dialog.";
            superToolTip48.Items.Add(toolTipTitleItem48);
            superToolTip48.Items.Add(toolTipItem48);
            superToolTip48.MaxWidth = 318;
            this.printPreviewRibbonPageGroup3.SuperTip = superToolTip48;
            this.printPreviewRibbonPageGroup3.Text = "Page Setup";
            // 
            // printPreviewRibbonPageGroup4
            // 
            this.printPreviewRibbonPageGroup4.ContextSpecifier = this.documentViewerRibbonController1;
            this.printPreviewRibbonPageGroup4.Glyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_Find;
            this.printPreviewRibbonPageGroup4.ItemLinks.Add(this.printPreviewBarItem3);
            this.printPreviewRibbonPageGroup4.ItemLinks.Add(this.printPreviewBarItem1);
            this.printPreviewRibbonPageGroup4.ItemLinks.Add(this.printPreviewBarItem16, true);
            this.printPreviewRibbonPageGroup4.ItemLinks.Add(this.printPreviewBarItem17);
            this.printPreviewRibbonPageGroup4.ItemLinks.Add(this.printPreviewBarItem18);
            this.printPreviewRibbonPageGroup4.ItemLinks.Add(this.printPreviewBarItem19);
            this.printPreviewRibbonPageGroup4.Kind = DevExpress.XtraPrinting.Preview.PrintPreviewRibbonPageGroupKind.Navigation;
            this.printPreviewRibbonPageGroup4.Name = "printPreviewRibbonPageGroup4";
            this.printPreviewRibbonPageGroup4.ShowCaptionButton = false;
            this.printPreviewRibbonPageGroup4.Text = "Navigation";
            // 
            // printPreviewRibbonPageGroup5
            // 
            this.printPreviewRibbonPageGroup5.ContextSpecifier = this.documentViewerRibbonController1;
            this.printPreviewRibbonPageGroup5.Glyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_Zoom;
            this.printPreviewRibbonPageGroup5.ItemLinks.Add(this.printPreviewBarItem10);
            this.printPreviewRibbonPageGroup5.ItemLinks.Add(this.printPreviewBarItem11);
            this.printPreviewRibbonPageGroup5.ItemLinks.Add(this.printPreviewBarItem12);
            this.printPreviewRibbonPageGroup5.ItemLinks.Add(this.printPreviewBarItem20);
            this.printPreviewRibbonPageGroup5.ItemLinks.Add(this.printPreviewBarItem13);
            this.printPreviewRibbonPageGroup5.ItemLinks.Add(this.printPreviewBarItem15);
            this.printPreviewRibbonPageGroup5.ItemLinks.Add(this.printPreviewBarItem14);
            this.printPreviewRibbonPageGroup5.Kind = DevExpress.XtraPrinting.Preview.PrintPreviewRibbonPageGroupKind.Zoom;
            this.printPreviewRibbonPageGroup5.Name = "printPreviewRibbonPageGroup5";
            this.printPreviewRibbonPageGroup5.ShowCaptionButton = false;
            this.printPreviewRibbonPageGroup5.Text = "Zoom";
            // 
            // printPreviewRibbonPageGroup6
            // 
            this.printPreviewRibbonPageGroup6.ContextSpecifier = this.documentViewerRibbonController1;
            this.printPreviewRibbonPageGroup6.Glyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_Watermark;
            this.printPreviewRibbonPageGroup6.ItemLinks.Add(this.printPreviewBarItem21);
            this.printPreviewRibbonPageGroup6.ItemLinks.Add(this.printPreviewBarItem22);
            this.printPreviewRibbonPageGroup6.Kind = DevExpress.XtraPrinting.Preview.PrintPreviewRibbonPageGroupKind.Background;
            this.printPreviewRibbonPageGroup6.Name = "printPreviewRibbonPageGroup6";
            this.printPreviewRibbonPageGroup6.ShowCaptionButton = false;
            this.printPreviewRibbonPageGroup6.Text = "Page Background";
            // 
            // printPreviewRibbonPageGroup7
            // 
            this.printPreviewRibbonPageGroup7.ContextSpecifier = this.documentViewerRibbonController1;
            this.printPreviewRibbonPageGroup7.Glyph = global::QuanLyCuaHangLinhKienMayTinh.PrintRibbonControllerResources.RibbonPrintPreview_ExportFile;
            this.printPreviewRibbonPageGroup7.ItemLinks.Add(this.printPreviewBarItem23);
            this.printPreviewRibbonPageGroup7.ItemLinks.Add(this.printPreviewBarItem24);
            this.printPreviewRibbonPageGroup7.ItemLinks.Add(this.printPreviewBarItem25, true);
            this.printPreviewRibbonPageGroup7.Kind = DevExpress.XtraPrinting.Preview.PrintPreviewRibbonPageGroupKind.Export;
            this.printPreviewRibbonPageGroup7.Name = "printPreviewRibbonPageGroup7";
            this.printPreviewRibbonPageGroup7.ShowCaptionButton = false;
            this.printPreviewRibbonPageGroup7.Text = "Export";
            // 
            // ribbonStatusBar1
            // 
            this.ribbonStatusBar1.ItemLinks.Add(this.printPreviewStaticItem1);
            this.ribbonStatusBar1.ItemLinks.Add(this.barStaticItem1, true);
            this.ribbonStatusBar1.ItemLinks.Add(this.progressBarEditItem1);
            this.ribbonStatusBar1.ItemLinks.Add(this.printPreviewBarItem48);
            this.ribbonStatusBar1.ItemLinks.Add(this.barButtonItem1);
            this.ribbonStatusBar1.ItemLinks.Add(this.printPreviewStaticItem2);
            this.ribbonStatusBar1.ItemLinks.Add(this.zoomTrackBarEditItem1);
            this.ribbonStatusBar1.Location = new System.Drawing.Point(0, 386);
            this.ribbonStatusBar1.Name = "ribbonStatusBar1";
            this.ribbonStatusBar1.Ribbon = this.ribbonControl1;
            this.ribbonStatusBar1.Size = new System.Drawing.Size(787, 27);
            // 
            // frmProductsReport
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(787, 413);
            this.Controls.Add(this.documentViewer1);
            this.Controls.Add(this.ribbonStatusBar1);
            this.Controls.Add(this.ribbonControl1);
            this.Name = "frmProductsReport";
            this.Text = "Báo cáo sản phẩm";
            ((System.ComponentModel.ISupportInitialize)(this.documentViewerRibbonController1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemProgressBar1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemZoomTrackBar1)).EndInit();
            this.ResumeLayout(false);

        }
Пример #24
0
        private void InitializeComponent() {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMain));
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup2 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup3 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem1 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.ToolTipSeparatorItem toolTipSeparatorItem1 = new DevExpress.Utils.ToolTipSeparatorItem();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2 = new DevExpress.Utils.ToolTipTitleItem();
            this.iWeb = new DevExpress.XtraBars.BarButtonItem();
            this.iAbout = new DevExpress.XtraBars.BarButtonItem();
            this.iCopy = new DevExpress.XtraBars.BarButtonItem();
            this.iCut = new DevExpress.XtraBars.BarButtonItem();
            this.iPaste = new DevExpress.XtraBars.BarButtonItem();
            this.iClear = new DevExpress.XtraBars.BarButtonItem();
            this.iFont = new DevExpress.XtraBars.BarButtonItem();
            this.beiFontSize = new DevExpress.XtraBars.BarEditItem();
            this.repositoryItemSpinEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
            this.bbiFontColorPopup = new DevExpress.XtraBars.BarButtonItem();
            this.popupControlContainer1 = new DevExpress.XtraBars.PopupControlContainer(this.components);
            this.ribbonControl1 = new DevExpress.XtraBars.Ribbon.RibbonControl();
            this.pmAppMain = new DevExpress.XtraBars.Ribbon.ApplicationMenu(this.components);
            this.idNew = new DevExpress.XtraBars.BarButtonItem();
            this.pmNew = new DevExpress.XtraBars.PopupMenu(this.components);
            this.iNew = new DevExpress.XtraBars.BarButtonItem();
            this.iTemplate = new DevExpress.XtraBars.BarButtonItem();
            this.iOpen = new DevExpress.XtraBars.BarButtonItem();
            this.sbiSave = new DevExpress.XtraBars.BarSubItem();
            this.iSave = new DevExpress.XtraBars.BarButtonItem();
            this.iSaveAs = new DevExpress.XtraBars.BarButtonItem();
            this.iPrint = new DevExpress.XtraBars.BarButtonItem();
            this.iClose = new DevExpress.XtraBars.BarButtonItem();
            this.iExit = new DevExpress.XtraBars.BarButtonItem();
            this.imageCollection2 = new DevExpress.Utils.ImageCollection(this.components);
            this.iReplace = new DevExpress.XtraBars.BarButtonItem();
            this.iFind = new DevExpress.XtraBars.BarButtonItem();
            this.iFontColor = new DevExpress.XtraBars.BarButtonItem();
            this.siPosition = new DevExpress.XtraBars.BarButtonItem();
            this.siModified = new DevExpress.XtraBars.BarButtonItem();
            this.siDocName = new DevExpress.XtraBars.BarStaticItem();
            this.sbiPaste = new DevExpress.XtraBars.BarSubItem();
            this.iPasteSpecial = new DevExpress.XtraBars.BarButtonItem();
            this.sbiFind = new DevExpress.XtraBars.BarSubItem();
            this.iLargeUndo = new DevExpress.XtraBars.BarLargeButtonItem();
            this.iPaintStyle = new DevExpress.XtraBars.BarSubItem();
            this.rgbiSkins = new DevExpress.XtraBars.RibbonGalleryBarItem();
            this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem_Select = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem_ZoomIn = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem_ZoomOut = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem_Pan = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem_ProView = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem_NextView = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem_FullView = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem_Identify = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem_Attribute = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem_Find = new DevExpress.XtraBars.BarButtonItem();
            this.barEditItem_layer = new DevExpress.XtraBars.BarEditItem();
            this.repositoryItemComboBox3 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
            this.barSubItem_AddGeoData = new DevExpress.XtraBars.BarSubItem();
            this.barButtonItem_AddImageData = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem_AddVectorData = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem_DrawingToolBox = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem_ZoomActualSize = new DevExpress.XtraBars.BarButtonItem();
            this.barEditItem3 = new DevExpress.XtraBars.BarEditItem();
            this.repositoryItemTrackBar1 = new DevExpress.XtraEditors.Repository.RepositoryItemTrackBar();
            this.barButtonItem_Refresh = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem_ImageAnalyseToolbox = new DevExpress.XtraBars.BarButtonItem();
            this.barListItem1 = new DevExpress.XtraBars.BarListItem();
            this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
            this.barStaticItem_MapCoord = new DevExpress.XtraBars.BarStaticItem();
            this.barStaticItem_ScreenCoord = new DevExpress.XtraBars.BarStaticItem();
            this.barStaticItem_Reference = new DevExpress.XtraBars.BarStaticItem();
            this.barStaticItem_Unit = new DevExpress.XtraBars.BarStaticItem();
            this.barButtonItem5 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem6 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem7 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem8 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem9 = new DevExpress.XtraBars.BarButtonItem();
            this.openTemplate = new DevExpress.XtraBars.BarButtonItem();
            this.pageZoomIn = new DevExpress.XtraBars.BarButtonItem();
            this.pageZoomOut = new DevExpress.XtraBars.BarButtonItem();
            this.pagePan = new DevExpress.XtraBars.BarButtonItem();
            this.pagePreView = new DevExpress.XtraBars.BarButtonItem();
            this.pageAfterView = new DevExpress.XtraBars.BarButtonItem();
            this.commonPoint = new DevExpress.XtraBars.BarButtonItem();
            this.commonLine = new DevExpress.XtraBars.BarButtonItem();
            this.commonPolygon = new DevExpress.XtraBars.BarButtonItem();
            this.selectMarkTool = new DevExpress.XtraBars.BarButtonItem();
            this.textMark = new DevExpress.XtraBars.BarButtonItem();
            this.pageFullExtent = new DevExpress.XtraBars.BarButtonItem();
            this.pageRealSize = new DevExpress.XtraBars.BarButtonItem();
            this.imageCollection1 = new DevExpress.Utils.ImageCollection(this.components);
            this.ribbonPage1 = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.ribbonPageGroup1 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup2 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup3 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup10 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageLayoutPage = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.ribbonPageGroup7 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.pagelayoutButtons = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.markToolPage = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.ribbonPageGroup5 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.repositoryItemPictureEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
            this.repositoryItemSpinEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
            this.repositoryItemButtonEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
            this.repositoryItemComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
            this.repositoryItemComboBox2 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
            this.repositoryItemImageEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemImageEdit();
            this.repositoryItemPictureEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
            this.repositoryItemPictureEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
            this.ribbonStatusBar1 = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
            this.defaultLookAndFeel1 = new DevExpress.LookAndFeel.DefaultLookAndFeel(this.components);
            this.xtraTabbedMdiManager1 = new DevExpress.XtraTabbedMdi.XtraTabbedMdiManager(this.components);
            this.pmMain = new DevExpress.XtraBars.PopupMenu(this.components);
            this.imageCollection3 = new DevExpress.Utils.ImageCollection(this.components);
            this.dockManager1 = new DevExpress.XtraBars.Docking.DockManager(this.components);
            this.dockPanel_Drawing = new DevExpress.XtraBars.Docking.DockPanel();
            this.dockPanel5_Container = new DevExpress.XtraBars.Docking.ControlContainer();
            this.simpleButton_DrawLine = new DevExpress.XtraEditors.SimpleButton();
            this.simpleButton_Text = new DevExpress.XtraEditors.SimpleButton();
            this.simpleButton_DrawAny = new DevExpress.XtraEditors.SimpleButton();
            this.simpleButton_DrawCurve = new DevExpress.XtraEditors.SimpleButton();
            this.simpleButton_Rect = new DevExpress.XtraEditors.SimpleButton();
            this.simpleButton_DrawElement_Polygon = new DevExpress.XtraEditors.SimpleButton();
            this.simpleButton_DrawPoint = new DevExpress.XtraEditors.SimpleButton();
            this.simpleButton_SelectElement = new DevExpress.XtraEditors.SimpleButton();
            this.panelContainer1 = new DevExpress.XtraBars.Docking.DockPanel();
            this.dockPanel_Overview = new DevExpress.XtraBars.Docking.DockPanel();
            this.dockPanel3_Container = new DevExpress.XtraBars.Docking.ControlContainer();
            this.dockPanel2 = new DevExpress.XtraBars.Docking.DockPanel();
            this.dockPanel2_Container = new DevExpress.XtraBars.Docking.ControlContainer();
            this.dockPanel_ImageAnalyse = new DevExpress.XtraBars.Docking.DockPanel();
            this.dockPanel4_Container = new DevExpress.XtraBars.Docking.ControlContainer();
            this.navBarControl1 = new DevExpress.XtraNavBar.NavBarControl();
            this.navBarGroup1 = new DevExpress.XtraNavBar.NavBarGroup();
            this.navBarGroupControlContainer1 = new DevExpress.XtraNavBar.NavBarGroupControlContainer();
            this.checkButton_FlashLayer = new DevExpress.XtraEditors.CheckButton();
            this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
            this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
            this.comboBoxEdit2 = new DevExpress.XtraEditors.ComboBoxEdit();
            this.comboBoxEdit1 = new DevExpress.XtraEditors.ComboBoxEdit();
            this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
            this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
            this.pictureEdit4 = new DevExpress.XtraEditors.PictureEdit();
            this.trackBarControl_Gamma = new DevExpress.XtraEditors.TrackBarControl();
            this.spinEdit_FlashTime = new DevExpress.XtraEditors.SpinEdit();
            this.spinEdit_Gamma = new DevExpress.XtraEditors.SpinEdit();
            this.pictureEdit3 = new DevExpress.XtraEditors.PictureEdit();
            this.trackBarControl_Transparency = new DevExpress.XtraEditors.TrackBarControl();
            this.spinEdit_Transparency = new DevExpress.XtraEditors.SpinEdit();
            this.pictureEdit2 = new DevExpress.XtraEditors.PictureEdit();
            this.trackBarControl_Contrast = new DevExpress.XtraEditors.TrackBarControl();
            this.spinEdit_Contrast = new DevExpress.XtraEditors.SpinEdit();
            this.pictureEdit1 = new DevExpress.XtraEditors.PictureEdit();
            this.trackBarControl_Bright = new DevExpress.XtraEditors.TrackBarControl();
            this.spinEdit_Bright = new DevExpress.XtraEditors.SpinEdit();
            this.navBarGroupControlContainer2 = new DevExpress.XtraNavBar.NavBarGroupControlContainer();
            this.navBarGroup2 = new DevExpress.XtraNavBar.NavBarGroup();
            this.xtraTabControl = new DevExpress.XtraTab.XtraTabControl();
            this.xtraTabPage_Map = new DevExpress.XtraTab.XtraTabPage();
            this.xtraTabPage_Layout = new DevExpress.XtraTab.XtraTabPage();
            this.imageCollection4 = new DevExpress.Utils.ImageCollection(this.components);
            this.ribbonGalleryBarItem1 = new DevExpress.XtraBars.RibbonGalleryBarItem();
            this.iUndo = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem11 = new DevExpress.XtraBars.BarButtonItem();
            this.barSubItem1 = new DevExpress.XtraBars.BarSubItem();
            this.ribbonPageGroup4 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup6 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.barButtonItem23 = new DevExpress.XtraBars.BarButtonItem();
            this.barEditItemLayers = new DevExpress.XtraBars.BarEditItem();
            this.repositoryItemComboBox4 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
            this.repositoryItemButtonEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
            this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
            this.repositoryItemTextEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
            this.barSubItem2 = new DevExpress.XtraBars.BarSubItem();
            this.barButtonAddImage = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonAddShp = new DevExpress.XtraBars.BarButtonItem();
            this.axusMapControl1 = new AxusMapControlLib.AxusMapControl();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupControlContainer1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pmAppMain)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pmNew)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.imageCollection2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTrackBar1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.imageCollection1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabbedMdiManager1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pmMain)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.imageCollection3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).BeginInit();
            this.dockPanel_Drawing.SuspendLayout();
            this.dockPanel5_Container.SuspendLayout();
            this.panelContainer1.SuspendLayout();
            this.dockPanel_Overview.SuspendLayout();
            this.dockPanel2.SuspendLayout();
            this.dockPanel_ImageAnalyse.SuspendLayout();
            this.dockPanel4_Container.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.navBarControl1)).BeginInit();
            this.navBarControl1.SuspendLayout();
            this.navBarGroupControlContainer1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit2.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit1.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureEdit4.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.trackBarControl_Gamma)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.trackBarControl_Gamma.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.spinEdit_FlashTime.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.spinEdit_Gamma.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureEdit3.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.trackBarControl_Transparency)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.trackBarControl_Transparency.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.spinEdit_Transparency.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureEdit2.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.trackBarControl_Contrast)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.trackBarControl_Contrast.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.spinEdit_Contrast.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureEdit1.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.trackBarControl_Bright)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.trackBarControl_Bright.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.spinEdit_Bright.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl)).BeginInit();
            this.xtraTabControl.SuspendLayout();
            this.xtraTabPage_Map.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.imageCollection4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.axusMapControl1)).BeginInit();
            this.SuspendLayout();
            // 
            // iWeb
            // 
            this.iWeb.Id = 253;
            this.iWeb.Name = "iWeb";
            // 
            // iAbout
            // 
            this.iAbout.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.iAbout.Caption = "&About";
            this.iAbout.CategoryGuid = new System.Guid("e07a4c24-66ac-4de6-bbcb-c0b6cfa7798b");
            this.iAbout.Description = "Displays the description of this program.";
            this.iAbout.Hint = "Displays the About dialog";
            this.iAbout.Id = 22;
            this.iAbout.ImageIndex = 28;
            this.iAbout.Name = "iAbout";
            this.iAbout.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iAbout_ItemClick);
            // 
            // iCopy
            // 
            this.iCopy.Id = 249;
            this.iCopy.Name = "iCopy";
            // 
            // iCut
            // 
            this.iCut.Id = 248;
            this.iCut.Name = "iCut";
            // 
            // iPaste
            // 
            this.iPaste.Id = 250;
            this.iPaste.Name = "iPaste";
            // 
            // iClear
            // 
            this.iClear.Id = 251;
            this.iClear.Name = "iClear";
            // 
            // iFont
            // 
            this.iFont.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.iFont.Caption = "字体...";
            this.iFont.CategoryGuid = new System.Guid("d3052f28-4b3e-4bae-b581-b3bb1c432258");
            this.iFont.Description = "Changes the font and character spacing formats of the selected text.";
            this.iFont.Hint = "Font Dialog";
            this.iFont.Id = 17;
            this.iFont.ImageIndex = 4;
            this.iFont.Name = "iFont";
            this.iFont.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            // 
            // beiFontSize
            // 
            this.beiFontSize.Caption = "Font Size";
            this.beiFontSize.Edit = this.repositoryItemSpinEdit1;
            this.beiFontSize.Hint = "Font Size";
            this.beiFontSize.Id = 27;
            this.beiFontSize.Name = "beiFontSize";
            // 
            // repositoryItemSpinEdit1
            // 
            this.repositoryItemSpinEdit1.AutoHeight = false;
            this.repositoryItemSpinEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.repositoryItemSpinEdit1.IsFloatValue = false;
            this.repositoryItemSpinEdit1.Mask.EditMask = "N00";
            this.repositoryItemSpinEdit1.MaxValue = new decimal(new int[] {
            50,
            0,
            0,
            0});
            this.repositoryItemSpinEdit1.MinValue = new decimal(new int[] {
            6,
            0,
            0,
            0});
            this.repositoryItemSpinEdit1.Name = "repositoryItemSpinEdit1";
            // 
            // bbiFontColorPopup
            // 
            this.bbiFontColorPopup.ActAsDropDown = true;
            this.bbiFontColorPopup.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.bbiFontColorPopup.Caption = "Font Color";
            this.bbiFontColorPopup.Description = "Formats the selected text with the color you click";
            this.bbiFontColorPopup.DropDownControl = this.popupControlContainer1;
            this.bbiFontColorPopup.Hint = "Formats the selected text with the color you click";
            this.bbiFontColorPopup.Id = 36;
            this.bbiFontColorPopup.Name = "bbiFontColorPopup";
            // 
            // popupControlContainer1
            // 
            this.popupControlContainer1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.popupControlContainer1.Location = new System.Drawing.Point(0, 0);
            this.popupControlContainer1.Name = "popupControlContainer1";
            this.popupControlContainer1.Size = new System.Drawing.Size(200, 100);
            this.popupControlContainer1.TabIndex = 0;
            this.popupControlContainer1.Visible = false;
            // 
            // ribbonControl1
            // 
            this.ribbonControl1.ApplicationButtonDropDownControl = this.pmAppMain;
            this.ribbonControl1.ApplicationButtonText = null;
            this.ribbonControl1.Categories.AddRange(new DevExpress.XtraBars.BarManagerCategory[] {
            new DevExpress.XtraBars.BarManagerCategory("File", new System.Guid("4b511317-d784-42ba-b4ed-0d2a746d6c1f")),
            new DevExpress.XtraBars.BarManagerCategory("Edit", new System.Guid("7c2486e1-92ea-4293-ad55-b819f61ff7f1")),
            new DevExpress.XtraBars.BarManagerCategory("Format", new System.Guid("d3052f28-4b3e-4bae-b581-b3bb1c432258")),
            new DevExpress.XtraBars.BarManagerCategory("Help", new System.Guid("e07a4c24-66ac-4de6-bbcb-c0b6cfa7798b")),
            new DevExpress.XtraBars.BarManagerCategory("Status", new System.Guid("77795bb7-9bc5-4dd2-a297-cc758682e23d"))});
            // 
            // 
            // 
            this.ribbonControl1.ExpandCollapseItem.Id = 0;
            this.ribbonControl1.ExpandCollapseItem.Name = "";
            this.ribbonControl1.Images = this.imageCollection2;
            this.ribbonControl1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.ribbonControl1.ExpandCollapseItem,
            this.iOpen,
            this.iSave,
            this.iReplace,
            this.idNew,
            this.iClose,
            this.iSaveAs,
            this.iPrint,
            this.iExit,
            this.iCut,
            this.iCopy,
            this.iPaste,
            this.iClear,
            this.iFind,
            this.iFont,
            this.iWeb,
            this.iAbout,
            this.iFontColor,
            this.siPosition,
            this.siModified,
            this.siDocName,
            this.sbiSave,
            this.sbiPaste,
            this.sbiFind,
            this.iPasteSpecial,
            this.iNew,
            this.iLargeUndo,
            this.iTemplate,
            this.iPaintStyle,
            this.rgbiSkins,
            this.beiFontSize,
            this.bbiFontColorPopup,
            this.barButtonItem1,
            this.barButtonItem2,
            this.barButtonItem3,
            this.barButtonItem4,
            this.barButtonItem_Select,
            this.barButtonItem_ZoomIn,
            this.barButtonItem_ZoomOut,
            this.barButtonItem_Pan,
            this.barButtonItem_ProView,
            this.barButtonItem_NextView,
            this.barButtonItem_FullView,
            this.barButtonItem_Identify,
            this.barButtonItem_Attribute,
            this.barButtonItem_Find,
            this.barEditItem_layer,
            this.barSubItem_AddGeoData,
            this.barButtonItem_AddVectorData,
            this.barButtonItem_AddImageData,
            this.barButtonItem_DrawingToolBox,
            this.barButtonItem_ZoomActualSize,
            this.barEditItem3,
            this.barButtonItem_Refresh,
            this.barButtonItem_ImageAnalyseToolbox,
            this.barListItem1,
            this.barStaticItem1,
            this.barStaticItem_MapCoord,
            this.barStaticItem_ScreenCoord,
            this.barStaticItem_Reference,
            this.barStaticItem_Unit,
            this.barButtonItem5,
            this.barButtonItem6,
            this.barButtonItem7,
            this.barButtonItem8,
            this.barButtonItem9,
            this.openTemplate,
            this.pageZoomIn,
            this.pageZoomOut,
            this.pagePan,
            this.pagePreView,
            this.pageAfterView,
            this.commonPoint,
            this.commonLine,
            this.commonPolygon,
            this.selectMarkTool,
            this.textMark,
            this.pageFullExtent,
            this.pageRealSize,
            this.barEditItemLayers,
            this.barSubItem2,
            this.barButtonAddImage,
            this.barButtonAddShp});
            this.ribbonControl1.LargeImages = this.imageCollection1;
            this.ribbonControl1.Location = new System.Drawing.Point(0, 0);
            this.ribbonControl1.MaxItemId = 263;
            this.ribbonControl1.Name = "ribbonControl1";
            this.ribbonControl1.PageCategoryAlignment = DevExpress.XtraBars.Ribbon.RibbonPageCategoryAlignment.Right;
            this.ribbonControl1.PageHeaderItemLinks.Add(this.iAbout);
            this.ribbonControl1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.ribbonPage1,
            this.ribbonPageLayoutPage,
            this.markToolPage});
            this.ribbonControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemSpinEdit1,
            this.repositoryItemPictureEdit1,
            this.repositoryItemSpinEdit2,
            this.repositoryItemButtonEdit1,
            this.repositoryItemComboBox1,
            this.repositoryItemComboBox2,
            this.repositoryItemComboBox3,
            this.repositoryItemImageEdit1,
            this.repositoryItemPictureEdit2,
            this.repositoryItemPictureEdit3,
            this.repositoryItemTrackBar1,
            this.repositoryItemComboBox4,
            this.repositoryItemButtonEdit2,
            this.repositoryItemTextEdit1,
            this.repositoryItemTextEdit2});
            this.ribbonControl1.SelectedPage = this.ribbonPage1;
            this.ribbonControl1.Size = new System.Drawing.Size(1107, 148);
            this.ribbonControl1.StatusBar = this.ribbonStatusBar1;
            this.ribbonControl1.Toolbar.ItemLinks.Add(this.barButtonItem5);
            this.ribbonControl1.Toolbar.ItemLinks.Add(this.barButtonItem6);
            this.ribbonControl1.Toolbar.ItemLinks.Add(this.barButtonItem7);
            this.ribbonControl1.Toolbar.ItemLinks.Add(this.barButtonItem9);
            this.ribbonControl1.Toolbar.ItemLinks.Add(this.barButtonItem8);
            this.ribbonControl1.ToolbarLocation = DevExpress.XtraBars.Ribbon.RibbonQuickAccessToolbarLocation.Above;
            this.ribbonControl1.TransparentEditors = true;
            this.ribbonControl1.ApplicationButtonDoubleClick += new System.EventHandler(this.ribbonControl1_ApplicationButtonDoubleClick);
            // 
            // pmAppMain
            // 
            this.pmAppMain.ItemLinks.Add(this.idNew);
            this.pmAppMain.ItemLinks.Add(this.iOpen);
            this.pmAppMain.ItemLinks.Add(this.sbiSave, true);
            this.pmAppMain.ItemLinks.Add(this.iPrint);
            this.pmAppMain.ItemLinks.Add(this.iClose, true);
            this.pmAppMain.ItemLinks.Add(this.iExit);
            this.pmAppMain.Name = "pmAppMain";
            this.pmAppMain.Ribbon = this.ribbonControl1;
            this.pmAppMain.ShowRightPane = true;
            // 
            // idNew
            // 
            this.idNew.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.idNew.Caption = "新建";
            this.idNew.CategoryGuid = new System.Guid("4b511317-d784-42ba-b4ed-0d2a746d6c1f");
            this.idNew.Description = "Creates a new, blank file.";
            this.idNew.DropDownControl = this.pmNew;
            this.idNew.Hint = "Creates a new, blank file";
            this.idNew.Id = 0;
            this.idNew.LargeImageIndex = 31;
            this.idNew.Name = "idNew";
            this.idNew.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.idNew_ItemClick);
            // 
            // pmNew
            // 
            this.pmNew.ItemLinks.Add(this.iNew);
            this.pmNew.ItemLinks.Add(this.iTemplate);
            this.pmNew.Name = "pmNew";
            this.pmNew.Ribbon = this.ribbonControl1;
            // 
            // iNew
            // 
            this.iNew.Caption = "&New";
            this.iNew.CategoryGuid = new System.Guid("4b511317-d784-42ba-b4ed-0d2a746d6c1f");
            this.iNew.Description = "Creates a new, blank file.";
            this.iNew.Hint = "Creates a new, blank file";
            this.iNew.Id = 0;
            this.iNew.ImageIndex = 6;
            this.iNew.LargeImageIndex = 0;
            this.iNew.Name = "iNew";
            this.iNew.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.idNew_ItemClick);
            // 
            // iTemplate
            // 
            this.iTemplate.Caption = "Template...";
            this.iTemplate.CategoryGuid = new System.Guid("4b511317-d784-42ba-b4ed-0d2a746d6c1f");
            this.iTemplate.Description = "Creates a new template";
            this.iTemplate.Enabled = false;
            this.iTemplate.Hint = "Creates a new template";
            this.iTemplate.Id = 1;
            this.iTemplate.ImageIndex = 6;
            this.iTemplate.Name = "iTemplate";
            // 
            // iOpen
            // 
            this.iOpen.Caption = "打开...";
            this.iOpen.CategoryGuid = new System.Guid("4b511317-d784-42ba-b4ed-0d2a746d6c1f");
            this.iOpen.Description = "Opens a file.";
            this.iOpen.Hint = "Open a file";
            this.iOpen.Id = 1;
            this.iOpen.ImageIndex = 7;
            this.iOpen.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O));
            this.iOpen.Name = "iOpen";
            this.iOpen.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
            this.iOpen.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iOpen_ItemClick);
            // 
            // sbiSave
            // 
            this.sbiSave.Caption = "保存";
            this.sbiSave.CategoryGuid = new System.Guid("4b511317-d784-42ba-b4ed-0d2a746d6c1f");
            this.sbiSave.Description = "Saves the active document";
            this.sbiSave.Hint = "Saves the active document";
            this.sbiSave.Id = 0;
            this.sbiSave.ImageIndex = 21;
            this.sbiSave.LargeImageIndex = 32;
            this.sbiSave.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.iSave),
            new DevExpress.XtraBars.LinkPersistInfo(this.iSaveAs)});
            this.sbiSave.Name = "sbiSave";
            // 
            // iSave
            // 
            this.iSave.Caption = "保存";
            this.iSave.CategoryGuid = new System.Guid("4b511317-d784-42ba-b4ed-0d2a746d6c1f");
            this.iSave.Description = "Saves the active document with its current file name.";
            this.iSave.Hint = "Saves the active document with its current file name";
            this.iSave.Id = 3;
            this.iSave.ImageIndex = 10;
            this.iSave.LargeImageIndex = 7;
            this.iSave.Name = "iSave";
            this.iSave.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            this.iSave.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iSave_ItemClick);
            // 
            // iSaveAs
            // 
            this.iSaveAs.Caption = "保存为...";
            this.iSaveAs.CategoryGuid = new System.Guid("4b511317-d784-42ba-b4ed-0d2a746d6c1f");
            this.iSaveAs.Description = "Saves the active document with a different file name.";
            this.iSaveAs.Hint = "Saves the active document with a different file name";
            this.iSaveAs.Id = 4;
            this.iSaveAs.ImageIndex = 21;
            this.iSaveAs.LargeImageIndex = 2;
            this.iSaveAs.Name = "iSaveAs";
            this.iSaveAs.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iSaveAs_ItemClick);
            // 
            // iPrint
            // 
            this.iPrint.Caption = "打印";
            this.iPrint.CategoryGuid = new System.Guid("4b511317-d784-42ba-b4ed-0d2a746d6c1f");
            this.iPrint.Description = "Prints the active document.";
            this.iPrint.Hint = "Prints the active document";
            this.iPrint.Id = 5;
            this.iPrint.ImageIndex = 9;
            this.iPrint.LargeImageIndex = 6;
            this.iPrint.Name = "iPrint";
            this.iPrint.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
            this.iPrint.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iPrint_ItemClick);
            // 
            // iClose
            // 
            this.iClose.Caption = "关闭";
            this.iClose.CategoryGuid = new System.Guid("4b511317-d784-42ba-b4ed-0d2a746d6c1f");
            this.iClose.Description = "Closes the active document.";
            this.iClose.Hint = "Closes the active document";
            this.iClose.Id = 2;
            this.iClose.ImageIndex = 12;
            this.iClose.LargeImageIndex = 8;
            this.iClose.Name = "iClose";
            this.iClose.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)((DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
            this.iClose.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iClose_ItemClick);
            // 
            // iExit
            // 
            this.iExit.Caption = "退出系统";
            this.iExit.CategoryGuid = new System.Guid("4b511317-d784-42ba-b4ed-0d2a746d6c1f");
            this.iExit.Description = "Closes this program after prompting you to save unsaved document.";
            this.iExit.Hint = "Closes this program after prompting you to save unsaved document.";
            this.iExit.Id = 6;
            this.iExit.ImageIndex = 22;
            this.iExit.LargeImageIndex = 34;
            this.iExit.Name = "iExit";
            this.iExit.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iExit_ItemClick);
            // 
            // imageCollection2
            // 
            this.imageCollection2.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imageCollection2.ImageStream")));
            this.imageCollection2.Images.SetKeyName(0, "add.png");
            this.imageCollection2.Images.SetKeyName(1, "AddData.png");
            this.imageCollection2.Images.SetKeyName(2, "Map_Full_Extent.PNG");
            this.imageCollection2.Images.SetKeyName(3, "Map_Zoom_In.PNG");
            this.imageCollection2.Images.SetKeyName(4, "Map_Zoom_Out.PNG");
            this.imageCollection2.Images.SetKeyName(5, "Pointer_Arrow.png");
            this.imageCollection2.Images.SetKeyName(6, "Map_Pan.png");
            // 
            // iReplace
            // 
            this.iReplace.Id = 247;
            this.iReplace.Name = "iReplace";
            // 
            // iFind
            // 
            this.iFind.Id = 252;
            this.iFind.Name = "iFind";
            // 
            // iFontColor
            // 
            this.iFontColor.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.iFontColor.Caption = "字体颜色";
            this.iFontColor.CategoryGuid = new System.Guid("d3052f28-4b3e-4bae-b581-b3bb1c432258");
            this.iFontColor.Description = "Formats the selected text with the color you click.";
            this.iFontColor.Hint = "Font Color";
            this.iFontColor.Id = 30;
            this.iFontColor.ImageIndex = 5;
            this.iFontColor.Name = "iFontColor";
            // 
            // siPosition
            // 
            this.siPosition.CategoryGuid = new System.Guid("77795bb7-9bc5-4dd2-a297-cc758682e23d");
            this.siPosition.Id = 0;
            this.siPosition.ImageIndex = 30;
            this.siPosition.Name = "siPosition";
            // 
            // siModified
            // 
            this.siModified.CategoryGuid = new System.Guid("77795bb7-9bc5-4dd2-a297-cc758682e23d");
            this.siModified.Id = 1;
            this.siModified.Name = "siModified";
            // 
            // siDocName
            // 
            this.siDocName.CategoryGuid = new System.Guid("77795bb7-9bc5-4dd2-a297-cc758682e23d");
            this.siDocName.Id = 2;
            this.siDocName.Name = "siDocName";
            this.siDocName.TextAlignment = System.Drawing.StringAlignment.Near;
            this.siDocName.Width = 20;
            // 
            // sbiPaste
            // 
            this.sbiPaste.Caption = "粘贴";
            this.sbiPaste.CategoryGuid = new System.Guid("7c2486e1-92ea-4293-ad55-b819f61ff7f1");
            this.sbiPaste.Description = "Inserts the contents of the Clipboard at the insertion point";
            this.sbiPaste.Hint = "Inserts the contents of the Clipboard at the insertion point";
            this.sbiPaste.Id = 1;
            this.sbiPaste.ImageIndex = 8;
            this.sbiPaste.LargeImageIndex = 3;
            this.sbiPaste.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.iPaste),
            new DevExpress.XtraBars.LinkPersistInfo(this.iPasteSpecial)});
            this.sbiPaste.Name = "sbiPaste";
            // 
            // iPasteSpecial
            // 
            this.iPasteSpecial.Caption = "Paste &Special...";
            this.iPasteSpecial.CategoryGuid = new System.Guid("7c2486e1-92ea-4293-ad55-b819f61ff7f1");
            this.iPasteSpecial.Description = "Opens the Paste Special dialog";
            this.iPasteSpecial.Enabled = false;
            this.iPasteSpecial.Hint = "Opens the Paste Special dialog";
            this.iPasteSpecial.Id = 3;
            this.iPasteSpecial.ImageIndex = 8;
            this.iPasteSpecial.Name = "iPasteSpecial";
            // 
            // sbiFind
            // 
            this.sbiFind.Caption = "Find";
            this.sbiFind.CategoryGuid = new System.Guid("7c2486e1-92ea-4293-ad55-b819f61ff7f1");
            this.sbiFind.Description = "Searches for the specified text";
            this.sbiFind.Hint = "Searches for the specified text";
            this.sbiFind.Id = 2;
            this.sbiFind.ImageIndex = 3;
            this.sbiFind.LargeImageIndex = 4;
            this.sbiFind.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.iFind),
            new DevExpress.XtraBars.LinkPersistInfo(this.iReplace)});
            this.sbiFind.Name = "sbiFind";
            this.sbiFind.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)(((DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText)
                        | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
            // 
            // iLargeUndo
            // 
            this.iLargeUndo.Id = 254;
            this.iLargeUndo.Name = "iLargeUndo";
            // 
            // iPaintStyle
            // 
            this.iPaintStyle.Caption = "Paint style";
            this.iPaintStyle.Description = "Select a paint scheme";
            this.iPaintStyle.Hint = "Select a paint scheme";
            this.iPaintStyle.Id = 7;
            this.iPaintStyle.ImageIndex = 26;
            this.iPaintStyle.Name = "iPaintStyle";
            this.iPaintStyle.Popup += new System.EventHandler(this.iPaintStyle_Popup);
            // 
            // rgbiSkins
            // 
            this.rgbiSkins.Caption = "Skins";
            // 
            // rgbiSkins
            // 
            this.rgbiSkins.Gallery.AllowHoverImages = true;
            this.rgbiSkins.Gallery.Appearance.ItemCaption.Options.UseFont = true;
            this.rgbiSkins.Gallery.Appearance.ItemCaption.Options.UseTextOptions = true;
            this.rgbiSkins.Gallery.Appearance.ItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.rgbiSkins.Gallery.ColumnCount = 4;
            this.rgbiSkins.Gallery.FixedHoverImageSize = false;
            galleryItemGroup1.Caption = "Main Skins";
            galleryItemGroup2.Caption = "Office Skins";
            galleryItemGroup3.Caption = "Group1";
            this.rgbiSkins.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup1,
            galleryItemGroup2,
            galleryItemGroup3});
            this.rgbiSkins.Gallery.ImageSize = new System.Drawing.Size(32, 17);
            this.rgbiSkins.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Top;
            this.rgbiSkins.Gallery.RowCount = 4;
            this.rgbiSkins.Gallery.InitDropDownGallery += new DevExpress.XtraBars.Ribbon.InplaceGalleryEventHandler(this.rgbiSkins_Gallery_InitDropDownGallery);
            this.rgbiSkins.Gallery.ItemClick += new DevExpress.XtraBars.Ribbon.GalleryItemClickEventHandler(this.rgbiSkins_Gallery_ItemClick);
            this.rgbiSkins.Id = 13;
            this.rgbiSkins.Name = "rgbiSkins";
            // 
            // barButtonItem1
            // 
            this.barButtonItem1.Caption = "barBut";
            this.barButtonItem1.Id = 116;
            this.barButtonItem1.ImageIndex = 39;
            this.barButtonItem1.LargeImageIndex = 10;
            this.barButtonItem1.Name = "barButtonItem1";
            // 
            // barButtonItem2
            // 
            this.barButtonItem2.Caption = "barButtonItem2";
            this.barButtonItem2.Id = 117;
            this.barButtonItem2.ImageIndex = 33;
            this.barButtonItem2.LargeImageIndex = 11;
            this.barButtonItem2.Name = "barButtonItem2";
            // 
            // barButtonItem3
            // 
            this.barButtonItem3.Caption = "barButtonItem3";
            this.barButtonItem3.Id = 118;
            this.barButtonItem3.LargeImageIndex = 14;
            this.barButtonItem3.Name = "barButtonItem3";
            // 
            // barButtonItem4
            // 
            this.barButtonItem4.Caption = "barButtonItem4";
            this.barButtonItem4.Id = 119;
            this.barButtonItem4.Name = "barButtonItem4";
            // 
            // barButtonItem_Select
            // 
            this.barButtonItem_Select.Caption = "取消";
            this.barButtonItem_Select.Id = 123;
            this.barButtonItem_Select.LargeImageIndex = 20;
            this.barButtonItem_Select.Name = "barButtonItem_Select";
            this.barButtonItem_Select.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_Select_ItemClick);
            // 
            // barButtonItem_ZoomIn
            // 
            this.barButtonItem_ZoomIn.Caption = "放大";
            this.barButtonItem_ZoomIn.Id = 124;
            this.barButtonItem_ZoomIn.LargeImageIndex = 16;
            this.barButtonItem_ZoomIn.Name = "barButtonItem_ZoomIn";
            this.barButtonItem_ZoomIn.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_ZoomIn_ItemClick);
            // 
            // barButtonItem_ZoomOut
            // 
            this.barButtonItem_ZoomOut.Caption = "缩小";
            this.barButtonItem_ZoomOut.Id = 125;
            this.barButtonItem_ZoomOut.LargeImageIndex = 17;
            this.barButtonItem_ZoomOut.Name = "barButtonItem_ZoomOut";
            this.barButtonItem_ZoomOut.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_ZoomOut_ItemClick);
            // 
            // barButtonItem_Pan
            // 
            this.barButtonItem_Pan.Caption = "平移";
            this.barButtonItem_Pan.Id = 126;
            this.barButtonItem_Pan.ImageIndex = 32;
            this.barButtonItem_Pan.LargeImageIndex = 15;
            this.barButtonItem_Pan.Name = "barButtonItem_Pan";
            this.barButtonItem_Pan.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_Pan_ItemClick);
            // 
            // barButtonItem_ProView
            // 
            this.barButtonItem_ProView.Caption = "前视图";
            this.barButtonItem_ProView.Id = 127;
            this.barButtonItem_ProView.LargeImageIndex = 18;
            this.barButtonItem_ProView.Name = "barButtonItem_ProView";
            this.barButtonItem_ProView.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_ProView_ItemClick);
            // 
            // barButtonItem_NextView
            // 
            this.barButtonItem_NextView.Caption = "后视图";
            this.barButtonItem_NextView.Id = 128;
            this.barButtonItem_NextView.LargeImageIndex = 27;
            this.barButtonItem_NextView.Name = "barButtonItem_NextView";
            this.barButtonItem_NextView.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_NextView_ItemClick);
            // 
            // barButtonItem_FullView
            // 
            this.barButtonItem_FullView.Caption = "全图";
            this.barButtonItem_FullView.Id = 129;
            this.barButtonItem_FullView.LargeImageIndex = 13;
            this.barButtonItem_FullView.Name = "barButtonItem_FullView";
            this.barButtonItem_FullView.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_FullView_ItemClick);
            // 
            // barButtonItem_Identify
            // 
            this.barButtonItem_Identify.Caption = "识别";
            this.barButtonItem_Identify.Id = 130;
            this.barButtonItem_Identify.LargeImageIndex = 24;
            this.barButtonItem_Identify.Name = "barButtonItem_Identify";
            this.barButtonItem_Identify.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_Identify_ItemClick);
            // 
            // barButtonItem_Attribute
            // 
            this.barButtonItem_Attribute.Caption = "属性";
            this.barButtonItem_Attribute.Id = 131;
            this.barButtonItem_Attribute.LargeImageIndex = 14;
            this.barButtonItem_Attribute.Name = "barButtonItem_Attribute";
            this.barButtonItem_Attribute.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_Attribute_ItemClick);
            // 
            // barButtonItem_Find
            // 
            this.barButtonItem_Find.Caption = "查找";
            this.barButtonItem_Find.Id = 132;
            this.barButtonItem_Find.LargeImageIndex = 30;
            this.barButtonItem_Find.Name = "barButtonItem_Find";
            this.barButtonItem_Find.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_Find_ItemClick);
            // 
            // barEditItem_layer
            // 
            this.barEditItem_layer.Caption = "图层";
            this.barEditItem_layer.Edit = this.repositoryItemComboBox3;
            this.barEditItem_layer.Id = 158;
            this.barEditItem_layer.Name = "barEditItem_layer";
            this.barEditItem_layer.Width = 120;
            this.barEditItem_layer.EditValueChanged += new System.EventHandler(this.barEditItem_layer_EditValueChanged);
            // 
            // repositoryItemComboBox3
            // 
            this.repositoryItemComboBox3.AutoHeight = false;
            this.repositoryItemComboBox3.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemComboBox3.Name = "repositoryItemComboBox3";
            this.repositoryItemComboBox3.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.repositoryItemComboBox3.UseParentBackground = true;
            // 
            // barSubItem_AddGeoData
            // 
            this.barSubItem_AddGeoData.Caption = "加载地理数据";
            this.barSubItem_AddGeoData.Id = 166;
            this.barSubItem_AddGeoData.ImageIndex = 1;
            this.barSubItem_AddGeoData.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_AddImageData),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_AddVectorData)});
            this.barSubItem_AddGeoData.Name = "barSubItem_AddGeoData";
            // 
            // barButtonItem_AddImageData
            // 
            this.barButtonItem_AddImageData.Caption = "影像数据";
            this.barButtonItem_AddImageData.Id = 168;
            this.barButtonItem_AddImageData.Name = "barButtonItem_AddImageData";
            this.barButtonItem_AddImageData.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_AddImageData_ItemClick);
            // 
            // barButtonItem_AddVectorData
            // 
            this.barButtonItem_AddVectorData.Caption = "矢量数据";
            this.barButtonItem_AddVectorData.Id = 167;
            this.barButtonItem_AddVectorData.Name = "barButtonItem_AddVectorData";
            this.barButtonItem_AddVectorData.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_AddVectorData_ItemClick);
            // 
            // barButtonItem_DrawingToolBox
            // 
            this.barButtonItem_DrawingToolBox.Caption = "标绘工具";
            this.barButtonItem_DrawingToolBox.Id = 196;
            this.barButtonItem_DrawingToolBox.LargeImageIndex = 31;
            this.barButtonItem_DrawingToolBox.Name = "barButtonItem_DrawingToolBox";
            this.barButtonItem_DrawingToolBox.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_DrawingToolBox_ItemClick);
            // 
            // barButtonItem_ZoomActualSize
            // 
            this.barButtonItem_ZoomActualSize.Caption = "1:1";
            this.barButtonItem_ZoomActualSize.Id = 213;
            this.barButtonItem_ZoomActualSize.LargeImageIndex = 33;
            this.barButtonItem_ZoomActualSize.Name = "barButtonItem_ZoomActualSize";
            this.barButtonItem_ZoomActualSize.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_SrcView_ItemClick);
            // 
            // barEditItem3
            // 
            this.barEditItem3.Caption = "barEditItem3";
            this.barEditItem3.Edit = this.repositoryItemTrackBar1;
            this.barEditItem3.Id = 219;
            this.barEditItem3.Name = "barEditItem3";
            // 
            // repositoryItemTrackBar1
            // 
            this.repositoryItemTrackBar1.Name = "repositoryItemTrackBar1";
            this.repositoryItemTrackBar1.UseParentBackground = true;
            // 
            // barButtonItem_Refresh
            // 
            this.barButtonItem_Refresh.Caption = "刷新";
            this.barButtonItem_Refresh.Id = 220;
            this.barButtonItem_Refresh.LargeImageIndex = 22;
            this.barButtonItem_Refresh.Name = "barButtonItem_Refresh";
            this.barButtonItem_Refresh.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_Refresh_ItemClick);
            // 
            // barButtonItem_ImageAnalyseToolbox
            // 
            this.barButtonItem_ImageAnalyseToolbox.Caption = "影像分析工具";
            this.barButtonItem_ImageAnalyseToolbox.Id = 221;
            this.barButtonItem_ImageAnalyseToolbox.LargeImageIndex = 32;
            this.barButtonItem_ImageAnalyseToolbox.Name = "barButtonItem_ImageAnalyseToolbox";
            this.barButtonItem_ImageAnalyseToolbox.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_ImageAnalyseToolbox_ItemClick);
            // 
            // barListItem1
            // 
            this.barListItem1.Caption = "barListItem1";
            this.barListItem1.Id = 222;
            this.barListItem1.Name = "barListItem1";
            // 
            // barStaticItem1
            // 
            this.barStaticItem1.Caption = "barStaticItem1";
            this.barStaticItem1.Id = 224;
            this.barStaticItem1.Name = "barStaticItem1";
            this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // barStaticItem_MapCoord
            // 
            this.barStaticItem_MapCoord.Caption = "地理坐标:";
            this.barStaticItem_MapCoord.Id = 225;
            this.barStaticItem_MapCoord.Name = "barStaticItem_MapCoord";
            this.barStaticItem_MapCoord.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // barStaticItem_ScreenCoord
            // 
            this.barStaticItem_ScreenCoord.Caption = "屏幕坐标:";
            this.barStaticItem_ScreenCoord.Id = 226;
            this.barStaticItem_ScreenCoord.Name = "barStaticItem_ScreenCoord";
            this.barStaticItem_ScreenCoord.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // barStaticItem_Reference
            // 
            this.barStaticItem_Reference.Caption = "坐标系:";
            this.barStaticItem_Reference.Id = 227;
            this.barStaticItem_Reference.Name = "barStaticItem_Reference";
            this.barStaticItem_Reference.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // barStaticItem_Unit
            // 
            this.barStaticItem_Unit.Caption = "单位:";
            this.barStaticItem_Unit.Id = 228;
            this.barStaticItem_Unit.Name = "barStaticItem_Unit";
            this.barStaticItem_Unit.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // barButtonItem5
            // 
            this.barButtonItem5.Caption = "barButtonItem5";
            this.barButtonItem5.Id = 229;
            this.barButtonItem5.ImageIndex = 5;
            this.barButtonItem5.Name = "barButtonItem5";
            // 
            // barButtonItem6
            // 
            this.barButtonItem6.Caption = "barButtonItem6";
            this.barButtonItem6.Id = 230;
            this.barButtonItem6.ImageIndex = 3;
            this.barButtonItem6.Name = "barButtonItem6";
            // 
            // barButtonItem7
            // 
            this.barButtonItem7.Caption = "barButtonItem7";
            this.barButtonItem7.Id = 231;
            this.barButtonItem7.ImageIndex = 4;
            this.barButtonItem7.Name = "barButtonItem7";
            // 
            // barButtonItem8
            // 
            this.barButtonItem8.Caption = "barButtonItem8";
            this.barButtonItem8.Id = 232;
            this.barButtonItem8.ImageIndex = 2;
            this.barButtonItem8.Name = "barButtonItem8";
            // 
            // barButtonItem9
            // 
            this.barButtonItem9.Caption = "barButtonItem9";
            this.barButtonItem9.Id = 233;
            this.barButtonItem9.ImageIndex = 6;
            this.barButtonItem9.Name = "barButtonItem9";
            // 
            // openTemplate
            // 
            this.openTemplate.Caption = "打开模板";
            this.openTemplate.Id = 234;
            this.openTemplate.ImageIndex = 1;
            this.openTemplate.LargeImageIndex = 3;
            this.openTemplate.Name = "openTemplate";
            this.openTemplate.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.openTemplate_ItemClick);
            // 
            // pageZoomIn
            // 
            this.pageZoomIn.Caption = "放大";
            this.pageZoomIn.Id = 235;
            this.pageZoomIn.ImageIndex = 3;
            this.pageZoomIn.LargeImageIndex = 16;
            this.pageZoomIn.Name = "pageZoomIn";
            this.pageZoomIn.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.pageZoomIn_ItemClick);
            // 
            // pageZoomOut
            // 
            this.pageZoomOut.Caption = "缩小";
            this.pageZoomOut.Id = 236;
            this.pageZoomOut.ImageIndex = 4;
            this.pageZoomOut.LargeImageIndex = 16;
            this.pageZoomOut.Name = "pageZoomOut";
            this.pageZoomOut.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.pageZoomOut_ItemClick);
            // 
            // pagePan
            // 
            this.pagePan.Caption = "漫游";
            this.pagePan.Id = 237;
            this.pagePan.ImageIndex = 6;
            this.pagePan.LargeImageIndex = 15;
            this.pagePan.Name = "pagePan";
            this.pagePan.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.pagePan_ItemClick);
            // 
            // pagePreView
            // 
            this.pagePreView.Caption = "前视图";
            this.pagePreView.Id = 238;
            this.pagePreView.LargeImageIndex = 18;
            this.pagePreView.Name = "pagePreView";
            this.pagePreView.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.pagePreView_ItemClick);
            // 
            // pageAfterView
            // 
            this.pageAfterView.Caption = "后视图";
            this.pageAfterView.Id = 239;
            this.pageAfterView.LargeImageIndex = 27;
            this.pageAfterView.Name = "pageAfterView";
            this.pageAfterView.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.pageAfterView_ItemClick);
            // 
            // commonPoint
            // 
            this.commonPoint.Caption = "点";
            this.commonPoint.Id = 240;
            this.commonPoint.ImageIndex = 0;
            this.commonPoint.LargeImageIndex = 7;
            this.commonPoint.Name = "commonPoint";
            this.commonPoint.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.commonPoint_ItemClick);
            // 
            // commonLine
            // 
            this.commonLine.Caption = "线";
            this.commonLine.Id = 241;
            this.commonLine.ImageIndex = 1;
            this.commonLine.LargeImageIndex = 6;
            this.commonLine.Name = "commonLine";
            this.commonLine.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.commonLine_ItemClick);
            // 
            // commonPolygon
            // 
            this.commonPolygon.Caption = "面";
            this.commonPolygon.Id = 242;
            this.commonPolygon.ImageIndex = 2;
            this.commonPolygon.LargeImageIndex = 5;
            this.commonPolygon.Name = "commonPolygon";
            this.commonPolygon.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.commonPolygon_ItemClick);
            // 
            // selectMarkTool
            // 
            this.selectMarkTool.Caption = "选择";
            this.selectMarkTool.Id = 243;
            this.selectMarkTool.LargeImageIndex = 20;
            this.selectMarkTool.Name = "selectMarkTool";
            this.selectMarkTool.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.selectMarkTool_ItemClick);
            // 
            // textMark
            // 
            this.textMark.Caption = "标注";
            this.textMark.Id = 244;
            this.textMark.LargeImageIndex = 26;
            this.textMark.Name = "textMark";
            this.textMark.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.textMark_ItemClick);
            // 
            // pageFullExtent
            // 
            this.pageFullExtent.Caption = "全图";
            this.pageFullExtent.Id = 245;
            this.pageFullExtent.LargeImageIndex = 13;
            this.pageFullExtent.Name = "pageFullExtent";
            this.pageFullExtent.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.pageFullExtent_ItemClick);
            // 
            // pageRealSize
            // 
            this.pageRealSize.Caption = "1:1";
            this.pageRealSize.Id = 246;
            this.pageRealSize.LargeImageIndex = 33;
            this.pageRealSize.Name = "pageRealSize";
            this.pageRealSize.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.pageRealSize_ItemClick);
            // 
            // imageCollection1
            // 
            this.imageCollection1.ImageSize = new System.Drawing.Size(32, 32);
            this.imageCollection1.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imageCollection1.ImageStream")));
            this.imageCollection1.Images.SetKeyName(0, "2008103113025298.png");
            this.imageCollection1.Images.SetKeyName(1, "2008103113025332.png");
            this.imageCollection1.Images.SetKeyName(2, "add.png");
            this.imageCollection1.Images.SetKeyName(3, "AddData.png");
            this.imageCollection1.Images.SetKeyName(4, "Clear_Selection.png");
            this.imageCollection1.Images.SetKeyName(5, "draw_polygon.png");
            this.imageCollection1.Images.SetKeyName(6, "Drawline.png");
            this.imageCollection1.Images.SetKeyName(7, "drawpoint.png");
            this.imageCollection1.Images.SetKeyName(8, "drawpoly.png");
            this.imageCollection1.Images.SetKeyName(9, "drawpoly副本.bmp");
            this.imageCollection1.Images.SetKeyName(10, "drawrect.png");
            this.imageCollection1.Images.SetKeyName(11, "freeline.png");
            this.imageCollection1.Images.SetKeyName(12, "freepoly.png");
            this.imageCollection1.Images.SetKeyName(13, "Map_Full_Extent.PNG");
            this.imageCollection1.Images.SetKeyName(14, "Map_Identify.png");
            this.imageCollection1.Images.SetKeyName(15, "Map_Pan.png");
            this.imageCollection1.Images.SetKeyName(16, "Map_Zoom_In.PNG");
            this.imageCollection1.Images.SetKeyName(17, "Map_Zoom_Out.PNG");
            this.imageCollection1.Images.SetKeyName(18, "Map_Zoom_To_Last_Extent_Back.png");
            this.imageCollection1.Images.SetKeyName(19, "Open_Doc.png");
            this.imageCollection1.Images.SetKeyName(20, "Pointer_Arrow.png");
            this.imageCollection1.Images.SetKeyName(21, "Pointer_Arrow副本.bmp");
            this.imageCollection1.Images.SetKeyName(22, "refresh2.png");
            this.imageCollection1.Images.SetKeyName(23, "Search.png");
            this.imageCollection1.Images.SetKeyName(24, "Select_Features.png");
            this.imageCollection1.Images.SetKeyName(25, "Select_Features副本.bmp");
            this.imageCollection1.Images.SetKeyName(26, "text-font.png");
            this.imageCollection1.Images.SetKeyName(27, "Zoom_To_Last_Extent_Forward.png");
            this.imageCollection1.Images.SetKeyName(28, "标绘工具.png");
            this.imageCollection1.Images.SetKeyName(29, "标绘工具副本.bmp");
            this.imageCollection1.Images.SetKeyName(30, "影像分析工具.png");
            this.imageCollection1.Images.SetKeyName(31, "1.png");
            this.imageCollection1.Images.SetKeyName(32, "2.png");
            this.imageCollection1.Images.SetKeyName(33, "1比1.PNG");
            this.imageCollection1.Images.SetKeyName(34, "3.png");
            // 
            // ribbonPage1
            // 
            this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonPageGroup1,
            this.ribbonPageGroup2,
            this.ribbonPageGroup3,
            this.ribbonPageGroup10});
            this.ribbonPage1.Name = "ribbonPage1";
            this.ribbonPage1.Text = "文件&视图";
            // 
            // ribbonPageGroup1
            // 
            this.ribbonPageGroup1.ImageIndex = 1;
            this.ribbonPageGroup1.ItemLinks.Add(this.idNew);
            this.ribbonPageGroup1.ItemLinks.Add(this.iOpen, true);
            this.ribbonPageGroup1.ItemLinks.Add(this.iClose);
            this.ribbonPageGroup1.ItemLinks.Add(this.iPrint);
            this.ribbonPageGroup1.ItemLinks.Add(this.sbiSave, true);
            this.ribbonPageGroup1.Name = "ribbonPageGroup1";
            toolTipTitleItem1.Text = "Open File Dialog";
            toolTipItem1.Appearance.Options.UseImage = true;
            toolTipItem1.Text = "Show the Open file dialog box";
            toolTipTitleItem2.Appearance.Options.UseImage = true;
            toolTipTitleItem2.Text = "For more information see help";
            superToolTip1.Items.Add(toolTipTitleItem1);
            superToolTip1.Items.Add(toolTipItem1);
            superToolTip1.Items.Add(toolTipSeparatorItem1);
            superToolTip1.Items.Add(toolTipTitleItem2);
            this.ribbonPageGroup1.SuperTip = superToolTip1;
            this.ribbonPageGroup1.Text = "文件";
            this.ribbonPageGroup1.CaptionButtonClick += new DevExpress.XtraBars.Ribbon.RibbonPageGroupEventHandler(this.ribbonPageGroup1_CaptionButtonClick);
            // 
            // ribbonPageGroup2
            // 
            this.ribbonPageGroup2.ItemLinks.Add(this.barEditItemLayers);
            this.ribbonPageGroup2.ItemLinks.Add(this.barSubItem2);
            this.ribbonPageGroup2.Name = "ribbonPageGroup2";
            // 
            // ribbonPageGroup3
            // 
            this.ribbonPageGroup3.ImageIndex = 26;
            this.ribbonPageGroup3.ItemLinks.Add(this.barButtonItem_Select);
            this.ribbonPageGroup3.ItemLinks.Add(this.barButtonItem_ZoomIn);
            this.ribbonPageGroup3.ItemLinks.Add(this.barButtonItem_ZoomOut);
            this.ribbonPageGroup3.ItemLinks.Add(this.barButtonItem_Pan);
            this.ribbonPageGroup3.ItemLinks.Add(this.barButtonItem_ProView);
            this.ribbonPageGroup3.ItemLinks.Add(this.barButtonItem_NextView);
            this.ribbonPageGroup3.ItemLinks.Add(this.barButtonItem_FullView);
            this.ribbonPageGroup3.ItemLinks.Add(this.barButtonItem_ZoomActualSize);
            this.ribbonPageGroup3.ItemLinks.Add(this.barButtonItem_Refresh);
            this.ribbonPageGroup3.ItemLinks.Add(this.barButtonItem_Attribute);
            this.ribbonPageGroup3.Name = "ribbonPageGroup3";
            this.ribbonPageGroup3.ShowCaptionButton = false;
            this.ribbonPageGroup3.Text = "浏览";
            // 
            // ribbonPageGroup10
            // 
            this.ribbonPageGroup10.ItemLinks.Add(this.rgbiSkins);
            this.ribbonPageGroup10.Name = "ribbonPageGroup10";
            this.ribbonPageGroup10.ShowCaptionButton = false;
            this.ribbonPageGroup10.Text = "界面皮肤";
            // 
            // ribbonPageLayoutPage
            // 
            this.ribbonPageLayoutPage.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonPageGroup7,
            this.pagelayoutButtons});
            this.ribbonPageLayoutPage.Name = "ribbonPageLayoutPage";
            this.ribbonPageLayoutPage.Text = "制图工具";
            this.ribbonPageLayoutPage.Visible = false;
            // 
            // ribbonPageGroup7
            // 
            this.ribbonPageGroup7.ItemLinks.Add(this.openTemplate);
            this.ribbonPageGroup7.Name = "ribbonPageGroup7";
            this.ribbonPageGroup7.Text = "模板管理";
            // 
            // pagelayoutButtons
            // 
            this.pagelayoutButtons.ItemLinks.Add(this.pageZoomIn);
            this.pagelayoutButtons.ItemLinks.Add(this.pageZoomOut);
            this.pagelayoutButtons.ItemLinks.Add(this.pagePan);
            this.pagelayoutButtons.ItemLinks.Add(this.pagePreView);
            this.pagelayoutButtons.ItemLinks.Add(this.pageAfterView);
            this.pagelayoutButtons.ItemLinks.Add(this.pageFullExtent);
            this.pagelayoutButtons.ItemLinks.Add(this.pageRealSize);
            this.pagelayoutButtons.Name = "pagelayoutButtons";
            this.pagelayoutButtons.Text = "页面浏览";
            // 
            // markToolPage
            // 
            this.markToolPage.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonPageGroup5});
            this.markToolPage.Name = "markToolPage";
            this.markToolPage.Text = "标绘";
            // 
            // ribbonPageGroup5
            // 
            this.ribbonPageGroup5.ItemLinks.Add(this.selectMarkTool);
            this.ribbonPageGroup5.ItemLinks.Add(this.commonPoint);
            this.ribbonPageGroup5.ItemLinks.Add(this.commonLine);
            this.ribbonPageGroup5.ItemLinks.Add(this.commonPolygon);
            this.ribbonPageGroup5.ItemLinks.Add(this.textMark);
            this.ribbonPageGroup5.Name = "ribbonPageGroup5";
            this.ribbonPageGroup5.Text = "基础标绘";
            // 
            // repositoryItemPictureEdit1
            // 
            this.repositoryItemPictureEdit1.AllowFocused = false;
            this.repositoryItemPictureEdit1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.repositoryItemPictureEdit1.Name = "repositoryItemPictureEdit1";
            this.repositoryItemPictureEdit1.UseParentBackground = true;
            // 
            // repositoryItemSpinEdit2
            // 
            this.repositoryItemSpinEdit2.AutoHeight = false;
            this.repositoryItemSpinEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.repositoryItemSpinEdit2.Name = "repositoryItemSpinEdit2";
            this.repositoryItemSpinEdit2.UseParentBackground = true;
            // 
            // repositoryItemButtonEdit1
            // 
            this.repositoryItemButtonEdit1.AutoHeight = false;
            this.repositoryItemButtonEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.repositoryItemButtonEdit1.Name = "repositoryItemButtonEdit1";
            this.repositoryItemButtonEdit1.UseParentBackground = true;
            // 
            // repositoryItemComboBox1
            // 
            this.repositoryItemComboBox1.AutoHeight = false;
            this.repositoryItemComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemComboBox1.Name = "repositoryItemComboBox1";
            this.repositoryItemComboBox1.UseParentBackground = true;
            // 
            // repositoryItemComboBox2
            // 
            this.repositoryItemComboBox2.AutoHeight = false;
            this.repositoryItemComboBox2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemComboBox2.Name = "repositoryItemComboBox2";
            this.repositoryItemComboBox2.UseParentBackground = true;
            // 
            // repositoryItemImageEdit1
            // 
            this.repositoryItemImageEdit1.AutoHeight = false;
            this.repositoryItemImageEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemImageEdit1.Name = "repositoryItemImageEdit1";
            this.repositoryItemImageEdit1.UseParentBackground = true;
            // 
            // repositoryItemPictureEdit2
            // 
            this.repositoryItemPictureEdit2.Name = "repositoryItemPictureEdit2";
            this.repositoryItemPictureEdit2.UseParentBackground = true;
            // 
            // repositoryItemPictureEdit3
            // 
            this.repositoryItemPictureEdit3.Name = "repositoryItemPictureEdit3";
            this.repositoryItemPictureEdit3.UseParentBackground = true;
            // 
            // ribbonStatusBar1
            // 
            this.ribbonStatusBar1.ItemLinks.Add(this.siPosition);
            this.ribbonStatusBar1.ItemLinks.Add(this.siModified, true);
            this.ribbonStatusBar1.ItemLinks.Add(this.siDocName, true);
            this.ribbonStatusBar1.ItemLinks.Add(this.barStaticItem_Reference);
            this.ribbonStatusBar1.ItemLinks.Add(this.barStaticItem_Unit);
            this.ribbonStatusBar1.ItemLinks.Add(this.barStaticItem_ScreenCoord);
            this.ribbonStatusBar1.ItemLinks.Add(this.barStaticItem_MapCoord);
            this.ribbonStatusBar1.Location = new System.Drawing.Point(0, 614);
            this.ribbonStatusBar1.Name = "ribbonStatusBar1";
            this.ribbonStatusBar1.Ribbon = this.ribbonControl1;
            this.ribbonStatusBar1.Size = new System.Drawing.Size(1107, 26);
            // 
            // defaultLookAndFeel1
            // 
            this.defaultLookAndFeel1.LookAndFeel.SkinName = "Caramel";
            // 
            // xtraTabbedMdiManager1
            // 
            this.xtraTabbedMdiManager1.MdiParent = this;
            // 
            // pmMain
            // 
            this.pmMain.ItemLinks.Add(this.iCopy, true);
            this.pmMain.ItemLinks.Add(this.iCut);
            this.pmMain.ItemLinks.Add(this.iPaste);
            this.pmMain.ItemLinks.Add(this.iClear);
            this.pmMain.ItemLinks.Add(this.iFont, true);
            this.pmMain.MenuCaption = "Edit Menu";
            this.pmMain.Name = "pmMain";
            this.pmMain.Ribbon = this.ribbonControl1;
            this.pmMain.ShowCaption = true;
            // 
            // imageCollection3
            // 
            this.imageCollection3.ImageSize = new System.Drawing.Size(15, 15);
            this.imageCollection3.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imageCollection3.ImageStream")));
            this.imageCollection3.Images.SetKeyName(0, "1比1.PNG");
            this.imageCollection3.Images.SetKeyName(1, "Map_Zoom_In.PNG");
            this.imageCollection3.Images.SetKeyName(2, "Map_Zoom_Out.PNG");
            // 
            // dockManager1
            // 
            this.dockManager1.Form = this;
            this.dockManager1.HiddenPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
            this.dockPanel_Drawing});
            this.dockManager1.Images = this.imageCollection1;
            this.dockManager1.RootPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
            this.panelContainer1,
            this.dockPanel_ImageAnalyse});
            this.dockManager1.TopZIndexControls.AddRange(new string[] {
            "DevExpress.XtraBars.BarDockControl",
            "DevExpress.XtraBars.StandaloneBarDockControl",
            "System.Windows.Forms.StatusBar",
            "DevExpress.XtraBars.Ribbon.RibbonStatusBar",
            "DevExpress.XtraBars.Ribbon.RibbonControl"});
            // 
            // dockPanel_Drawing
            // 
            this.dockPanel_Drawing.Controls.Add(this.dockPanel5_Container);
            this.dockPanel_Drawing.Dock = DevExpress.XtraBars.Docking.DockingStyle.Float;
            this.dockPanel_Drawing.FloatLocation = new System.Drawing.Point(596, 131);
            this.dockPanel_Drawing.FloatSize = new System.Drawing.Size(167, 200);
            this.dockPanel_Drawing.ID = new System.Guid("651c0132-7d7a-4f2c-93a0-8b4b2be4d067");
            this.dockPanel_Drawing.Location = new System.Drawing.Point(-32768, -32768);
            this.dockPanel_Drawing.Name = "dockPanel_Drawing";
            this.dockPanel_Drawing.OriginalSize = new System.Drawing.Size(200, 200);
            this.dockPanel_Drawing.SavedIndex = 2;
            this.dockPanel_Drawing.Size = new System.Drawing.Size(167, 200);
            this.dockPanel_Drawing.Text = "标绘工具";
            this.dockPanel_Drawing.Visibility = DevExpress.XtraBars.Docking.DockVisibility.Hidden;
            // 
            // dockPanel5_Container
            // 
            this.dockPanel5_Container.Controls.Add(this.simpleButton_DrawLine);
            this.dockPanel5_Container.Controls.Add(this.simpleButton_Text);
            this.dockPanel5_Container.Controls.Add(this.simpleButton_DrawAny);
            this.dockPanel5_Container.Controls.Add(this.simpleButton_DrawCurve);
            this.dockPanel5_Container.Controls.Add(this.simpleButton_Rect);
            this.dockPanel5_Container.Controls.Add(this.simpleButton_DrawElement_Polygon);
            this.dockPanel5_Container.Controls.Add(this.simpleButton_DrawPoint);
            this.dockPanel5_Container.Controls.Add(this.simpleButton_SelectElement);
            this.dockPanel5_Container.Location = new System.Drawing.Point(3, 22);
            this.dockPanel5_Container.Name = "dockPanel5_Container";
            this.dockPanel5_Container.Size = new System.Drawing.Size(161, 175);
            this.dockPanel5_Container.TabIndex = 0;
            // 
            // simpleButton_DrawLine
            // 
            this.simpleButton_DrawLine.ImageIndex = 35;
            this.simpleButton_DrawLine.ImageList = this.imageCollection1;
            this.simpleButton_DrawLine.Location = new System.Drawing.Point(90, 3);
            this.simpleButton_DrawLine.Name = "simpleButton_DrawLine";
            this.simpleButton_DrawLine.Size = new System.Drawing.Size(34, 32);
            this.simpleButton_DrawLine.TabIndex = 7;
            this.simpleButton_DrawLine.Click += new System.EventHandler(this.simpleButton_DrawLine_Click);
            // 
            // simpleButton_Text
            // 
            this.simpleButton_Text.ImageIndex = 33;
            this.simpleButton_Text.ImageList = this.imageCollection1;
            this.simpleButton_Text.Location = new System.Drawing.Point(11, 88);
            this.simpleButton_Text.Name = "simpleButton_Text";
            this.simpleButton_Text.Size = new System.Drawing.Size(34, 32);
            this.simpleButton_Text.TabIndex = 6;
            this.simpleButton_Text.Text = "simpleButton9";
            this.simpleButton_Text.Click += new System.EventHandler(this.simpleButton_Text_Click);
            // 
            // simpleButton_DrawAny
            // 
            this.simpleButton_DrawAny.ImageList = this.imageCollection1;
            this.simpleButton_DrawAny.Location = new System.Drawing.Point(51, 88);
            this.simpleButton_DrawAny.Name = "simpleButton_DrawAny";
            this.simpleButton_DrawAny.Size = new System.Drawing.Size(34, 32);
            this.simpleButton_DrawAny.TabIndex = 5;
            this.simpleButton_DrawAny.Tag = "徒手绘制";
            this.simpleButton_DrawAny.Text = "simpleButton8";
            this.simpleButton_DrawAny.Click += new System.EventHandler(this.simpleButton_DrawAny_Click);
            // 
            // simpleButton_DrawCurve
            // 
            this.simpleButton_DrawCurve.ImageIndex = 39;
            this.simpleButton_DrawCurve.ImageList = this.imageCollection1;
            this.simpleButton_DrawCurve.Location = new System.Drawing.Point(51, 46);
            this.simpleButton_DrawCurve.Name = "simpleButton_DrawCurve";
            this.simpleButton_DrawCurve.Size = new System.Drawing.Size(34, 31);
            this.simpleButton_DrawCurve.TabIndex = 4;
            this.simpleButton_DrawCurve.Text = "simpleButton7";
            this.simpleButton_DrawCurve.Click += new System.EventHandler(this.simpleButton_DrawCurve_Click);
            // 
            // simpleButton_Rect
            // 
            this.simpleButton_Rect.ImageIndex = 38;
            this.simpleButton_Rect.ImageList = this.imageCollection1;
            this.simpleButton_Rect.Location = new System.Drawing.Point(90, 46);
            this.simpleButton_Rect.Name = "simpleButton_Rect";
            this.simpleButton_Rect.Size = new System.Drawing.Size(34, 31);
            this.simpleButton_Rect.TabIndex = 3;
            this.simpleButton_Rect.Text = "simpleButton6";
            this.simpleButton_Rect.Click += new System.EventHandler(this.simpleButton_Rect_Click);
            // 
            // simpleButton_DrawElement_Polygon
            // 
            this.simpleButton_DrawElement_Polygon.ImageIndex = 37;
            this.simpleButton_DrawElement_Polygon.ImageList = this.imageCollection1;
            this.simpleButton_DrawElement_Polygon.Location = new System.Drawing.Point(11, 46);
            this.simpleButton_DrawElement_Polygon.Name = "simpleButton_DrawElement_Polygon";
            this.simpleButton_DrawElement_Polygon.Size = new System.Drawing.Size(34, 31);
            this.simpleButton_DrawElement_Polygon.TabIndex = 2;
            this.simpleButton_DrawElement_Polygon.Click += new System.EventHandler(this.simpleButton_DrawElement_Polygon_Click);
            // 
            // simpleButton_DrawPoint
            // 
            this.simpleButton_DrawPoint.ImageIndex = 36;
            this.simpleButton_DrawPoint.ImageList = this.imageCollection1;
            this.simpleButton_DrawPoint.Location = new System.Drawing.Point(51, 3);
            this.simpleButton_DrawPoint.Name = "simpleButton_DrawPoint";
            this.simpleButton_DrawPoint.Size = new System.Drawing.Size(34, 32);
            this.simpleButton_DrawPoint.TabIndex = 1;
            this.simpleButton_DrawPoint.Click += new System.EventHandler(this.simpleButton_DrawPoint_Click);
            // 
            // simpleButton_SelectElement
            // 
            this.simpleButton_SelectElement.ImageIndex = 18;
            this.simpleButton_SelectElement.ImageList = this.imageCollection1;
            this.simpleButton_SelectElement.Location = new System.Drawing.Point(11, 3);
            this.simpleButton_SelectElement.Name = "simpleButton_SelectElement";
            this.simpleButton_SelectElement.Size = new System.Drawing.Size(34, 32);
            this.simpleButton_SelectElement.TabIndex = 0;
            this.simpleButton_SelectElement.Click += new System.EventHandler(this.simpleButton_SelectElement_Click);
            // 
            // panelContainer1
            // 
            this.panelContainer1.Controls.Add(this.dockPanel_Overview);
            this.panelContainer1.Controls.Add(this.dockPanel2);
            this.panelContainer1.Dock = DevExpress.XtraBars.Docking.DockingStyle.Left;
            this.panelContainer1.ID = new System.Guid("3c878de6-7a27-48bc-8e79-241c55e74b0d");
            this.panelContainer1.Location = new System.Drawing.Point(0, 148);
            this.panelContainer1.Name = "panelContainer1";
            this.panelContainer1.OriginalSize = new System.Drawing.Size(200, 200);
            this.panelContainer1.Size = new System.Drawing.Size(200, 466);
            this.panelContainer1.Text = "panelContainer1";
            // 
            // dockPanel_Overview
            // 
            this.dockPanel_Overview.Controls.Add(this.dockPanel3_Container);
            this.dockPanel_Overview.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
            this.dockPanel_Overview.ID = new System.Guid("0abce358-5cf4-4b53-98f8-2bf91a0e7127");
            this.dockPanel_Overview.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.dockPanel_Overview.Location = new System.Drawing.Point(0, 0);
            this.dockPanel_Overview.Name = "dockPanel_Overview";
            this.dockPanel_Overview.OriginalSize = new System.Drawing.Size(200, 159);
            this.dockPanel_Overview.Size = new System.Drawing.Size(200, 160);
            this.dockPanel_Overview.Text = "缩略图";
            // 
            // dockPanel3_Container
            // 
            this.dockPanel3_Container.Location = new System.Drawing.Point(3, 25);
            this.dockPanel3_Container.Name = "dockPanel3_Container";
            this.dockPanel3_Container.Size = new System.Drawing.Size(194, 132);
            this.dockPanel3_Container.TabIndex = 0;
            // 
            // dockPanel2
            // 
            this.dockPanel2.Controls.Add(this.dockPanel2_Container);
            this.dockPanel2.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
            this.dockPanel2.ID = new System.Guid("3ac20aec-2847-4832-9ca8-5a53a5113e15");
            this.dockPanel2.Location = new System.Drawing.Point(0, 160);
            this.dockPanel2.Name = "dockPanel2";
            this.dockPanel2.OriginalSize = new System.Drawing.Size(200, 304);
            this.dockPanel2.Size = new System.Drawing.Size(200, 306);
            this.dockPanel2.Text = "图层管理";
            // 
            // dockPanel2_Container
            // 
            this.dockPanel2_Container.Location = new System.Drawing.Point(3, 25);
            this.dockPanel2_Container.Name = "dockPanel2_Container";
            this.dockPanel2_Container.Size = new System.Drawing.Size(194, 278);
            this.dockPanel2_Container.TabIndex = 0;
            // 
            // dockPanel_ImageAnalyse
            // 
            this.dockPanel_ImageAnalyse.Controls.Add(this.dockPanel4_Container);
            this.dockPanel_ImageAnalyse.Dock = DevExpress.XtraBars.Docking.DockingStyle.Right;
            this.dockPanel_ImageAnalyse.FloatSize = new System.Drawing.Size(206, 285);
            this.dockPanel_ImageAnalyse.ID = new System.Guid("7d7e9922-daf6-4319-b838-ecd3fa40514f");
            this.dockPanel_ImageAnalyse.Location = new System.Drawing.Point(907, 148);
            this.dockPanel_ImageAnalyse.Name = "dockPanel_ImageAnalyse";
            this.dockPanel_ImageAnalyse.OriginalSize = new System.Drawing.Size(200, 200);
            this.dockPanel_ImageAnalyse.Size = new System.Drawing.Size(200, 466);
            this.dockPanel_ImageAnalyse.Text = "影像分析";
            // 
            // dockPanel4_Container
            // 
            this.dockPanel4_Container.Controls.Add(this.navBarControl1);
            this.dockPanel4_Container.Location = new System.Drawing.Point(3, 25);
            this.dockPanel4_Container.Name = "dockPanel4_Container";
            this.dockPanel4_Container.Size = new System.Drawing.Size(194, 438);
            this.dockPanel4_Container.TabIndex = 0;
            // 
            // navBarControl1
            // 
            this.navBarControl1.ActiveGroup = this.navBarGroup1;
            this.navBarControl1.ContentButtonHint = null;
            this.navBarControl1.Controls.Add(this.navBarGroupControlContainer1);
            this.navBarControl1.Controls.Add(this.navBarGroupControlContainer2);
            this.navBarControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.navBarControl1.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
            this.navBarGroup1,
            this.navBarGroup2});
            this.navBarControl1.Location = new System.Drawing.Point(0, 0);
            this.navBarControl1.Name = "navBarControl1";
            this.navBarControl1.OptionsNavPane.ExpandedWidth = 20;
            this.navBarControl1.Size = new System.Drawing.Size(194, 438);
            this.navBarControl1.TabIndex = 0;
            this.navBarControl1.Text = "navBarControl1";
            // 
            // navBarGroup1
            // 
            this.navBarGroup1.Caption = "显示";
            this.navBarGroup1.ControlContainer = this.navBarGroupControlContainer1;
            this.navBarGroup1.Expanded = true;
            this.navBarGroup1.GroupClientHeight = 199;
            this.navBarGroup1.GroupStyle = DevExpress.XtraNavBar.NavBarGroupStyle.ControlContainer;
            this.navBarGroup1.Name = "navBarGroup1";
            // 
            // navBarGroupControlContainer1
            // 
            this.navBarGroupControlContainer1.Controls.Add(this.checkButton_FlashLayer);
            this.navBarGroupControlContainer1.Controls.Add(this.simpleButton2);
            this.navBarGroupControlContainer1.Controls.Add(this.simpleButton1);
            this.navBarGroupControlContainer1.Controls.Add(this.comboBoxEdit2);
            this.navBarGroupControlContainer1.Controls.Add(this.comboBoxEdit1);
            this.navBarGroupControlContainer1.Controls.Add(this.labelControl2);
            this.navBarGroupControlContainer1.Controls.Add(this.labelControl1);
            this.navBarGroupControlContainer1.Controls.Add(this.pictureEdit4);
            this.navBarGroupControlContainer1.Controls.Add(this.trackBarControl_Gamma);
            this.navBarGroupControlContainer1.Controls.Add(this.spinEdit_FlashTime);
            this.navBarGroupControlContainer1.Controls.Add(this.spinEdit_Gamma);
            this.navBarGroupControlContainer1.Controls.Add(this.pictureEdit3);
            this.navBarGroupControlContainer1.Controls.Add(this.trackBarControl_Transparency);
            this.navBarGroupControlContainer1.Controls.Add(this.spinEdit_Transparency);
            this.navBarGroupControlContainer1.Controls.Add(this.pictureEdit2);
            this.navBarGroupControlContainer1.Controls.Add(this.trackBarControl_Contrast);
            this.navBarGroupControlContainer1.Controls.Add(this.spinEdit_Contrast);
            this.navBarGroupControlContainer1.Controls.Add(this.pictureEdit1);
            this.navBarGroupControlContainer1.Controls.Add(this.trackBarControl_Bright);
            this.navBarGroupControlContainer1.Controls.Add(this.spinEdit_Bright);
            this.navBarGroupControlContainer1.Name = "navBarGroupControlContainer1";
            this.navBarGroupControlContainer1.Size = new System.Drawing.Size(190, 197);
            this.navBarGroupControlContainer1.TabIndex = 0;
            // 
            // checkButton_FlashLayer
            // 
            this.checkButton_FlashLayer.Image = global::HYMain.Properties.Resources.卷帘;
            this.checkButton_FlashLayer.Location = new System.Drawing.Point(77, 171);
            this.checkButton_FlashLayer.Name = "checkButton_FlashLayer";
            this.checkButton_FlashLayer.Size = new System.Drawing.Size(28, 18);
            this.checkButton_FlashLayer.TabIndex = 17;
            this.checkButton_FlashLayer.Click += new System.EventHandler(this.checkButton_FlashLayer_Click);
            // 
            // simpleButton2
            // 
            this.simpleButton2.Location = new System.Drawing.Point(39, 171);
            this.simpleButton2.Name = "simpleButton2";
            this.simpleButton2.Size = new System.Drawing.Size(26, 18);
            this.simpleButton2.TabIndex = 16;
            this.simpleButton2.Text = "simpleButton2";
            // 
            // simpleButton1
            // 
            this.simpleButton1.Image = global::HYMain.Properties.Resources.flash;
            this.simpleButton1.Location = new System.Drawing.Point(9, 171);
            this.simpleButton1.Name = "simpleButton1";
            this.simpleButton1.Size = new System.Drawing.Size(25, 18);
            this.simpleButton1.TabIndex = 15;
            this.simpleButton1.Text = "simpleButton1";
            // 
            // comboBoxEdit2
            // 
            this.comboBoxEdit2.Location = new System.Drawing.Point(55, 140);
            this.comboBoxEdit2.Name = "comboBoxEdit2";
            this.comboBoxEdit2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit2.Size = new System.Drawing.Size(109, 21);
            this.comboBoxEdit2.TabIndex = 14;
            // 
            // comboBoxEdit1
            // 
            this.comboBoxEdit1.EditValue = "不拉伸";
            this.comboBoxEdit1.Location = new System.Drawing.Point(55, 115);
            this.comboBoxEdit1.MenuManager = this.ribbonControl1;
            this.comboBoxEdit1.Name = "comboBoxEdit1";
            this.comboBoxEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit1.Properties.Items.AddRange(new object[] {
            "不拉伸",
            "线性拉伸",
            "直方图均衡",
            "直方图均匀化",
            "指数增强",
            "对数增强"});
            this.comboBoxEdit1.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.comboBoxEdit1.Size = new System.Drawing.Size(109, 21);
            this.comboBoxEdit1.TabIndex = 14;
            this.comboBoxEdit1.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit1_SelectedIndexChanged);
            // 
            // labelControl2
            // 
            this.labelControl2.Location = new System.Drawing.Point(9, 143);
            this.labelControl2.Name = "labelControl2";
            this.labelControl2.Size = new System.Drawing.Size(36, 14);
            this.labelControl2.TabIndex = 13;
            this.labelControl2.Text = "重采样";
            // 
            // labelControl1
            // 
            this.labelControl1.Location = new System.Drawing.Point(9, 118);
            this.labelControl1.Name = "labelControl1";
            this.labelControl1.Size = new System.Drawing.Size(24, 14);
            this.labelControl1.TabIndex = 13;
            this.labelControl1.Text = "拉伸";
            // 
            // pictureEdit4
            // 
            this.pictureEdit4.EditValue = global::HYMain.Properties.Resources.gamma;
            this.pictureEdit4.Location = new System.Drawing.Point(9, 84);
            this.pictureEdit4.MenuManager = this.ribbonControl1;
            this.pictureEdit4.Name = "pictureEdit4";
            this.pictureEdit4.Size = new System.Drawing.Size(17, 16);
            this.pictureEdit4.TabIndex = 12;
            this.pictureEdit4.ToolTip = "调整gamma";
            // 
            // trackBarControl_Gamma
            // 
            this.trackBarControl_Gamma.EditValue = 10;
            this.trackBarControl_Gamma.Location = new System.Drawing.Point(38, 81);
            this.trackBarControl_Gamma.Name = "trackBarControl_Gamma";
            this.trackBarControl_Gamma.Properties.Maximum = 19;
            this.trackBarControl_Gamma.Size = new System.Drawing.Size(89, 45);
            this.trackBarControl_Gamma.TabIndex = 11;
            this.trackBarControl_Gamma.Value = 10;
            this.trackBarControl_Gamma.EditValueChanged += new System.EventHandler(this.trackBarControl_Gamma_EditValueChanged);
            // 
            // spinEdit_FlashTime
            // 
            this.spinEdit_FlashTime.EditValue = new decimal(new int[] {
            1000,
            0,
            0,
            0});
            this.spinEdit_FlashTime.Location = new System.Drawing.Point(111, 171);
            this.spinEdit_FlashTime.Name = "spinEdit_FlashTime";
            this.spinEdit_FlashTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.spinEdit_FlashTime.Size = new System.Drawing.Size(53, 21);
            this.spinEdit_FlashTime.TabIndex = 10;
            // 
            // spinEdit_Gamma
            // 
            this.spinEdit_Gamma.EditValue = new decimal(new int[] {
            1,
            0,
            0,
            0});
            this.spinEdit_Gamma.Enabled = false;
            this.spinEdit_Gamma.Location = new System.Drawing.Point(132, 84);
            this.spinEdit_Gamma.MenuManager = this.ribbonControl1;
            this.spinEdit_Gamma.Name = "spinEdit_Gamma";
            this.spinEdit_Gamma.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.spinEdit_Gamma.Properties.MaxValue = new decimal(new int[] {
            10,
            0,
            0,
            0});
            this.spinEdit_Gamma.Properties.MinValue = new decimal(new int[] {
            1,
            0,
            0,
            65536});
            this.spinEdit_Gamma.Size = new System.Drawing.Size(45, 21);
            this.spinEdit_Gamma.TabIndex = 10;
            this.spinEdit_Gamma.EditValueChanged += new System.EventHandler(this.spinEdit_Gamma_EditValueChanged);
            // 
            // pictureEdit3
            // 
            this.pictureEdit3.EditValue = global::HYMain.Properties.Resources.transparency;
            this.pictureEdit3.Location = new System.Drawing.Point(9, 60);
            this.pictureEdit3.MenuManager = this.ribbonControl1;
            this.pictureEdit3.Name = "pictureEdit3";
            this.pictureEdit3.Size = new System.Drawing.Size(17, 16);
            this.pictureEdit3.TabIndex = 9;
            this.pictureEdit3.ToolTip = "调整透明度";
            // 
            // trackBarControl_Transparency
            // 
            this.trackBarControl_Transparency.EditValue = null;
            this.trackBarControl_Transparency.Location = new System.Drawing.Point(38, 56);
            this.trackBarControl_Transparency.Name = "trackBarControl_Transparency";
            this.trackBarControl_Transparency.Properties.Maximum = 100;
            this.trackBarControl_Transparency.Size = new System.Drawing.Size(89, 45);
            this.trackBarControl_Transparency.TabIndex = 8;
            this.trackBarControl_Transparency.EditValueChanged += new System.EventHandler(this.trackBarControl_Transparency_EditValueChanged);
            // 
            // spinEdit_Transparency
            // 
            this.spinEdit_Transparency.EditValue = new decimal(new int[] {
            0,
            0,
            0,
            0});
            this.spinEdit_Transparency.Location = new System.Drawing.Point(132, 59);
            this.spinEdit_Transparency.MenuManager = this.ribbonControl1;
            this.spinEdit_Transparency.Name = "spinEdit_Transparency";
            this.spinEdit_Transparency.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.spinEdit_Transparency.Properties.MaxValue = new decimal(new int[] {
            100,
            0,
            0,
            0});
            this.spinEdit_Transparency.Size = new System.Drawing.Size(45, 21);
            this.spinEdit_Transparency.TabIndex = 7;
            this.spinEdit_Transparency.EditValueChanged += new System.EventHandler(this.spinEdit_Transparency_EditValueChanged);
            // 
            // pictureEdit2
            // 
            this.pictureEdit2.EditValue = global::HYMain.Properties.Resources.contrast;
            this.pictureEdit2.Location = new System.Drawing.Point(9, 36);
            this.pictureEdit2.MenuManager = this.ribbonControl1;
            this.pictureEdit2.Name = "pictureEdit2";
            this.pictureEdit2.Size = new System.Drawing.Size(17, 15);
            this.pictureEdit2.TabIndex = 6;
            this.pictureEdit2.ToolTip = "调整对比度";
            // 
            // trackBarControl_Contrast
            // 
            this.trackBarControl_Contrast.EditValue = 50;
            this.trackBarControl_Contrast.Location = new System.Drawing.Point(38, 32);
            this.trackBarControl_Contrast.Name = "trackBarControl_Contrast";
            this.trackBarControl_Contrast.Properties.Maximum = 100;
            this.trackBarControl_Contrast.Size = new System.Drawing.Size(89, 45);
            this.trackBarControl_Contrast.TabIndex = 5;
            this.trackBarControl_Contrast.Value = 50;
            this.trackBarControl_Contrast.EditValueChanged += new System.EventHandler(this.trackBarControl_Contrast_EditValueChanged);
            // 
            // spinEdit_Contrast
            // 
            this.spinEdit_Contrast.EditValue = new decimal(new int[] {
            50,
            0,
            0,
            0});
            this.spinEdit_Contrast.Location = new System.Drawing.Point(132, 35);
            this.spinEdit_Contrast.MenuManager = this.ribbonControl1;
            this.spinEdit_Contrast.Name = "spinEdit_Contrast";
            this.spinEdit_Contrast.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.spinEdit_Contrast.Properties.MaxValue = new decimal(new int[] {
            255,
            0,
            0,
            0});
            this.spinEdit_Contrast.Size = new System.Drawing.Size(45, 21);
            this.spinEdit_Contrast.TabIndex = 4;
            this.spinEdit_Contrast.EditValueChanged += new System.EventHandler(this.spinEdit_Contrast_EditValueChanged);
            // 
            // pictureEdit1
            // 
            this.pictureEdit1.EditValue = global::HYMain.Properties.Resources.bright;
            this.pictureEdit1.Location = new System.Drawing.Point(9, 11);
            this.pictureEdit1.MenuManager = this.ribbonControl1;
            this.pictureEdit1.Name = "pictureEdit1";
            this.pictureEdit1.Size = new System.Drawing.Size(17, 16);
            this.pictureEdit1.TabIndex = 3;
            this.pictureEdit1.ToolTip = "调整亮度";
            // 
            // trackBarControl_Bright
            // 
            this.trackBarControl_Bright.EditValue = 50;
            this.trackBarControl_Bright.Location = new System.Drawing.Point(38, 7);
            this.trackBarControl_Bright.Name = "trackBarControl_Bright";
            this.trackBarControl_Bright.Properties.Maximum = 100;
            this.trackBarControl_Bright.Size = new System.Drawing.Size(89, 45);
            this.trackBarControl_Bright.TabIndex = 1;
            this.trackBarControl_Bright.Value = 50;
            this.trackBarControl_Bright.EditValueChanged += new System.EventHandler(this.trackBarControl_Bright_EditValueChanged);
            // 
            // spinEdit_Bright
            // 
            this.spinEdit_Bright.EditValue = new decimal(new int[] {
            50,
            0,
            0,
            0});
            this.spinEdit_Bright.Location = new System.Drawing.Point(132, 10);
            this.spinEdit_Bright.MenuManager = this.ribbonControl1;
            this.spinEdit_Bright.Name = "spinEdit_Bright";
            this.spinEdit_Bright.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.spinEdit_Bright.Properties.MaxValue = new decimal(new int[] {
            255,
            0,
            0,
            0});
            this.spinEdit_Bright.Size = new System.Drawing.Size(45, 21);
            this.spinEdit_Bright.TabIndex = 0;
            this.spinEdit_Bright.EditValueChanged += new System.EventHandler(this.spinEdit_Bright_EditValueChanged);
            // 
            // navBarGroupControlContainer2
            // 
            this.navBarGroupControlContainer2.Name = "navBarGroupControlContainer2";
            this.navBarGroupControlContainer2.Size = new System.Drawing.Size(184, 87);
            this.navBarGroupControlContainer2.TabIndex = 1;
            // 
            // navBarGroup2
            // 
            this.navBarGroup2.Caption = "处理";
            this.navBarGroup2.ControlContainer = this.navBarGroupControlContainer2;
            this.navBarGroup2.GroupClientHeight = 94;
            this.navBarGroup2.GroupStyle = DevExpress.XtraNavBar.NavBarGroupStyle.ControlContainer;
            this.navBarGroup2.Name = "navBarGroup2";
            // 
            // xtraTabControl
            // 
            this.xtraTabControl.Dock = System.Windows.Forms.DockStyle.Fill;
            this.xtraTabControl.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.xtraTabControl.HeaderButtonsShowMode = DevExpress.XtraTab.TabButtonShowMode.Never;
            this.xtraTabControl.HeaderOrientation = DevExpress.XtraTab.TabOrientation.Horizontal;
            this.xtraTabControl.Location = new System.Drawing.Point(200, 148);
            this.xtraTabControl.Name = "xtraTabControl";
            this.xtraTabControl.SelectedTabPage = this.xtraTabPage_Map;
            this.xtraTabControl.ShowHeaderFocus = DevExpress.Utils.DefaultBoolean.False;
            this.xtraTabControl.ShowTabHeader = DevExpress.Utils.DefaultBoolean.True;
            this.xtraTabControl.Size = new System.Drawing.Size(707, 466);
            this.xtraTabControl.TabIndex = 4;
            this.xtraTabControl.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
            this.xtraTabPage_Map,
            this.xtraTabPage_Layout});
            this.xtraTabControl.SelectedPageChanged += new DevExpress.XtraTab.TabPageChangedEventHandler(this.xtraTabControl1_SelectedPageChanged);
            // 
            // xtraTabPage_Map
            // 
            this.xtraTabPage_Map.Controls.Add(this.axusMapControl1);
            this.xtraTabPage_Map.Name = "xtraTabPage_Map";
            this.xtraTabPage_Map.Size = new System.Drawing.Size(700, 436);
            this.xtraTabPage_Map.Text = "Map";
            // 
            // xtraTabPage_Layout
            // 
            this.xtraTabPage_Layout.Name = "xtraTabPage_Layout";
            this.xtraTabPage_Layout.Size = new System.Drawing.Size(700, 436);
            this.xtraTabPage_Layout.Text = "Layout";
            // 
            // imageCollection4
            // 
            this.imageCollection4.ImageSize = new System.Drawing.Size(32, 32);
            this.imageCollection4.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imageCollection4.ImageStream")));
            // 
            // ribbonGalleryBarItem1
            // 
            this.ribbonGalleryBarItem1.Caption = "ribbonGalleryBarItem1";
            this.ribbonGalleryBarItem1.Id = 156;
            this.ribbonGalleryBarItem1.Name = "ribbonGalleryBarItem1";
            // 
            // iUndo
            // 
            this.iUndo.Id = -1;
            this.iUndo.Name = "iUndo";
            // 
            // barButtonItem11
            // 
            this.barButtonItem11.Caption = "redo";
            this.barButtonItem11.Id = 159;
            this.barButtonItem11.Name = "barButtonItem11";
            // 
            // barSubItem1
            // 
            this.barSubItem1.Caption = "保存";
            this.barSubItem1.CategoryGuid = new System.Guid("4b511317-d784-42ba-b4ed-0d2a746d6c1f");
            this.barSubItem1.Description = "Saves the active document";
            this.barSubItem1.Hint = "Saves the active document";
            this.barSubItem1.Id = 0;
            this.barSubItem1.ImageIndex = 10;
            this.barSubItem1.LargeImageIndex = 2;
            this.barSubItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.iSave),
            new DevExpress.XtraBars.LinkPersistInfo(this.iSaveAs)});
            this.barSubItem1.Name = "barSubItem1";
            // 
            // ribbonPageGroup4
            // 
            this.ribbonPageGroup4.ImageIndex = 26;
            this.ribbonPageGroup4.ItemLinks.Add(this.barButtonItem_Select);
            this.ribbonPageGroup4.ItemLinks.Add(this.barButtonItem_ZoomIn);
            this.ribbonPageGroup4.ItemLinks.Add(this.barButtonItem_ZoomOut);
            this.ribbonPageGroup4.ItemLinks.Add(this.barButtonItem_Pan);
            this.ribbonPageGroup4.ItemLinks.Add(this.barButtonItem_ProView);
            this.ribbonPageGroup4.ItemLinks.Add(this.barButtonItem_NextView);
            this.ribbonPageGroup4.ItemLinks.Add(this.barButtonItem_FullView);
            this.ribbonPageGroup4.ItemLinks.Add(this.barButtonItem_Identify, true);
            this.ribbonPageGroup4.ItemLinks.Add(this.barButtonItem_Attribute);
            this.ribbonPageGroup4.ItemLinks.Add(this.barButtonItem_Find);
            this.ribbonPageGroup4.Name = "ribbonPageGroup4";
            this.ribbonPageGroup4.ShowCaptionButton = false;
            this.ribbonPageGroup4.Text = "浏览";
            // 
            // ribbonPageGroup6
            // 
            this.ribbonPageGroup6.ImageIndex = 1;
            this.ribbonPageGroup6.ItemLinks.Add(this.idNew);
            this.ribbonPageGroup6.ItemLinks.Add(this.iOpen);
            this.ribbonPageGroup6.ItemLinks.Add(this.iSave);
            this.ribbonPageGroup6.ItemLinks.Add(this.iPrint);
            this.ribbonPageGroup6.ItemLinks.Add(this.iCut, true);
            this.ribbonPageGroup6.ItemLinks.Add(this.iCopy);
            this.ribbonPageGroup6.ItemLinks.Add(this.iPaste);
            this.ribbonPageGroup6.ItemLinks.Add(this.iLargeUndo);
            this.ribbonPageGroup6.Name = "ribbonPageGroup6";
            this.ribbonPageGroup6.ShowCaptionButton = false;
            this.ribbonPageGroup6.Text = "Standard";
            // 
            // barButtonItem23
            // 
            this.barButtonItem23.Caption = "绘制点";
            this.barButtonItem23.Id = 186;
            this.barButtonItem23.LargeImageIndex = 24;
            this.barButtonItem23.Name = "barButtonItem23";
            // 
            // barEditItemLayers
            // 
            this.barEditItemLayers.Caption = "图层:";
            this.barEditItemLayers.Edit = this.repositoryItemComboBox4;
            this.barEditItemLayers.Id = 255;
            this.barEditItemLayers.Name = "barEditItemLayers";
            this.barEditItemLayers.Width = 120;
            // 
            // repositoryItemComboBox4
            // 
            this.repositoryItemComboBox4.AutoHeight = false;
            this.repositoryItemComboBox4.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemComboBox4.Name = "repositoryItemComboBox4";
            this.repositoryItemComboBox4.UseParentBackground = true;
            // 
            // repositoryItemButtonEdit2
            // 
            this.repositoryItemButtonEdit2.AutoHeight = false;
            this.repositoryItemButtonEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.repositoryItemButtonEdit2.Name = "repositoryItemButtonEdit2";
            this.repositoryItemButtonEdit2.UseParentBackground = true;
            // 
            // repositoryItemTextEdit1
            // 
            this.repositoryItemTextEdit1.AutoHeight = false;
            this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
            this.repositoryItemTextEdit1.UseParentBackground = true;
            // 
            // repositoryItemTextEdit2
            // 
            this.repositoryItemTextEdit2.AutoHeight = false;
            this.repositoryItemTextEdit2.Name = "repositoryItemTextEdit2";
            this.repositoryItemTextEdit2.UseParentBackground = true;
            // 
            // barSubItem2
            // 
            this.barSubItem2.Caption = "加载地理数据";
            this.barSubItem2.Id = 260;
            this.barSubItem2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonAddImage),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonAddShp)});
            this.barSubItem2.Name = "barSubItem2";
            // 
            // barButtonAddImage
            // 
            this.barButtonAddImage.Caption = "加载栅格";
            this.barButtonAddImage.Id = 261;
            this.barButtonAddImage.ImageIndex = 0;
            this.barButtonAddImage.Name = "barButtonAddImage";
            this.barButtonAddImage.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonAddImage_ItemClick);
            // 
            // barButtonAddShp
            // 
            this.barButtonAddShp.Caption = "加载矢量";
            this.barButtonAddShp.Id = 262;
            this.barButtonAddShp.ImageIndex = 1;
            this.barButtonAddShp.Name = "barButtonAddShp";
            this.barButtonAddShp.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonAddShp_ItemClick);
            // 
            // axusMapControl1
            // 
            this.axusMapControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.axusMapControl1.Enabled = true;
            this.axusMapControl1.Location = new System.Drawing.Point(0, 0);
            this.axusMapControl1.Name = "axusMapControl1";
            this.axusMapControl1.OcxState = ((System.Windows.Forms.AxHost.State)(resources.GetObject("axusMapControl1.OcxState")));
            this.axusMapControl1.Size = new System.Drawing.Size(700, 436);
            this.axusMapControl1.TabIndex = 0;
            // 
            // frmMain
            // 
            this.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Appearance.Options.UseFont = true;
            this.AutoScaleBaseSize = new System.Drawing.Size(6, 15);
            this.AutoSize = true;
            this.ClientSize = new System.Drawing.Size(1107, 640);
            this.Controls.Add(this.xtraTabControl);
            this.Controls.Add(this.dockPanel_ImageAnalyse);
            this.Controls.Add(this.panelContainer1);
            this.Controls.Add(this.ribbonStatusBar1);
            this.Controls.Add(this.ribbonControl1);
            this.IsMdiContainer = true;
            this.Name = "frmMain";
            this.Ribbon = this.ribbonControl1;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.StatusBar = this.ribbonStatusBar1;
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            this.Load += new System.EventHandler(this.frmMain_Load);
            this.Shown += new System.EventHandler(this.frmMain_Shown);
            this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.frmMain_FormClosed);
            this.Closing += new System.ComponentModel.CancelEventHandler(this.frmMain_Closing);
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmMain_FormClosing);
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupControlContainer1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pmAppMain)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pmNew)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.imageCollection2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTrackBar1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.imageCollection1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabbedMdiManager1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pmMain)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.imageCollection3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).EndInit();
            this.dockPanel_Drawing.ResumeLayout(false);
            this.dockPanel5_Container.ResumeLayout(false);
            this.panelContainer1.ResumeLayout(false);
            this.dockPanel_Overview.ResumeLayout(false);
            this.dockPanel2.ResumeLayout(false);
            this.dockPanel_ImageAnalyse.ResumeLayout(false);
            this.dockPanel4_Container.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.navBarControl1)).EndInit();
            this.navBarControl1.ResumeLayout(false);
            this.navBarGroupControlContainer1.ResumeLayout(false);
            this.navBarGroupControlContainer1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit2.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit1.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureEdit4.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.trackBarControl_Gamma.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.trackBarControl_Gamma)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.spinEdit_FlashTime.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.spinEdit_Gamma.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureEdit3.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.trackBarControl_Transparency.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.trackBarControl_Transparency)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.spinEdit_Transparency.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureEdit2.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.trackBarControl_Contrast.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.trackBarControl_Contrast)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.spinEdit_Contrast.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureEdit1.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.trackBarControl_Bright.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.trackBarControl_Bright)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.spinEdit_Bright.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl)).EndInit();
            this.xtraTabControl.ResumeLayout(false);
            this.xtraTabPage_Map.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.imageCollection4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.axusMapControl1)).EndInit();
            this.ResumeLayout(false);

        }
Пример #25
0
 public void CreateToolTip(BarItem item, string itemName)
 {
     DevExpress.Utils.SuperToolTip superToolTip = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem tooltipItem = new DevExpress.Utils.ToolTipItem();
     tooltipItem.Text = itemName;
     superToolTip.Items.Add(itemName);
     item.SuperTip = superToolTip;
 }
		/// <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.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
			DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
			DevExpress.Utils.ToolTipItem toolTipItem1 = new DevExpress.Utils.ToolTipItem();
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(WordExporter));
			DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2 = new DevExpress.Utils.ToolTipTitleItem();
			this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
			this.grid = new DevExpress.XtraGrid.GridControl();
			this.gridView = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.colIsChecked = new DevExpress.XtraGrid.Columns.GridColumn();
			this.colLastName = new DevExpress.XtraGrid.Columns.GridColumn();
			this.colHisName = new DevExpress.XtraGrid.Columns.GridColumn();
			this.colHerName = new DevExpress.XtraGrid.Columns.GridColumn();
			this.colAddress = new DevExpress.XtraGrid.Columns.GridColumn();
			this.colTotalPaid = new DevExpress.XtraGrid.Columns.GridColumn();
			this.colBalanceDue = new DevExpress.XtraGrid.Columns.GridColumn();
			this.cancel = new DevExpress.XtraEditors.SimpleButton();
			this.createDoc = new DevExpress.XtraEditors.DropDownButton();
			this.mailingDocuments = new DevExpress.XtraBars.PopupMenu(this.components);
			this.barManager = new DevExpress.XtraBars.BarManager(this.components);
			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.duplexMode = new DevExpress.XtraEditors.CheckEdit();
			this.label = new DevExpress.XtraEditors.LabelControl();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.grid)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.mailingDocuments)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.barManager)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.duplexMode.Properties)).BeginInit();
			this.SuspendLayout();
			// 
			// repositoryItemCheckEdit1
			// 
			this.repositoryItemCheckEdit1.AutoHeight = false;
			this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
			this.repositoryItemCheckEdit1.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
			// 
			// grid
			// 
			this.grid.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
			this.grid.Location = new System.Drawing.Point(12, 31);
			this.grid.MainView = this.gridView;
			this.grid.Name = "grid";
			this.grid.ShowOnlyPredefinedDetails = true;
			this.grid.Size = new System.Drawing.Size(563, 271);
			this.grid.TabIndex = 16;
			this.grid.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridView});
			// 
			// gridView
			// 
			this.gridView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.colIsChecked,
            this.colLastName,
            this.colHisName,
            this.colHerName,
            this.colAddress,
            this.colTotalPaid,
            this.colBalanceDue});
			this.gridView.GridControl = this.grid;
			this.gridView.Name = "gridView";
			this.gridView.OptionsSelection.EnableAppearanceFocusedCell = false;
			this.gridView.OptionsSelection.MultiSelect = true;
			this.gridView.OptionsView.ShowGroupPanel = false;
			this.gridView.ShowButtonMode = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.ShowAlways;
			this.gridView.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
            new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colLastName, DevExpress.Data.ColumnSortOrder.Ascending)});
			this.gridView.CustomUnboundColumnData += new DevExpress.XtraGrid.Views.Base.CustomColumnDataEventHandler(this.gridView_CustomUnboundColumnData);
			// 
			// colIsChecked
			// 
			this.colIsChecked.Caption = " ";
			this.colIsChecked.ColumnEdit = this.repositoryItemCheckEdit1;
			this.colIsChecked.FieldName = "IsChecked";
			this.colIsChecked.MaxWidth = 22;
			this.colIsChecked.MinWidth = 22;
			this.colIsChecked.Name = "colIsChecked";
			this.colIsChecked.OptionsColumn.AllowMove = false;
			this.colIsChecked.OptionsColumn.AllowShowHide = false;
			this.colIsChecked.OptionsColumn.AllowSize = false;
			this.colIsChecked.OptionsColumn.FixedWidth = true;
			this.colIsChecked.ShowButtonMode = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.ShowAlways;
			this.colIsChecked.ToolTip = "Generate?";
			this.colIsChecked.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
			this.colIsChecked.Visible = true;
			this.colIsChecked.VisibleIndex = 0;
			this.colIsChecked.Width = 22;
			// 
			// colLastName
			// 
			this.colLastName.FieldName = "LastName";
			this.colLastName.Name = "colLastName";
			this.colLastName.OptionsColumn.AllowEdit = false;
			this.colLastName.OptionsColumn.ReadOnly = true;
			this.colLastName.Visible = true;
			this.colLastName.VisibleIndex = 1;
			this.colLastName.Width = 87;
			// 
			// colHisName
			// 
			this.colHisName.FieldName = "HisName";
			this.colHisName.Name = "colHisName";
			this.colHisName.OptionsColumn.AllowEdit = false;
			this.colHisName.OptionsColumn.ReadOnly = true;
			this.colHisName.Visible = true;
			this.colHisName.VisibleIndex = 2;
			this.colHisName.Width = 87;
			// 
			// colHerName
			// 
			this.colHerName.FieldName = "HerName";
			this.colHerName.Name = "colHerName";
			this.colHerName.OptionsColumn.AllowEdit = false;
			this.colHerName.OptionsColumn.ReadOnly = true;
			this.colHerName.Visible = true;
			this.colHerName.VisibleIndex = 3;
			this.colHerName.Width = 87;
			// 
			// colAddress
			// 
			this.colAddress.FieldName = "Address";
			this.colAddress.Name = "colAddress";
			this.colAddress.OptionsColumn.AllowEdit = false;
			this.colAddress.OptionsColumn.ReadOnly = true;
			this.colAddress.Visible = true;
			this.colAddress.VisibleIndex = 4;
			this.colAddress.Width = 87;
			// 
			// colTotalPaid
			// 
			this.colTotalPaid.DisplayFormat.FormatString = "c";
			this.colTotalPaid.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
			this.colTotalPaid.FieldName = "TotalPaid";
			this.colTotalPaid.Name = "colTotalPaid";
			this.colTotalPaid.OptionsColumn.AllowEdit = false;
			this.colTotalPaid.OptionsColumn.ReadOnly = true;
			this.colTotalPaid.Visible = true;
			this.colTotalPaid.VisibleIndex = 5;
			this.colTotalPaid.Width = 87;
			// 
			// colBalanceDue
			// 
			this.colBalanceDue.DisplayFormat.FormatString = "c";
			this.colBalanceDue.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
			this.colBalanceDue.FieldName = "BalanceDue";
			this.colBalanceDue.Name = "colBalanceDue";
			this.colBalanceDue.OptionsColumn.AllowEdit = false;
			this.colBalanceDue.OptionsColumn.ReadOnly = true;
			this.colBalanceDue.Visible = true;
			this.colBalanceDue.VisibleIndex = 6;
			this.colBalanceDue.Width = 109;
			// 
			// cancel
			// 
			this.cancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
			this.cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
			this.cancel.Location = new System.Drawing.Point(501, 308);
			this.cancel.Name = "cancel";
			this.cancel.Size = new System.Drawing.Size(75, 23);
			this.cancel.TabIndex = 15;
			this.cancel.Text = "Cancel";
			this.cancel.Click += new System.EventHandler(this.cancel_Click);
			// 
			// createDoc
			// 
			this.createDoc.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
			this.createDoc.DropDownControl = this.mailingDocuments;
			this.createDoc.Location = new System.Drawing.Point(360, 308);
			this.createDoc.Name = "createDoc";
			this.createDoc.Size = new System.Drawing.Size(135, 23);
			this.createDoc.TabIndex = 17;
			this.createDoc.Text = "&Create Document";
			this.createDoc.Click += new System.EventHandler(this.createDoc_Click);
			// 
			// mailingDocuments
			// 
			this.mailingDocuments.Manager = this.barManager;
			this.mailingDocuments.Name = "mailingDocuments";
			// 
			// barManager
			// 
			this.barManager.DockControls.Add(this.barDockControlTop);
			this.barManager.DockControls.Add(this.barDockControlBottom);
			this.barManager.DockControls.Add(this.barDockControlLeft);
			this.barManager.DockControls.Add(this.barDockControlRight);
			this.barManager.Form = this;
			this.barManager.MaxItemId = 0;
			// 
			// 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(588, 0);
			// 
			// barDockControlBottom
			// 
			this.barDockControlBottom.CausesValidation = false;
			this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
			this.barDockControlBottom.Location = new System.Drawing.Point(0, 343);
			this.barDockControlBottom.Size = new System.Drawing.Size(588, 0);
			// 
			// barDockControlLeft
			// 
			this.barDockControlLeft.CausesValidation = false;
			this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
			this.barDockControlLeft.Location = new System.Drawing.Point(0, 0);
			this.barDockControlLeft.Size = new System.Drawing.Size(0, 343);
			// 
			// barDockControlRight
			// 
			this.barDockControlRight.CausesValidation = false;
			this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
			this.barDockControlRight.Location = new System.Drawing.Point(588, 0);
			this.barDockControlRight.Size = new System.Drawing.Size(0, 343);
			// 
			// duplexMode
			// 
			this.duplexMode.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
			this.duplexMode.EditValue = true;
			this.duplexMode.Location = new System.Drawing.Point(166, 309);
			this.duplexMode.Name = "duplexMode";
			this.duplexMode.Properties.AutoWidth = true;
			this.duplexMode.Properties.Caption = "Generate for &double-sided printing";
			this.duplexMode.Size = new System.Drawing.Size(188, 19);
			toolTipTitleItem1.Text = "Duplex Mode";
			toolTipItem1.LeftIndent = 6;
			toolTipItem1.Text = resources.GetString("toolTipItem1.Text");
			toolTipTitleItem2.LeftIndent = 6;
			toolTipTitleItem2.Text = "This does not affect envelopes or labels";
			superToolTip1.Items.Add(toolTipTitleItem1);
			superToolTip1.Items.Add(toolTipItem1);
			superToolTip1.Items.Add(toolTipTitleItem2);
			this.duplexMode.SuperTip = superToolTip1;
			this.duplexMode.TabIndex = 22;
			// 
			// label
			// 
			this.label.AutoEllipsis = true;
			this.label.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
			this.label.Location = new System.Drawing.Point(12, 12);
			this.label.Name = "label";
			this.label.Size = new System.Drawing.Size(63, 13);
			this.label.TabIndex = 27;
			this.label.Text = "labelControl1";
			// 
			// WordExporter
			// 
			this.AcceptButton = this.createDoc;
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.CancelButton = this.cancel;
			this.ClientSize = new System.Drawing.Size(588, 343);
			this.Controls.Add(this.label);
			this.Controls.Add(this.duplexMode);
			this.Controls.Add(this.createDoc);
			this.Controls.Add(this.grid);
			this.Controls.Add(this.cancel);
			this.Controls.Add(this.barDockControlLeft);
			this.Controls.Add(this.barDockControlRight);
			this.Controls.Add(this.barDockControlBottom);
			this.Controls.Add(this.barDockControlTop);
			this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
			this.Name = "WordExporter";
			this.Text = "Create Word Statements";
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.grid)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.mailingDocuments)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.barManager)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.duplexMode.Properties)).EndInit();
			this.ResumeLayout(false);
			this.PerformLayout();

		}
        /// <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.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
			DevExpress.Utils.ToolTipItem toolTipItem1 = new DevExpress.Utils.ToolTipItem();
			this.checkEditFlightDates = new DevExpress.XtraEditors.CheckEdit();
			this.pnItems = new System.Windows.Forms.Panel();
			this.xtraScrollableControl = new DevExpress.XtraEditors.XtraScrollableControl();
			this.pnSections = new System.Windows.Forms.Panel();
			this.checkEditSections = new DevExpress.XtraEditors.CheckEdit();
			this.labelControlSections = new DevExpress.XtraEditors.LabelControl();
			this.checkEditMechanicals = new DevExpress.XtraEditors.CheckEdit();
			this.checkEditDiscounts = new DevExpress.XtraEditors.CheckEdit();
			this.checkEditAvgFinalCost = new DevExpress.XtraEditors.CheckEdit();
			this.checkEditAvgAdCost = new DevExpress.XtraEditors.CheckEdit();
			this.checkEditAvgPCI = new DevExpress.XtraEditors.CheckEdit();
			this.checkEditColor = new DevExpress.XtraEditors.CheckEdit();
			this.checkEditPercentOfPage = new DevExpress.XtraEditors.CheckEdit();
			this.checkEditPageSize = new DevExpress.XtraEditors.CheckEdit();
			this.checkEditDimensions = new DevExpress.XtraEditors.CheckEdit();
			this.checkEditSquare = new DevExpress.XtraEditors.CheckEdit();
			this.checkEditTotalSquare = new DevExpress.XtraEditors.CheckEdit();
			this.checkEditTotalAds = new DevExpress.XtraEditors.CheckEdit();
			this.laAdItems = new System.Windows.Forms.Label();
			this.checkEditComments = new DevExpress.XtraEditors.CheckEdit();
			this.memoEditComments = new DevExpress.XtraEditors.MemoEdit();
			this.styleController = new DevExpress.XtraEditors.StyleController(this.components);
			this.checkEditDates = new DevExpress.XtraEditors.CheckEdit();
			this.memoEditDates = new DevExpress.XtraEditors.MemoEdit();
			this.laInvestment = new System.Windows.Forms.Label();
			this.comboBoxEditInvestment = new DevExpress.XtraEditors.ComboBoxEdit();
			this.checkEditInvestment = new DevExpress.XtraEditors.CheckEdit();
			this.laDates = new System.Windows.Forms.Label();
			this.pictureBoxDates = new System.Windows.Forms.PictureBox();
			this.checkEditLogo = new DevExpress.XtraEditors.CheckEdit();
			this.pnMain = new System.Windows.Forms.Panel();
			this.laFlightDates = new System.Windows.Forms.Label();
			this.checkEditTwoPerSlide = new DevExpress.XtraEditors.CheckEdit();
			this.hyperLinkEditReset = new DevExpress.XtraEditors.HyperLinkEdit();
			this.pbComments = new System.Windows.Forms.PictureBox();
			this.laComments = new System.Windows.Forms.Label();
			this.pbLogo = new System.Windows.Forms.PictureBox();
			((System.ComponentModel.ISupportInitialize)(this.checkEditFlightDates.Properties)).BeginInit();
			this.pnItems.SuspendLayout();
			this.xtraScrollableControl.SuspendLayout();
			this.pnSections.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.checkEditSections.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEditMechanicals.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEditDiscounts.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEditAvgFinalCost.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEditAvgAdCost.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEditAvgPCI.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEditColor.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEditPercentOfPage.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEditPageSize.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEditDimensions.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEditSquare.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEditTotalSquare.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEditTotalAds.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEditComments.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.memoEditComments.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.styleController)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEditDates.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.memoEditDates.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEditInvestment.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEditInvestment.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.pictureBoxDates)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEditLogo.Properties)).BeginInit();
			this.pnMain.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.checkEditTwoPerSlide.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.hyperLinkEditReset.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.pbComments)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.pbLogo)).BeginInit();
			this.SuspendLayout();
			// 
			// checkEditFlightDates
			// 
			this.checkEditFlightDates.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
			this.checkEditFlightDates.EditValue = true;
			this.checkEditFlightDates.Location = new System.Drawing.Point(499, 21);
			this.checkEditFlightDates.Name = "checkEditFlightDates";
			this.checkEditFlightDates.Properties.Appearance.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
			this.checkEditFlightDates.Properties.Appearance.Options.UseFont = true;
			this.checkEditFlightDates.Properties.AutoWidth = true;
			this.checkEditFlightDates.Properties.Caption = "";
			this.checkEditFlightDates.Size = new System.Drawing.Size(19, 19);
			this.checkEditFlightDates.TabIndex = 52;
			this.checkEditFlightDates.CheckedChanged += new System.EventHandler(this.checkEditFlightDates_CheckedChanged);
			this.checkEditFlightDates.MouseDown += new System.Windows.Forms.MouseEventHandler(this.checkEdit_MouseDown);
			// 
			// pnItems
			// 
			this.pnItems.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left)));
			this.pnItems.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.pnItems.Controls.Add(this.xtraScrollableControl);
			this.pnItems.Location = new System.Drawing.Point(31, 128);
			this.pnItems.Name = "pnItems";
			this.pnItems.Size = new System.Drawing.Size(261, 259);
			this.pnItems.TabIndex = 51;
			// 
			// xtraScrollableControl
			// 
			this.xtraScrollableControl.Appearance.BorderColor = System.Drawing.Color.Black;
			this.xtraScrollableControl.Appearance.Options.UseBorderColor = true;
			this.xtraScrollableControl.Controls.Add(this.pnSections);
			this.xtraScrollableControl.Controls.Add(this.checkEditMechanicals);
			this.xtraScrollableControl.Controls.Add(this.checkEditDiscounts);
			this.xtraScrollableControl.Controls.Add(this.checkEditAvgFinalCost);
			this.xtraScrollableControl.Controls.Add(this.checkEditAvgAdCost);
			this.xtraScrollableControl.Controls.Add(this.checkEditAvgPCI);
			this.xtraScrollableControl.Controls.Add(this.checkEditColor);
			this.xtraScrollableControl.Controls.Add(this.checkEditPercentOfPage);
			this.xtraScrollableControl.Controls.Add(this.checkEditPageSize);
			this.xtraScrollableControl.Controls.Add(this.checkEditDimensions);
			this.xtraScrollableControl.Controls.Add(this.checkEditSquare);
			this.xtraScrollableControl.Controls.Add(this.checkEditTotalSquare);
			this.xtraScrollableControl.Controls.Add(this.checkEditTotalAds);
			this.xtraScrollableControl.Dock = System.Windows.Forms.DockStyle.Fill;
			this.xtraScrollableControl.Location = new System.Drawing.Point(0, 0);
			this.xtraScrollableControl.Name = "xtraScrollableControl";
			this.xtraScrollableControl.Size = new System.Drawing.Size(259, 257);
			this.xtraScrollableControl.TabIndex = 47;
			// 
			// pnSections
			// 
			this.pnSections.Controls.Add(this.checkEditSections);
			this.pnSections.Controls.Add(this.labelControlSections);
			this.pnSections.Dock = System.Windows.Forms.DockStyle.Top;
			this.pnSections.Location = new System.Drawing.Point(0, 360);
			this.pnSections.Name = "pnSections";
			this.pnSections.Size = new System.Drawing.Size(242, 106);
			this.pnSections.TabIndex = 56;
			// 
			// checkEditSections
			// 
			this.checkEditSections.Location = new System.Drawing.Point(0, 6);
			this.checkEditSections.Name = "checkEditSections";
			this.checkEditSections.Properties.Appearance.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
			this.checkEditSections.Properties.Appearance.Options.UseFont = true;
			this.checkEditSections.Properties.Appearance.Options.UseTextOptions = true;
			this.checkEditSections.Properties.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
			this.checkEditSections.Properties.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
			this.checkEditSections.Properties.AppearanceFocused.Options.UseTextOptions = true;
			this.checkEditSections.Properties.AppearanceFocused.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
			this.checkEditSections.Properties.AppearanceFocused.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
			this.checkEditSections.Properties.AutoHeight = false;
			this.checkEditSections.Properties.Caption = "Sections tag";
			this.checkEditSections.Size = new System.Drawing.Size(19, 18);
			this.checkEditSections.TabIndex = 54;
			this.checkEditSections.CheckedChanged += new System.EventHandler(this.checkEdit_CheckedChanged);
			this.checkEditSections.EditValueChanging += new DevExpress.XtraEditors.Controls.ChangingEventHandler(this.checkEditAdItems_EditValueChanging);
			this.checkEditSections.MouseDown += new System.Windows.Forms.MouseEventHandler(this.checkEdit_MouseDown);
			// 
			// labelControlSections
			// 
			this.labelControlSections.Appearance.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
			this.labelControlSections.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Vertical;
			this.labelControlSections.Location = new System.Drawing.Point(21, 8);
			this.labelControlSections.Name = "labelControlSections";
			this.labelControlSections.Size = new System.Drawing.Size(218, 16);
			this.labelControlSections.TabIndex = 55;
			this.labelControlSections.Text = "Sections Tag";
			this.labelControlSections.UseMnemonic = false;
			// 
			// checkEditMechanicals
			// 
			this.checkEditMechanicals.Dock = System.Windows.Forms.DockStyle.Top;
			this.checkEditMechanicals.Location = new System.Drawing.Point(0, 330);
			this.checkEditMechanicals.Name = "checkEditMechanicals";
			this.checkEditMechanicals.Properties.Appearance.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
			this.checkEditMechanicals.Properties.Appearance.Options.UseFont = true;
			this.checkEditMechanicals.Properties.AutoHeight = false;
			this.checkEditMechanicals.Properties.Caption = "Mechanicals Tag";
			this.checkEditMechanicals.Size = new System.Drawing.Size(242, 30);
			this.checkEditMechanicals.TabIndex = 53;
			this.checkEditMechanicals.Visible = false;
			this.checkEditMechanicals.CheckedChanged += new System.EventHandler(this.checkEdit_CheckedChanged);
			this.checkEditMechanicals.EditValueChanging += new DevExpress.XtraEditors.Controls.ChangingEventHandler(this.checkEditAdItems_EditValueChanging);
			this.checkEditMechanicals.MouseDown += new System.Windows.Forms.MouseEventHandler(this.checkEdit_MouseDown);
			// 
			// checkEditDiscounts
			// 
			this.checkEditDiscounts.Dock = System.Windows.Forms.DockStyle.Top;
			this.checkEditDiscounts.Location = new System.Drawing.Point(0, 300);
			this.checkEditDiscounts.Name = "checkEditDiscounts";
			this.checkEditDiscounts.Properties.Appearance.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
			this.checkEditDiscounts.Properties.Appearance.Options.UseFont = true;
			this.checkEditDiscounts.Properties.AutoHeight = false;
			this.checkEditDiscounts.Properties.Caption = "Discounts Tag";
			this.checkEditDiscounts.Size = new System.Drawing.Size(242, 30);
			this.checkEditDiscounts.TabIndex = 52;
			this.checkEditDiscounts.CheckedChanged += new System.EventHandler(this.checkEdit_CheckedChanged);
			this.checkEditDiscounts.EditValueChanging += new DevExpress.XtraEditors.Controls.ChangingEventHandler(this.checkEditAdItems_EditValueChanging);
			this.checkEditDiscounts.MouseDown += new System.Windows.Forms.MouseEventHandler(this.checkEdit_MouseDown);
			// 
			// checkEditAvgFinalCost
			// 
			this.checkEditAvgFinalCost.Dock = System.Windows.Forms.DockStyle.Top;
			this.checkEditAvgFinalCost.Location = new System.Drawing.Point(0, 270);
			this.checkEditAvgFinalCost.Name = "checkEditAvgFinalCost";
			this.checkEditAvgFinalCost.Properties.Appearance.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
			this.checkEditAvgFinalCost.Properties.Appearance.Options.UseFont = true;
			this.checkEditAvgFinalCost.Properties.AutoHeight = false;
			this.checkEditAvgFinalCost.Properties.Caption = "Avg Final Cost Tag";
			this.checkEditAvgFinalCost.Size = new System.Drawing.Size(242, 30);
			this.checkEditAvgFinalCost.TabIndex = 51;
			this.checkEditAvgFinalCost.CheckedChanged += new System.EventHandler(this.checkEdit_CheckedChanged);
			this.checkEditAvgFinalCost.EditValueChanging += new DevExpress.XtraEditors.Controls.ChangingEventHandler(this.checkEditAdItems_EditValueChanging);
			this.checkEditAvgFinalCost.MouseDown += new System.Windows.Forms.MouseEventHandler(this.checkEdit_MouseDown);
			// 
			// checkEditAvgAdCost
			// 
			this.checkEditAvgAdCost.Dock = System.Windows.Forms.DockStyle.Top;
			this.checkEditAvgAdCost.Location = new System.Drawing.Point(0, 240);
			this.checkEditAvgAdCost.Name = "checkEditAvgAdCost";
			this.checkEditAvgAdCost.Properties.Appearance.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
			this.checkEditAvgAdCost.Properties.Appearance.Options.UseFont = true;
			this.checkEditAvgAdCost.Properties.Appearance.Options.UseTextOptions = true;
			this.checkEditAvgAdCost.Properties.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Hide;
			this.checkEditAvgAdCost.Properties.AppearanceDisabled.Options.UseTextOptions = true;
			this.checkEditAvgAdCost.Properties.AppearanceDisabled.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Hide;
			this.checkEditAvgAdCost.Properties.AppearanceFocused.Options.UseTextOptions = true;
			this.checkEditAvgAdCost.Properties.AppearanceFocused.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Hide;
			this.checkEditAvgAdCost.Properties.AppearanceReadOnly.Options.UseTextOptions = true;
			this.checkEditAvgAdCost.Properties.AppearanceReadOnly.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Hide;
			this.checkEditAvgAdCost.Properties.AutoHeight = false;
			this.checkEditAvgAdCost.Properties.Caption = "Avg Ad Cost Tag";
			this.checkEditAvgAdCost.Size = new System.Drawing.Size(242, 30);
			this.checkEditAvgAdCost.TabIndex = 50;
			this.checkEditAvgAdCost.CheckedChanged += new System.EventHandler(this.checkEdit_CheckedChanged);
			this.checkEditAvgAdCost.EditValueChanging += new DevExpress.XtraEditors.Controls.ChangingEventHandler(this.checkEditAdItems_EditValueChanging);
			this.checkEditAvgAdCost.MouseDown += new System.Windows.Forms.MouseEventHandler(this.checkEdit_MouseDown);
			// 
			// checkEditAvgPCI
			// 
			this.checkEditAvgPCI.Dock = System.Windows.Forms.DockStyle.Top;
			this.checkEditAvgPCI.Location = new System.Drawing.Point(0, 210);
			this.checkEditAvgPCI.Name = "checkEditAvgPCI";
			this.checkEditAvgPCI.Properties.Appearance.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
			this.checkEditAvgPCI.Properties.Appearance.Options.UseFont = true;
			this.checkEditAvgPCI.Properties.AutoHeight = false;
			this.checkEditAvgPCI.Properties.Caption = "Avg PCI Tag";
			this.checkEditAvgPCI.Size = new System.Drawing.Size(242, 30);
			this.checkEditAvgPCI.TabIndex = 49;
			this.checkEditAvgPCI.CheckedChanged += new System.EventHandler(this.checkEdit_CheckedChanged);
			this.checkEditAvgPCI.EditValueChanging += new DevExpress.XtraEditors.Controls.ChangingEventHandler(this.checkEditAdItems_EditValueChanging);
			this.checkEditAvgPCI.MouseDown += new System.Windows.Forms.MouseEventHandler(this.checkEdit_MouseDown);
			// 
			// checkEditColor
			// 
			this.checkEditColor.Dock = System.Windows.Forms.DockStyle.Top;
			this.checkEditColor.EditValue = true;
			this.checkEditColor.Location = new System.Drawing.Point(0, 180);
			this.checkEditColor.Name = "checkEditColor";
			this.checkEditColor.Properties.Appearance.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
			this.checkEditColor.Properties.Appearance.Options.UseFont = true;
			this.checkEditColor.Properties.AutoHeight = false;
			this.checkEditColor.Properties.Caption = "Color Tag";
			this.checkEditColor.Size = new System.Drawing.Size(242, 30);
			this.checkEditColor.TabIndex = 46;
			this.checkEditColor.CheckedChanged += new System.EventHandler(this.checkEdit_CheckedChanged);
			this.checkEditColor.EditValueChanging += new DevExpress.XtraEditors.Controls.ChangingEventHandler(this.checkEditAdItems_EditValueChanging);
			this.checkEditColor.MouseDown += new System.Windows.Forms.MouseEventHandler(this.checkEdit_MouseDown);
			// 
			// checkEditPercentOfPage
			// 
			this.checkEditPercentOfPage.Dock = System.Windows.Forms.DockStyle.Top;
			this.checkEditPercentOfPage.EditValue = true;
			this.checkEditPercentOfPage.Location = new System.Drawing.Point(0, 150);
			this.checkEditPercentOfPage.Name = "checkEditPercentOfPage";
			this.checkEditPercentOfPage.Properties.Appearance.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
			this.checkEditPercentOfPage.Properties.Appearance.Options.UseFont = true;
			this.checkEditPercentOfPage.Properties.AutoHeight = false;
			this.checkEditPercentOfPage.Properties.Caption = "Percent of PageTag";
			this.checkEditPercentOfPage.Size = new System.Drawing.Size(242, 30);
			this.checkEditPercentOfPage.TabIndex = 57;
			this.checkEditPercentOfPage.CheckedChanged += new System.EventHandler(this.checkEdit_CheckedChanged);
			// 
			// checkEditPageSize
			// 
			this.checkEditPageSize.Dock = System.Windows.Forms.DockStyle.Top;
			this.checkEditPageSize.EditValue = true;
			this.checkEditPageSize.Location = new System.Drawing.Point(0, 120);
			this.checkEditPageSize.Name = "checkEditPageSize";
			this.checkEditPageSize.Properties.Appearance.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
			this.checkEditPageSize.Properties.Appearance.Options.UseFont = true;
			this.checkEditPageSize.Properties.AutoHeight = false;
			this.checkEditPageSize.Properties.Caption = "Page Size Tag";
			this.checkEditPageSize.Size = new System.Drawing.Size(242, 30);
			this.checkEditPageSize.TabIndex = 45;
			this.checkEditPageSize.CheckedChanged += new System.EventHandler(this.checkEdit_CheckedChanged);
			this.checkEditPageSize.EditValueChanging += new DevExpress.XtraEditors.Controls.ChangingEventHandler(this.checkEditAdItems_EditValueChanging);
			this.checkEditPageSize.MouseDown += new System.Windows.Forms.MouseEventHandler(this.checkEdit_MouseDown);
			// 
			// checkEditDimensions
			// 
			this.checkEditDimensions.Dock = System.Windows.Forms.DockStyle.Top;
			this.checkEditDimensions.EditValue = true;
			this.checkEditDimensions.Location = new System.Drawing.Point(0, 90);
			this.checkEditDimensions.Name = "checkEditDimensions";
			this.checkEditDimensions.Properties.Appearance.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
			this.checkEditDimensions.Properties.Appearance.Options.UseFont = true;
			this.checkEditDimensions.Properties.AutoHeight = false;
			this.checkEditDimensions.Properties.Caption = "Dimensions Tag";
			this.checkEditDimensions.Size = new System.Drawing.Size(242, 30);
			this.checkEditDimensions.TabIndex = 48;
			this.checkEditDimensions.CheckedChanged += new System.EventHandler(this.checkEdit_CheckedChanged);
			this.checkEditDimensions.EditValueChanging += new DevExpress.XtraEditors.Controls.ChangingEventHandler(this.checkEditAdItems_EditValueChanging);
			this.checkEditDimensions.MouseDown += new System.Windows.Forms.MouseEventHandler(this.checkEdit_MouseDown);
			// 
			// checkEditSquare
			// 
			this.checkEditSquare.Dock = System.Windows.Forms.DockStyle.Top;
			this.checkEditSquare.EditValue = true;
			this.checkEditSquare.Location = new System.Drawing.Point(0, 60);
			this.checkEditSquare.Name = "checkEditSquare";
			this.checkEditSquare.Properties.Appearance.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
			this.checkEditSquare.Properties.Appearance.Options.UseFont = true;
			this.checkEditSquare.Properties.AutoHeight = false;
			this.checkEditSquare.Properties.Caption = "Column Inches Tag";
			this.checkEditSquare.Size = new System.Drawing.Size(242, 30);
			this.checkEditSquare.TabIndex = 47;
			this.checkEditSquare.CheckedChanged += new System.EventHandler(this.checkEdit_CheckedChanged);
			this.checkEditSquare.EditValueChanging += new DevExpress.XtraEditors.Controls.ChangingEventHandler(this.checkEditAdItems_EditValueChanging);
			this.checkEditSquare.MouseDown += new System.Windows.Forms.MouseEventHandler(this.checkEdit_MouseDown);
			// 
			// checkEditTotalSquare
			// 
			this.checkEditTotalSquare.Dock = System.Windows.Forms.DockStyle.Top;
			this.checkEditTotalSquare.EditValue = true;
			this.checkEditTotalSquare.Location = new System.Drawing.Point(0, 30);
			this.checkEditTotalSquare.Name = "checkEditTotalSquare";
			this.checkEditTotalSquare.Properties.Appearance.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
			this.checkEditTotalSquare.Properties.Appearance.Options.UseFont = true;
			this.checkEditTotalSquare.Properties.AutoHeight = false;
			this.checkEditTotalSquare.Properties.Caption = "Total Square Tag";
			this.checkEditTotalSquare.Size = new System.Drawing.Size(242, 30);
			this.checkEditTotalSquare.TabIndex = 44;
			this.checkEditTotalSquare.CheckedChanged += new System.EventHandler(this.checkEdit_CheckedChanged);
			this.checkEditTotalSquare.EditValueChanging += new DevExpress.XtraEditors.Controls.ChangingEventHandler(this.checkEditAdItems_EditValueChanging);
			this.checkEditTotalSquare.MouseDown += new System.Windows.Forms.MouseEventHandler(this.checkEdit_MouseDown);
			// 
			// checkEditTotalAds
			// 
			this.checkEditTotalAds.Dock = System.Windows.Forms.DockStyle.Top;
			this.checkEditTotalAds.EditValue = true;
			this.checkEditTotalAds.Location = new System.Drawing.Point(0, 0);
			this.checkEditTotalAds.Name = "checkEditTotalAds";
			this.checkEditTotalAds.Properties.Appearance.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
			this.checkEditTotalAds.Properties.Appearance.Options.UseFont = true;
			this.checkEditTotalAds.Properties.AutoHeight = false;
			this.checkEditTotalAds.Properties.Caption = "Total Ads Tag";
			this.checkEditTotalAds.Size = new System.Drawing.Size(242, 30);
			this.checkEditTotalAds.TabIndex = 43;
			this.checkEditTotalAds.CheckedChanged += new System.EventHandler(this.checkEdit_CheckedChanged);
			this.checkEditTotalAds.EditValueChanging += new DevExpress.XtraEditors.Controls.ChangingEventHandler(this.checkEditAdItems_EditValueChanging);
			this.checkEditTotalAds.MouseDown += new System.Windows.Forms.MouseEventHandler(this.checkEdit_MouseDown);
			// 
			// laAdItems
			// 
			this.laAdItems.AutoSize = true;
			this.laAdItems.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
			this.laAdItems.Location = new System.Drawing.Point(28, 95);
			this.laAdItems.Name = "laAdItems";
			this.laAdItems.Size = new System.Drawing.Size(177, 19);
			this.laAdItems.TabIndex = 48;
			this.laAdItems.Text = "Select up to 6 Ad-Items:";
			// 
			// checkEditComments
			// 
			this.checkEditComments.AutoSizeInLayoutControl = true;
			this.checkEditComments.Location = new System.Drawing.Point(313, 247);
			this.checkEditComments.Name = "checkEditComments";
			this.checkEditComments.Properties.Caption = "";
			this.checkEditComments.Size = new System.Drawing.Size(19, 19);
			this.checkEditComments.TabIndex = 42;
			this.checkEditComments.CheckedChanged += new System.EventHandler(this.checkEditComments_CheckedChanged);
			this.checkEditComments.MouseDown += new System.Windows.Forms.MouseEventHandler(this.checkEdit_MouseDown);
			// 
			// memoEditComments
			// 
			this.memoEditComments.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
			this.memoEditComments.Enabled = false;
			this.memoEditComments.Location = new System.Drawing.Point(338, 247);
			this.memoEditComments.Name = "memoEditComments";
			this.memoEditComments.Properties.NullText = "Type Comments Here";
			this.memoEditComments.Size = new System.Drawing.Size(606, 62);
			this.memoEditComments.StyleController = this.styleController;
			this.memoEditComments.TabIndex = 41;
			this.memoEditComments.UseOptimizedRendering = true;
			this.memoEditComments.EditValueChanged += new System.EventHandler(this.memoEditComments_EditValueChanged);
			// 
			// styleController
			// 
			this.styleController.Appearance.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
			this.styleController.Appearance.Options.UseFont = true;
			this.styleController.AppearanceDisabled.Font = new System.Drawing.Font("Arial", 9.75F);
			this.styleController.AppearanceDisabled.ForeColor = System.Drawing.Color.Black;
			this.styleController.AppearanceDisabled.Options.UseFont = true;
			this.styleController.AppearanceDisabled.Options.UseForeColor = true;
			this.styleController.AppearanceDropDown.Font = new System.Drawing.Font("Arial", 9.75F);
			this.styleController.AppearanceDropDown.Options.UseFont = true;
			this.styleController.AppearanceDropDownHeader.Font = new System.Drawing.Font("Arial", 9.75F);
			this.styleController.AppearanceDropDownHeader.Options.UseFont = true;
			this.styleController.AppearanceFocused.Font = new System.Drawing.Font("Arial", 9.75F);
			this.styleController.AppearanceFocused.Options.UseFont = true;
			this.styleController.AppearanceReadOnly.Font = new System.Drawing.Font("Arial", 9.75F);
			this.styleController.AppearanceReadOnly.ForeColor = System.Drawing.Color.Black;
			this.styleController.AppearanceReadOnly.Options.UseFont = true;
			this.styleController.AppearanceReadOnly.Options.UseForeColor = true;
			// 
			// checkEditDates
			// 
			this.checkEditDates.AutoSizeInLayoutControl = true;
			this.checkEditDates.EditValue = true;
			this.checkEditDates.Location = new System.Drawing.Point(313, 64);
			this.checkEditDates.Name = "checkEditDates";
			this.checkEditDates.Properties.Caption = "";
			this.checkEditDates.Size = new System.Drawing.Size(19, 19);
			this.checkEditDates.TabIndex = 40;
			this.checkEditDates.CheckedChanged += new System.EventHandler(this.checkEditDates_CheckedChanged);
			this.checkEditDates.MouseDown += new System.Windows.Forms.MouseEventHandler(this.checkEdit_MouseDown);
			// 
			// memoEditDates
			// 
			this.memoEditDates.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
			this.memoEditDates.Location = new System.Drawing.Point(338, 64);
			this.memoEditDates.Name = "memoEditDates";
			this.memoEditDates.Size = new System.Drawing.Size(606, 62);
			this.memoEditDates.StyleController = this.styleController;
			this.memoEditDates.TabIndex = 39;
			this.memoEditDates.UseOptimizedRendering = true;
			// 
			// laInvestment
			// 
			this.laInvestment.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
			this.laInvestment.AutoSize = true;
			this.laInvestment.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
			this.laInvestment.Location = new System.Drawing.Point(412, 366);
			this.laInvestment.Name = "laInvestment";
			this.laInvestment.Size = new System.Drawing.Size(123, 18);
			this.laInvestment.TabIndex = 38;
			this.laInvestment.Text = "Investment: $Tag";
			// 
			// comboBoxEditInvestment
			// 
			this.comboBoxEditInvestment.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
			this.comboBoxEditInvestment.EditValue = "Total";
			this.comboBoxEditInvestment.Location = new System.Drawing.Point(338, 365);
			this.comboBoxEditInvestment.Name = "comboBoxEditInvestment";
			this.comboBoxEditInvestment.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEditInvestment.Properties.Items.AddRange(new object[] {
            "Total",
            "Monthly"});
			this.comboBoxEditInvestment.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEditInvestment.Size = new System.Drawing.Size(71, 22);
			this.comboBoxEditInvestment.StyleController = this.styleController;
			this.comboBoxEditInvestment.TabIndex = 37;
			this.comboBoxEditInvestment.EditValueChanged += new System.EventHandler(this.comboBoxEditInvestment_EditValueChanged);
			// 
			// checkEditInvestment
			// 
			this.checkEditInvestment.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
			this.checkEditInvestment.AutoSizeInLayoutControl = true;
			this.checkEditInvestment.EditValue = true;
			this.checkEditInvestment.Location = new System.Drawing.Point(313, 367);
			this.checkEditInvestment.Name = "checkEditInvestment";
			this.checkEditInvestment.Properties.Caption = "";
			this.checkEditInvestment.Size = new System.Drawing.Size(19, 19);
			this.checkEditInvestment.TabIndex = 36;
			this.checkEditInvestment.CheckedChanged += new System.EventHandler(this.checkEditInvestment_CheckedChanged);
			this.checkEditInvestment.MouseDown += new System.Windows.Forms.MouseEventHandler(this.checkEdit_MouseDown);
			// 
			// laDates
			// 
			this.laDates.AutoSize = true;
			this.laDates.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
			this.laDates.Location = new System.Drawing.Point(386, 21);
			this.laDates.Name = "laDates";
			this.laDates.Size = new System.Drawing.Size(95, 19);
			this.laDates.TabIndex = 35;
			this.laDates.Text = "Run Dates:";
			// 
			// pictureBoxDates
			// 
			this.pictureBoxDates.Image = global::Asa.AdSchedule.Controls.Properties.Resources.Calendar;
			this.pictureBoxDates.Location = new System.Drawing.Point(338, 11);
			this.pictureBoxDates.Name = "pictureBoxDates";
			this.pictureBoxDates.Size = new System.Drawing.Size(41, 41);
			this.pictureBoxDates.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
			this.pictureBoxDates.TabIndex = 32;
			this.pictureBoxDates.TabStop = false;
			// 
			// checkEditLogo
			// 
			this.checkEditLogo.AutoSizeInLayoutControl = true;
			this.checkEditLogo.EditValue = true;
			this.checkEditLogo.Location = new System.Drawing.Point(6, 14);
			this.checkEditLogo.Name = "checkEditLogo";
			this.checkEditLogo.Properties.Caption = "";
			this.checkEditLogo.Size = new System.Drawing.Size(19, 19);
			this.checkEditLogo.TabIndex = 10;
			this.checkEditLogo.CheckedChanged += new System.EventHandler(this.checkEdit_CheckedChanged);
			this.checkEditLogo.MouseDown += new System.Windows.Forms.MouseEventHandler(this.checkEdit_MouseDown);
			// 
			// pnMain
			// 
			this.pnMain.Controls.Add(this.laFlightDates);
			this.pnMain.Controls.Add(this.checkEditTwoPerSlide);
			this.pnMain.Controls.Add(this.hyperLinkEditReset);
			this.pnMain.Controls.Add(this.pbComments);
			this.pnMain.Controls.Add(this.laComments);
			this.pnMain.Controls.Add(this.pbLogo);
			this.pnMain.Controls.Add(this.checkEditFlightDates);
			this.pnMain.Controls.Add(this.pnItems);
			this.pnMain.Controls.Add(this.checkEditLogo);
			this.pnMain.Controls.Add(this.laAdItems);
			this.pnMain.Controls.Add(this.pictureBoxDates);
			this.pnMain.Controls.Add(this.checkEditComments);
			this.pnMain.Controls.Add(this.memoEditComments);
			this.pnMain.Controls.Add(this.laDates);
			this.pnMain.Controls.Add(this.checkEditDates);
			this.pnMain.Controls.Add(this.checkEditInvestment);
			this.pnMain.Controls.Add(this.memoEditDates);
			this.pnMain.Controls.Add(this.comboBoxEditInvestment);
			this.pnMain.Controls.Add(this.laInvestment);
			this.pnMain.Dock = System.Windows.Forms.DockStyle.Fill;
			this.pnMain.Location = new System.Drawing.Point(0, 0);
			this.pnMain.Name = "pnMain";
			this.pnMain.Size = new System.Drawing.Size(949, 420);
			this.pnMain.TabIndex = 53;
			// 
			// laFlightDates
			// 
			this.laFlightDates.AutoSize = true;
			this.laFlightDates.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
			this.laFlightDates.Location = new System.Drawing.Point(519, 23);
			this.laFlightDates.Name = "laFlightDates";
			this.laFlightDates.Size = new System.Drawing.Size(78, 16);
			this.laFlightDates.TabIndex = 106;
			this.laFlightDates.Text = "Flight Dates";
			// 
			// checkEditTwoPerSlide
			// 
			this.checkEditTwoPerSlide.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
			this.checkEditTwoPerSlide.Location = new System.Drawing.Point(758, 366);
			this.checkEditTwoPerSlide.Name = "checkEditTwoPerSlide";
			this.checkEditTwoPerSlide.Properties.Appearance.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
			this.checkEditTwoPerSlide.Properties.Appearance.Options.UseFont = true;
			this.checkEditTwoPerSlide.Properties.Appearance.Options.UseTextOptions = true;
			this.checkEditTwoPerSlide.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
			this.checkEditTwoPerSlide.Properties.AutoWidth = true;
			this.checkEditTwoPerSlide.Properties.Caption = "Output 2 Products Per Slide";
			this.checkEditTwoPerSlide.Size = new System.Drawing.Size(185, 20);
			this.checkEditTwoPerSlide.TabIndex = 105;
			this.checkEditTwoPerSlide.CheckedChanged += new System.EventHandler(this.checkEdit_CheckedChanged);
			this.checkEditTwoPerSlide.MouseDown += new System.Windows.Forms.MouseEventHandler(this.checkEdit_MouseDown);
			// 
			// hyperLinkEditReset
			// 
			this.hyperLinkEditReset.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
			this.hyperLinkEditReset.EditValue = "Reset Defaults";
			this.hyperLinkEditReset.Location = new System.Drawing.Point(8, 397);
			this.hyperLinkEditReset.Name = "hyperLinkEditReset";
			this.hyperLinkEditReset.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
			this.hyperLinkEditReset.Properties.Appearance.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
			this.hyperLinkEditReset.Properties.Appearance.ForeColor = System.Drawing.Color.DarkBlue;
			this.hyperLinkEditReset.Properties.Appearance.Options.UseBackColor = true;
			this.hyperLinkEditReset.Properties.Appearance.Options.UseFont = true;
			this.hyperLinkEditReset.Properties.Appearance.Options.UseForeColor = true;
			this.hyperLinkEditReset.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
			this.hyperLinkEditReset.Size = new System.Drawing.Size(101, 20);
			toolTipItem1.Text = "Reset original default data";
			superToolTip1.Items.Add(toolTipItem1);
			this.hyperLinkEditReset.SuperTip = superToolTip1;
			this.hyperLinkEditReset.TabIndex = 104;
			this.hyperLinkEditReset.OpenLink += new DevExpress.XtraEditors.Controls.OpenLinkEventHandler(this.hyperLinkEditReset_OpenLink);
			// 
			// pbComments
			// 
			this.pbComments.Image = global::Asa.AdSchedule.Controls.Properties.Resources.Notes;
			this.pbComments.Location = new System.Drawing.Point(338, 195);
			this.pbComments.Name = "pbComments";
			this.pbComments.Size = new System.Drawing.Size(41, 41);
			this.pbComments.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
			this.pbComments.TabIndex = 54;
			this.pbComments.TabStop = false;
			// 
			// laComments
			// 
			this.laComments.AutoSize = true;
			this.laComments.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
			this.laComments.Location = new System.Drawing.Point(386, 205);
			this.laComments.Name = "laComments";
			this.laComments.Size = new System.Drawing.Size(136, 19);
			this.laComments.TabIndex = 55;
			this.laComments.Text = "Schedule Notes:";
			// 
			// pbLogo
			// 
			this.pbLogo.Location = new System.Drawing.Point(31, 11);
			this.pbLogo.Name = "pbLogo";
			this.pbLogo.Size = new System.Drawing.Size(165, 75);
			this.pbLogo.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
			this.pbLogo.TabIndex = 53;
			this.pbLogo.TabStop = false;
			// 
			// PublicationMultiSummaryControl
			// 
			this.Controls.Add(this.pnMain);
			this.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
			this.Name = "PublicationMultiSummaryControl";
			this.Size = new System.Drawing.Size(949, 420);
			((System.ComponentModel.ISupportInitialize)(this.checkEditFlightDates.Properties)).EndInit();
			this.pnItems.ResumeLayout(false);
			this.xtraScrollableControl.ResumeLayout(false);
			this.pnSections.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.checkEditSections.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEditMechanicals.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEditDiscounts.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEditAvgFinalCost.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEditAvgAdCost.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEditAvgPCI.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEditColor.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEditPercentOfPage.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEditPageSize.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEditDimensions.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEditSquare.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEditTotalSquare.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEditTotalAds.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEditComments.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.memoEditComments.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.styleController)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEditDates.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.memoEditDates.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEditInvestment.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEditInvestment.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.pictureBoxDates)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEditLogo.Properties)).EndInit();
			this.pnMain.ResumeLayout(false);
			this.pnMain.PerformLayout();
			((System.ComponentModel.ISupportInitialize)(this.checkEditTwoPerSlide.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.hyperLinkEditReset.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.pbComments)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.pbLogo)).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.XtraGrid.GridLevelNode gridLevelNode2 = new DevExpress.XtraGrid.GridLevelNode();
            DevExpress.Utils.SuperToolTip superToolTip8 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem10 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem6 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip9 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem11 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem7 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip10 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem12 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem8 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip11 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem13 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.SuperToolTip superToolTip12 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem14 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem9 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.ToolTipSeparatorItem toolTipSeparatorItem3 = new DevExpress.Utils.ToolTipSeparatorItem();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem15 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.SuperToolTip superToolTip5 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem5 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem4 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.ToolTipSeparatorItem toolTipSeparatorItem1 = new DevExpress.Utils.ToolTipSeparatorItem();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem6 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.SuperToolTip superToolTip6 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem7 = new DevExpress.Utils.ToolTipTitleItem();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MoviesUserControl));
            this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
            this.xtraTabControl2 = new DevExpress.XtraTab.XtraTabControl();
            this.tabByTitle = new DevExpress.XtraTab.XtraTabPage();
            this.grdMoviesList = new DevExpress.XtraGrid.GridControl();
            this.grdViewByTitle = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.LoadingStatus = new DevExpress.XtraGrid.Columns.GridColumn();
            this.BusyPicture = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
            this.clmTitle = new DevExpress.XtraGrid.Columns.GridColumn();
            this.clmYear = new DevExpress.XtraGrid.Columns.GridColumn();
            this.clmMarked = new DevExpress.XtraGrid.Columns.GridColumn();
            this.chkMarked = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
            this.clmLocked = new DevExpress.XtraGrid.Columns.GridColumn();
            this.clmReleased = new DevExpress.XtraGrid.Columns.GridColumn();
            this.RepositoryImageComboBox = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
            this.toolTipController1 = new DevExpress.Utils.ToolTipController(this.components);
            this.tabByPoster = new DevExpress.XtraTab.XtraTabPage();
            this.galleryControl1 = new DevExpress.XtraBars.Ribbon.GalleryControl();
            this.galleryControlClient1 = new DevExpress.XtraBars.Ribbon.GalleryControlClient();
            this.picFanart = new YANFOE.UI.UserControls.CommonControls.DisplayPictureUserControl();
            this.tabEditTabsControl = new DevExpress.XtraTab.XtraTabControl();
            this.tabMainDetails = new DevExpress.XtraTab.XtraTabPage();
            this.movieMainDetailsUserControl1 = new YANFOE.UI.UserControls.MovieControls.MovieMainDetailsUserControl();
            this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
            this.simpleButton4 = new DevExpress.XtraEditors.SimpleButton();
            this.simpleButton3 = new DevExpress.XtraEditors.SimpleButton();
            this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
            this.btnNew = new DevExpress.XtraEditors.SimpleButton();
            this.btnMarked = new DevExpress.XtraEditors.SimpleButton();
            this.btnSave = new DevExpress.XtraEditors.SimpleButton();
            this.btnLoadFromWeb = new DevExpress.XtraEditors.SimpleButton();
            this.btnLock = new DevExpress.XtraEditors.SimpleButton();
            this.tabFileInfo = new DevExpress.XtraTab.XtraTabPage();
            this.movieFileInfoUserControl1 = new YANFOE.UI.UserControls.MovieControls.MovieFileInfoUserControl();
            this.tabIdentify = new DevExpress.XtraTab.XtraTabPage();
            this.movieIdentierUserControl11 = new YANFOE.UI.UserControls.MovieControls.MovieIdentierUserControl1();
            this.tabSets = new DevExpress.XtraTab.XtraTabPage();
            this.setManagerUserControl1 = new YANFOE.UI.UserControls.MovieControls.SetManagerUserControl();
            this.tabTrailers = new DevExpress.XtraTab.XtraTabPage();
            this.movieTrailerUserControl1 = new YANFOE.UI.UserControls.MovieControls.MovieTrailerUserControl();
            this.tabPreview = new DevExpress.XtraTab.XtraTabPage();
            this.nfoPreviewUserControl1 = new YANFOE.UI.UserControls.CommonControls.NFOPreviewUserControl();
            this.picPoster = new YANFOE.UI.UserControls.CommonControls.DisplayPictureUserControl();
            this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
            this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
            this.layoutControlImages = new DevExpress.XtraLayout.LayoutControlGroup();
            this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
            this.splitterItem1 = new DevExpress.XtraLayout.SplitterItem();
            this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
            this.splitterItem3 = new DevExpress.XtraLayout.SplitterItem();
            this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
            this.splitterItem2 = new DevExpress.XtraLayout.SplitterItem();
            this.galleryControlGallery1 = new DevExpress.XtraBars.Ribbon.Gallery.GalleryControlGallery();
            this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
            this.popupSave = new DevExpress.XtraBars.PopupMenu(this.components);
            this.btnSaveNfo = new DevExpress.XtraBars.BarButtonItem();
            this.btnSaveAllImages = new DevExpress.XtraBars.BarButtonItem();
            this.btnSavePoster = new DevExpress.XtraBars.BarButtonItem();
            this.btnSaveFanart = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem8 = new DevExpress.XtraBars.BarButtonItem();
            this.popupLoadFromWeb = new DevExpress.XtraBars.PopupMenu(this.components);
            this.barStaticItem2 = new DevExpress.XtraBars.BarStaticItem();
            this.barButtonItem7 = new DevExpress.XtraBars.BarButtonItem();
            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.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
            this.barSubItem1 = new DevExpress.XtraBars.BarSubItem();
            this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
            this.barCheckItem1 = new DevExpress.XtraBars.BarCheckItem();
            this.barCheckItem2 = new DevExpress.XtraBars.BarCheckItem();
            this.imageCollection1 = new DevExpress.Utils.ImageCollection(this.components);
            this.popupMovieList = new DevExpress.XtraBars.PopupMenu(this.components);
            ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
            this.layoutControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl2)).BeginInit();
            this.xtraTabControl2.SuspendLayout();
            this.tabByTitle.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdMoviesList)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.grdViewByTitle)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.BusyPicture)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chkMarked)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.RepositoryImageComboBox)).BeginInit();
            this.tabByPoster.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.galleryControl1)).BeginInit();
            this.galleryControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.tabEditTabsControl)).BeginInit();
            this.tabEditTabsControl.SuspendLayout();
            this.tabMainDetails.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
            this.panelControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
            this.tabFileInfo.SuspendLayout();
            this.tabIdentify.SuspendLayout();
            this.tabSets.SuspendLayout();
            this.tabTrailers.SuspendLayout();
            this.tabPreview.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlImages)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitterItem1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitterItem3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitterItem2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupSave)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupLoadFromWeb)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.imageCollection1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMovieList)).BeginInit();
            this.SuspendLayout();
            // 
            // layoutControl1
            // 
            this.layoutControl1.Controls.Add(this.xtraTabControl2);
            this.layoutControl1.Controls.Add(this.picFanart);
            this.layoutControl1.Controls.Add(this.tabEditTabsControl);
            this.layoutControl1.Controls.Add(this.picPoster);
            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(1200, 238, 354, 436);
            this.layoutControl1.Padding = new System.Windows.Forms.Padding(10);
            this.layoutControl1.Root = this.layoutControlGroup1;
            this.layoutControl1.Size = new System.Drawing.Size(1049, 714);
            this.layoutControl1.TabIndex = 0;
            this.layoutControl1.Text = "layoutControl1";
            // 
            // xtraTabControl2
            // 
            this.xtraTabControl2.Location = new System.Drawing.Point(2, 2);
            this.xtraTabControl2.Name = "xtraTabControl2";
            this.xtraTabControl2.SelectedTabPage = this.tabByTitle;
            this.xtraTabControl2.Size = new System.Drawing.Size(259, 710);
            this.xtraTabControl2.TabIndex = 1;
            this.xtraTabControl2.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
            this.tabByTitle,
            this.tabByPoster});
            // 
            // tabByTitle
            // 
            this.tabByTitle.Controls.Add(this.grdMoviesList);
            this.tabByTitle.Name = "tabByTitle";
            this.tabByTitle.Size = new System.Drawing.Size(253, 684);
            this.tabByTitle.Text = "Title (0)";
            // 
            // grdMoviesList
            // 
            this.grdMoviesList.Dock = System.Windows.Forms.DockStyle.Fill;
            gridLevelNode2.RelationName = "Level1";
            this.grdMoviesList.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
            gridLevelNode2});
            this.grdMoviesList.Location = new System.Drawing.Point(0, 0);
            this.grdMoviesList.MainView = this.grdViewByTitle;
            this.grdMoviesList.Name = "grdMoviesList";
            this.grdMoviesList.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.RepositoryImageComboBox,
            this.BusyPicture,
            this.chkMarked});
            this.grdMoviesList.ShowOnlyPredefinedDetails = true;
            this.grdMoviesList.Size = new System.Drawing.Size(253, 684);
            this.grdMoviesList.TabIndex = 1;
            this.grdMoviesList.ToolTipController = this.toolTipController1;
            this.grdMoviesList.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.grdViewByTitle});
            // 
            // grdViewByTitle
            // 
            this.grdViewByTitle.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.LoadingStatus,
            this.clmTitle,
            this.clmYear,
            this.clmMarked,
            this.clmLocked,
            this.clmReleased});
            this.grdViewByTitle.GridControl = this.grdMoviesList;
            this.grdViewByTitle.Name = "grdViewByTitle";
            this.grdViewByTitle.OptionsSelection.MultiSelect = true;
            this.grdViewByTitle.OptionsView.AnimationType = DevExpress.XtraGrid.Views.Base.GridAnimationType.AnimateAllContent;
            this.grdViewByTitle.RowCellStyle += new DevExpress.XtraGrid.Views.Grid.RowCellStyleEventHandler(this.GrdViewByTitle_RowCellStyle);
            this.grdViewByTitle.PopupMenuShowing += new DevExpress.XtraGrid.Views.Grid.PopupMenuShowingEventHandler(this.grdViewByTitle_PopupMenuShowing);
            this.grdViewByTitle.SelectionChanged += new DevExpress.Data.SelectionChangedEventHandler(this.GrdViewByTitle_SelectionChanged);
            this.grdViewByTitle.DoubleClick += new System.EventHandler(this.GrdViewByTitle_DoubleClick);
            // 
            // LoadingStatus
            // 
            this.LoadingStatus.Caption = " ";
            this.LoadingStatus.ColumnEdit = this.BusyPicture;
            this.LoadingStatus.FieldName = "Busy";
            this.LoadingStatus.MaxWidth = 20;
            this.LoadingStatus.Name = "LoadingStatus";
            this.LoadingStatus.Visible = true;
            this.LoadingStatus.VisibleIndex = 0;
            this.LoadingStatus.Width = 20;
            // 
            // BusyPicture
            // 
            this.BusyPicture.Name = "BusyPicture";
            // 
            // clmTitle
            // 
            this.clmTitle.Caption = "Title";
            this.clmTitle.FieldName = "Title";
            this.clmTitle.Name = "clmTitle";
            this.clmTitle.OptionsColumn.AllowEdit = false;
            this.clmTitle.ToolTip = "Test tool tip";
            this.clmTitle.Visible = true;
            this.clmTitle.VisibleIndex = 1;
            this.clmTitle.Width = 104;
            // 
            // clmYear
            // 
            this.clmYear.Caption = "Year";
            this.clmYear.FieldName = "Year";
            this.clmYear.MaxWidth = 60;
            this.clmYear.Name = "clmYear";
            this.clmYear.OptionsColumn.AllowEdit = false;
            this.clmYear.Visible = true;
            this.clmYear.VisibleIndex = 2;
            this.clmYear.Width = 40;
            // 
            // clmMarked
            // 
            this.clmMarked.AppearanceHeader.Image = global::YANFOE.Properties.Resources.star_full;
            this.clmMarked.AppearanceHeader.Options.UseImage = true;
            this.clmMarked.ColumnEdit = this.chkMarked;
            this.clmMarked.FieldName = "Marked";
            this.clmMarked.MaxWidth = 22;
            this.clmMarked.Name = "clmMarked";
            this.clmMarked.Visible = true;
            this.clmMarked.VisibleIndex = 3;
            this.clmMarked.Width = 20;
            // 
            // chkMarked
            // 
            this.chkMarked.AutoHeight = false;
            this.chkMarked.Name = "chkMarked";
            this.chkMarked.PictureChecked = global::YANFOE.Properties.Resources.star_full;
            this.chkMarked.PictureUnchecked = global::YANFOE.Properties.Resources.star_empty;
            // 
            // clmLocked
            // 
            this.clmLocked.Caption = "Locked";
            this.clmLocked.FieldName = "Locked";
            this.clmLocked.MaxWidth = 20;
            this.clmLocked.Name = "clmLocked";
            this.clmLocked.Visible = true;
            this.clmLocked.VisibleIndex = 4;
            this.clmLocked.Width = 20;
            // 
            // clmReleased
            // 
            this.clmReleased.Caption = "Released";
            this.clmReleased.Name = "clmReleased";
            // 
            // RepositoryImageComboBox
            // 
            this.RepositoryImageComboBox.AutoHeight = false;
            this.RepositoryImageComboBox.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.RepositoryImageComboBox.Name = "RepositoryImageComboBox";
            // 
            // toolTipController1
            // 
            this.toolTipController1.AllowHtmlText = true;
            this.toolTipController1.InitialDelay = 1;
            this.toolTipController1.GetActiveObjectInfo += new DevExpress.Utils.ToolTipControllerGetActiveObjectInfoEventHandler(this.ToolTipController1_GetActiveObjectInfo);
            // 
            // tabByPoster
            // 
            this.tabByPoster.Controls.Add(this.galleryControl1);
            this.tabByPoster.Name = "tabByPoster";
            this.tabByPoster.Size = new System.Drawing.Size(253, 684);
            this.tabByPoster.Text = "Poster (0)";
            // 
            // galleryControl1
            // 
            this.galleryControl1.Controls.Add(this.galleryControlClient1);
            this.galleryControl1.DesignGalleryGroupIndex = 0;
            this.galleryControl1.DesignGalleryItemIndex = 0;
            this.galleryControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            // 
            // galleryControlGallery2
            // 
            this.galleryControl1.Gallery.ImageSize = new System.Drawing.Size(100, 150);
            this.galleryControl1.Gallery.ItemClick += new DevExpress.XtraBars.Ribbon.GalleryItemClickEventHandler(this.GalleryItem_Click);
            this.galleryControl1.Location = new System.Drawing.Point(0, 0);
            this.galleryControl1.Name = "galleryControl1";
            this.galleryControl1.Size = new System.Drawing.Size(253, 684);
            this.galleryControl1.TabIndex = 0;
            this.galleryControl1.Text = "Movies";
            // 
            // galleryControlClient1
            // 
            this.galleryControlClient1.GalleryControl = this.galleryControl1;
            this.galleryControlClient1.Location = new System.Drawing.Point(2, 2);
            this.galleryControlClient1.Size = new System.Drawing.Size(232, 680);
            // 
            // picFanart
            // 
            this.picFanart.HeaderDetails = "No Image";
            this.picFanart.HeaderTitle = "Fanart";
            this.picFanart.Location = new System.Drawing.Point(692, 356);
            this.picFanart.Margin = new System.Windows.Forms.Padding(0);
            this.picFanart.Name = "picFanart";
            this.picFanart.Size = new System.Drawing.Size(352, 333);
            this.picFanart.TabIndex = 7;
            this.picFanart.Type = YANFOE.Tools.Enums.GalleryType.MovieFanart;
            // 
            // tabEditTabsControl
            // 
            this.tabEditTabsControl.Location = new System.Drawing.Point(270, 2);
            this.tabEditTabsControl.Name = "tabEditTabsControl";
            this.tabEditTabsControl.SelectedTabPage = this.tabMainDetails;
            this.tabEditTabsControl.Size = new System.Drawing.Size(777, 342);
            this.tabEditTabsControl.TabIndex = 5;
            this.tabEditTabsControl.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
            this.tabMainDetails,
            this.tabFileInfo,
            this.tabIdentify,
            this.tabSets,
            this.tabTrailers,
            this.tabPreview});
            // 
            // tabMainDetails
            // 
            this.tabMainDetails.Controls.Add(this.movieMainDetailsUserControl1);
            this.tabMainDetails.Controls.Add(this.panelControl1);
            this.tabMainDetails.Name = "tabMainDetails";
            this.tabMainDetails.Size = new System.Drawing.Size(771, 316);
            this.tabMainDetails.Text = "Main Details";
            // 
            // movieMainDetailsUserControl1
            // 
            this.movieMainDetailsUserControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.movieMainDetailsUserControl1.Location = new System.Drawing.Point(0, 44);
            this.movieMainDetailsUserControl1.Name = "movieMainDetailsUserControl1";
            this.movieMainDetailsUserControl1.Size = new System.Drawing.Size(771, 272);
            this.movieMainDetailsUserControl1.TabIndex = 0;
            // 
            // panelControl1
            // 
            this.panelControl1.Controls.Add(this.simpleButton4);
            this.panelControl1.Controls.Add(this.simpleButton3);
            this.panelControl1.Controls.Add(this.panelControl2);
            this.panelControl1.Controls.Add(this.btnNew);
            this.panelControl1.Controls.Add(this.btnMarked);
            this.panelControl1.Controls.Add(this.btnSave);
            this.panelControl1.Controls.Add(this.btnLoadFromWeb);
            this.panelControl1.Controls.Add(this.btnLock);
            this.panelControl1.Dock = System.Windows.Forms.DockStyle.Top;
            this.panelControl1.Location = new System.Drawing.Point(0, 0);
            this.panelControl1.Name = "panelControl1";
            this.panelControl1.Size = new System.Drawing.Size(771, 44);
            this.panelControl1.TabIndex = 1;
            // 
            // simpleButton4
            // 
            this.simpleButton4.Dock = System.Windows.Forms.DockStyle.Left;
            this.simpleButton4.Enabled = false;
            this.simpleButton4.Image = global::YANFOE.Properties.Resources.folder32;
            this.simpleButton4.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
            this.simpleButton4.Location = new System.Drawing.Point(156, 2);
            this.simpleButton4.Name = "simpleButton4";
            this.simpleButton4.Size = new System.Drawing.Size(48, 40);
            superToolTip8.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
            toolTipTitleItem10.Text = "Open Movie";
            toolTipItem6.LeftIndent = 6;
            toolTipItem6.Text = "Clicking this link will open the movie files <fileName>\r\n";
            superToolTip8.Items.Add(toolTipTitleItem10);
            superToolTip8.Items.Add(toolTipItem6);
            this.simpleButton4.SuperTip = superToolTip8;
            this.simpleButton4.TabIndex = 11;
            // 
            // simpleButton3
            // 
            this.simpleButton3.Dock = System.Windows.Forms.DockStyle.Left;
            this.simpleButton3.Enabled = false;
            this.simpleButton3.Image = global::YANFOE.Properties.Resources.monitor;
            this.simpleButton3.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
            this.simpleButton3.Location = new System.Drawing.Point(108, 2);
            this.simpleButton3.Name = "simpleButton3";
            this.simpleButton3.Size = new System.Drawing.Size(48, 40);
            superToolTip9.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
            toolTipTitleItem11.Text = "Open Movie";
            toolTipItem7.LeftIndent = 6;
            toolTipItem7.Text = "Clicking this link will open the movie files <fileName>\r\n";
            superToolTip9.Items.Add(toolTipTitleItem11);
            superToolTip9.Items.Add(toolTipItem7);
            this.simpleButton3.SuperTip = superToolTip9;
            this.simpleButton3.TabIndex = 10;
            // 
            // panelControl2
            // 
            this.panelControl2.Dock = System.Windows.Forms.DockStyle.Left;
            this.panelControl2.Location = new System.Drawing.Point(98, 2);
            this.panelControl2.Name = "panelControl2";
            this.panelControl2.Size = new System.Drawing.Size(10, 40);
            this.panelControl2.TabIndex = 9;
            // 
            // btnNew
            // 
            this.btnNew.Dock = System.Windows.Forms.DockStyle.Right;
            this.btnNew.Image = global::YANFOE.Properties.Resources.new32;
            this.btnNew.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
            this.btnNew.Location = new System.Drawing.Point(625, 2);
            this.btnNew.Name = "btnNew";
            this.btnNew.Size = new System.Drawing.Size(48, 40);
            superToolTip10.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
            toolTipTitleItem12.Appearance.Image = global::YANFOE.Properties.Resources.promo_red16;
            toolTipTitleItem12.Appearance.Options.UseImage = true;
            toolTipTitleItem12.Image = global::YANFOE.Properties.Resources.promo_red16;
            toolTipTitleItem12.Text = "Movie is marked as New";
            toolTipItem8.LeftIndent = 6;
            toolTipItem8.Text = "The new status will be removed next time YANFOE is started.<br>\r\n\r\n\r\n";
            superToolTip10.Items.Add(toolTipTitleItem12);
            superToolTip10.Items.Add(toolTipItem8);
            this.btnNew.SuperTip = superToolTip10;
            this.btnNew.TabIndex = 7;
            this.btnNew.Visible = false;
            this.btnNew.DoubleClick += new System.EventHandler(this.BtnNew_DoubleClick);
            // 
            // btnMarked
            // 
            this.btnMarked.Dock = System.Windows.Forms.DockStyle.Right;
            this.btnMarked.Image = global::YANFOE.Properties.Resources.star_empty32;
            this.btnMarked.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
            this.btnMarked.Location = new System.Drawing.Point(673, 2);
            this.btnMarked.Name = "btnMarked";
            this.btnMarked.Size = new System.Drawing.Size(48, 40);
            superToolTip11.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
            toolTipTitleItem13.Text = "Marked / Unmarked";
            superToolTip11.Items.Add(toolTipTitleItem13);
            this.btnMarked.SuperTip = superToolTip11;
            this.btnMarked.TabIndex = 6;
            this.btnMarked.Tag = "unmarked";
            this.btnMarked.Click += new System.EventHandler(this.BtnMarked_Click);
            // 
            // btnSave
            // 
            this.btnSave.Dock = System.Windows.Forms.DockStyle.Left;
            this.btnSave.Image = global::YANFOE.Properties.Resources.save32;
            this.btnSave.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
            this.btnSave.Location = new System.Drawing.Point(50, 2);
            this.btnSave.Name = "btnSave";
            this.barManager1.SetPopupContextMenu(this.btnSave, this.popupSave);
            this.btnSave.Size = new System.Drawing.Size(48, 40);
            superToolTip12.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
            toolTipTitleItem14.Text = "Save";
            toolTipItem9.LeftIndent = 6;
            toolTipItem9.Text = "Will Save Both NFO and Images To Disk";
            toolTipTitleItem15.LeftIndent = 6;
            toolTipTitleItem15.Text = "Right click for more options...\r\n";
            superToolTip12.Items.Add(toolTipTitleItem14);
            superToolTip12.Items.Add(toolTipItem9);
            superToolTip12.Items.Add(toolTipSeparatorItem3);
            superToolTip12.Items.Add(toolTipTitleItem15);
            this.btnSave.SuperTip = superToolTip12;
            this.btnSave.TabIndex = 4;
            this.btnSave.Click += new System.EventHandler(this.BtnSave_Click);
            // 
            // btnLoadFromWeb
            // 
            this.btnLoadFromWeb.Dock = System.Windows.Forms.DockStyle.Left;
            this.btnLoadFromWeb.Image = global::YANFOE.Properties.Resources.globe32;
            this.btnLoadFromWeb.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
            this.btnLoadFromWeb.Location = new System.Drawing.Point(2, 2);
            this.btnLoadFromWeb.Name = "btnLoadFromWeb";
            this.barManager1.SetPopupContextMenu(this.btnLoadFromWeb, this.popupLoadFromWeb);
            this.btnLoadFromWeb.Size = new System.Drawing.Size(48, 40);
            superToolTip5.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
            toolTipTitleItem5.Text = "Load From Web";
            toolTipItem4.LeftIndent = 6;
            toolTipItem4.Text = "Will download details using the scraper set for this movie.";
            toolTipTitleItem6.LeftIndent = 6;
            toolTipTitleItem6.Text = "Right click for more options...\r\n";
            superToolTip5.Items.Add(toolTipTitleItem5);
            superToolTip5.Items.Add(toolTipItem4);
            superToolTip5.Items.Add(toolTipSeparatorItem1);
            superToolTip5.Items.Add(toolTipTitleItem6);
            this.btnLoadFromWeb.SuperTip = superToolTip5;
            this.btnLoadFromWeb.TabIndex = 0;
            this.btnLoadFromWeb.Click += new System.EventHandler(this.BtnLoadFromWeb_Click);
            // 
            // btnLock
            // 
            this.btnLock.Dock = System.Windows.Forms.DockStyle.Right;
            this.btnLock.Image = global::YANFOE.Properties.Resources.unlock32;
            this.btnLock.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
            this.btnLock.Location = new System.Drawing.Point(721, 2);
            this.btnLock.Name = "btnLock";
            this.btnLock.Size = new System.Drawing.Size(48, 40);
            superToolTip6.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
            toolTipTitleItem7.Text = "Locked / Unlock";
            superToolTip6.Items.Add(toolTipTitleItem7);
            this.btnLock.SuperTip = superToolTip6;
            this.btnLock.TabIndex = 8;
            this.btnLock.Tag = "unlocked";
            this.btnLock.Click += new System.EventHandler(this.BtnLock_Click);
            // 
            // tabFileInfo
            // 
            this.tabFileInfo.Controls.Add(this.movieFileInfoUserControl1);
            this.tabFileInfo.Name = "tabFileInfo";
            this.tabFileInfo.Size = new System.Drawing.Size(771, 316);
            this.tabFileInfo.Text = "File Info";
            // 
            // movieFileInfoUserControl1
            // 
            this.movieFileInfoUserControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.movieFileInfoUserControl1.Location = new System.Drawing.Point(0, 0);
            this.movieFileInfoUserControl1.Name = "movieFileInfoUserControl1";
            this.movieFileInfoUserControl1.Size = new System.Drawing.Size(771, 316);
            this.movieFileInfoUserControl1.TabIndex = 0;
            // 
            // tabIdentify
            // 
            this.tabIdentify.Controls.Add(this.movieIdentierUserControl11);
            this.tabIdentify.Name = "tabIdentify";
            this.tabIdentify.Size = new System.Drawing.Size(771, 316);
            this.tabIdentify.Text = "Identifier";
            // 
            // movieIdentierUserControl11
            // 
            this.movieIdentierUserControl11.Dock = System.Windows.Forms.DockStyle.Fill;
            this.movieIdentierUserControl11.Location = new System.Drawing.Point(0, 0);
            this.movieIdentierUserControl11.Name = "movieIdentierUserControl11";
            this.movieIdentierUserControl11.Size = new System.Drawing.Size(771, 316);
            this.movieIdentierUserControl11.TabIndex = 0;
            // 
            // tabSets
            // 
            this.tabSets.Controls.Add(this.setManagerUserControl1);
            this.tabSets.Name = "tabSets";
            this.tabSets.Size = new System.Drawing.Size(771, 316);
            this.tabSets.Text = "Set";
            // 
            // setManagerUserControl1
            // 
            this.setManagerUserControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.setManagerUserControl1.Location = new System.Drawing.Point(0, 0);
            this.setManagerUserControl1.Name = "setManagerUserControl1";
            this.setManagerUserControl1.Size = new System.Drawing.Size(771, 316);
            this.setManagerUserControl1.TabIndex = 0;
            // 
            // tabTrailers
            // 
            this.tabTrailers.Controls.Add(this.movieTrailerUserControl1);
            this.tabTrailers.Name = "tabTrailers";
            this.tabTrailers.Size = new System.Drawing.Size(771, 316);
            this.tabTrailers.Text = "Trailers";
            // 
            // movieTrailerUserControl1
            // 
            this.movieTrailerUserControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.movieTrailerUserControl1.Location = new System.Drawing.Point(0, 0);
            this.movieTrailerUserControl1.Name = "movieTrailerUserControl1";
            this.movieTrailerUserControl1.Size = new System.Drawing.Size(771, 316);
            this.movieTrailerUserControl1.TabIndex = 0;
            // 
            // tabPreview
            // 
            this.tabPreview.Controls.Add(this.nfoPreviewUserControl1);
            this.tabPreview.Name = "tabPreview";
            this.tabPreview.Size = new System.Drawing.Size(771, 316);
            this.tabPreview.Text = "Previews";
            // 
            // nfoPreviewUserControl1
            // 
            this.nfoPreviewUserControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.nfoPreviewUserControl1.Location = new System.Drawing.Point(0, 0);
            this.nfoPreviewUserControl1.Name = "nfoPreviewUserControl1";
            this.nfoPreviewUserControl1.PreviewArea = YANFOE.UI.UserControls.CommonControls.NFOPreviewUserControl.TvOrMovies.Movies;
            this.nfoPreviewUserControl1.Size = new System.Drawing.Size(771, 316);
            this.nfoPreviewUserControl1.TabIndex = 0;
            // 
            // picPoster
            // 
            this.picPoster.HeaderDetails = "No Image";
            this.picPoster.HeaderTitle = "Poster";
            this.picPoster.Location = new System.Drawing.Point(273, 356);
            this.picPoster.Name = "picPoster";
            this.picPoster.Size = new System.Drawing.Size(410, 333);
            this.picPoster.TabIndex = 6;
            this.picPoster.Type = YANFOE.Tools.Enums.GalleryType.MoviePoster;
            // 
            // 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.layoutControlItem2,
            this.layoutControlImages,
            this.splitterItem3,
            this.layoutControlItem1,
            this.splitterItem2});
            this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
            this.layoutControlGroup1.Name = "Root";
            this.layoutControlGroup1.Padding = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
            this.layoutControlGroup1.Size = new System.Drawing.Size(1049, 714);
            this.layoutControlGroup1.Spacing = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
            this.layoutControlGroup1.Text = "Root";
            this.layoutControlGroup1.TextVisible = false;
            // 
            // layoutControlItem2
            // 
            this.layoutControlItem2.Control = this.tabEditTabsControl;
            this.layoutControlItem2.CustomizationFormText = "layoutControlItem2";
            this.layoutControlItem2.Location = new System.Drawing.Point(268, 0);
            this.layoutControlItem2.Name = "layoutControlItem2";
            this.layoutControlItem2.Size = new System.Drawing.Size(781, 346);
            this.layoutControlItem2.Text = "layoutControlItem2";
            this.layoutControlItem2.TextSize = new System.Drawing.Size(0, 0);
            this.layoutControlItem2.TextToControlDistance = 0;
            this.layoutControlItem2.TextVisible = false;
            // 
            // layoutControlImages
            // 
            this.layoutControlImages.CustomizationFormText = "Images";
            this.layoutControlImages.ExpandButtonMode = DevExpress.Utils.Controls.ExpandButtonMode.Inverted;
            this.layoutControlImages.ExpandButtonVisible = true;
            this.layoutControlImages.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
            this.layoutControlItem4,
            this.splitterItem1,
            this.layoutControlItem3});
            this.layoutControlImages.Location = new System.Drawing.Point(268, 351);
            this.layoutControlImages.Name = "layoutControlImages";
            this.layoutControlImages.Padding = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
            this.layoutControlImages.Size = new System.Drawing.Size(781, 363);
            this.layoutControlImages.Text = "Show / Hide Images";
            this.layoutControlImages.TextLocation = DevExpress.Utils.Locations.Bottom;
            // 
            // layoutControlItem4
            // 
            this.layoutControlItem4.Control = this.picFanart;
            this.layoutControlItem4.CustomizationFormText = "layoutControlItem4";
            this.layoutControlItem4.Location = new System.Drawing.Point(419, 0);
            this.layoutControlItem4.Name = "layoutControlItem4";
            this.layoutControlItem4.Size = new System.Drawing.Size(356, 337);
            this.layoutControlItem4.Text = "layoutControlItem4";
            this.layoutControlItem4.TextSize = new System.Drawing.Size(0, 0);
            this.layoutControlItem4.TextToControlDistance = 0;
            this.layoutControlItem4.TextVisible = false;
            // 
            // splitterItem1
            // 
            this.splitterItem1.AllowHotTrack = true;
            this.splitterItem1.CustomizationFormText = "splitterItem1";
            this.splitterItem1.Location = new System.Drawing.Point(414, 0);
            this.splitterItem1.Name = "splitterItem1";
            this.splitterItem1.Size = new System.Drawing.Size(5, 337);
            // 
            // layoutControlItem3
            // 
            this.layoutControlItem3.Control = this.picPoster;
            this.layoutControlItem3.CustomizationFormText = "layoutControlItem3";
            this.layoutControlItem3.Location = new System.Drawing.Point(0, 0);
            this.layoutControlItem3.Name = "layoutControlItem3";
            this.layoutControlItem3.Size = new System.Drawing.Size(414, 337);
            this.layoutControlItem3.Text = "layoutControlItem3";
            this.layoutControlItem3.TextSize = new System.Drawing.Size(0, 0);
            this.layoutControlItem3.TextToControlDistance = 0;
            this.layoutControlItem3.TextVisible = false;
            // 
            // splitterItem3
            // 
            this.splitterItem3.AllowHotTrack = true;
            this.splitterItem3.CustomizationFormText = "splitterItem3";
            this.splitterItem3.Location = new System.Drawing.Point(268, 346);
            this.splitterItem3.Name = "splitterItem3";
            this.splitterItem3.Size = new System.Drawing.Size(781, 5);
            // 
            // layoutControlItem1
            // 
            this.layoutControlItem1.Control = this.xtraTabControl2;
            this.layoutControlItem1.CustomizationFormText = "layoutControlItem1";
            this.layoutControlItem1.Location = new System.Drawing.Point(0, 0);
            this.layoutControlItem1.Name = "layoutControlItem1";
            this.layoutControlItem1.Size = new System.Drawing.Size(263, 714);
            this.layoutControlItem1.Text = "layoutControlItem1";
            this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
            this.layoutControlItem1.TextToControlDistance = 0;
            this.layoutControlItem1.TextVisible = false;
            // 
            // splitterItem2
            // 
            this.splitterItem2.AllowHotTrack = true;
            this.splitterItem2.CustomizationFormText = "splitterItem2";
            this.splitterItem2.Location = new System.Drawing.Point(263, 0);
            this.splitterItem2.Name = "splitterItem2";
            this.splitterItem2.Size = new System.Drawing.Size(5, 714);
            // 
            // barManager1
            // 
            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.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.barButtonItem1,
            this.barStaticItem1,
            this.barSubItem1,
            this.barButtonItem2,
            this.barStaticItem2,
            this.btnSaveNfo,
            this.btnSaveAllImages,
            this.btnSavePoster,
            this.btnSaveFanart,
            this.barButtonItem7,
            this.barButtonItem8,
            this.barButtonItem3,
            this.barButtonItem4,
            this.barCheckItem1,
            this.barCheckItem2});
            this.barManager1.MaxItemId = 15;
            // 
            // popupSave
            // 
            this.popupSave.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.btnSaveNfo),
            new DevExpress.XtraBars.LinkPersistInfo(this.btnSaveAllImages),
            new DevExpress.XtraBars.LinkPersistInfo(this.btnSavePoster, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.btnSaveFanart),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem8, true)});
            this.popupSave.Manager = this.barManager1;
            this.popupSave.Name = "popupSave";
            // 
            // btnSaveNfo
            // 
            this.btnSaveNfo.Caption = "Save NFO";
            this.btnSaveNfo.Glyph = global::YANFOE.Properties.Resources.school_board;
            this.btnSaveNfo.Id = 5;
            this.btnSaveNfo.Name = "btnSaveNfo";
            this.btnSaveNfo.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.BtnSaveNfo_ItemClick);
            // 
            // btnSaveAllImages
            // 
            this.btnSaveAllImages.Caption = "Save All Images";
            this.btnSaveAllImages.Glyph = global::YANFOE.Properties.Resources.picture;
            this.btnSaveAllImages.Id = 6;
            this.btnSaveAllImages.Name = "btnSaveAllImages";
            this.btnSaveAllImages.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.BtnSaveAllImages_ItemClick);
            // 
            // btnSavePoster
            // 
            this.btnSavePoster.Caption = "Save Poster";
            this.btnSavePoster.Glyph = global::YANFOE.Properties.Resources.picture_poster;
            this.btnSavePoster.Id = 7;
            this.btnSavePoster.Name = "btnSavePoster";
            this.btnSavePoster.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.BtnSavePoster_ItemClick);
            // 
            // btnSaveFanart
            // 
            this.btnSaveFanart.Caption = "Save Fanart";
            this.btnSaveFanart.Glyph = global::YANFOE.Properties.Resources.picture;
            this.btnSaveFanart.Id = 8;
            this.btnSaveFanart.Name = "btnSaveFanart";
            this.btnSaveFanart.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.BtnSaveFanart_ItemClick);
            // 
            // barButtonItem8
            // 
            this.barButtonItem8.Caption = "Save All";
            this.barButtonItem8.Glyph = global::YANFOE.Properties.Resources.save;
            this.barButtonItem8.Id = 10;
            this.barButtonItem8.Name = "barButtonItem8";
            this.barButtonItem8.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.BtnSave_Click);
            // 
            // popupLoadFromWeb
            // 
            this.popupLoadFromWeb.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barStaticItem2),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem7, true)});
            this.popupLoadFromWeb.Manager = this.barManager1;
            this.popupLoadFromWeb.Name = "popupLoadFromWeb";
            this.popupLoadFromWeb.ShowCaption = true;
            // 
            // barStaticItem2
            // 
            this.barStaticItem2.Caption = "<Current Scraper Group>";
            this.barStaticItem2.Id = 4;
            this.barStaticItem2.Name = "barStaticItem2";
            this.barStaticItem2.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // barButtonItem7
            // 
            this.barButtonItem7.Caption = "Scrape Using <alternative 1>";
            this.barButtonItem7.Id = 9;
            this.barButtonItem7.Name = "barButtonItem7";
            // 
            // 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(1049, 0);
            // 
            // barDockControlBottom
            // 
            this.barDockControlBottom.CausesValidation = false;
            this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.barDockControlBottom.Location = new System.Drawing.Point(0, 714);
            this.barDockControlBottom.Size = new System.Drawing.Size(1049, 0);
            // 
            // barDockControlLeft
            // 
            this.barDockControlLeft.CausesValidation = false;
            this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
            this.barDockControlLeft.Location = new System.Drawing.Point(0, 0);
            this.barDockControlLeft.Size = new System.Drawing.Size(0, 714);
            // 
            // barDockControlRight
            // 
            this.barDockControlRight.CausesValidation = false;
            this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
            this.barDockControlRight.Location = new System.Drawing.Point(1049, 0);
            this.barDockControlRight.Size = new System.Drawing.Size(0, 714);
            // 
            // barButtonItem1
            // 
            this.barButtonItem1.Caption = "Load From Web";
            this.barButtonItem1.Id = 0;
            this.barButtonItem1.Name = "barButtonItem1";
            // 
            // barStaticItem1
            // 
            this.barStaticItem1.Caption = "Load From Web";
            this.barStaticItem1.Id = 1;
            this.barStaticItem1.Name = "barStaticItem1";
            this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // barSubItem1
            // 
            this.barSubItem1.Caption = "barSubItem1";
            this.barSubItem1.Id = 2;
            this.barSubItem1.Name = "barSubItem1";
            // 
            // barButtonItem2
            // 
            this.barButtonItem2.Caption = "Scrape Text From Scraper Group";
            this.barButtonItem2.Id = 3;
            this.barButtonItem2.Name = "barButtonItem2";
            // 
            // barButtonItem3
            // 
            this.barButtonItem3.Caption = "Lock";
            this.barButtonItem3.Id = 11;
            this.barButtonItem3.Name = "barButtonItem3";
            // 
            // barButtonItem4
            // 
            this.barButtonItem4.Caption = "Unlock";
            this.barButtonItem4.Id = 12;
            this.barButtonItem4.Name = "barButtonItem4";
            // 
            // barCheckItem1
            // 
            this.barCheckItem1.Caption = "Lock";
            this.barCheckItem1.Glyph = global::YANFOE.Properties.Resources.unlock32;
            this.barCheckItem1.Id = 13;
            this.barCheckItem1.Name = "barCheckItem1";
            // 
            // barCheckItem2
            // 
            this.barCheckItem2.Caption = "Mark";
            this.barCheckItem2.Glyph = global::YANFOE.Properties.Resources.star_empty32;
            this.barCheckItem2.Id = 14;
            this.barCheckItem2.Name = "barCheckItem2";
            // 
            // imageCollection1
            // 
            this.imageCollection1.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imageCollection1.ImageStream")));
            this.imageCollection1.Images.SetKeyName(0, "lock.png");
            this.imageCollection1.Images.SetKeyName(1, "star_full.png");
            // 
            // popupMovieList
            // 
            this.popupMovieList.Manager = this.barManager1;
            this.popupMovieList.Name = "popupMovieList";
            this.popupMovieList.BeforePopup += new System.ComponentModel.CancelEventHandler(this.popupMovieList_BeforePopup);
            // 
            // MoviesUserControl
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            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 = "MoviesUserControl";
            this.Size = new System.Drawing.Size(1049, 714);
            ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
            this.layoutControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl2)).EndInit();
            this.xtraTabControl2.ResumeLayout(false);
            this.tabByTitle.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.grdMoviesList)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.grdViewByTitle)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.BusyPicture)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chkMarked)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.RepositoryImageComboBox)).EndInit();
            this.tabByPoster.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.galleryControl1)).EndInit();
            this.galleryControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.tabEditTabsControl)).EndInit();
            this.tabEditTabsControl.ResumeLayout(false);
            this.tabMainDetails.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
            this.panelControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
            this.tabFileInfo.ResumeLayout(false);
            this.tabIdentify.ResumeLayout(false);
            this.tabSets.ResumeLayout(false);
            this.tabTrailers.ResumeLayout(false);
            this.tabPreview.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlImages)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitterItem1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitterItem3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitterItem2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupSave)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupLoadFromWeb)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.imageCollection1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMovieList)).EndInit();
            this.ResumeLayout(false);

        }
Пример #29
0
        /// <summary> 
        /// 设计器支持所需的方法 - 不要
        /// 使用代码编辑器修改此方法的内容。
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            DevExpress.Utils.SuperToolTip superToolTip40 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem40 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem40 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip41 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem41 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem41 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip42 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem42 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem42 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip43 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem43 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem43 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip27 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem27 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem27 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip5 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem5 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem5 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip6 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem6 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem6 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip28 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem28 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem28 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip29 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem29 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem29 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip30 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem30 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem30 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip31 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem31 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem31 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip32 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem32 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem32 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip33 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem33 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem33 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip34 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem34 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem34 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip35 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem35 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem35 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip36 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem36 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem36 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip37 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem37 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem37 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip38 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem38 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem38 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip39 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem39 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem39 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip44 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem44 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem44 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip45 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem45 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem45 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip46 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem46 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem46 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip47 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem47 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem47 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip48 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem48 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem48 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip49 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem49 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem49 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip50 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem50 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem50 = new DevExpress.Utils.ToolTipItem();
            this.richEditControl1 = new DevExpress.XtraRichEdit.RichEditControl();
            this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
            this.clipboardBar1 = new DevExpress.XtraRichEdit.UI.ClipboardBar();
            this.pasteItem1 = new DevExpress.XtraRichEdit.UI.PasteItem();
            this.cutItem1 = new DevExpress.XtraRichEdit.UI.CutItem();
            this.copyItem1 = new DevExpress.XtraRichEdit.UI.CopyItem();
            this.pasteSpecialItem1 = new DevExpress.XtraRichEdit.UI.PasteSpecialItem();
            this.fontBar1 = new DevExpress.XtraRichEdit.UI.FontBar();
            this.changeFontNameItem1 = new DevExpress.XtraRichEdit.UI.ChangeFontNameItem();
            this.repositoryItemFontEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemFontEdit();
            this.changeFontSizeItem1 = new DevExpress.XtraRichEdit.UI.ChangeFontSizeItem();
            this.repositoryItemRichEditFontSizeEdit1 = new DevExpress.XtraRichEdit.Design.RepositoryItemRichEditFontSizeEdit();
            this.fontSizeIncreaseItem1 = new DevExpress.XtraRichEdit.UI.FontSizeIncreaseItem();
            this.fontSizeDecreaseItem1 = new DevExpress.XtraRichEdit.UI.FontSizeDecreaseItem();
            this.toggleFontBoldItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontBoldItem();
            this.toggleFontItalicItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontItalicItem();
            this.toggleFontUnderlineItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontUnderlineItem();
            this.toggleFontDoubleUnderlineItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontDoubleUnderlineItem();
            this.toggleFontStrikeoutItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontStrikeoutItem();
            this.toggleFontDoubleStrikeoutItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontDoubleStrikeoutItem();
            this.toggleFontSuperscriptItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontSuperscriptItem();
            this.toggleFontSubscriptItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontSubscriptItem();
            this.changeFontColorItem1 = new DevExpress.XtraRichEdit.UI.ChangeFontColorItem();
            this.changeFontBackColorItem1 = new DevExpress.XtraRichEdit.UI.ChangeFontBackColorItem();
            this.changeTextCaseItem1 = new DevExpress.XtraRichEdit.UI.ChangeTextCaseItem();
            this.makeTextUpperCaseItem1 = new DevExpress.XtraRichEdit.UI.MakeTextUpperCaseItem();
            this.makeTextLowerCaseItem1 = new DevExpress.XtraRichEdit.UI.MakeTextLowerCaseItem();
            this.toggleTextCaseItem1 = new DevExpress.XtraRichEdit.UI.ToggleTextCaseItem();
            this.clearFormattingItem1 = new DevExpress.XtraRichEdit.UI.ClearFormattingItem();
            this.showFontFormItem1 = new DevExpress.XtraRichEdit.UI.ShowFontFormItem();
            this.paragraphBar1 = new DevExpress.XtraRichEdit.UI.ParagraphBar();
            this.toggleBulletedListItem1 = new DevExpress.XtraRichEdit.UI.ToggleBulletedListItem();
            this.toggleNumberingListItem1 = new DevExpress.XtraRichEdit.UI.ToggleNumberingListItem();
            this.toggleMultiLevelListItem1 = new DevExpress.XtraRichEdit.UI.ToggleMultiLevelListItem();
            this.decreaseIndentItem1 = new DevExpress.XtraRichEdit.UI.DecreaseIndentItem();
            this.increaseIndentItem1 = new DevExpress.XtraRichEdit.UI.IncreaseIndentItem();
            this.toggleParagraphAlignmentLeftItem1 = new DevExpress.XtraRichEdit.UI.ToggleParagraphAlignmentLeftItem();
            this.toggleParagraphAlignmentCenterItem1 = new DevExpress.XtraRichEdit.UI.ToggleParagraphAlignmentCenterItem();
            this.toggleParagraphAlignmentRightItem1 = new DevExpress.XtraRichEdit.UI.ToggleParagraphAlignmentRightItem();
            this.toggleParagraphAlignmentJustifyItem1 = new DevExpress.XtraRichEdit.UI.ToggleParagraphAlignmentJustifyItem();
            this.toggleShowWhitespaceItem1 = new DevExpress.XtraRichEdit.UI.ToggleShowWhitespaceItem();
            this.changeParagraphLineSpacingItem1 = new DevExpress.XtraRichEdit.UI.ChangeParagraphLineSpacingItem();
            this.setSingleParagraphSpacingItem1 = new DevExpress.XtraRichEdit.UI.SetSingleParagraphSpacingItem();
            this.setSesquialteralParagraphSpacingItem1 = new DevExpress.XtraRichEdit.UI.SetSesquialteralParagraphSpacingItem();
            this.setDoubleParagraphSpacingItem1 = new DevExpress.XtraRichEdit.UI.SetDoubleParagraphSpacingItem();
            this.showLineSpacingFormItem1 = new DevExpress.XtraRichEdit.UI.ShowLineSpacingFormItem();
            this.addSpacingBeforeParagraphItem1 = new DevExpress.XtraRichEdit.UI.AddSpacingBeforeParagraphItem();
            this.removeSpacingBeforeParagraphItem1 = new DevExpress.XtraRichEdit.UI.RemoveSpacingBeforeParagraphItem();
            this.addSpacingAfterParagraphItem1 = new DevExpress.XtraRichEdit.UI.AddSpacingAfterParagraphItem();
            this.removeSpacingAfterParagraphItem1 = new DevExpress.XtraRichEdit.UI.RemoveSpacingAfterParagraphItem();
            this.changeParagraphBackColorItem1 = new DevExpress.XtraRichEdit.UI.ChangeParagraphBackColorItem();
            this.showParagraphFormItem1 = new DevExpress.XtraRichEdit.UI.ShowParagraphFormItem();
            this.commonBar1 = new DevExpress.XtraRichEdit.UI.CommonBar();
            this.fileOpenItem1 = new DevExpress.XtraRichEdit.UI.FileOpenItem();
            this.fileSaveAsItem1 = new DevExpress.XtraRichEdit.UI.FileSaveAsItem();
            this.quickPrintItem1 = new DevExpress.XtraRichEdit.UI.QuickPrintItem();
            this.printItem1 = new DevExpress.XtraRichEdit.UI.PrintItem();
            this.printPreviewItem1 = new DevExpress.XtraRichEdit.UI.PrintPreviewItem();
            this.undoItem1 = new DevExpress.XtraRichEdit.UI.UndoItem();
            this.redoItem1 = new DevExpress.XtraRichEdit.UI.RedoItem();
            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.Cut = new DevExpress.XtraBars.BarButtonItem();
            this.changeStyleItem1 = new DevExpress.XtraRichEdit.UI.ChangeStyleItem();
            this.repositoryItemRichEditStyleEdit1 = new DevExpress.XtraRichEdit.Design.RepositoryItemRichEditStyleEdit();
            this.showEditStyleFormItem1 = new DevExpress.XtraRichEdit.UI.ShowEditStyleFormItem();
            this.findItem1 = new DevExpress.XtraRichEdit.UI.FindItem();
            this.replaceItem1 = new DevExpress.XtraRichEdit.UI.ReplaceItem();
            this.fileNewItem1 = new DevExpress.XtraRichEdit.UI.FileNewItem();
            this.fileSaveItem1 = new DevExpress.XtraRichEdit.UI.FileSaveItem();
            this.changeFloatingObjectFillColorItem1 = new DevExpress.XtraRichEdit.UI.ChangeFloatingObjectFillColorItem();
            this.changeFloatingObjectOutlineColorItem1 = new DevExpress.XtraRichEdit.UI.ChangeFloatingObjectOutlineColorItem();
            this.changeFloatingObjectOutlineWeightItem1 = new DevExpress.XtraRichEdit.UI.ChangeFloatingObjectOutlineWeightItem();
            this.repositoryItemFloatingObjectOutlineWeight1 = new DevExpress.XtraRichEdit.Forms.Design.RepositoryItemFloatingObjectOutlineWeight();
            this.changeFloatingObjectTextWrapTypeItem1 = new DevExpress.XtraRichEdit.UI.ChangeFloatingObjectTextWrapTypeItem();
            this.setFloatingObjectSquareTextWrapTypeItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectSquareTextWrapTypeItem();
            this.setFloatingObjectTightTextWrapTypeItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectTightTextWrapTypeItem();
            this.setFloatingObjectThroughTextWrapTypeItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectThroughTextWrapTypeItem();
            this.setFloatingObjectTopAndBottomTextWrapTypeItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectTopAndBottomTextWrapTypeItem();
            this.setFloatingObjectBehindTextWrapTypeItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectBehindTextWrapTypeItem();
            this.setFloatingObjectInFrontOfTextWrapTypeItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectInFrontOfTextWrapTypeItem();
            this.changeFloatingObjectAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ChangeFloatingObjectAlignmentItem();
            this.setFloatingObjectTopLeftAlignmentItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectTopLeftAlignmentItem();
            this.setFloatingObjectTopCenterAlignmentItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectTopCenterAlignmentItem();
            this.setFloatingObjectTopRightAlignmentItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectTopRightAlignmentItem();
            this.setFloatingObjectMiddleLeftAlignmentItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectMiddleLeftAlignmentItem();
            this.setFloatingObjectMiddleCenterAlignmentItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectMiddleCenterAlignmentItem();
            this.setFloatingObjectMiddleRightAlignmentItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectMiddleRightAlignmentItem();
            this.setFloatingObjectBottomLeftAlignmentItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectBottomLeftAlignmentItem();
            this.setFloatingObjectBottomCenterAlignmentItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectBottomCenterAlignmentItem();
            this.setFloatingObjectBottomRightAlignmentItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectBottomRightAlignmentItem();
            this.floatingObjectBringForwardSubItem1 = new DevExpress.XtraRichEdit.UI.FloatingObjectBringForwardSubItem();
            this.floatingObjectBringForwardItem1 = new DevExpress.XtraRichEdit.UI.FloatingObjectBringForwardItem();
            this.floatingObjectBringToFrontItem1 = new DevExpress.XtraRichEdit.UI.FloatingObjectBringToFrontItem();
            this.floatingObjectBringInFrontOfTextItem1 = new DevExpress.XtraRichEdit.UI.FloatingObjectBringInFrontOfTextItem();
            this.floatingObjectSendBackwardSubItem1 = new DevExpress.XtraRichEdit.UI.FloatingObjectSendBackwardSubItem();
            this.floatingObjectSendBackwardItem1 = new DevExpress.XtraRichEdit.UI.FloatingObjectSendBackwardItem();
            this.floatingObjectSendToBackItem1 = new DevExpress.XtraRichEdit.UI.FloatingObjectSendToBackItem();
            this.floatingObjectSendBehindTextItem1 = new DevExpress.XtraRichEdit.UI.FloatingObjectSendBehindTextItem();
            this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
            this.richEditBarController1 = new DevExpress.XtraRichEdit.UI.RichEditBarController();
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemFontEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRichEditFontSizeEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRichEditStyleEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemFloatingObjectOutlineWeight1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.richEditBarController1)).BeginInit();
            this.SuspendLayout();
            // 
            // richEditControl1
            // 
            this.richEditControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.richEditControl1.Location = new System.Drawing.Point(0, 62);
            this.richEditControl1.MenuManager = this.barManager1;
            this.richEditControl1.Name = "richEditControl1";
            this.richEditControl1.Options.MailMerge.KeepLastParagraph = false;
            this.richEditControl1.Size = new System.Drawing.Size(1137, 1116);
            this.richEditControl1.TabIndex = 1;
            this.richEditControl1.Text = "richEditControl1";
            // 
            // barManager1
            // 
            this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
            this.clipboardBar1,
            this.fontBar1,
            this.paragraphBar1,
            this.commonBar1});
            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.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.Cut,
            this.pasteItem1,
            this.cutItem1,
            this.copyItem1,
            this.pasteSpecialItem1,
            this.changeFontNameItem1,
            this.changeFontSizeItem1,
            this.fontSizeIncreaseItem1,
            this.fontSizeDecreaseItem1,
            this.toggleFontBoldItem1,
            this.toggleFontItalicItem1,
            this.toggleFontUnderlineItem1,
            this.toggleFontDoubleUnderlineItem1,
            this.toggleFontStrikeoutItem1,
            this.toggleFontDoubleStrikeoutItem1,
            this.toggleFontSuperscriptItem1,
            this.toggleFontSubscriptItem1,
            this.changeFontColorItem1,
            this.changeFontBackColorItem1,
            this.changeTextCaseItem1,
            this.makeTextUpperCaseItem1,
            this.makeTextLowerCaseItem1,
            this.toggleTextCaseItem1,
            this.clearFormattingItem1,
            this.showFontFormItem1,
            this.toggleBulletedListItem1,
            this.toggleNumberingListItem1,
            this.toggleMultiLevelListItem1,
            this.decreaseIndentItem1,
            this.increaseIndentItem1,
            this.toggleParagraphAlignmentLeftItem1,
            this.toggleParagraphAlignmentCenterItem1,
            this.toggleParagraphAlignmentRightItem1,
            this.toggleParagraphAlignmentJustifyItem1,
            this.toggleShowWhitespaceItem1,
            this.changeParagraphLineSpacingItem1,
            this.setSingleParagraphSpacingItem1,
            this.setSesquialteralParagraphSpacingItem1,
            this.setDoubleParagraphSpacingItem1,
            this.showLineSpacingFormItem1,
            this.addSpacingBeforeParagraphItem1,
            this.removeSpacingBeforeParagraphItem1,
            this.addSpacingAfterParagraphItem1,
            this.removeSpacingAfterParagraphItem1,
            this.changeParagraphBackColorItem1,
            this.showParagraphFormItem1,
            this.changeStyleItem1,
            this.showEditStyleFormItem1,
            this.findItem1,
            this.replaceItem1,
            this.fileNewItem1,
            this.fileOpenItem1,
            this.fileSaveItem1,
            this.fileSaveAsItem1,
            this.quickPrintItem1,
            this.printItem1,
            this.printPreviewItem1,
            this.undoItem1,
            this.redoItem1,
            this.changeFloatingObjectFillColorItem1,
            this.changeFloatingObjectOutlineColorItem1,
            this.changeFloatingObjectOutlineWeightItem1,
            this.changeFloatingObjectTextWrapTypeItem1,
            this.setFloatingObjectSquareTextWrapTypeItem1,
            this.setFloatingObjectTightTextWrapTypeItem1,
            this.setFloatingObjectThroughTextWrapTypeItem1,
            this.setFloatingObjectTopAndBottomTextWrapTypeItem1,
            this.setFloatingObjectBehindTextWrapTypeItem1,
            this.setFloatingObjectInFrontOfTextWrapTypeItem1,
            this.changeFloatingObjectAlignmentItem1,
            this.setFloatingObjectTopLeftAlignmentItem1,
            this.setFloatingObjectTopCenterAlignmentItem1,
            this.setFloatingObjectTopRightAlignmentItem1,
            this.setFloatingObjectMiddleLeftAlignmentItem1,
            this.setFloatingObjectMiddleCenterAlignmentItem1,
            this.setFloatingObjectMiddleRightAlignmentItem1,
            this.setFloatingObjectBottomLeftAlignmentItem1,
            this.setFloatingObjectBottomCenterAlignmentItem1,
            this.setFloatingObjectBottomRightAlignmentItem1,
            this.floatingObjectBringForwardSubItem1,
            this.floatingObjectBringForwardItem1,
            this.floatingObjectBringToFrontItem1,
            this.floatingObjectBringInFrontOfTextItem1,
            this.floatingObjectSendBackwardSubItem1,
            this.floatingObjectSendBackwardItem1,
            this.floatingObjectSendToBackItem1,
            this.floatingObjectSendBehindTextItem1});
            this.barManager1.MaxItemId = 87;
            this.barManager1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemTextEdit1,
            this.repositoryItemFontEdit1,
            this.repositoryItemRichEditFontSizeEdit1,
            this.repositoryItemRichEditStyleEdit1,
            this.repositoryItemFloatingObjectOutlineWeight1});
            // 
            // clipboardBar1
            // 
            this.clipboardBar1.DockCol = 0;
            this.clipboardBar1.DockRow = 1;
            this.clipboardBar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
            this.clipboardBar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.pasteItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.cutItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.copyItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pasteSpecialItem1)});
            // 
            // pasteItem1
            // 
            this.pasteItem1.Id = 1;
            this.pasteItem1.Name = "pasteItem1";
            toolTipTitleItem40.Text = "粘贴 (Ctrl+V)";
            toolTipItem40.LeftIndent = 6;
            toolTipItem40.Text = "从系统剪切板粘贴内容。";
            superToolTip40.Items.Add(toolTipTitleItem40);
            superToolTip40.Items.Add(toolTipItem40);
            this.pasteItem1.SuperTip = superToolTip40;
            // 
            // cutItem1
            // 
            this.cutItem1.Id = 2;
            this.cutItem1.Name = "cutItem1";
            toolTipTitleItem41.Text = "剪切 (Ctrl+X)";
            toolTipItem41.LeftIndent = 6;
            toolTipItem41.Text = "剪切所选内容,并将其放入系统剪切板。";
            superToolTip41.Items.Add(toolTipTitleItem41);
            superToolTip41.Items.Add(toolTipItem41);
            this.cutItem1.SuperTip = superToolTip41;
            // 
            // copyItem1
            // 
            this.copyItem1.Id = 3;
            this.copyItem1.Name = "copyItem1";
            toolTipTitleItem42.Text = "复制 (Ctrl+C)";
            toolTipItem42.LeftIndent = 6;
            toolTipItem42.Text = "复制所选内容,并将其放入系统剪切板。";
            superToolTip42.Items.Add(toolTipTitleItem42);
            superToolTip42.Items.Add(toolTipItem42);
            this.copyItem1.SuperTip = superToolTip42;
            // 
            // pasteSpecialItem1
            // 
            this.pasteSpecialItem1.Id = 4;
            this.pasteSpecialItem1.Name = "pasteSpecialItem1";
            toolTipTitleItem43.Text = "选择性粘贴 (Ctrl+Alt+V)";
            toolTipItem43.LeftIndent = 6;
            toolTipItem43.Text = "选择性粘贴...";
            superToolTip43.Items.Add(toolTipTitleItem43);
            superToolTip43.Items.Add(toolTipItem43);
            this.pasteSpecialItem1.SuperTip = superToolTip43;
            // 
            // fontBar1
            // 
            this.fontBar1.DockCol = 1;
            this.fontBar1.DockRow = 0;
            this.fontBar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
            this.fontBar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.changeFontNameItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.changeFontSizeItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.fontSizeIncreaseItem1),
            new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.fontSizeDecreaseItem1, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleFontBoldItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleFontItalicItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleFontUnderlineItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleFontDoubleUnderlineItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleFontStrikeoutItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleFontDoubleStrikeoutItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleFontSuperscriptItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleFontSubscriptItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.changeFontColorItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.changeFontBackColorItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.showFontFormItem1)});
            this.fontBar1.Offset = 197;
            // 
            // changeFontNameItem1
            // 
            this.changeFontNameItem1.Edit = this.repositoryItemFontEdit1;
            this.changeFontNameItem1.Id = 5;
            this.changeFontNameItem1.Name = "changeFontNameItem1";
            toolTipTitleItem27.Text = "字体";
            toolTipItem27.LeftIndent = 6;
            toolTipItem27.Text = "设置不同的字体。";
            superToolTip27.Items.Add(toolTipTitleItem27);
            superToolTip27.Items.Add(toolTipItem27);
            this.changeFontNameItem1.SuperTip = superToolTip27;
            // 
            // repositoryItemFontEdit1
            // 
            this.repositoryItemFontEdit1.AutoHeight = false;
            this.repositoryItemFontEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemFontEdit1.Name = "repositoryItemFontEdit1";
            // 
            // changeFontSizeItem1
            // 
            this.changeFontSizeItem1.Edit = this.repositoryItemRichEditFontSizeEdit1;
            this.changeFontSizeItem1.Id = 6;
            this.changeFontSizeItem1.Name = "changeFontSizeItem1";
            toolTipTitleItem5.Text = "字号";
            toolTipItem5.LeftIndent = 6;
            toolTipItem5.Text = "设置字号的大小。";
            superToolTip5.Items.Add(toolTipTitleItem5);
            superToolTip5.Items.Add(toolTipItem5);
            this.changeFontSizeItem1.SuperTip = superToolTip5;
            // 
            // repositoryItemRichEditFontSizeEdit1
            // 
            this.repositoryItemRichEditFontSizeEdit1.AutoHeight = false;
            this.repositoryItemRichEditFontSizeEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemRichEditFontSizeEdit1.Control = this.richEditControl1;
            this.repositoryItemRichEditFontSizeEdit1.Name = "repositoryItemRichEditFontSizeEdit1";
            // 
            // fontSizeIncreaseItem1
            // 
            this.fontSizeIncreaseItem1.Id = 7;
            this.fontSizeIncreaseItem1.Name = "fontSizeIncreaseItem1";
            toolTipTitleItem6.Text = "增大字号 (Ctrl+Shift+.)";
            toolTipItem6.LeftIndent = 6;
            toolTipItem6.Text = "增大字体的字号。";
            superToolTip6.Items.Add(toolTipTitleItem6);
            superToolTip6.Items.Add(toolTipItem6);
            this.fontSizeIncreaseItem1.SuperTip = superToolTip6;
            // 
            // fontSizeDecreaseItem1
            // 
            this.fontSizeDecreaseItem1.Id = 8;
            this.fontSizeDecreaseItem1.Name = "fontSizeDecreaseItem1";
            toolTipTitleItem28.Text = "缩小字号 (Ctrl+Shift+,)";
            toolTipItem28.LeftIndent = 6;
            toolTipItem28.Text = "缩小字体的字号。";
            superToolTip28.Items.Add(toolTipTitleItem28);
            superToolTip28.Items.Add(toolTipItem28);
            this.fontSizeDecreaseItem1.SuperTip = superToolTip28;
            // 
            // toggleFontBoldItem1
            // 
            this.toggleFontBoldItem1.Id = 9;
            this.toggleFontBoldItem1.Name = "toggleFontBoldItem1";
            toolTipTitleItem29.Text = "加粗 (Ctrl+B)";
            toolTipItem29.LeftIndent = 6;
            toolTipItem29.Text = "将所选内容的字体加粗。";
            superToolTip29.Items.Add(toolTipTitleItem29);
            superToolTip29.Items.Add(toolTipItem29);
            this.toggleFontBoldItem1.SuperTip = superToolTip29;
            // 
            // toggleFontItalicItem1
            // 
            this.toggleFontItalicItem1.Id = 10;
            this.toggleFontItalicItem1.Name = "toggleFontItalicItem1";
            toolTipTitleItem30.Text = "倾斜 (Ctrl+I)";
            toolTipItem30.LeftIndent = 6;
            toolTipItem30.Text = "将所选内容的字体设置为倾斜。";
            superToolTip30.Items.Add(toolTipTitleItem30);
            superToolTip30.Items.Add(toolTipItem30);
            this.toggleFontItalicItem1.SuperTip = superToolTip30;
            // 
            // toggleFontUnderlineItem1
            // 
            this.toggleFontUnderlineItem1.Id = 11;
            this.toggleFontUnderlineItem1.Name = "toggleFontUnderlineItem1";
            toolTipTitleItem31.Text = "下划线 (Ctrl+U)";
            toolTipItem31.LeftIndent = 6;
            toolTipItem31.Text = "给所选文字内容添加下划线。";
            superToolTip31.Items.Add(toolTipTitleItem31);
            superToolTip31.Items.Add(toolTipItem31);
            this.toggleFontUnderlineItem1.SuperTip = superToolTip31;
            // 
            // toggleFontDoubleUnderlineItem1
            // 
            this.toggleFontDoubleUnderlineItem1.Id = 12;
            this.toggleFontDoubleUnderlineItem1.Name = "toggleFontDoubleUnderlineItem1";
            toolTipTitleItem32.Text = "双下划线 (Ctrl+Shift+D)";
            toolTipItem32.LeftIndent = 6;
            toolTipItem32.Text = "给所选文字内容添加双下划线。";
            superToolTip32.Items.Add(toolTipTitleItem32);
            superToolTip32.Items.Add(toolTipItem32);
            this.toggleFontDoubleUnderlineItem1.SuperTip = superToolTip32;
            // 
            // toggleFontStrikeoutItem1
            // 
            this.toggleFontStrikeoutItem1.Id = 13;
            this.toggleFontStrikeoutItem1.Name = "toggleFontStrikeoutItem1";
            toolTipTitleItem33.Text = "删除线";
            toolTipItem33.LeftIndent = 6;
            toolTipItem33.Text = "在所选文字内容中间添加一条横线。";
            superToolTip33.Items.Add(toolTipTitleItem33);
            superToolTip33.Items.Add(toolTipItem33);
            this.toggleFontStrikeoutItem1.SuperTip = superToolTip33;
            // 
            // toggleFontDoubleStrikeoutItem1
            // 
            this.toggleFontDoubleStrikeoutItem1.Id = 14;
            this.toggleFontDoubleStrikeoutItem1.Name = "toggleFontDoubleStrikeoutItem1";
            toolTipTitleItem34.Text = "双删除线";
            toolTipItem34.LeftIndent = 6;
            toolTipItem34.Text = "在所选文字内容中间添加一条双横线。";
            superToolTip34.Items.Add(toolTipTitleItem34);
            superToolTip34.Items.Add(toolTipItem34);
            this.toggleFontDoubleStrikeoutItem1.SuperTip = superToolTip34;
            // 
            // toggleFontSuperscriptItem1
            // 
            this.toggleFontSuperscriptItem1.Id = 15;
            this.toggleFontSuperscriptItem1.Name = "toggleFontSuperscriptItem1";
            toolTipTitleItem35.Text = "上标 (Ctrl+Shift++)";
            toolTipItem35.LeftIndent = 6;
            toolTipItem35.Text = "在文本行上方创建小字符。";
            superToolTip35.Items.Add(toolTipTitleItem35);
            superToolTip35.Items.Add(toolTipItem35);
            this.toggleFontSuperscriptItem1.SuperTip = superToolTip35;
            // 
            // toggleFontSubscriptItem1
            // 
            this.toggleFontSubscriptItem1.Id = 16;
            this.toggleFontSubscriptItem1.Name = "toggleFontSubscriptItem1";
            toolTipTitleItem36.Text = "下标 (Ctrl++)";
            toolTipItem36.LeftIndent = 6;
            toolTipItem36.Text = "在文本行下方创建小字符。";
            superToolTip36.Items.Add(toolTipTitleItem36);
            superToolTip36.Items.Add(toolTipItem36);
            this.toggleFontSubscriptItem1.SuperTip = superToolTip36;
            // 
            // changeFontColorItem1
            // 
            this.changeFontColorItem1.Id = 17;
            this.changeFontColorItem1.Name = "changeFontColorItem1";
            toolTipTitleItem37.Text = "字体颜色";
            toolTipItem37.LeftIndent = 6;
            toolTipItem37.Text = "设置文字的颜色。";
            superToolTip37.Items.Add(toolTipTitleItem37);
            superToolTip37.Items.Add(toolTipItem37);
            this.changeFontColorItem1.SuperTip = superToolTip37;
            // 
            // changeFontBackColorItem1
            // 
            this.changeFontBackColorItem1.Id = 18;
            this.changeFontBackColorItem1.Name = "changeFontBackColorItem1";
            toolTipTitleItem38.Text = "突出显示";
            toolTipItem38.LeftIndent = 6;
            toolTipItem38.Text = "给文字加上颜色底纹,以凸显文字内容。";
            superToolTip38.Items.Add(toolTipTitleItem38);
            superToolTip38.Items.Add(toolTipItem38);
            this.changeFontBackColorItem1.SuperTip = superToolTip38;
            // 
            // changeTextCaseItem1
            // 
            this.changeTextCaseItem1.Id = 19;
            this.changeTextCaseItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.makeTextUpperCaseItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.makeTextLowerCaseItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleTextCaseItem1)});
            this.changeTextCaseItem1.Name = "changeTextCaseItem1";
            // 
            // makeTextUpperCaseItem1
            // 
            this.makeTextUpperCaseItem1.Id = 20;
            this.makeTextUpperCaseItem1.Name = "makeTextUpperCaseItem1";
            // 
            // makeTextLowerCaseItem1
            // 
            this.makeTextLowerCaseItem1.Id = 21;
            this.makeTextLowerCaseItem1.Name = "makeTextLowerCaseItem1";
            // 
            // toggleTextCaseItem1
            // 
            this.toggleTextCaseItem1.Id = 22;
            this.toggleTextCaseItem1.Name = "toggleTextCaseItem1";
            // 
            // clearFormattingItem1
            // 
            this.clearFormattingItem1.Id = 23;
            this.clearFormattingItem1.Name = "clearFormattingItem1";
            // 
            // showFontFormItem1
            // 
            this.showFontFormItem1.Id = 24;
            this.showFontFormItem1.Name = "showFontFormItem1";
            toolTipTitleItem39.Text = "字体 (Ctrl+D)";
            toolTipItem39.LeftIndent = 6;
            toolTipItem39.Text = "显示字体设置对话框。";
            superToolTip39.Items.Add(toolTipTitleItem39);
            superToolTip39.Items.Add(toolTipItem39);
            this.showFontFormItem1.SuperTip = superToolTip39;
            // 
            // paragraphBar1
            // 
            this.paragraphBar1.DockCol = 1;
            this.paragraphBar1.DockRow = 1;
            this.paragraphBar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
            this.paragraphBar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleBulletedListItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleNumberingListItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleMultiLevelListItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.decreaseIndentItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.increaseIndentItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleParagraphAlignmentLeftItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleParagraphAlignmentCenterItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleParagraphAlignmentRightItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleParagraphAlignmentJustifyItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleShowWhitespaceItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.changeParagraphLineSpacingItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.changeParagraphBackColorItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.showParagraphFormItem1)});
            this.paragraphBar1.Offset = 129;
            // 
            // toggleBulletedListItem1
            // 
            this.toggleBulletedListItem1.Id = 25;
            this.toggleBulletedListItem1.Name = "toggleBulletedListItem1";
            // 
            // toggleNumberingListItem1
            // 
            this.toggleNumberingListItem1.Id = 26;
            this.toggleNumberingListItem1.Name = "toggleNumberingListItem1";
            // 
            // toggleMultiLevelListItem1
            // 
            this.toggleMultiLevelListItem1.Id = 27;
            this.toggleMultiLevelListItem1.Name = "toggleMultiLevelListItem1";
            // 
            // decreaseIndentItem1
            // 
            this.decreaseIndentItem1.Id = 28;
            this.decreaseIndentItem1.Name = "decreaseIndentItem1";
            // 
            // increaseIndentItem1
            // 
            this.increaseIndentItem1.Id = 29;
            this.increaseIndentItem1.Name = "increaseIndentItem1";
            // 
            // toggleParagraphAlignmentLeftItem1
            // 
            this.toggleParagraphAlignmentLeftItem1.Id = 30;
            this.toggleParagraphAlignmentLeftItem1.Name = "toggleParagraphAlignmentLeftItem1";
            // 
            // toggleParagraphAlignmentCenterItem1
            // 
            this.toggleParagraphAlignmentCenterItem1.Id = 31;
            this.toggleParagraphAlignmentCenterItem1.Name = "toggleParagraphAlignmentCenterItem1";
            // 
            // toggleParagraphAlignmentRightItem1
            // 
            this.toggleParagraphAlignmentRightItem1.Id = 32;
            this.toggleParagraphAlignmentRightItem1.Name = "toggleParagraphAlignmentRightItem1";
            // 
            // toggleParagraphAlignmentJustifyItem1
            // 
            this.toggleParagraphAlignmentJustifyItem1.Id = 33;
            this.toggleParagraphAlignmentJustifyItem1.Name = "toggleParagraphAlignmentJustifyItem1";
            // 
            // toggleShowWhitespaceItem1
            // 
            this.toggleShowWhitespaceItem1.Id = 34;
            this.toggleShowWhitespaceItem1.Name = "toggleShowWhitespaceItem1";
            // 
            // changeParagraphLineSpacingItem1
            // 
            this.changeParagraphLineSpacingItem1.Id = 35;
            this.changeParagraphLineSpacingItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.setSingleParagraphSpacingItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setSesquialteralParagraphSpacingItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setDoubleParagraphSpacingItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.showLineSpacingFormItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.addSpacingBeforeParagraphItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.removeSpacingBeforeParagraphItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.addSpacingAfterParagraphItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.removeSpacingAfterParagraphItem1)});
            this.changeParagraphLineSpacingItem1.Name = "changeParagraphLineSpacingItem1";
            // 
            // setSingleParagraphSpacingItem1
            // 
            this.setSingleParagraphSpacingItem1.Id = 36;
            this.setSingleParagraphSpacingItem1.Name = "setSingleParagraphSpacingItem1";
            // 
            // setSesquialteralParagraphSpacingItem1
            // 
            this.setSesquialteralParagraphSpacingItem1.Id = 37;
            this.setSesquialteralParagraphSpacingItem1.Name = "setSesquialteralParagraphSpacingItem1";
            // 
            // setDoubleParagraphSpacingItem1
            // 
            this.setDoubleParagraphSpacingItem1.Id = 38;
            this.setDoubleParagraphSpacingItem1.Name = "setDoubleParagraphSpacingItem1";
            // 
            // showLineSpacingFormItem1
            // 
            this.showLineSpacingFormItem1.Id = 39;
            this.showLineSpacingFormItem1.Name = "showLineSpacingFormItem1";
            // 
            // addSpacingBeforeParagraphItem1
            // 
            this.addSpacingBeforeParagraphItem1.Id = 40;
            this.addSpacingBeforeParagraphItem1.Name = "addSpacingBeforeParagraphItem1";
            // 
            // removeSpacingBeforeParagraphItem1
            // 
            this.removeSpacingBeforeParagraphItem1.Id = 41;
            this.removeSpacingBeforeParagraphItem1.Name = "removeSpacingBeforeParagraphItem1";
            // 
            // addSpacingAfterParagraphItem1
            // 
            this.addSpacingAfterParagraphItem1.Id = 42;
            this.addSpacingAfterParagraphItem1.Name = "addSpacingAfterParagraphItem1";
            // 
            // removeSpacingAfterParagraphItem1
            // 
            this.removeSpacingAfterParagraphItem1.Id = 43;
            this.removeSpacingAfterParagraphItem1.Name = "removeSpacingAfterParagraphItem1";
            // 
            // changeParagraphBackColorItem1
            // 
            this.changeParagraphBackColorItem1.Id = 44;
            this.changeParagraphBackColorItem1.Name = "changeParagraphBackColorItem1";
            // 
            // showParagraphFormItem1
            // 
            this.showParagraphFormItem1.Id = 45;
            this.showParagraphFormItem1.Name = "showParagraphFormItem1";
            // 
            // commonBar1
            // 
            this.commonBar1.DockCol = 0;
            this.commonBar1.DockRow = 0;
            this.commonBar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
            this.commonBar1.FloatLocation = new System.Drawing.Point(53, 123);
            this.commonBar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.fileOpenItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.fileSaveAsItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.quickPrintItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.printItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.printPreviewItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.undoItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.redoItem1)});
            this.commonBar1.Offset = 1;
            // 
            // fileOpenItem1
            // 
            this.fileOpenItem1.Id = 51;
            this.fileOpenItem1.Name = "fileOpenItem1";
            toolTipTitleItem44.Text = "打开 (Ctrl+O)";
            toolTipItem44.LeftIndent = 6;
            toolTipItem44.Text = "打开一个文档。";
            superToolTip44.Items.Add(toolTipTitleItem44);
            superToolTip44.Items.Add(toolTipItem44);
            this.fileOpenItem1.SuperTip = superToolTip44;
            // 
            // fileSaveAsItem1
            // 
            this.fileSaveAsItem1.Id = 53;
            this.fileSaveAsItem1.Name = "fileSaveAsItem1";
            toolTipTitleItem45.Text = "另存为... (F12)";
            toolTipItem45.LeftIndent = 6;
            toolTipItem45.Text = "打开另存为对话框,选择一个文件格式与文件的新路径。";
            superToolTip45.Items.Add(toolTipTitleItem45);
            superToolTip45.Items.Add(toolTipItem45);
            this.fileSaveAsItem1.SuperTip = superToolTip45;
            // 
            // quickPrintItem1
            // 
            this.quickPrintItem1.Id = 54;
            this.quickPrintItem1.Name = "quickPrintItem1";
            toolTipTitleItem46.Text = "&快速打印";
            toolTipItem46.LeftIndent = 6;
            toolTipItem46.Text = "不对文档做任何修改,直接发送至默认的打印机打印。";
            superToolTip46.Items.Add(toolTipTitleItem46);
            superToolTip46.Items.Add(toolTipItem46);
            this.quickPrintItem1.SuperTip = superToolTip46;
            // 
            // printItem1
            // 
            this.printItem1.Id = 55;
            this.printItem1.Name = "printItem1";
            toolTipTitleItem47.Text = "&打印 (Ctrl+P)";
            toolTipItem47.LeftIndent = 6;
            toolTipItem47.Text = "可对打印做详细设置,如选择打印机、打印页数、打印分数或者并打和缩放等。";
            superToolTip47.Items.Add(toolTipTitleItem47);
            superToolTip47.Items.Add(toolTipItem47);
            this.printItem1.SuperTip = superToolTip47;
            // 
            // printPreviewItem1
            // 
            this.printPreviewItem1.Id = 56;
            this.printPreviewItem1.Name = "printPreviewItem1";
            toolTipTitleItem48.Text = "打印预览";
            toolTipItem48.LeftIndent = 6;
            toolTipItem48.Text = "查看文档打印输出后的效果。";
            superToolTip48.Items.Add(toolTipTitleItem48);
            superToolTip48.Items.Add(toolTipItem48);
            this.printPreviewItem1.SuperTip = superToolTip48;
            // 
            // undoItem1
            // 
            this.undoItem1.Id = 57;
            this.undoItem1.Name = "undoItem1";
            toolTipTitleItem49.Text = "撤销 (Ctrl+Z)";
            toolTipItem49.LeftIndent = 6;
            toolTipItem49.Text = "撤销修改。";
            superToolTip49.Items.Add(toolTipTitleItem49);
            superToolTip49.Items.Add(toolTipItem49);
            this.undoItem1.SuperTip = superToolTip49;
            // 
            // redoItem1
            // 
            this.redoItem1.Id = 58;
            this.redoItem1.Name = "redoItem1";
            toolTipTitleItem50.Text = "恢复 (Ctrl+Y)";
            toolTipItem50.LeftIndent = 6;
            toolTipItem50.Text = "恢复修改。";
            superToolTip50.Items.Add(toolTipTitleItem50);
            superToolTip50.Items.Add(toolTipItem50);
            this.redoItem1.SuperTip = superToolTip50;
            // 
            // 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(1137, 62);
            // 
            // barDockControlBottom
            // 
            this.barDockControlBottom.CausesValidation = false;
            this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.barDockControlBottom.Location = new System.Drawing.Point(0, 1178);
            this.barDockControlBottom.Size = new System.Drawing.Size(1137, 0);
            // 
            // barDockControlLeft
            // 
            this.barDockControlLeft.CausesValidation = false;
            this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
            this.barDockControlLeft.Location = new System.Drawing.Point(0, 62);
            this.barDockControlLeft.Size = new System.Drawing.Size(0, 1116);
            // 
            // barDockControlRight
            // 
            this.barDockControlRight.CausesValidation = false;
            this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
            this.barDockControlRight.Location = new System.Drawing.Point(1137, 62);
            this.barDockControlRight.Size = new System.Drawing.Size(0, 1116);
            // 
            // Cut
            // 
            this.Cut.Caption = "Cut";
            this.Cut.Id = 0;
            this.Cut.Name = "Cut";
            // 
            // changeStyleItem1
            // 
            this.changeStyleItem1.Edit = this.repositoryItemRichEditStyleEdit1;
            this.changeStyleItem1.Id = 46;
            this.changeStyleItem1.Name = "changeStyleItem1";
            // 
            // repositoryItemRichEditStyleEdit1
            // 
            this.repositoryItemRichEditStyleEdit1.AutoHeight = false;
            this.repositoryItemRichEditStyleEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemRichEditStyleEdit1.Control = this.richEditControl1;
            this.repositoryItemRichEditStyleEdit1.Name = "repositoryItemRichEditStyleEdit1";
            // 
            // showEditStyleFormItem1
            // 
            this.showEditStyleFormItem1.Id = 47;
            this.showEditStyleFormItem1.Name = "showEditStyleFormItem1";
            // 
            // findItem1
            // 
            this.findItem1.Id = 48;
            this.findItem1.Name = "findItem1";
            // 
            // replaceItem1
            // 
            this.replaceItem1.Id = 49;
            this.replaceItem1.Name = "replaceItem1";
            // 
            // fileNewItem1
            // 
            this.fileNewItem1.Id = 50;
            this.fileNewItem1.Name = "fileNewItem1";
            // 
            // fileSaveItem1
            // 
            this.fileSaveItem1.Id = 52;
            this.fileSaveItem1.Name = "fileSaveItem1";
            // 
            // changeFloatingObjectFillColorItem1
            // 
            this.changeFloatingObjectFillColorItem1.Id = 59;
            this.changeFloatingObjectFillColorItem1.Name = "changeFloatingObjectFillColorItem1";
            // 
            // changeFloatingObjectOutlineColorItem1
            // 
            this.changeFloatingObjectOutlineColorItem1.Id = 60;
            this.changeFloatingObjectOutlineColorItem1.Name = "changeFloatingObjectOutlineColorItem1";
            // 
            // changeFloatingObjectOutlineWeightItem1
            // 
            this.changeFloatingObjectOutlineWeightItem1.Edit = this.repositoryItemFloatingObjectOutlineWeight1;
            this.changeFloatingObjectOutlineWeightItem1.EditValue = 20;
            this.changeFloatingObjectOutlineWeightItem1.Id = 61;
            this.changeFloatingObjectOutlineWeightItem1.Name = "changeFloatingObjectOutlineWeightItem1";
            // 
            // repositoryItemFloatingObjectOutlineWeight1
            // 
            this.repositoryItemFloatingObjectOutlineWeight1.AutoHeight = false;
            this.repositoryItemFloatingObjectOutlineWeight1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemFloatingObjectOutlineWeight1.Control = this.richEditControl1;
            this.repositoryItemFloatingObjectOutlineWeight1.Name = "repositoryItemFloatingObjectOutlineWeight1";
            // 
            // changeFloatingObjectTextWrapTypeItem1
            // 
            this.changeFloatingObjectTextWrapTypeItem1.Id = 62;
            this.changeFloatingObjectTextWrapTypeItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectSquareTextWrapTypeItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectTightTextWrapTypeItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectThroughTextWrapTypeItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectTopAndBottomTextWrapTypeItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectBehindTextWrapTypeItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectInFrontOfTextWrapTypeItem1)});
            this.changeFloatingObjectTextWrapTypeItem1.Name = "changeFloatingObjectTextWrapTypeItem1";
            // 
            // setFloatingObjectSquareTextWrapTypeItem1
            // 
            this.setFloatingObjectSquareTextWrapTypeItem1.Id = 63;
            this.setFloatingObjectSquareTextWrapTypeItem1.Name = "setFloatingObjectSquareTextWrapTypeItem1";
            // 
            // setFloatingObjectTightTextWrapTypeItem1
            // 
            this.setFloatingObjectTightTextWrapTypeItem1.Id = 64;
            this.setFloatingObjectTightTextWrapTypeItem1.Name = "setFloatingObjectTightTextWrapTypeItem1";
            // 
            // setFloatingObjectThroughTextWrapTypeItem1
            // 
            this.setFloatingObjectThroughTextWrapTypeItem1.Id = 65;
            this.setFloatingObjectThroughTextWrapTypeItem1.Name = "setFloatingObjectThroughTextWrapTypeItem1";
            // 
            // setFloatingObjectTopAndBottomTextWrapTypeItem1
            // 
            this.setFloatingObjectTopAndBottomTextWrapTypeItem1.Id = 66;
            this.setFloatingObjectTopAndBottomTextWrapTypeItem1.Name = "setFloatingObjectTopAndBottomTextWrapTypeItem1";
            // 
            // setFloatingObjectBehindTextWrapTypeItem1
            // 
            this.setFloatingObjectBehindTextWrapTypeItem1.Id = 67;
            this.setFloatingObjectBehindTextWrapTypeItem1.Name = "setFloatingObjectBehindTextWrapTypeItem1";
            // 
            // setFloatingObjectInFrontOfTextWrapTypeItem1
            // 
            this.setFloatingObjectInFrontOfTextWrapTypeItem1.Id = 68;
            this.setFloatingObjectInFrontOfTextWrapTypeItem1.Name = "setFloatingObjectInFrontOfTextWrapTypeItem1";
            // 
            // changeFloatingObjectAlignmentItem1
            // 
            this.changeFloatingObjectAlignmentItem1.Id = 69;
            this.changeFloatingObjectAlignmentItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectTopLeftAlignmentItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectTopCenterAlignmentItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectTopRightAlignmentItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectMiddleLeftAlignmentItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectMiddleCenterAlignmentItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectMiddleRightAlignmentItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectBottomLeftAlignmentItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectBottomCenterAlignmentItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectBottomRightAlignmentItem1)});
            this.changeFloatingObjectAlignmentItem1.Name = "changeFloatingObjectAlignmentItem1";
            // 
            // setFloatingObjectTopLeftAlignmentItem1
            // 
            this.setFloatingObjectTopLeftAlignmentItem1.Id = 70;
            this.setFloatingObjectTopLeftAlignmentItem1.Name = "setFloatingObjectTopLeftAlignmentItem1";
            // 
            // setFloatingObjectTopCenterAlignmentItem1
            // 
            this.setFloatingObjectTopCenterAlignmentItem1.Id = 71;
            this.setFloatingObjectTopCenterAlignmentItem1.Name = "setFloatingObjectTopCenterAlignmentItem1";
            // 
            // setFloatingObjectTopRightAlignmentItem1
            // 
            this.setFloatingObjectTopRightAlignmentItem1.Id = 72;
            this.setFloatingObjectTopRightAlignmentItem1.Name = "setFloatingObjectTopRightAlignmentItem1";
            // 
            // setFloatingObjectMiddleLeftAlignmentItem1
            // 
            this.setFloatingObjectMiddleLeftAlignmentItem1.Id = 73;
            this.setFloatingObjectMiddleLeftAlignmentItem1.Name = "setFloatingObjectMiddleLeftAlignmentItem1";
            // 
            // setFloatingObjectMiddleCenterAlignmentItem1
            // 
            this.setFloatingObjectMiddleCenterAlignmentItem1.Id = 74;
            this.setFloatingObjectMiddleCenterAlignmentItem1.Name = "setFloatingObjectMiddleCenterAlignmentItem1";
            // 
            // setFloatingObjectMiddleRightAlignmentItem1
            // 
            this.setFloatingObjectMiddleRightAlignmentItem1.Id = 75;
            this.setFloatingObjectMiddleRightAlignmentItem1.Name = "setFloatingObjectMiddleRightAlignmentItem1";
            // 
            // setFloatingObjectBottomLeftAlignmentItem1
            // 
            this.setFloatingObjectBottomLeftAlignmentItem1.Id = 76;
            this.setFloatingObjectBottomLeftAlignmentItem1.Name = "setFloatingObjectBottomLeftAlignmentItem1";
            // 
            // setFloatingObjectBottomCenterAlignmentItem1
            // 
            this.setFloatingObjectBottomCenterAlignmentItem1.Id = 77;
            this.setFloatingObjectBottomCenterAlignmentItem1.Name = "setFloatingObjectBottomCenterAlignmentItem1";
            // 
            // setFloatingObjectBottomRightAlignmentItem1
            // 
            this.setFloatingObjectBottomRightAlignmentItem1.Id = 78;
            this.setFloatingObjectBottomRightAlignmentItem1.Name = "setFloatingObjectBottomRightAlignmentItem1";
            // 
            // floatingObjectBringForwardSubItem1
            // 
            this.floatingObjectBringForwardSubItem1.Id = 79;
            this.floatingObjectBringForwardSubItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.floatingObjectBringForwardItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.floatingObjectBringToFrontItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.floatingObjectBringInFrontOfTextItem1)});
            this.floatingObjectBringForwardSubItem1.Name = "floatingObjectBringForwardSubItem1";
            // 
            // floatingObjectBringForwardItem1
            // 
            this.floatingObjectBringForwardItem1.Id = 80;
            this.floatingObjectBringForwardItem1.Name = "floatingObjectBringForwardItem1";
            // 
            // floatingObjectBringToFrontItem1
            // 
            this.floatingObjectBringToFrontItem1.Id = 81;
            this.floatingObjectBringToFrontItem1.Name = "floatingObjectBringToFrontItem1";
            // 
            // floatingObjectBringInFrontOfTextItem1
            // 
            this.floatingObjectBringInFrontOfTextItem1.Id = 82;
            this.floatingObjectBringInFrontOfTextItem1.Name = "floatingObjectBringInFrontOfTextItem1";
            // 
            // floatingObjectSendBackwardSubItem1
            // 
            this.floatingObjectSendBackwardSubItem1.Id = 83;
            this.floatingObjectSendBackwardSubItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.floatingObjectSendBackwardItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.floatingObjectSendToBackItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.floatingObjectSendBehindTextItem1)});
            this.floatingObjectSendBackwardSubItem1.Name = "floatingObjectSendBackwardSubItem1";
            // 
            // floatingObjectSendBackwardItem1
            // 
            this.floatingObjectSendBackwardItem1.Id = 84;
            this.floatingObjectSendBackwardItem1.Name = "floatingObjectSendBackwardItem1";
            // 
            // floatingObjectSendToBackItem1
            // 
            this.floatingObjectSendToBackItem1.Id = 85;
            this.floatingObjectSendToBackItem1.Name = "floatingObjectSendToBackItem1";
            // 
            // floatingObjectSendBehindTextItem1
            // 
            this.floatingObjectSendBehindTextItem1.Id = 86;
            this.floatingObjectSendBehindTextItem1.Name = "floatingObjectSendBehindTextItem1";
            // 
            // repositoryItemTextEdit1
            // 
            this.repositoryItemTextEdit1.AutoHeight = false;
            this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
            // 
            // richEditBarController1
            // 
            this.richEditBarController1.BarItems.Add(this.pasteItem1);
            this.richEditBarController1.BarItems.Add(this.cutItem1);
            this.richEditBarController1.BarItems.Add(this.copyItem1);
            this.richEditBarController1.BarItems.Add(this.pasteSpecialItem1);
            this.richEditBarController1.BarItems.Add(this.changeFontNameItem1);
            this.richEditBarController1.BarItems.Add(this.changeFontSizeItem1);
            this.richEditBarController1.BarItems.Add(this.fontSizeIncreaseItem1);
            this.richEditBarController1.BarItems.Add(this.fontSizeDecreaseItem1);
            this.richEditBarController1.BarItems.Add(this.toggleFontBoldItem1);
            this.richEditBarController1.BarItems.Add(this.toggleFontItalicItem1);
            this.richEditBarController1.BarItems.Add(this.toggleFontUnderlineItem1);
            this.richEditBarController1.BarItems.Add(this.toggleFontDoubleUnderlineItem1);
            this.richEditBarController1.BarItems.Add(this.toggleFontStrikeoutItem1);
            this.richEditBarController1.BarItems.Add(this.toggleFontDoubleStrikeoutItem1);
            this.richEditBarController1.BarItems.Add(this.toggleFontSuperscriptItem1);
            this.richEditBarController1.BarItems.Add(this.toggleFontSubscriptItem1);
            this.richEditBarController1.BarItems.Add(this.changeFontColorItem1);
            this.richEditBarController1.BarItems.Add(this.changeFontBackColorItem1);
            this.richEditBarController1.BarItems.Add(this.changeTextCaseItem1);
            this.richEditBarController1.BarItems.Add(this.makeTextUpperCaseItem1);
            this.richEditBarController1.BarItems.Add(this.makeTextLowerCaseItem1);
            this.richEditBarController1.BarItems.Add(this.toggleTextCaseItem1);
            this.richEditBarController1.BarItems.Add(this.clearFormattingItem1);
            this.richEditBarController1.BarItems.Add(this.showFontFormItem1);
            this.richEditBarController1.BarItems.Add(this.toggleBulletedListItem1);
            this.richEditBarController1.BarItems.Add(this.toggleNumberingListItem1);
            this.richEditBarController1.BarItems.Add(this.toggleMultiLevelListItem1);
            this.richEditBarController1.BarItems.Add(this.decreaseIndentItem1);
            this.richEditBarController1.BarItems.Add(this.increaseIndentItem1);
            this.richEditBarController1.BarItems.Add(this.toggleParagraphAlignmentLeftItem1);
            this.richEditBarController1.BarItems.Add(this.toggleParagraphAlignmentCenterItem1);
            this.richEditBarController1.BarItems.Add(this.toggleParagraphAlignmentRightItem1);
            this.richEditBarController1.BarItems.Add(this.toggleParagraphAlignmentJustifyItem1);
            this.richEditBarController1.BarItems.Add(this.toggleShowWhitespaceItem1);
            this.richEditBarController1.BarItems.Add(this.changeParagraphLineSpacingItem1);
            this.richEditBarController1.BarItems.Add(this.setSingleParagraphSpacingItem1);
            this.richEditBarController1.BarItems.Add(this.setSesquialteralParagraphSpacingItem1);
            this.richEditBarController1.BarItems.Add(this.setDoubleParagraphSpacingItem1);
            this.richEditBarController1.BarItems.Add(this.showLineSpacingFormItem1);
            this.richEditBarController1.BarItems.Add(this.addSpacingBeforeParagraphItem1);
            this.richEditBarController1.BarItems.Add(this.removeSpacingBeforeParagraphItem1);
            this.richEditBarController1.BarItems.Add(this.addSpacingAfterParagraphItem1);
            this.richEditBarController1.BarItems.Add(this.removeSpacingAfterParagraphItem1);
            this.richEditBarController1.BarItems.Add(this.changeParagraphBackColorItem1);
            this.richEditBarController1.BarItems.Add(this.showParagraphFormItem1);
            this.richEditBarController1.BarItems.Add(this.changeStyleItem1);
            this.richEditBarController1.BarItems.Add(this.showEditStyleFormItem1);
            this.richEditBarController1.BarItems.Add(this.findItem1);
            this.richEditBarController1.BarItems.Add(this.replaceItem1);
            this.richEditBarController1.BarItems.Add(this.fileNewItem1);
            this.richEditBarController1.BarItems.Add(this.fileOpenItem1);
            this.richEditBarController1.BarItems.Add(this.fileSaveItem1);
            this.richEditBarController1.BarItems.Add(this.fileSaveAsItem1);
            this.richEditBarController1.BarItems.Add(this.quickPrintItem1);
            this.richEditBarController1.BarItems.Add(this.printItem1);
            this.richEditBarController1.BarItems.Add(this.printPreviewItem1);
            this.richEditBarController1.BarItems.Add(this.undoItem1);
            this.richEditBarController1.BarItems.Add(this.redoItem1);
            this.richEditBarController1.BarItems.Add(this.changeFloatingObjectFillColorItem1);
            this.richEditBarController1.BarItems.Add(this.changeFloatingObjectOutlineColorItem1);
            this.richEditBarController1.BarItems.Add(this.changeFloatingObjectOutlineWeightItem1);
            this.richEditBarController1.BarItems.Add(this.changeFloatingObjectTextWrapTypeItem1);
            this.richEditBarController1.BarItems.Add(this.setFloatingObjectSquareTextWrapTypeItem1);
            this.richEditBarController1.BarItems.Add(this.setFloatingObjectTightTextWrapTypeItem1);
            this.richEditBarController1.BarItems.Add(this.setFloatingObjectThroughTextWrapTypeItem1);
            this.richEditBarController1.BarItems.Add(this.setFloatingObjectTopAndBottomTextWrapTypeItem1);
            this.richEditBarController1.BarItems.Add(this.setFloatingObjectBehindTextWrapTypeItem1);
            this.richEditBarController1.BarItems.Add(this.setFloatingObjectInFrontOfTextWrapTypeItem1);
            this.richEditBarController1.BarItems.Add(this.changeFloatingObjectAlignmentItem1);
            this.richEditBarController1.BarItems.Add(this.setFloatingObjectTopLeftAlignmentItem1);
            this.richEditBarController1.BarItems.Add(this.setFloatingObjectTopCenterAlignmentItem1);
            this.richEditBarController1.BarItems.Add(this.setFloatingObjectTopRightAlignmentItem1);
            this.richEditBarController1.BarItems.Add(this.setFloatingObjectMiddleLeftAlignmentItem1);
            this.richEditBarController1.BarItems.Add(this.setFloatingObjectMiddleCenterAlignmentItem1);
            this.richEditBarController1.BarItems.Add(this.setFloatingObjectMiddleRightAlignmentItem1);
            this.richEditBarController1.BarItems.Add(this.setFloatingObjectBottomLeftAlignmentItem1);
            this.richEditBarController1.BarItems.Add(this.setFloatingObjectBottomCenterAlignmentItem1);
            this.richEditBarController1.BarItems.Add(this.setFloatingObjectBottomRightAlignmentItem1);
            this.richEditBarController1.BarItems.Add(this.floatingObjectBringForwardSubItem1);
            this.richEditBarController1.BarItems.Add(this.floatingObjectBringForwardItem1);
            this.richEditBarController1.BarItems.Add(this.floatingObjectBringToFrontItem1);
            this.richEditBarController1.BarItems.Add(this.floatingObjectBringInFrontOfTextItem1);
            this.richEditBarController1.BarItems.Add(this.floatingObjectSendBackwardSubItem1);
            this.richEditBarController1.BarItems.Add(this.floatingObjectSendBackwardItem1);
            this.richEditBarController1.BarItems.Add(this.floatingObjectSendToBackItem1);
            this.richEditBarController1.BarItems.Add(this.floatingObjectSendBehindTextItem1);
            this.richEditBarController1.Control = this.richEditControl1;
            // 
            // Launcher
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.richEditControl1);
            this.Controls.Add(this.barDockControlLeft);
            this.Controls.Add(this.barDockControlRight);
            this.Controls.Add(this.barDockControlBottom);
            this.Controls.Add(this.barDockControlTop);
            this.Name = "Launcher";
            this.Size = new System.Drawing.Size(1137, 1178);
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemFontEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRichEditFontSizeEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRichEditStyleEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemFloatingObjectOutlineWeight1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.richEditBarController1)).EndInit();
            this.ResumeLayout(false);

        }
Пример #30
0
        /// <summary> 
        /// Required method for Designer support - do not modify 
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            DevExpress.Utils.SuperToolTip superToolTip4 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem4 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem4 = new DevExpress.Utils.ToolTipItem();
            this.gridControlClass = new DevExpress.XtraGrid.GridControl();
            this.gridViewClass = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.gridColumnCID = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumnClassName = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumnClassSubj = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumnTimeStart = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumnTimeEnd = new DevExpress.XtraGrid.Columns.GridColumn();
            this.ribbonControlMain = new DevExpress.XtraBars.Ribbon.RibbonControl();
            this.btnNewClass = new DevExpress.XtraBars.BarButtonItem();
            this.btnEditClass = new DevExpress.XtraBars.BarButtonItem();
            this.btnDeleteClass = new DevExpress.XtraBars.BarButtonItem();
            this.btnRefreshClass = new DevExpress.XtraBars.BarButtonItem();
            this.btnClassProperties = new DevExpress.XtraBars.BarButtonItem();
            this.btnClassBin = new DevExpress.XtraBars.BarButtonItem();
            this.btnOpenClass = new DevExpress.XtraBars.BarButtonItem();
            this.ribbonPageClass = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.ribbonPageGroupClassManipulate = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroupClassView = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroupClassBin = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            ((System.ComponentModel.ISupportInitialize)(this.gridControlClass)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewClass)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControlMain)).BeginInit();
            this.SuspendLayout();
            // 
            // gridControlClass
            // 
            this.gridControlClass.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridControlClass.Location = new System.Drawing.Point(0, 141);
            this.gridControlClass.MainView = this.gridViewClass;
            this.gridControlClass.Name = "gridControlClass";
            this.gridControlClass.Size = new System.Drawing.Size(738, 246);
            this.gridControlClass.TabIndex = 3;
            this.gridControlClass.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridViewClass});
            // 
            // gridViewClass
            // 
            this.gridViewClass.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.gridColumnCID,
            this.gridColumnClassName,
            this.gridColumnClassSubj,
            this.gridColumnTimeStart,
            this.gridColumnTimeEnd});
            this.gridViewClass.GridControl = this.gridControlClass;
            this.gridViewClass.Name = "gridViewClass";
            this.gridViewClass.OptionsBehavior.Editable = false;
            this.gridViewClass.OptionsBehavior.ReadOnly = true;
            this.gridViewClass.OptionsFind.AlwaysVisible = true;
            this.gridViewClass.OptionsFind.FindDelay = 100;
            this.gridViewClass.OptionsSelection.MultiSelect = true;
            // 
            // gridColumnCID
            // 
            this.gridColumnCID.Caption = "CID";
            this.gridColumnCID.FieldName = "CID";
            this.gridColumnCID.Name = "gridColumnCID";
            // 
            // gridColumnClassName
            // 
            this.gridColumnClassName.Caption = "Class Name";
            this.gridColumnClassName.FieldName = "class";
            this.gridColumnClassName.Name = "gridColumnClassName";
            this.gridColumnClassName.Visible = true;
            this.gridColumnClassName.VisibleIndex = 0;
            // 
            // gridColumnClassSubj
            // 
            this.gridColumnClassSubj.Caption = "Subject";
            this.gridColumnClassSubj.FieldName = "subject";
            this.gridColumnClassSubj.Name = "gridColumnClassSubj";
            this.gridColumnClassSubj.Visible = true;
            this.gridColumnClassSubj.VisibleIndex = 1;
            // 
            // gridColumnTimeStart
            // 
            this.gridColumnTimeStart.Caption = "Time Start";
            this.gridColumnTimeStart.FieldName = "time_start";
            this.gridColumnTimeStart.Name = "gridColumnTimeStart";
            this.gridColumnTimeStart.Visible = true;
            this.gridColumnTimeStart.VisibleIndex = 2;
            // 
            // gridColumnTimeEnd
            // 
            this.gridColumnTimeEnd.Caption = "Time End";
            this.gridColumnTimeEnd.FieldName = "time_end";
            this.gridColumnTimeEnd.Name = "gridColumnTimeEnd";
            this.gridColumnTimeEnd.Visible = true;
            this.gridColumnTimeEnd.VisibleIndex = 3;
            // 
            // ribbonControlMain
            // 
            this.ribbonControlMain.ExpandCollapseItem.Id = 0;
            this.ribbonControlMain.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.ribbonControlMain.ExpandCollapseItem,
            this.btnNewClass,
            this.btnEditClass,
            this.btnDeleteClass,
            this.btnRefreshClass,
            this.btnClassProperties,
            this.btnClassBin,
            this.btnOpenClass});
            this.ribbonControlMain.Location = new System.Drawing.Point(0, 0);
            this.ribbonControlMain.MaxItemId = 82;
            this.ribbonControlMain.Name = "ribbonControlMain";
            this.ribbonControlMain.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.ribbonPageClass});
            this.ribbonControlMain.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonControlStyle.Office2010;
            this.ribbonControlMain.ShowApplicationButton = DevExpress.Utils.DefaultBoolean.False;
            this.ribbonControlMain.Size = new System.Drawing.Size(738, 141);
            // 
            // btnNewClass
            // 
            this.btnNewClass.Caption = "New Class";
            this.btnNewClass.Glyph = global::ComDriveSW.Properties.Resources.Class_add;
            this.btnNewClass.Id = 44;
            this.btnNewClass.Name = "btnNewClass";
            this.btnNewClass.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            this.btnNewClass.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnNewClass_ItemClick);
            // 
            // btnEditClass
            // 
            this.btnEditClass.Caption = "Edit Class";
            this.btnEditClass.Glyph = global::ComDriveSW.Properties.Resources.Class_edit;
            this.btnEditClass.Id = 45;
            this.btnEditClass.Name = "btnEditClass";
            this.btnEditClass.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            this.btnEditClass.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnEditClass_ItemClick);
            // 
            // btnDeleteClass
            // 
            this.btnDeleteClass.Caption = "Delete Class";
            this.btnDeleteClass.Glyph = global::ComDriveSW.Properties.Resources.Class_del;
            this.btnDeleteClass.Id = 46;
            this.btnDeleteClass.Name = "btnDeleteClass";
            this.btnDeleteClass.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            this.btnDeleteClass.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnDeleteClass_ItemClick);
            // 
            // btnRefreshClass
            // 
            this.btnRefreshClass.Caption = "Refresh";
            this.btnRefreshClass.Glyph = global::ComDriveSW.Properties.Resources.Refresh_32;
            this.btnRefreshClass.Id = 47;
            this.btnRefreshClass.Name = "btnRefreshClass";
            this.btnRefreshClass.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            this.btnRefreshClass.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnRefreshClass_ItemClick);
            // 
            // btnClassProperties
            // 
            this.btnClassProperties.Caption = "Properties";
            this.btnClassProperties.Glyph = global::ComDriveSW.Properties.Resources.Show_Property_32;
            this.btnClassProperties.Id = 48;
            this.btnClassProperties.Name = "btnClassProperties";
            this.btnClassProperties.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            this.btnClassProperties.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnClassProperties_ItemClick);
            // 
            // btnClassBin
            // 
            this.btnClassBin.Caption = "Bin";
            this.btnClassBin.Glyph = global::ComDriveSW.Properties.Resources.Recycle_Sign_32;
            this.btnClassBin.Id = 49;
            this.btnClassBin.Name = "btnClassBin";
            this.btnClassBin.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            this.btnClassBin.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnClassBin_ItemClick);
            // 
            // btnOpenClass
            // 
            this.btnOpenClass.Caption = "Open";
            this.btnOpenClass.Glyph = global::ComDriveSW.Properties.Resources.External_Link_32;
            this.btnOpenClass.Id = 52;
            this.btnOpenClass.Name = "btnOpenClass";
            this.btnOpenClass.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            toolTipTitleItem4.Text = "Open";
            toolTipItem4.LeftIndent = 6;
            toolTipItem4.Text = "Opens the selected class(es)";
            superToolTip4.Items.Add(toolTipTitleItem4);
            superToolTip4.Items.Add(toolTipItem4);
            this.btnOpenClass.SuperTip = superToolTip4;
            this.btnOpenClass.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnOpenClass_ItemClick);
            // 
            // ribbonPageClass
            // 
            this.ribbonPageClass.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonPageGroupClassManipulate,
            this.ribbonPageGroupClassView,
            this.ribbonPageGroupClassBin});
            this.ribbonPageClass.Name = "ribbonPageClass";
            this.ribbonPageClass.Text = "Class";
            // 
            // ribbonPageGroupClassManipulate
            // 
            this.ribbonPageGroupClassManipulate.AllowTextClipping = false;
            this.ribbonPageGroupClassManipulate.ItemLinks.Add(this.btnNewClass);
            this.ribbonPageGroupClassManipulate.ItemLinks.Add(this.btnEditClass);
            this.ribbonPageGroupClassManipulate.ItemLinks.Add(this.btnDeleteClass);
            this.ribbonPageGroupClassManipulate.Name = "ribbonPageGroupClassManipulate";
            this.ribbonPageGroupClassManipulate.ShowCaptionButton = false;
            this.ribbonPageGroupClassManipulate.Text = "Class";
            // 
            // ribbonPageGroupClassView
            // 
            this.ribbonPageGroupClassView.AllowTextClipping = false;
            this.ribbonPageGroupClassView.ItemLinks.Add(this.btnOpenClass);
            this.ribbonPageGroupClassView.ItemLinks.Add(this.btnRefreshClass);
            this.ribbonPageGroupClassView.ItemLinks.Add(this.btnClassProperties);
            this.ribbonPageGroupClassView.Name = "ribbonPageGroupClassView";
            this.ribbonPageGroupClassView.ShowCaptionButton = false;
            this.ribbonPageGroupClassView.Text = "View";
            // 
            // ribbonPageGroupClassBin
            // 
            this.ribbonPageGroupClassBin.AllowTextClipping = false;
            this.ribbonPageGroupClassBin.ItemLinks.Add(this.btnClassBin);
            this.ribbonPageGroupClassBin.Name = "ribbonPageGroupClassBin";
            this.ribbonPageGroupClassBin.ShowCaptionButton = false;
            this.ribbonPageGroupClassBin.Text = "Bin";
            // 
            // ctrlClass
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.gridControlClass);
            this.Controls.Add(this.ribbonControlMain);
            this.Name = "ctrlClass";
            this.Size = new System.Drawing.Size(738, 387);
            ((System.ComponentModel.ISupportInitialize)(this.gridControlClass)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewClass)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControlMain)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
		/// <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.XtraGrid.GridLevelNode gridLevelNode1 = new DevExpress.XtraGrid.GridLevelNode();
			DevExpress.XtraSpellChecker.OptionsSpelling optionsSpelling1 = new DevExpress.XtraSpellChecker.OptionsSpelling();
			DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
			DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
			DevExpress.Utils.ToolTipItem toolTipItem1 = new DevExpress.Utils.ToolTipItem();
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ReminderEmailsForm));
			DevExpress.Utils.SuperToolTip superToolTip2 = new DevExpress.Utils.SuperToolTip();
			DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2 = new DevExpress.Utils.ToolTipTitleItem();
			DevExpress.Utils.ToolTipItem toolTipItem2 = new DevExpress.Utils.ToolTipItem();
			DevExpress.Utils.SuperToolTip superToolTip3 = new DevExpress.Utils.SuperToolTip();
			DevExpress.Utils.ToolTipTitleItem toolTipTitleItem3 = new DevExpress.Utils.ToolTipTitleItem();
			DevExpress.Utils.ToolTipItem toolTipItem3 = new DevExpress.Utils.ToolTipItem();
			DevExpress.XtraSpellChecker.OptionsSpelling optionsSpelling2 = new DevExpress.XtraSpellChecker.OptionsSpelling();
			DevExpress.Utils.SuperToolTip superToolTip4 = new DevExpress.Utils.SuperToolTip();
			DevExpress.Utils.ToolTipTitleItem toolTipTitleItem4 = new DevExpress.Utils.ToolTipTitleItem();
			DevExpress.Utils.ToolTipItem toolTipItem4 = new DevExpress.Utils.ToolTipItem();
			DevExpress.Utils.SuperToolTip superToolTip5 = new DevExpress.Utils.SuperToolTip();
			DevExpress.Utils.ToolTipTitleItem toolTipTitleItem5 = new DevExpress.Utils.ToolTipTitleItem();
			DevExpress.Utils.ToolTipItem toolTipItem5 = new DevExpress.Utils.ToolTipItem();
			DevExpress.Utils.SuperToolTip superToolTip6 = new DevExpress.Utils.SuperToolTip();
			DevExpress.Utils.ToolTipTitleItem toolTipTitleItem6 = new DevExpress.Utils.ToolTipTitleItem();
			DevExpress.Utils.ToolTipItem toolTipItem6 = new DevExpress.Utils.ToolTipItem();
			DevExpress.Utils.SuperToolTip superToolTip7 = new DevExpress.Utils.SuperToolTip();
			DevExpress.Utils.ToolTipTitleItem toolTipTitleItem7 = new DevExpress.Utils.ToolTipTitleItem();
			DevExpress.Utils.ToolTipItem toolTipItem7 = new DevExpress.Utils.ToolTipItem();
			this.logView = new ShomreiTorah.Data.UI.Grid.SmartGridView();
			this.colDate = new ShomreiTorah.Data.UI.Grid.SmartGridColumn();
			this.colEmailSubject1 = new ShomreiTorah.Data.UI.Grid.SmartGridColumn();
			this.grid = new ShomreiTorah.Data.UI.Grid.SmartGrid(this.components);
			this.gridView = new ShomreiTorah.Data.UI.Grid.SmartGridView();
			this.colShouldEmail = new ShomreiTorah.Data.UI.Grid.SmartGridColumn();
			this.colPerson = new ShomreiTorah.Data.UI.Grid.SmartGridColumn();
			this.colSource = new ShomreiTorah.Data.UI.Grid.SmartGridColumn();
			this.colEmailSubject = new ShomreiTorah.Data.UI.Grid.SmartGridColumn();
			this.colAdAmount = new ShomreiTorah.Data.UI.Grid.SmartGridColumn();
			this.bindingSource = new ShomreiTorah.Data.UI.FrameworkBindingSource(this.components);
			this.listSearch = new ShomreiTorah.WinForms.Controls.Lookup.ItemSelector();
			this.colRowId = new ShomreiTorah.Data.UI.Grid.SmartGridColumn();
			this.colRowId1 = new ShomreiTorah.Data.UI.Grid.SmartGridColumn();
			this.colRecipient = new ShomreiTorah.Data.UI.Grid.SmartGridColumn();
			this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
			this.emailEditor = new DevExpress.XtraRichEdit.RichEditControl();
			this.ribbonControl1 = new DevExpress.XtraBars.Ribbon.RibbonControl();
			this.sendAll = new DevExpress.XtraBars.BarButtonItem();
			this.zoomItem = new DevExpress.XtraBars.BarEditItem();
			this.zoomBarProperties = new DevExpress.XtraEditors.Repository.RepositoryItemZoomTrackBar();
			this.resetSelected = new DevExpress.XtraBars.BarListItem();
			this.ribbonPage1 = new DevExpress.XtraBars.Ribbon.RibbonPage();
			this.ribbonPageGroup1 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
			this.ribbonStatusBar1 = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
			this.spellChecker = new DevExpress.XtraSpellChecker.SpellChecker();
			this.emailSubject = new DevExpress.XtraEditors.TextEdit();
			this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
			this.recipientAddresses = new DevExpress.XtraEditors.HyperLinkEdit();
			this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
			this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
			this.standaloneBarDockControl1 = new DevExpress.XtraBars.StandaloneBarDockControl();
			this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
			this.mainBar = new DevExpress.XtraRichEdit.UI.ClipboardBar();
			this.cutItem1 = new DevExpress.XtraRichEdit.UI.CutItem();
			this.copyItem1 = new DevExpress.XtraRichEdit.UI.CopyItem();
			this.pasteItem1 = new DevExpress.XtraRichEdit.UI.PasteItem();
			this.undoItem1 = new DevExpress.XtraRichEdit.UI.UndoItem();
			this.redoItem1 = new DevExpress.XtraRichEdit.UI.RedoItem();
			this.fontBar1 = new DevExpress.XtraRichEdit.UI.FontBar();
			this.showFontFormItem1 = new DevExpress.XtraRichEdit.UI.ShowFontFormItem();
			this.fontSizeIncreaseItem1 = new DevExpress.XtraRichEdit.UI.FontSizeIncreaseItem();
			this.fontSizeDecreaseItem1 = new DevExpress.XtraRichEdit.UI.FontSizeDecreaseItem();
			this.toggleFontBoldItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontBoldItem();
			this.toggleFontItalicItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontItalicItem();
			this.toggleFontUnderlineItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontUnderlineItem();
			this.toggleFontStrikeoutItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontStrikeoutItem();
			this.changeFontColorItem1 = new DevExpress.XtraRichEdit.UI.ChangeFontColorItem();
			this.changeFontBackColorItem1 = new DevExpress.XtraRichEdit.UI.ChangeFontBackColorItem();
			this.toggleFontSuperscriptItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontSuperscriptItem();
			this.toggleFontSubscriptItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontSubscriptItem();
			this.clearFormattingItem1 = new DevExpress.XtraRichEdit.UI.ClearFormattingItem();
			this.paragraphBar1 = new DevExpress.XtraRichEdit.UI.ParagraphBar();
			this.toggleParagraphAlignmentLeftItem1 = new DevExpress.XtraRichEdit.UI.ToggleParagraphAlignmentLeftItem();
			this.toggleParagraphAlignmentCenterItem1 = new DevExpress.XtraRichEdit.UI.ToggleParagraphAlignmentCenterItem();
			this.toggleParagraphAlignmentRightItem1 = new DevExpress.XtraRichEdit.UI.ToggleParagraphAlignmentRightItem();
			this.toggleParagraphAlignmentJustifyItem1 = new DevExpress.XtraRichEdit.UI.ToggleParagraphAlignmentJustifyItem();
			this.changeParagraphLineSpacingItem1 = new DevExpress.XtraRichEdit.UI.ChangeParagraphLineSpacingItem();
			this.setSingleParagraphSpacingItem1 = new DevExpress.XtraRichEdit.UI.SetSingleParagraphSpacingItem();
			this.setSesquialteralParagraphSpacingItem1 = new DevExpress.XtraRichEdit.UI.SetSesquialteralParagraphSpacingItem();
			this.setDoubleParagraphSpacingItem1 = new DevExpress.XtraRichEdit.UI.SetDoubleParagraphSpacingItem();
			this.showLineSpacingFormItem1 = new DevExpress.XtraRichEdit.UI.ShowLineSpacingFormItem();
			this.addSpacingBeforeParagraphItem1 = new DevExpress.XtraRichEdit.UI.AddSpacingBeforeParagraphItem();
			this.removeSpacingBeforeParagraphItem1 = new DevExpress.XtraRichEdit.UI.RemoveSpacingBeforeParagraphItem();
			this.addSpacingAfterParagraphItem1 = new DevExpress.XtraRichEdit.UI.AddSpacingAfterParagraphItem();
			this.removeSpacingAfterParagraphItem1 = new DevExpress.XtraRichEdit.UI.RemoveSpacingAfterParagraphItem();
			this.toggleNumberingListItem1 = new DevExpress.XtraRichEdit.UI.ToggleNumberingListItem();
			this.toggleBulletedListItem1 = new DevExpress.XtraRichEdit.UI.ToggleBulletedListItem();
			this.toggleMultiLevelListItem1 = new DevExpress.XtraRichEdit.UI.ToggleMultiLevelListItem();
			this.decreaseIndentItem1 = new DevExpress.XtraRichEdit.UI.DecreaseIndentItem();
			this.increaseIndentItem1 = new DevExpress.XtraRichEdit.UI.IncreaseIndentItem();
			this.toggleShowWhitespaceItem1 = new DevExpress.XtraRichEdit.UI.ToggleShowWhitespaceItem();
			this.showParagraphFormItem1 = new DevExpress.XtraRichEdit.UI.ShowParagraphFormItem();
			this.tablesBar1 = new DevExpress.XtraRichEdit.UI.TablesBar();
			this.insertTableItem1 = new DevExpress.XtraRichEdit.UI.InsertTableItem();
			this.insertSymbolItem1 = new DevExpress.XtraRichEdit.UI.InsertSymbolItem();
			this.insertHyperlinkItem1 = new DevExpress.XtraRichEdit.UI.InsertHyperlinkItem();
			this.bar1 = new DevExpress.XtraBars.Bar();
			this.sendSelected = new DevExpress.XtraBars.BarButtonItem();
			this.showPreview = new DevExpress.XtraBars.BarButtonItem();
			this.sendPreview = new DevExpress.XtraBars.BarButtonItem();
			this.previewDestinationPopup = new DevExpress.XtraBars.PopupMenu(this.components);
			this.previewAddressItem = new DevExpress.XtraBars.BarEditItem();
			this.resetSingle = new DevExpress.XtraBars.BarListItem();
			this.bar2 = new DevExpress.XtraBars.Bar();
			this.findItem1 = new DevExpress.XtraRichEdit.UI.FindItem();
			this.replaceItem1 = new DevExpress.XtraRichEdit.UI.ReplaceItem();
			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.insertPageBreakItem1 = new DevExpress.XtraRichEdit.UI.InsertPageBreakItem();
			this.insertPictureItem1 = new DevExpress.XtraRichEdit.UI.InsertPictureItem();
			this.insertBookmarkItem1 = new DevExpress.XtraRichEdit.UI.InsertBookmarkItem();
			this.insertTableRowAboveItem1 = new DevExpress.XtraRichEdit.UI.InsertTableRowAboveItem();
			this.insertTableRowBelowItem1 = new DevExpress.XtraRichEdit.UI.InsertTableRowBelowItem();
			this.switchToSimpleViewItem1 = new DevExpress.XtraRichEdit.UI.SwitchToSimpleViewItem();
			this.switchToDraftViewItem1 = new DevExpress.XtraRichEdit.UI.SwitchToDraftViewItem();
			this.switchToPrintLayoutViewItem1 = new DevExpress.XtraRichEdit.UI.SwitchToPrintLayoutViewItem();
			this.zoomOutItem1 = new DevExpress.XtraRichEdit.UI.ZoomOutItem();
			this.zoomInItem1 = new DevExpress.XtraRichEdit.UI.ZoomInItem();
			this.changeSectionPageMarginsItem1 = new DevExpress.XtraRichEdit.UI.ChangeSectionPageMarginsItem();
			this.setNormalSectionPageMarginsItem1 = new DevExpress.XtraRichEdit.UI.SetNormalSectionPageMarginsItem();
			this.setNarrowSectionPageMarginsItem1 = new DevExpress.XtraRichEdit.UI.SetNarrowSectionPageMarginsItem();
			this.setModerateSectionPageMarginsItem1 = new DevExpress.XtraRichEdit.UI.SetModerateSectionPageMarginsItem();
			this.setWideSectionPageMarginsItem1 = new DevExpress.XtraRichEdit.UI.SetWideSectionPageMarginsItem();
			this.changeSectionPageOrientationItem1 = new DevExpress.XtraRichEdit.UI.ChangeSectionPageOrientationItem();
			this.setPortraitPageOrientationItem1 = new DevExpress.XtraRichEdit.UI.SetPortraitPageOrientationItem();
			this.setLandscapePageOrientationItem1 = new DevExpress.XtraRichEdit.UI.SetLandscapePageOrientationItem();
			this.fileNewItem1 = new DevExpress.XtraRichEdit.UI.FileNewItem();
			this.fileOpenItem1 = new DevExpress.XtraRichEdit.UI.FileOpenItem();
			this.fileSaveItem1 = new DevExpress.XtraRichEdit.UI.FileSaveItem();
			this.fileSaveAsItem1 = new DevExpress.XtraRichEdit.UI.FileSaveAsItem();
			this.richEditBarController1 = new DevExpress.XtraRichEdit.UI.RichEditBarController();
			this.previewAddressEdit = new ShomreiTorah.Data.UI.Controls.RepositoryItemPreviewAddressEdit();
			((System.ComponentModel.ISupportInitialize)(this.logView)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.grid)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.bindingSource)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.listSearch.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
			this.splitContainerControl1.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.zoomBarProperties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.emailSubject.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
			this.panelControl1.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.recipientAddresses.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.previewDestinationPopup)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.richEditBarController1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.previewAddressEdit)).BeginInit();
			this.SuspendLayout();
			// 
			// logView
			// 
			this.logView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.colDate,
            this.colEmailSubject1});
			this.logView.GridControl = this.grid;
			this.logView.Name = "logView";
			this.logView.OptionsView.ShowGroupPanel = false;
			this.logView.OptionsView.ShowPreview = true;
			this.logView.PreviewFieldName = "EmailSource";
			this.logView.RowSeparatorHeight = 12;
			this.logView.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
            new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colDate, DevExpress.Data.ColumnSortOrder.Descending)});
			this.logView.ViewCaption = "Emails";
			this.logView.CustomDrawRowPreview += new DevExpress.XtraGrid.Views.Base.RowObjectCustomDrawEventHandler(this.logView_CustomDrawRowPreview);
			this.logView.MeasurePreviewHeight += new DevExpress.XtraGrid.Views.Grid.RowHeightEventHandler(this.logView_MeasurePreviewHeight);
			this.logView.DoubleClick += new System.EventHandler(this.logView_DoubleClick);
			// 
			// colDate
			// 
			this.colDate.DisplayFormat.FormatString = "g";
			this.colDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
			this.colDate.FieldName = "Date";
			this.colDate.Name = "colDate";
			this.colDate.OptionsColumn.AllowEdit = false;
			this.colDate.OptionsColumn.AllowFocus = false;
			this.colDate.OptionsColumn.ReadOnly = true;
			this.colDate.Visible = true;
			this.colDate.VisibleIndex = 0;
			// 
			// colEmailSubject1
			// 
			this.colEmailSubject1.FieldName = "EmailSubject";
			this.colEmailSubject1.Name = "colEmailSubject1";
			this.colEmailSubject1.OptionsColumn.AllowEdit = false;
			this.colEmailSubject1.OptionsColumn.AllowFocus = false;
			this.colEmailSubject1.OptionsColumn.ReadOnly = true;
			this.colEmailSubject1.Visible = true;
			this.colEmailSubject1.VisibleIndex = 1;
			// 
			// grid
			// 
			this.grid.Dock = System.Windows.Forms.DockStyle.Fill;
			gridLevelNode1.LevelTemplate = this.logView;
			gridLevelNode1.RelationName = "ReminderEmailLogs";
			this.grid.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
            gridLevelNode1});
			this.grid.Location = new System.Drawing.Point(0, 0);
			this.grid.MainView = this.gridView;
			this.grid.Name = "grid";
			this.grid.RegistrationCount = 48;
			this.grid.ShowOnlyPredefinedDetails = true;
			this.grid.Size = new System.Drawing.Size(314, 450);
			this.grid.Source = this.bindingSource;
			this.grid.TabIndex = 0;
			this.grid.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridView,
            this.logView});
			this.grid.FocusedViewChanged += new DevExpress.XtraGrid.ViewFocusEventHandler(this.grid_FocusedViewChanged);
			// 
			// gridView
			// 
			this.gridView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.colShouldEmail,
            this.colPerson,
            this.colSource,
            this.colEmailSubject,
            this.colAdAmount});
			this.gridView.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
			this.gridView.GridControl = this.grid;
			this.gridView.Name = "gridView";
			this.gridView.OptionsSelection.MultiSelect = true;
			this.gridView.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
            new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colPerson, DevExpress.Data.ColumnSortOrder.Ascending)});
			this.gridView.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridView_FocusedRowChanged);
			// 
			// colShouldEmail
			// 
			this.colShouldEmail.Caption = " ";
			this.colShouldEmail.FieldName = "ShouldEmail";
			this.colShouldEmail.MaxWidth = 20;
			this.colShouldEmail.Name = "colShouldEmail";
			this.colShouldEmail.OptionsColumn.AllowSize = false;
			this.colShouldEmail.OptionsColumn.FixedWidth = true;
			this.colShouldEmail.ToolTip = "Should Email?";
			this.colShouldEmail.Visible = true;
			this.colShouldEmail.VisibleIndex = 0;
			this.colShouldEmail.Width = 33;
			// 
			// colPerson
			// 
			this.colPerson.AllowKeyboardActivation = false;
			this.colPerson.Caption = "Full Name";
			this.colPerson.FieldName = "Person";
			this.colPerson.Name = "colPerson";
			this.colPerson.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.True;
			this.colPerson.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.colPerson.OptionsColumn.ReadOnly = true;
			this.colPerson.ShowButtonMode = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.ShowAlways;
			this.colPerson.ShowEditorOnMouseDown = true;
			this.colPerson.Visible = true;
			this.colPerson.VisibleIndex = 1;
			this.colPerson.Width = 78;
			// 
			// colSource
			// 
			this.colSource.FieldName = "Source";
			this.colSource.Name = "colSource";
			this.colSource.OptionsColumn.AllowEdit = false;
			this.colSource.OptionsColumn.ReadOnly = true;
			this.colSource.Visible = true;
			this.colSource.VisibleIndex = 2;
			this.colSource.Width = 52;
			// 
			// colEmailSubject
			// 
			this.colEmailSubject.FieldName = "EmailSubject";
			this.colEmailSubject.Name = "colEmailSubject";
			this.colEmailSubject.Width = 72;
			// 
			// colAdAmount
			// 
			this.colAdAmount.DisplayFormat.FormatString = "c";
			this.colAdAmount.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
			this.colAdAmount.FieldName = "AdAmount";
			this.colAdAmount.Name = "colAdAmount";
			this.colAdAmount.OptionsColumn.AllowEdit = false;
			this.colAdAmount.OptionsColumn.ReadOnly = true;
			this.colAdAmount.Width = 62;
			// 
			// bindingSource
			// 
			this.bindingSource.DataMember = "Invitees";
			this.bindingSource.Position = 0;
			// 
			// listSearch
			// 
			this.listSearch.Dock = System.Windows.Forms.DockStyle.Bottom;
			this.listSearch.Location = new System.Drawing.Point(0, 564);
			this.listSearch.Name = "listSearch";
			this.listSearch.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.listSearch.Properties.NullValuePrompt = "Click here to search the list";
			this.listSearch.Size = new System.Drawing.Size(922, 20);
			this.listSearch.TabIndex = 3;
			this.listSearch.EditValueChanged += new System.EventHandler(this.listSearch_EditValueChanged);
			// 
			// colRowId
			// 
			this.colRowId.FieldName = "RowId";
			this.colRowId.Name = "colRowId";
			this.colRowId.Visible = true;
			this.colRowId.VisibleIndex = 0;
			// 
			// colRowId1
			// 
			this.colRowId1.FieldName = "RowId";
			this.colRowId1.Name = "colRowId1";
			this.colRowId1.Visible = true;
			this.colRowId1.VisibleIndex = 0;
			// 
			// colRecipient
			// 
			this.colRecipient.FieldName = "Recipient";
			this.colRecipient.Name = "colRecipient";
			this.colRecipient.Visible = true;
			this.colRecipient.VisibleIndex = 1;
			// 
			// splitContainerControl1
			// 
			this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
			this.splitContainerControl1.Location = new System.Drawing.Point(0, 114);
			this.splitContainerControl1.Name = "splitContainerControl1";
			this.splitContainerControl1.Panel1.Controls.Add(this.grid);
			this.splitContainerControl1.Panel1.Text = "Panel1";
			this.splitContainerControl1.Panel2.Controls.Add(this.emailEditor);
			this.splitContainerControl1.Panel2.Controls.Add(this.panelControl1);
			this.splitContainerControl1.Panel2.Controls.Add(this.standaloneBarDockControl1);
			this.splitContainerControl1.Panel2.Text = "Panel2";
			this.splitContainerControl1.Size = new System.Drawing.Size(922, 450);
			this.splitContainerControl1.SplitterPosition = 314;
			this.splitContainerControl1.TabIndex = 2;
			this.splitContainerControl1.Text = "splitContainerControl1";
			// 
			// emailEditor
			// 
			this.emailEditor.ActiveViewType = DevExpress.XtraRichEdit.RichEditViewType.Simple;
			this.emailEditor.DataBindings.Add(new System.Windows.Forms.Binding("HtmlText", this.bindingSource, "EmailSource", true));
			this.emailEditor.Dock = System.Windows.Forms.DockStyle.Fill;
			this.emailEditor.Location = new System.Drawing.Point(0, 144);
			this.emailEditor.MenuManager = this.ribbonControl1;
			this.emailEditor.Name = "emailEditor";
			this.emailEditor.Options.DocumentSaveOptions.CurrentFormat = DevExpress.XtraRichEdit.DocumentFormat.Html;
			this.emailEditor.Options.DocumentSaveOptions.DefaultFormat = DevExpress.XtraRichEdit.DocumentFormat.Html;
			this.emailEditor.Options.Export.Html.CssPropertiesExportType = DevExpress.XtraRichEdit.Export.Html.CssPropertiesExportType.Inline;
			this.emailEditor.Options.Export.Html.UriExportType = DevExpress.XtraRichEdit.Export.Html.UriExportType.Absolute;
			this.spellChecker.SetShowSpellCheckMenu(this.emailEditor, false);
			this.emailEditor.Size = new System.Drawing.Size(602, 306);
			this.emailEditor.SpellChecker = this.spellChecker;
			this.spellChecker.SetSpellCheckerOptions(this.emailEditor, optionsSpelling1);
			this.emailEditor.TabIndex = 1;
			this.emailEditor.Text = "richEditControl1";
			this.emailEditor.ZoomChanged += new System.EventHandler(this.emailEditor_ZoomChanged);
			this.emailEditor.BeforeExport += new DevExpress.XtraRichEdit.BeforeExportEventHandler(this.emailEditor_BeforeExport);
			// 
			// ribbonControl1
			// 
			this.ribbonControl1.ApplicationButtonText = null;
			// 
			// 
			// 
			this.ribbonControl1.ExpandCollapseItem.Id = 0;
			this.ribbonControl1.ExpandCollapseItem.Name = "";
			this.ribbonControl1.ExpandCollapseItem.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
			this.ribbonControl1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.ribbonControl1.ExpandCollapseItem,
            this.sendAll,
            this.zoomItem,
            this.resetSelected});
			this.ribbonControl1.Location = new System.Drawing.Point(0, 0);
			this.ribbonControl1.MaxItemId = 5;
			this.ribbonControl1.Name = "ribbonControl1";
			this.ribbonControl1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.ribbonPage1});
			this.ribbonControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.zoomBarProperties});
			this.ribbonControl1.SelectedPage = this.ribbonPage1;
			this.ribbonControl1.Size = new System.Drawing.Size(922, 114);
			this.ribbonControl1.StatusBar = this.ribbonStatusBar1;
			this.ribbonControl1.ToolbarLocation = DevExpress.XtraBars.Ribbon.RibbonQuickAccessToolbarLocation.Hidden;
			// 
			// sendAll
			// 
			this.sendAll.Caption = "Email Everyone";
			this.sendAll.Glyph = global::ShomreiTorah.Billing.Properties.Resources.SendMails16;
			this.sendAll.Id = 1;
			this.sendAll.LargeGlyph = global::ShomreiTorah.Billing.Properties.Resources.SendMails32;
			this.sendAll.Name = "sendAll";
			toolTipTitleItem1.Text = "Email Everyone";
			toolTipItem1.LeftIndent = 6;
			toolTipItem1.Text = "Sends emails to every checked person that hasn\'t given an ad yet.";
			superToolTip1.Items.Add(toolTipTitleItem1);
			superToolTip1.Items.Add(toolTipItem1);
			this.sendAll.SuperTip = superToolTip1;
			this.sendAll.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.sendAll_ItemClick);
			// 
			// zoomItem
			// 
			this.zoomItem.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
			this.zoomItem.Caption = "100%";
			this.zoomItem.Edit = this.zoomBarProperties;
			this.zoomItem.EditValue = "100";
			this.zoomItem.Glyph = ((System.Drawing.Image)(resources.GetObject("zoomItem.Glyph")));
			this.zoomItem.Id = 2;
			this.zoomItem.Name = "zoomItem";
			toolTipTitleItem2.Text = "Zoom";
			toolTipItem2.LeftIndent = 6;
			toolTipItem2.Text = "Sets the zoom factor of the email editor.";
			superToolTip2.Items.Add(toolTipTitleItem2);
			superToolTip2.Items.Add(toolTipItem2);
			this.zoomItem.SuperTip = superToolTip2;
			this.zoomItem.Width = 115;
			// 
			// zoomBarProperties
			// 
			this.zoomBarProperties.AppearanceFocused.BackColor = System.Drawing.Color.Transparent;
			this.zoomBarProperties.AppearanceFocused.Options.UseBackColor = true;
			this.zoomBarProperties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
			this.zoomBarProperties.LargeChange = 10;
			this.zoomBarProperties.Maximum = 190;
			this.zoomBarProperties.Minimum = 10;
			this.zoomBarProperties.Name = "zoomBarProperties";
			this.zoomBarProperties.ScrollThumbStyle = DevExpress.XtraEditors.Repository.ScrollThumbStyle.ArrowDownRight;
			this.zoomBarProperties.EditValueChanging += new DevExpress.XtraEditors.Controls.ChangingEventHandler(this.zoomBarProperties_EditValueChanging);
			// 
			// resetSelected
			// 
			this.resetSelected.Caption = "Apply Template";
			this.resetSelected.Id = 4;
			this.resetSelected.Name = "resetSelected";
			toolTipTitleItem3.Text = "Apply Template";
			toolTipItem3.LeftIndent = 6;
			toolTipItem3.Text = "Applies a preset email template to the selected (not just checked) people.";
			superToolTip3.Items.Add(toolTipTitleItem3);
			superToolTip3.Items.Add(toolTipItem3);
			this.resetSelected.SuperTip = superToolTip3;
			this.resetSelected.ListItemClick += new DevExpress.XtraBars.ListItemClickEventHandler(this.resetSelected_ListItemClick);
			// 
			// ribbonPage1
			// 
			this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonPageGroup1});
			this.ribbonPage1.Name = "ribbonPage1";
			this.ribbonPage1.Text = "Melave Malka";
			// 
			// ribbonPageGroup1
			// 
			this.ribbonPageGroup1.ItemLinks.Add(this.sendAll);
			this.ribbonPageGroup1.ItemLinks.Add(this.resetSelected);
			this.ribbonPageGroup1.Name = "ribbonPageGroup1";
			this.ribbonPageGroup1.ShowCaptionButton = false;
			this.ribbonPageGroup1.Text = "Emails";
			// 
			// ribbonStatusBar1
			// 
			this.ribbonStatusBar1.ItemLinks.Add(this.zoomItem);
			this.ribbonStatusBar1.Location = new System.Drawing.Point(0, 584);
			this.ribbonStatusBar1.Name = "ribbonStatusBar1";
			this.ribbonStatusBar1.Ribbon = this.ribbonControl1;
			this.ribbonStatusBar1.Size = new System.Drawing.Size(922, 25);
			// 
			// spellChecker
			// 
			this.spellChecker.Culture = new System.Globalization.CultureInfo("en-US");
			this.spellChecker.ParentContainer = null;
			// 
			// emailSubject
			// 
			this.emailSubject.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
						| System.Windows.Forms.AnchorStyles.Right)));
			this.emailSubject.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bindingSource, "EmailSubject", true));
			this.emailSubject.Location = new System.Drawing.Point(51, 32);
			this.emailSubject.MenuManager = this.ribbonControl1;
			this.emailSubject.Name = "emailSubject";
			this.spellChecker.SetShowSpellCheckMenu(this.emailSubject, true);
			this.emailSubject.Size = new System.Drawing.Size(546, 20);
			this.spellChecker.SetSpellCheckerOptions(this.emailSubject, optionsSpelling2);
			this.emailSubject.TabIndex = 1;
			// 
			// panelControl1
			// 
			this.panelControl1.Controls.Add(this.recipientAddresses);
			this.panelControl1.Controls.Add(this.emailSubject);
			this.panelControl1.Controls.Add(this.labelControl2);
			this.panelControl1.Controls.Add(this.labelControl1);
			this.panelControl1.Dock = System.Windows.Forms.DockStyle.Top;
			this.panelControl1.Location = new System.Drawing.Point(0, 87);
			this.panelControl1.Name = "panelControl1";
			this.panelControl1.Size = new System.Drawing.Size(602, 57);
			this.panelControl1.TabIndex = 0;
			// 
			// recipientAddresses
			// 
			this.recipientAddresses.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
						| System.Windows.Forms.AnchorStyles.Right)));
			this.recipientAddresses.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bindingSource, "EmailAddresses", true));
			this.recipientAddresses.Location = new System.Drawing.Point(51, 6);
			this.recipientAddresses.MenuManager = this.ribbonControl1;
			this.recipientAddresses.Name = "recipientAddresses";
			this.recipientAddresses.Properties.AppearanceReadOnly.BackColor = System.Drawing.SystemColors.Window;
			this.recipientAddresses.Properties.AppearanceReadOnly.Options.UseBackColor = true;
			this.recipientAddresses.Properties.ReadOnly = true;
			this.recipientAddresses.Size = new System.Drawing.Size(546, 20);
			this.recipientAddresses.TabIndex = 0;
			this.recipientAddresses.OpenLink += new DevExpress.XtraEditors.Controls.OpenLinkEventHandler(this.recipientAddresses_OpenLink);
			// 
			// labelControl2
			// 
			this.labelControl2.Location = new System.Drawing.Point(5, 9);
			this.labelControl2.Name = "labelControl2";
			this.labelControl2.Size = new System.Drawing.Size(16, 13);
			this.labelControl2.TabIndex = 0;
			this.labelControl2.Text = "To:";
			// 
			// labelControl1
			// 
			this.labelControl1.Location = new System.Drawing.Point(5, 35);
			this.labelControl1.Name = "labelControl1";
			this.labelControl1.Size = new System.Drawing.Size(40, 13);
			this.labelControl1.TabIndex = 0;
			this.labelControl1.Text = "Subject:";
			// 
			// standaloneBarDockControl1
			// 
			this.standaloneBarDockControl1.AutoSize = true;
			this.standaloneBarDockControl1.Dock = System.Windows.Forms.DockStyle.Top;
			this.standaloneBarDockControl1.Location = new System.Drawing.Point(0, 0);
			this.standaloneBarDockControl1.Name = "standaloneBarDockControl1";
			this.standaloneBarDockControl1.Size = new System.Drawing.Size(546, 87);
			this.standaloneBarDockControl1.Text = "standaloneBarDockControl1";
			// 
			// barManager1
			// 
			this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
            this.mainBar,
            this.fontBar1,
            this.paragraphBar1,
            this.tablesBar1,
            this.bar1,
            this.bar2});
			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.DockControls.Add(this.standaloneBarDockControl1);
			this.barManager1.Form = this;
			this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.undoItem1,
            this.redoItem1,
            this.cutItem1,
            this.copyItem1,
            this.pasteItem1,
            this.changeFontColorItem1,
            this.changeFontBackColorItem1,
            this.toggleFontBoldItem1,
            this.toggleFontItalicItem1,
            this.toggleFontUnderlineItem1,
            this.toggleFontStrikeoutItem1,
            this.toggleFontSuperscriptItem1,
            this.toggleFontSubscriptItem1,
            this.fontSizeIncreaseItem1,
            this.fontSizeDecreaseItem1,
            this.clearFormattingItem1,
            this.showFontFormItem1,
            this.toggleParagraphAlignmentLeftItem1,
            this.toggleParagraphAlignmentCenterItem1,
            this.toggleParagraphAlignmentRightItem1,
            this.toggleParagraphAlignmentJustifyItem1,
            this.changeParagraphLineSpacingItem1,
            this.setSingleParagraphSpacingItem1,
            this.setSesquialteralParagraphSpacingItem1,
            this.setDoubleParagraphSpacingItem1,
            this.showLineSpacingFormItem1,
            this.addSpacingBeforeParagraphItem1,
            this.removeSpacingBeforeParagraphItem1,
            this.addSpacingAfterParagraphItem1,
            this.removeSpacingAfterParagraphItem1,
            this.toggleNumberingListItem1,
            this.toggleBulletedListItem1,
            this.toggleMultiLevelListItem1,
            this.decreaseIndentItem1,
            this.increaseIndentItem1,
            this.toggleShowWhitespaceItem1,
            this.showParagraphFormItem1,
            this.findItem1,
            this.replaceItem1,
            this.insertPageBreakItem1,
            this.insertTableItem1,
            this.insertPictureItem1,
            this.insertBookmarkItem1,
            this.insertHyperlinkItem1,
            this.insertSymbolItem1,
            this.insertTableRowAboveItem1,
            this.insertTableRowBelowItem1,
            this.sendSelected,
            this.resetSingle,
            this.switchToSimpleViewItem1,
            this.switchToDraftViewItem1,
            this.switchToPrintLayoutViewItem1,
            this.zoomOutItem1,
            this.zoomInItem1,
            this.changeSectionPageMarginsItem1,
            this.setNormalSectionPageMarginsItem1,
            this.setNarrowSectionPageMarginsItem1,
            this.setModerateSectionPageMarginsItem1,
            this.setWideSectionPageMarginsItem1,
            this.changeSectionPageOrientationItem1,
            this.setPortraitPageOrientationItem1,
            this.setLandscapePageOrientationItem1,
            this.fileNewItem1,
            this.fileOpenItem1,
            this.fileSaveItem1,
            this.fileSaveAsItem1,
            this.showPreview,
            this.sendPreview,
            this.previewAddressItem});
			this.barManager1.MaxItemId = 98;
			this.barManager1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.previewAddressEdit});
			// 
			// mainBar
			// 
			this.mainBar.DockCol = 1;
			this.mainBar.DockRow = 0;
			this.mainBar.DockStyle = DevExpress.XtraBars.BarDockStyle.Standalone;
			this.mainBar.FloatLocation = new System.Drawing.Point(569, 638);
			this.mainBar.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.cutItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.copyItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pasteItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.undoItem1, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.redoItem1)});
			this.mainBar.Offset = 146;
			this.mainBar.StandaloneBarDockControl = this.standaloneBarDockControl1;
			this.mainBar.Text = "Main";
			// 
			// cutItem1
			// 
			this.cutItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("cutItem1.Glyph")));
			this.cutItem1.Id = 11;
			this.cutItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("cutItem1.LargeGlyph")));
			this.cutItem1.Name = "cutItem1";
			// 
			// copyItem1
			// 
			this.copyItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("copyItem1.Glyph")));
			this.copyItem1.Id = 12;
			this.copyItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("copyItem1.LargeGlyph")));
			this.copyItem1.Name = "copyItem1";
			// 
			// pasteItem1
			// 
			this.pasteItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("pasteItem1.Glyph")));
			this.pasteItem1.Id = 13;
			this.pasteItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("pasteItem1.LargeGlyph")));
			this.pasteItem1.Name = "pasteItem1";
			// 
			// undoItem1
			// 
			this.undoItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("undoItem1.Glyph")));
			this.undoItem1.Id = 9;
			this.undoItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("undoItem1.LargeGlyph")));
			this.undoItem1.Name = "undoItem1";
			// 
			// redoItem1
			// 
			this.redoItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("redoItem1.Glyph")));
			this.redoItem1.Id = 10;
			this.redoItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("redoItem1.LargeGlyph")));
			this.redoItem1.Name = "redoItem1";
			// 
			// fontBar1
			// 
			this.fontBar1.DockCol = 0;
			this.fontBar1.DockRow = 1;
			this.fontBar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Standalone;
			this.fontBar1.FloatLocation = new System.Drawing.Point(564, 370);
			this.fontBar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.showFontFormItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.fontSizeIncreaseItem1, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.fontSizeDecreaseItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleFontBoldItem1, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleFontItalicItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleFontUnderlineItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleFontStrikeoutItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.changeFontColorItem1, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.changeFontBackColorItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleFontSuperscriptItem1, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleFontSubscriptItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.clearFormattingItem1)});
			this.fontBar1.StandaloneBarDockControl = this.standaloneBarDockControl1;
			// 
			// showFontFormItem1
			// 
			this.showFontFormItem1.Caption = "Font...";
			this.showFontFormItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("showFontFormItem1.Glyph")));
			this.showFontFormItem1.Id = 28;
			this.showFontFormItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("showFontFormItem1.LargeGlyph")));
			this.showFontFormItem1.Name = "showFontFormItem1";
			this.showFontFormItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
			// 
			// fontSizeIncreaseItem1
			// 
			this.fontSizeIncreaseItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("fontSizeIncreaseItem1.Glyph")));
			this.fontSizeIncreaseItem1.Id = 17;
			this.fontSizeIncreaseItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("fontSizeIncreaseItem1.LargeGlyph")));
			this.fontSizeIncreaseItem1.Name = "fontSizeIncreaseItem1";
			// 
			// fontSizeDecreaseItem1
			// 
			this.fontSizeDecreaseItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("fontSizeDecreaseItem1.Glyph")));
			this.fontSizeDecreaseItem1.Id = 18;
			this.fontSizeDecreaseItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("fontSizeDecreaseItem1.LargeGlyph")));
			this.fontSizeDecreaseItem1.Name = "fontSizeDecreaseItem1";
			// 
			// toggleFontBoldItem1
			// 
			this.toggleFontBoldItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleFontBoldItem1.Glyph")));
			this.toggleFontBoldItem1.Id = 19;
			this.toggleFontBoldItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleFontBoldItem1.LargeGlyph")));
			this.toggleFontBoldItem1.Name = "toggleFontBoldItem1";
			// 
			// toggleFontItalicItem1
			// 
			this.toggleFontItalicItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleFontItalicItem1.Glyph")));
			this.toggleFontItalicItem1.Id = 20;
			this.toggleFontItalicItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleFontItalicItem1.LargeGlyph")));
			this.toggleFontItalicItem1.Name = "toggleFontItalicItem1";
			// 
			// toggleFontUnderlineItem1
			// 
			this.toggleFontUnderlineItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleFontUnderlineItem1.Glyph")));
			this.toggleFontUnderlineItem1.Id = 21;
			this.toggleFontUnderlineItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleFontUnderlineItem1.LargeGlyph")));
			this.toggleFontUnderlineItem1.Name = "toggleFontUnderlineItem1";
			// 
			// toggleFontStrikeoutItem1
			// 
			this.toggleFontStrikeoutItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleFontStrikeoutItem1.Glyph")));
			this.toggleFontStrikeoutItem1.Id = 22;
			this.toggleFontStrikeoutItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleFontStrikeoutItem1.LargeGlyph")));
			this.toggleFontStrikeoutItem1.Name = "toggleFontStrikeoutItem1";
			// 
			// changeFontColorItem1
			// 
			this.changeFontColorItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("changeFontColorItem1.Glyph")));
			this.changeFontColorItem1.Id = 23;
			this.changeFontColorItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("changeFontColorItem1.LargeGlyph")));
			this.changeFontColorItem1.Name = "changeFontColorItem1";
			// 
			// changeFontBackColorItem1
			// 
			this.changeFontBackColorItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("changeFontBackColorItem1.Glyph")));
			this.changeFontBackColorItem1.Id = 24;
			this.changeFontBackColorItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("changeFontBackColorItem1.LargeGlyph")));
			this.changeFontBackColorItem1.Name = "changeFontBackColorItem1";
			// 
			// toggleFontSuperscriptItem1
			// 
			this.toggleFontSuperscriptItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleFontSuperscriptItem1.Glyph")));
			this.toggleFontSuperscriptItem1.Id = 25;
			this.toggleFontSuperscriptItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleFontSuperscriptItem1.LargeGlyph")));
			this.toggleFontSuperscriptItem1.Name = "toggleFontSuperscriptItem1";
			// 
			// toggleFontSubscriptItem1
			// 
			this.toggleFontSubscriptItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleFontSubscriptItem1.Glyph")));
			this.toggleFontSubscriptItem1.Id = 26;
			this.toggleFontSubscriptItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleFontSubscriptItem1.LargeGlyph")));
			this.toggleFontSubscriptItem1.Name = "toggleFontSubscriptItem1";
			// 
			// clearFormattingItem1
			// 
			this.clearFormattingItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("clearFormattingItem1.Glyph")));
			this.clearFormattingItem1.Id = 27;
			this.clearFormattingItem1.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Space));
			this.clearFormattingItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("clearFormattingItem1.LargeGlyph")));
			this.clearFormattingItem1.Name = "clearFormattingItem1";
			// 
			// paragraphBar1
			// 
			this.paragraphBar1.DockCol = 0;
			this.paragraphBar1.DockRow = 2;
			this.paragraphBar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Standalone;
			this.paragraphBar1.FloatLocation = new System.Drawing.Point(935, 613);
			this.paragraphBar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleParagraphAlignmentLeftItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleParagraphAlignmentCenterItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleParagraphAlignmentRightItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleParagraphAlignmentJustifyItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.changeParagraphLineSpacingItem1, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleNumberingListItem1, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleBulletedListItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleMultiLevelListItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.decreaseIndentItem1, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.increaseIndentItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.toggleShowWhitespaceItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.showParagraphFormItem1)});
			this.paragraphBar1.StandaloneBarDockControl = this.standaloneBarDockControl1;
			// 
			// toggleParagraphAlignmentLeftItem1
			// 
			this.toggleParagraphAlignmentLeftItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleParagraphAlignmentLeftItem1.Glyph")));
			this.toggleParagraphAlignmentLeftItem1.Id = 29;
			this.toggleParagraphAlignmentLeftItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleParagraphAlignmentLeftItem1.LargeGlyph")));
			this.toggleParagraphAlignmentLeftItem1.Name = "toggleParagraphAlignmentLeftItem1";
			// 
			// toggleParagraphAlignmentCenterItem1
			// 
			this.toggleParagraphAlignmentCenterItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleParagraphAlignmentCenterItem1.Glyph")));
			this.toggleParagraphAlignmentCenterItem1.Id = 30;
			this.toggleParagraphAlignmentCenterItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleParagraphAlignmentCenterItem1.LargeGlyph")));
			this.toggleParagraphAlignmentCenterItem1.Name = "toggleParagraphAlignmentCenterItem1";
			// 
			// toggleParagraphAlignmentRightItem1
			// 
			this.toggleParagraphAlignmentRightItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleParagraphAlignmentRightItem1.Glyph")));
			this.toggleParagraphAlignmentRightItem1.Id = 31;
			this.toggleParagraphAlignmentRightItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleParagraphAlignmentRightItem1.LargeGlyph")));
			this.toggleParagraphAlignmentRightItem1.Name = "toggleParagraphAlignmentRightItem1";
			// 
			// toggleParagraphAlignmentJustifyItem1
			// 
			this.toggleParagraphAlignmentJustifyItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleParagraphAlignmentJustifyItem1.Glyph")));
			this.toggleParagraphAlignmentJustifyItem1.Id = 32;
			this.toggleParagraphAlignmentJustifyItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleParagraphAlignmentJustifyItem1.LargeGlyph")));
			this.toggleParagraphAlignmentJustifyItem1.Name = "toggleParagraphAlignmentJustifyItem1";
			// 
			// changeParagraphLineSpacingItem1
			// 
			this.changeParagraphLineSpacingItem1.Id = 33;
			this.changeParagraphLineSpacingItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.setSingleParagraphSpacingItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setSesquialteralParagraphSpacingItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setDoubleParagraphSpacingItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.showLineSpacingFormItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.addSpacingBeforeParagraphItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.removeSpacingBeforeParagraphItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.addSpacingAfterParagraphItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.removeSpacingAfterParagraphItem1)});
			this.changeParagraphLineSpacingItem1.Name = "changeParagraphLineSpacingItem1";
			// 
			// setSingleParagraphSpacingItem1
			// 
			this.setSingleParagraphSpacingItem1.Id = 34;
			this.setSingleParagraphSpacingItem1.Name = "setSingleParagraphSpacingItem1";
			// 
			// setSesquialteralParagraphSpacingItem1
			// 
			this.setSesquialteralParagraphSpacingItem1.Id = 35;
			this.setSesquialteralParagraphSpacingItem1.Name = "setSesquialteralParagraphSpacingItem1";
			// 
			// setDoubleParagraphSpacingItem1
			// 
			this.setDoubleParagraphSpacingItem1.Id = 36;
			this.setDoubleParagraphSpacingItem1.Name = "setDoubleParagraphSpacingItem1";
			// 
			// showLineSpacingFormItem1
			// 
			this.showLineSpacingFormItem1.Id = 37;
			this.showLineSpacingFormItem1.Name = "showLineSpacingFormItem1";
			// 
			// addSpacingBeforeParagraphItem1
			// 
			this.addSpacingBeforeParagraphItem1.Id = 38;
			this.addSpacingBeforeParagraphItem1.Name = "addSpacingBeforeParagraphItem1";
			// 
			// removeSpacingBeforeParagraphItem1
			// 
			this.removeSpacingBeforeParagraphItem1.Id = 39;
			this.removeSpacingBeforeParagraphItem1.Name = "removeSpacingBeforeParagraphItem1";
			// 
			// addSpacingAfterParagraphItem1
			// 
			this.addSpacingAfterParagraphItem1.Id = 40;
			this.addSpacingAfterParagraphItem1.Name = "addSpacingAfterParagraphItem1";
			// 
			// removeSpacingAfterParagraphItem1
			// 
			this.removeSpacingAfterParagraphItem1.Id = 41;
			this.removeSpacingAfterParagraphItem1.Name = "removeSpacingAfterParagraphItem1";
			// 
			// toggleNumberingListItem1
			// 
			this.toggleNumberingListItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleNumberingListItem1.Glyph")));
			this.toggleNumberingListItem1.Id = 42;
			this.toggleNumberingListItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleNumberingListItem1.LargeGlyph")));
			this.toggleNumberingListItem1.Name = "toggleNumberingListItem1";
			// 
			// toggleBulletedListItem1
			// 
			this.toggleBulletedListItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleBulletedListItem1.Glyph")));
			this.toggleBulletedListItem1.Id = 43;
			this.toggleBulletedListItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleBulletedListItem1.LargeGlyph")));
			this.toggleBulletedListItem1.Name = "toggleBulletedListItem1";
			// 
			// toggleMultiLevelListItem1
			// 
			this.toggleMultiLevelListItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleMultiLevelListItem1.Glyph")));
			this.toggleMultiLevelListItem1.Id = 44;
			this.toggleMultiLevelListItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleMultiLevelListItem1.LargeGlyph")));
			this.toggleMultiLevelListItem1.Name = "toggleMultiLevelListItem1";
			// 
			// decreaseIndentItem1
			// 
			this.decreaseIndentItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("decreaseIndentItem1.Glyph")));
			this.decreaseIndentItem1.Id = 45;
			this.decreaseIndentItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("decreaseIndentItem1.LargeGlyph")));
			this.decreaseIndentItem1.Name = "decreaseIndentItem1";
			// 
			// increaseIndentItem1
			// 
			this.increaseIndentItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("increaseIndentItem1.Glyph")));
			this.increaseIndentItem1.Id = 46;
			this.increaseIndentItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("increaseIndentItem1.LargeGlyph")));
			this.increaseIndentItem1.Name = "increaseIndentItem1";
			// 
			// toggleShowWhitespaceItem1
			// 
			this.toggleShowWhitespaceItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleShowWhitespaceItem1.Glyph")));
			this.toggleShowWhitespaceItem1.Id = 47;
			this.toggleShowWhitespaceItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleShowWhitespaceItem1.LargeGlyph")));
			this.toggleShowWhitespaceItem1.Name = "toggleShowWhitespaceItem1";
			// 
			// showParagraphFormItem1
			// 
			this.showParagraphFormItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("showParagraphFormItem1.Glyph")));
			this.showParagraphFormItem1.Id = 48;
			this.showParagraphFormItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("showParagraphFormItem1.LargeGlyph")));
			this.showParagraphFormItem1.Name = "showParagraphFormItem1";
			// 
			// tablesBar1
			// 
			this.tablesBar1.DockCol = 1;
			this.tablesBar1.DockRow = 2;
			this.tablesBar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Standalone;
			this.tablesBar1.FloatLocation = new System.Drawing.Point(1022, 383);
			this.tablesBar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.insertTableItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.insertSymbolItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.insertHyperlinkItem1)});
			this.tablesBar1.Offset = 370;
			this.tablesBar1.StandaloneBarDockControl = this.standaloneBarDockControl1;
			// 
			// insertTableItem1
			// 
			this.insertTableItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("insertTableItem1.Glyph")));
			this.insertTableItem1.Id = 51;
			this.insertTableItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("insertTableItem1.LargeGlyph")));
			this.insertTableItem1.Name = "insertTableItem1";
			// 
			// insertSymbolItem1
			// 
			this.insertSymbolItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("insertSymbolItem1.Glyph")));
			this.insertSymbolItem1.Id = 52;
			this.insertSymbolItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("insertSymbolItem1.LargeGlyph")));
			this.insertSymbolItem1.Name = "insertSymbolItem1";
			// 
			// insertHyperlinkItem1
			// 
			this.insertHyperlinkItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("insertHyperlinkItem1.Glyph")));
			this.insertHyperlinkItem1.Id = 53;
			this.insertHyperlinkItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("insertHyperlinkItem1.LargeGlyph")));
			this.insertHyperlinkItem1.Name = "insertHyperlinkItem1";
			// 
			// bar1
			// 
			this.bar1.BarName = "Custom 8";
			this.bar1.DockCol = 0;
			this.bar1.DockRow = 0;
			this.bar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Standalone;
			this.bar1.FloatLocation = new System.Drawing.Point(563, 281);
			this.bar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.sendSelected),
            new DevExpress.XtraBars.LinkPersistInfo(this.showPreview),
            new DevExpress.XtraBars.LinkPersistInfo(this.sendPreview),
            new DevExpress.XtraBars.LinkPersistInfo(this.resetSingle, true)});
			this.bar1.StandaloneBarDockControl = this.standaloneBarDockControl1;
			this.bar1.Text = "Email";
			// 
			// sendSelected
			// 
			this.sendSelected.Caption = "Send";
			this.sendSelected.Glyph = global::ShomreiTorah.Billing.Properties.Resources.SendMail16;
			this.sendSelected.Id = 69;
			this.sendSelected.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Enter));
			this.sendSelected.Name = "sendSelected";
			this.sendSelected.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
			toolTipTitleItem4.Text = "Send";
			toolTipItem4.LeftIndent = 6;
			toolTipItem4.Text = "Sends the email to this person.";
			superToolTip4.Items.Add(toolTipTitleItem4);
			superToolTip4.Items.Add(toolTipItem4);
			this.sendSelected.SuperTip = superToolTip4;
			this.sendSelected.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.sendSelected_ItemClick);
			// 
			// showPreview
			// 
			this.showPreview.Caption = "Show Preview";
			this.showPreview.Glyph = global::ShomreiTorah.Billing.Properties.Resources.ShowPreview16;
			this.showPreview.Id = 95;
			this.showPreview.Name = "showPreview";
			toolTipTitleItem5.Text = "Show Preview";
			toolTipItem5.LeftIndent = 6;
			toolTipItem5.Text = "Shows a preview of the message contents as HTML.";
			superToolTip5.Items.Add(toolTipTitleItem5);
			superToolTip5.Items.Add(toolTipItem5);
			this.showPreview.SuperTip = superToolTip5;
			this.showPreview.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.showPreview_ItemClick);
			// 
			// sendPreview
			// 
			this.sendPreview.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
			this.sendPreview.Caption = "Send Preview";
			this.sendPreview.DropDownControl = this.previewDestinationPopup;
			this.sendPreview.Glyph = global::ShomreiTorah.Billing.Properties.Resources.SendPreview16;
			this.sendPreview.Id = 96;
			this.sendPreview.Name = "sendPreview";
			toolTipTitleItem6.Text = "Send Preview";
			toolTipItem6.LeftIndent = 6;
			toolTipItem6.Text = "Emails a preview of the message.\r\n\r\nTo set the destination address, click the dow" +
				"n arrow.";
			superToolTip6.Items.Add(toolTipTitleItem6);
			superToolTip6.Items.Add(toolTipItem6);
			this.sendPreview.SuperTip = superToolTip6;
			this.sendPreview.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.sendPreview_ItemClick);
			// 
			// previewDestinationPopup
			// 
			this.previewDestinationPopup.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.Width, this.previewAddressItem, "", false, true, true, 133)});
			this.previewDestinationPopup.Manager = this.barManager1;
			this.previewDestinationPopup.Name = "previewDestinationPopup";
			// 
			// previewAddressItem
			// 
			this.previewAddressItem.Caption = "Send Preview To:";
			this.previewAddressItem.Edit = this.previewAddressEdit;
			this.previewAddressItem.Id = 97;
			this.previewAddressItem.Name = "previewAddressItem";
			// 
			// resetSingle
			// 
			this.resetSingle.Caption = "Use Template";
			this.resetSingle.Id = 70;
			this.resetSingle.Name = "resetSingle";
			toolTipTitleItem7.Text = "Use Template";
			toolTipItem7.LeftIndent = 6;
			toolTipItem7.Text = "Resets this person\'s email message to a standard template.";
			superToolTip7.Items.Add(toolTipTitleItem7);
			superToolTip7.Items.Add(toolTipItem7);
			this.resetSingle.SuperTip = superToolTip7;
			this.resetSingle.ListItemClick += new DevExpress.XtraBars.ListItemClickEventHandler(this.resetSingle_ListItemClick);
			// 
			// bar2
			// 
			this.bar2.BarName = "View";
			this.bar2.DockCol = 1;
			this.bar2.DockRow = 1;
			this.bar2.DockStyle = DevExpress.XtraBars.BarDockStyle.Standalone;
			this.bar2.FloatLocation = new System.Drawing.Point(850, 287);
			this.bar2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.findItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.replaceItem1)});
			this.bar2.Offset = 382;
			this.bar2.StandaloneBarDockControl = this.standaloneBarDockControl1;
			this.bar2.Text = "View";
			// 
			// findItem1
			// 
			this.findItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("findItem1.Glyph")));
			this.findItem1.Id = 49;
			this.findItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("findItem1.LargeGlyph")));
			this.findItem1.Name = "findItem1";
			// 
			// replaceItem1
			// 
			this.replaceItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("replaceItem1.Glyph")));
			this.replaceItem1.Id = 50;
			this.replaceItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("replaceItem1.LargeGlyph")));
			this.replaceItem1.Name = "replaceItem1";
			// 
			// barDockControlTop
			// 
			this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
			this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
			this.barDockControlTop.Size = new System.Drawing.Size(922, 0);
			// 
			// barDockControlBottom
			// 
			this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
			this.barDockControlBottom.Location = new System.Drawing.Point(0, 609);
			this.barDockControlBottom.Size = new System.Drawing.Size(922, 0);
			// 
			// barDockControlLeft
			// 
			this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
			this.barDockControlLeft.Location = new System.Drawing.Point(0, 0);
			this.barDockControlLeft.Size = new System.Drawing.Size(0, 609);
			// 
			// barDockControlRight
			// 
			this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
			this.barDockControlRight.Location = new System.Drawing.Point(922, 0);
			this.barDockControlRight.Size = new System.Drawing.Size(0, 609);
			// 
			// insertPageBreakItem1
			// 
			this.insertPageBreakItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("insertPageBreakItem1.Glyph")));
			this.insertPageBreakItem1.Id = 54;
			this.insertPageBreakItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("insertPageBreakItem1.LargeGlyph")));
			this.insertPageBreakItem1.Name = "insertPageBreakItem1";
			// 
			// insertPictureItem1
			// 
			this.insertPictureItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("insertPictureItem1.Glyph")));
			this.insertPictureItem1.Id = 55;
			this.insertPictureItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("insertPictureItem1.LargeGlyph")));
			this.insertPictureItem1.Name = "insertPictureItem1";
			// 
			// insertBookmarkItem1
			// 
			this.insertBookmarkItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("insertBookmarkItem1.Glyph")));
			this.insertBookmarkItem1.Id = 56;
			this.insertBookmarkItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("insertBookmarkItem1.LargeGlyph")));
			this.insertBookmarkItem1.Name = "insertBookmarkItem1";
			// 
			// insertTableRowAboveItem1
			// 
			this.insertTableRowAboveItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("insertTableRowAboveItem1.Glyph")));
			this.insertTableRowAboveItem1.Id = 71;
			this.insertTableRowAboveItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("insertTableRowAboveItem1.LargeGlyph")));
			this.insertTableRowAboveItem1.Name = "insertTableRowAboveItem1";
			// 
			// insertTableRowBelowItem1
			// 
			this.insertTableRowBelowItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("insertTableRowBelowItem1.Glyph")));
			this.insertTableRowBelowItem1.Id = 72;
			this.insertTableRowBelowItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("insertTableRowBelowItem1.LargeGlyph")));
			this.insertTableRowBelowItem1.Name = "insertTableRowBelowItem1";
			// 
			// switchToSimpleViewItem1
			// 
			this.switchToSimpleViewItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("switchToSimpleViewItem1.Glyph")));
			this.switchToSimpleViewItem1.Id = 75;
			this.switchToSimpleViewItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("switchToSimpleViewItem1.LargeGlyph")));
			this.switchToSimpleViewItem1.Name = "switchToSimpleViewItem1";
			// 
			// switchToDraftViewItem1
			// 
			this.switchToDraftViewItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("switchToDraftViewItem1.Glyph")));
			this.switchToDraftViewItem1.Id = 76;
			this.switchToDraftViewItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("switchToDraftViewItem1.LargeGlyph")));
			this.switchToDraftViewItem1.Name = "switchToDraftViewItem1";
			// 
			// switchToPrintLayoutViewItem1
			// 
			this.switchToPrintLayoutViewItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("switchToPrintLayoutViewItem1.Glyph")));
			this.switchToPrintLayoutViewItem1.Id = 77;
			this.switchToPrintLayoutViewItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("switchToPrintLayoutViewItem1.LargeGlyph")));
			this.switchToPrintLayoutViewItem1.Name = "switchToPrintLayoutViewItem1";
			// 
			// zoomOutItem1
			// 
			this.zoomOutItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("zoomOutItem1.Glyph")));
			this.zoomOutItem1.Id = 78;
			this.zoomOutItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("zoomOutItem1.LargeGlyph")));
			this.zoomOutItem1.Name = "zoomOutItem1";
			// 
			// zoomInItem1
			// 
			this.zoomInItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("zoomInItem1.Glyph")));
			this.zoomInItem1.Id = 79;
			this.zoomInItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("zoomInItem1.LargeGlyph")));
			this.zoomInItem1.Name = "zoomInItem1";
			// 
			// changeSectionPageMarginsItem1
			// 
			this.changeSectionPageMarginsItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("changeSectionPageMarginsItem1.Glyph")));
			this.changeSectionPageMarginsItem1.Id = 80;
			this.changeSectionPageMarginsItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("changeSectionPageMarginsItem1.LargeGlyph")));
			this.changeSectionPageMarginsItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.setNormalSectionPageMarginsItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setNarrowSectionPageMarginsItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setModerateSectionPageMarginsItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setWideSectionPageMarginsItem1)});
			this.changeSectionPageMarginsItem1.Name = "changeSectionPageMarginsItem1";
			// 
			// setNormalSectionPageMarginsItem1
			// 
			this.setNormalSectionPageMarginsItem1.Id = 81;
			this.setNormalSectionPageMarginsItem1.Name = "setNormalSectionPageMarginsItem1";
			// 
			// setNarrowSectionPageMarginsItem1
			// 
			this.setNarrowSectionPageMarginsItem1.Id = 82;
			this.setNarrowSectionPageMarginsItem1.Name = "setNarrowSectionPageMarginsItem1";
			// 
			// setModerateSectionPageMarginsItem1
			// 
			this.setModerateSectionPageMarginsItem1.Id = 83;
			this.setModerateSectionPageMarginsItem1.Name = "setModerateSectionPageMarginsItem1";
			// 
			// setWideSectionPageMarginsItem1
			// 
			this.setWideSectionPageMarginsItem1.Id = 84;
			this.setWideSectionPageMarginsItem1.Name = "setWideSectionPageMarginsItem1";
			// 
			// changeSectionPageOrientationItem1
			// 
			this.changeSectionPageOrientationItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("changeSectionPageOrientationItem1.Glyph")));
			this.changeSectionPageOrientationItem1.Id = 85;
			this.changeSectionPageOrientationItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("changeSectionPageOrientationItem1.LargeGlyph")));
			this.changeSectionPageOrientationItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.setPortraitPageOrientationItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.setLandscapePageOrientationItem1)});
			this.changeSectionPageOrientationItem1.Name = "changeSectionPageOrientationItem1";
			// 
			// setPortraitPageOrientationItem1
			// 
			this.setPortraitPageOrientationItem1.Id = 86;
			this.setPortraitPageOrientationItem1.Name = "setPortraitPageOrientationItem1";
			// 
			// setLandscapePageOrientationItem1
			// 
			this.setLandscapePageOrientationItem1.Id = 87;
			this.setLandscapePageOrientationItem1.Name = "setLandscapePageOrientationItem1";
			// 
			// fileNewItem1
			// 
			this.fileNewItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("fileNewItem1.Glyph")));
			this.fileNewItem1.Id = 88;
			this.fileNewItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("fileNewItem1.LargeGlyph")));
			this.fileNewItem1.Name = "fileNewItem1";
			// 
			// fileOpenItem1
			// 
			this.fileOpenItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("fileOpenItem1.Glyph")));
			this.fileOpenItem1.Id = 89;
			this.fileOpenItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("fileOpenItem1.LargeGlyph")));
			this.fileOpenItem1.Name = "fileOpenItem1";
			// 
			// fileSaveItem1
			// 
			this.fileSaveItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("fileSaveItem1.Glyph")));
			this.fileSaveItem1.Id = 90;
			this.fileSaveItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("fileSaveItem1.LargeGlyph")));
			this.fileSaveItem1.Name = "fileSaveItem1";
			// 
			// fileSaveAsItem1
			// 
			this.fileSaveAsItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("fileSaveAsItem1.Glyph")));
			this.fileSaveAsItem1.Id = 91;
			this.fileSaveAsItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("fileSaveAsItem1.LargeGlyph")));
			this.fileSaveAsItem1.Name = "fileSaveAsItem1";
			// 
			// richEditBarController1
			// 
			this.richEditBarController1.BarItems.Add(this.undoItem1);
			this.richEditBarController1.BarItems.Add(this.redoItem1);
			this.richEditBarController1.BarItems.Add(this.cutItem1);
			this.richEditBarController1.BarItems.Add(this.copyItem1);
			this.richEditBarController1.BarItems.Add(this.pasteItem1);
			this.richEditBarController1.BarItems.Add(this.changeFontColorItem1);
			this.richEditBarController1.BarItems.Add(this.changeFontBackColorItem1);
			this.richEditBarController1.BarItems.Add(this.toggleFontBoldItem1);
			this.richEditBarController1.BarItems.Add(this.toggleFontItalicItem1);
			this.richEditBarController1.BarItems.Add(this.toggleFontUnderlineItem1);
			this.richEditBarController1.BarItems.Add(this.toggleFontStrikeoutItem1);
			this.richEditBarController1.BarItems.Add(this.toggleFontSuperscriptItem1);
			this.richEditBarController1.BarItems.Add(this.toggleFontSubscriptItem1);
			this.richEditBarController1.BarItems.Add(this.fontSizeIncreaseItem1);
			this.richEditBarController1.BarItems.Add(this.fontSizeDecreaseItem1);
			this.richEditBarController1.BarItems.Add(this.clearFormattingItem1);
			this.richEditBarController1.BarItems.Add(this.showFontFormItem1);
			this.richEditBarController1.BarItems.Add(this.toggleParagraphAlignmentLeftItem1);
			this.richEditBarController1.BarItems.Add(this.toggleParagraphAlignmentCenterItem1);
			this.richEditBarController1.BarItems.Add(this.toggleParagraphAlignmentRightItem1);
			this.richEditBarController1.BarItems.Add(this.toggleParagraphAlignmentJustifyItem1);
			this.richEditBarController1.BarItems.Add(this.changeParagraphLineSpacingItem1);
			this.richEditBarController1.BarItems.Add(this.setSingleParagraphSpacingItem1);
			this.richEditBarController1.BarItems.Add(this.setSesquialteralParagraphSpacingItem1);
			this.richEditBarController1.BarItems.Add(this.setDoubleParagraphSpacingItem1);
			this.richEditBarController1.BarItems.Add(this.showLineSpacingFormItem1);
			this.richEditBarController1.BarItems.Add(this.addSpacingBeforeParagraphItem1);
			this.richEditBarController1.BarItems.Add(this.removeSpacingBeforeParagraphItem1);
			this.richEditBarController1.BarItems.Add(this.addSpacingAfterParagraphItem1);
			this.richEditBarController1.BarItems.Add(this.removeSpacingAfterParagraphItem1);
			this.richEditBarController1.BarItems.Add(this.toggleNumberingListItem1);
			this.richEditBarController1.BarItems.Add(this.toggleBulletedListItem1);
			this.richEditBarController1.BarItems.Add(this.toggleMultiLevelListItem1);
			this.richEditBarController1.BarItems.Add(this.decreaseIndentItem1);
			this.richEditBarController1.BarItems.Add(this.increaseIndentItem1);
			this.richEditBarController1.BarItems.Add(this.toggleShowWhitespaceItem1);
			this.richEditBarController1.BarItems.Add(this.showParagraphFormItem1);
			this.richEditBarController1.BarItems.Add(this.findItem1);
			this.richEditBarController1.BarItems.Add(this.replaceItem1);
			this.richEditBarController1.BarItems.Add(this.insertPageBreakItem1);
			this.richEditBarController1.BarItems.Add(this.insertTableItem1);
			this.richEditBarController1.BarItems.Add(this.insertPictureItem1);
			this.richEditBarController1.BarItems.Add(this.insertBookmarkItem1);
			this.richEditBarController1.BarItems.Add(this.insertHyperlinkItem1);
			this.richEditBarController1.BarItems.Add(this.insertSymbolItem1);
			this.richEditBarController1.BarItems.Add(this.insertTableRowAboveItem1);
			this.richEditBarController1.BarItems.Add(this.insertTableRowBelowItem1);
			this.richEditBarController1.BarItems.Add(this.switchToSimpleViewItem1);
			this.richEditBarController1.BarItems.Add(this.switchToDraftViewItem1);
			this.richEditBarController1.BarItems.Add(this.switchToPrintLayoutViewItem1);
			this.richEditBarController1.BarItems.Add(this.zoomOutItem1);
			this.richEditBarController1.BarItems.Add(this.zoomInItem1);
			this.richEditBarController1.BarItems.Add(this.changeSectionPageMarginsItem1);
			this.richEditBarController1.BarItems.Add(this.setNormalSectionPageMarginsItem1);
			this.richEditBarController1.BarItems.Add(this.setNarrowSectionPageMarginsItem1);
			this.richEditBarController1.BarItems.Add(this.setModerateSectionPageMarginsItem1);
			this.richEditBarController1.BarItems.Add(this.setWideSectionPageMarginsItem1);
			this.richEditBarController1.BarItems.Add(this.changeSectionPageOrientationItem1);
			this.richEditBarController1.BarItems.Add(this.setPortraitPageOrientationItem1);
			this.richEditBarController1.BarItems.Add(this.setLandscapePageOrientationItem1);
			this.richEditBarController1.BarItems.Add(this.fileNewItem1);
			this.richEditBarController1.BarItems.Add(this.fileOpenItem1);
			this.richEditBarController1.BarItems.Add(this.fileSaveItem1);
			this.richEditBarController1.BarItems.Add(this.fileSaveAsItem1);
			this.richEditBarController1.RichEditControl = this.emailEditor;
			// 
			// previewAddressEdit
			// 
			this.previewAddressEdit.AutoHeight = false;
			this.previewAddressEdit.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.previewAddressEdit.Name = "previewAddressEdit";
			// 
			// ReminderEmailsForm
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.ClientSize = new System.Drawing.Size(922, 609);
			this.Controls.Add(this.splitContainerControl1);
			this.Controls.Add(this.listSearch);
			this.Controls.Add(this.ribbonControl1);
			this.Controls.Add(this.ribbonStatusBar1);
			this.Controls.Add(this.barDockControlLeft);
			this.Controls.Add(this.barDockControlRight);
			this.Controls.Add(this.barDockControlBottom);
			this.Controls.Add(this.barDockControlTop);
			this.Name = "ReminderEmailsForm";
			this.Text = "ReminderEmailsForm";
			((System.ComponentModel.ISupportInitialize)(this.logView)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.grid)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.bindingSource)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.listSearch.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
			this.splitContainerControl1.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.zoomBarProperties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.emailSubject.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
			this.panelControl1.ResumeLayout(false);
			this.panelControl1.PerformLayout();
			((System.ComponentModel.ISupportInitialize)(this.recipientAddresses.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.previewDestinationPopup)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.richEditBarController1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.previewAddressEdit)).EndInit();
			this.ResumeLayout(false);

		}
Пример #32
0
 private void recursiveToolTip(DevExpress.XtraBars.Ribbon.RibbonBarItems theInitial)
 {
     foreach (BarItem theItem in theInitial)
     {
         try
         {
             DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
             DevExpress.Utils.ToolTipItem toolTipItem1 = new DevExpress.Utils.ToolTipItem();
             DevExpress.Utils.ToolTipTitleItem toolTipItemTitle1 = new DevExpress.Utils.ToolTipTitleItem();
             toolTipItem1.Text = Database.Retrieve("tooltips","buttonName = '" + theItem.Name + "'","tooltip");
             toolTipItemTitle1.Text = Database.Retrieve("tooltips", "buttonName = '" + theItem.Name + "'", "toolTipTitle");
             toolTipItem1.LeftIndent = 6;
             superToolTip1.Items.Add(toolTipItemTitle1);
             superToolTip1.Items.Add(toolTipItem1);
             theItem.SuperTip = superToolTip1;
         }
         catch
         {
         }
     }
 }
        /// <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.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem1 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip2 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem2 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip3 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem3 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem3 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip4 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem4 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem4 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip5 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem5 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem5 = new DevExpress.Utils.ToolTipItem();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ReportesComprasInsumos));
            this.ribbonControl = new DevExpress.XtraBars.Ribbon.RibbonControl();
            this.barButtonUp = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonDown = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonPrint = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonExport = new DevExpress.XtraBars.BarButtonItem();
            this.popupMenu = new DevExpress.XtraBars.PopupMenu(this.components);
            this.barButtonPdf = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonXls = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonXlsx = new DevExpress.XtraBars.BarButtonItem();
            this.chkGridView = new DevExpress.XtraBars.BarCheckItem();
            this.chkCardView = new DevExpress.XtraBars.BarCheckItem();
            this.barBtnComprasEspeciales = new DevExpress.XtraBars.BarButtonItem();
            this.ribbonPage = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.ribbonPageNav = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPagePrint = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.panel1 = new System.Windows.Forms.Panel();
            this.lblFinal = new DevExpress.XtraEditors.LabelControl();
            this.dateEditFinal = new DevExpress.XtraEditors.DateEdit();
            this.btnGenerarReporte = new DevExpress.XtraEditors.SimpleButton();
            this.lblFechaInicio = new DevExpress.XtraEditors.LabelControl();
            this.dateEditInit = new DevExpress.XtraEditors.DateEdit();
            this.gridControlReporteVentas = new DevExpress.XtraGrid.GridControl();
            this.gridViewReporteVentas = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.gridColumnId = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumnNombre = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumnCostoLote = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumnCantidadLotes = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumncostoTotal = new DevExpress.XtraGrid.Columns.GridColumn();
            this.dxErrorProviderReportes = new DevExpress.XtraEditors.DXErrorProvider.DXErrorProvider(this.components);
            this.panel2 = new System.Windows.Forms.Panel();
            this.lblLoading = new System.Windows.Forms.Label();
            this.imageCollection = new DevExpress.Utils.ImageCollection(this.components);
            this.alertControl = new DevExpress.XtraBars.Alerter.AlertControl(this.components);
            this.popupMenu1 = new DevExpress.XtraBars.PopupMenu(this.components);
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu)).BeginInit();
            this.panel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dateEditFinal.Properties.VistaTimeProperties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dateEditFinal.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dateEditInit.Properties.VistaTimeProperties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dateEditInit.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControlReporteVentas)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewReporteVentas)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dxErrorProviderReportes)).BeginInit();
            this.panel2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.imageCollection)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
            this.SuspendLayout();
            // 
            // ribbonControl
            // 
            this.ribbonControl.ApplicationButtonText = null;
            this.ribbonControl.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(236)))), ((int)(((byte)(239)))));
            this.ribbonControl.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.barButtonUp,
            this.barButtonDown,
            this.barButtonPrint,
            this.barButtonExport,
            this.barButtonPdf,
            this.barButtonXls,
            this.chkGridView,
            this.chkCardView,
            this.barButtonXlsx,
            this.barBtnComprasEspeciales});
            this.ribbonControl.Location = new System.Drawing.Point(0, 0);
            this.ribbonControl.MaxItemId = 138;
            this.ribbonControl.Name = "ribbonControl";
            this.ribbonControl.PageCategoryAlignment = DevExpress.XtraBars.Ribbon.RibbonPageCategoryAlignment.Right;
            this.ribbonControl.PageHeaderMinWidth = 50;
            this.ribbonControl.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.ribbonPage});
            this.ribbonControl.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonControlStyle.Office2010;
            this.ribbonControl.SelectedPage = this.ribbonPage;
            this.ribbonControl.ShowExpandCollapseButton = DevExpress.Utils.DefaultBoolean.True;
            this.ribbonControl.Size = new System.Drawing.Size(998, 141);
            this.ribbonControl.TransparentEditors = true;
            // 
            // barButtonUp
            // 
            this.barButtonUp.Caption = "Arriba";
            this.barButtonUp.Enabled = false;
            this.barButtonUp.Glyph = global::UIRenderers.Properties.Resources.up;
            this.barButtonUp.Id = 6;
            this.barButtonUp.Name = "barButtonUp";
            toolTipTitleItem1.Text = "Arriba";
            toolTipItem1.LeftIndent = 6;
            toolTipItem1.Text = "Registro anterior.";
            superToolTip1.Items.Add(toolTipTitleItem1);
            superToolTip1.Items.Add(toolTipItem1);
            this.barButtonUp.SuperTip = superToolTip1;
            this.barButtonUp.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonUp_ItemClick);
            // 
            // barButtonDown
            // 
            this.barButtonDown.Caption = "Abajo";
            this.barButtonDown.Glyph = global::UIRenderers.Properties.Resources.down;
            this.barButtonDown.Id = 7;
            this.barButtonDown.Name = "barButtonDown";
            toolTipTitleItem2.Text = "Abajo";
            toolTipItem2.LeftIndent = 6;
            toolTipItem2.Text = "Siguiente registro.";
            superToolTip2.Items.Add(toolTipTitleItem2);
            superToolTip2.Items.Add(toolTipItem2);
            this.barButtonDown.SuperTip = superToolTip2;
            this.barButtonDown.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonDown_ItemClick);
            // 
            // barButtonPrint
            // 
            this.barButtonPrint.Caption = "Vista previa";
            this.barButtonPrint.Glyph = global::UIRenderers.Properties.Resources.printpreview;
            this.barButtonPrint.Id = 8;
            this.barButtonPrint.Name = "barButtonPrint";
            this.barButtonPrint.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            toolTipTitleItem3.Text = "Vista previa";
            toolTipItem3.LeftIndent = 6;
            toolTipItem3.Text = "Genera una vista de impresión previa.";
            superToolTip3.Items.Add(toolTipTitleItem3);
            superToolTip3.Items.Add(toolTipItem3);
            this.barButtonPrint.SuperTip = superToolTip3;
            this.barButtonPrint.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonPrint_ItemClick);
            // 
            // barButtonExport
            // 
            this.barButtonExport.ActAsDropDown = true;
            this.barButtonExport.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.barButtonExport.Caption = "Exportar";
            this.barButtonExport.DropDownControl = this.popupMenu;
            this.barButtonExport.Glyph = global::UIRenderers.Properties.Resources.export;
            this.barButtonExport.Id = 10;
            this.barButtonExport.Name = "barButtonExport";
            this.barButtonExport.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            toolTipTitleItem4.Text = "Exportar";
            toolTipItem4.LeftIndent = 6;
            toolTipItem4.Text = "Genera un reporte en diferentes formatos.";
            superToolTip4.Items.Add(toolTipTitleItem4);
            superToolTip4.Items.Add(toolTipItem4);
            this.barButtonExport.SuperTip = superToolTip4;
            // 
            // popupMenu
            // 
            this.popupMenu.ItemLinks.Add(this.barButtonPdf);
            this.popupMenu.ItemLinks.Add(this.barButtonXls);
            this.popupMenu.ItemLinks.Add(this.barButtonXlsx);
            this.popupMenu.MenuDrawMode = DevExpress.XtraBars.MenuDrawMode.SmallImagesText;
            this.popupMenu.Name = "popupMenu";
            this.popupMenu.Ribbon = this.ribbonControl;
            // 
            // barButtonPdf
            // 
            this.barButtonPdf.Caption = "Exportar a PDF";
            this.barButtonPdf.Glyph = global::UIRenderers.Properties.Resources.pdf;
            this.barButtonPdf.Id = 15;
            this.barButtonPdf.Name = "barButtonPdf";
            this.barButtonPdf.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonPdf_ItemClick);
            // 
            // barButtonXls
            // 
            this.barButtonXls.Caption = "Exportar a XLS";
            this.barButtonXls.Glyph = global::UIRenderers.Properties.Resources.xls;
            this.barButtonXls.Id = 16;
            this.barButtonXls.Name = "barButtonXls";
            this.barButtonXls.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonXls_ItemClick);
            // 
            // barButtonXlsx
            // 
            this.barButtonXlsx.Caption = "Exportar a XLSX";
            this.barButtonXlsx.Glyph = global::UIRenderers.Properties.Resources.xls;
            this.barButtonXlsx.Id = 133;
            this.barButtonXlsx.Name = "barButtonXlsx";
            this.barButtonXlsx.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonXlsx_ItemClick);
            // 
            // chkGridView
            // 
            this.chkGridView.Caption = "Grid";
            this.chkGridView.Checked = true;
            this.chkGridView.Id = 23;
            this.chkGridView.Name = "chkGridView";
            // 
            // chkCardView
            // 
            this.chkCardView.Caption = "Card";
            this.chkCardView.Id = 24;
            this.chkCardView.Name = "chkCardView";
            // 
            // barBtnComprasEspeciales
            // 
            this.barBtnComprasEspeciales.Caption = "Compras";
            this.barBtnComprasEspeciales.Glyph = global::UIRenderers.Properties.Resources.producto;
            this.barBtnComprasEspeciales.Id = 134;
            this.barBtnComprasEspeciales.Name = "barBtnComprasEspeciales";
            this.barBtnComprasEspeciales.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            toolTipTitleItem5.Text = "Compras Especiales";
            toolTipItem5.LeftIndent = 6;
            toolTipItem5.Text = "Realiza todo tipo de compras";
            superToolTip5.Items.Add(toolTipTitleItem5);
            superToolTip5.Items.Add(toolTipItem5);
            this.barBtnComprasEspeciales.SuperTip = superToolTip5;
            // 
            // ribbonPage
            // 
            this.ribbonPage.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonPageNav,
            this.ribbonPagePrint});
            this.ribbonPage.Name = "ribbonPage";
            this.ribbonPage.Text = "Inicio";
            // 
            // ribbonPageNav
            // 
            this.ribbonPageNav.AllowTextClipping = false;
            this.ribbonPageNav.ItemLinks.Add(this.barButtonUp);
            this.ribbonPageNav.ItemLinks.Add(this.barButtonDown);
            this.ribbonPageNav.Name = "ribbonPageNav";
            this.ribbonPageNav.Text = "Navegación";
            // 
            // ribbonPagePrint
            // 
            this.ribbonPagePrint.AllowTextClipping = false;
            this.ribbonPagePrint.ItemLinks.Add(this.barButtonPrint);
            this.ribbonPagePrint.ItemLinks.Add(this.barButtonExport);
            this.ribbonPagePrint.Name = "ribbonPagePrint";
            this.ribbonPagePrint.Text = "Exportar e Imprimir";
            // 
            // panel1
            // 
            this.panel1.Controls.Add(this.lblFinal);
            this.panel1.Controls.Add(this.dateEditFinal);
            this.panel1.Controls.Add(this.btnGenerarReporte);
            this.panel1.Controls.Add(this.lblFechaInicio);
            this.panel1.Controls.Add(this.dateEditInit);
            this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
            this.panel1.Location = new System.Drawing.Point(0, 141);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(998, 112);
            this.panel1.TabIndex = 20;
            // 
            // lblFinal
            // 
            this.lblFinal.Location = new System.Drawing.Point(122, 75);
            this.lblFinal.Name = "lblFinal";
            this.lblFinal.Size = new System.Drawing.Size(54, 13);
            this.lblFinal.TabIndex = 4;
            this.lblFinal.Text = "Fecha Final";
            // 
            // dateEditFinal
            // 
            this.dateEditFinal.EditValue = null;
            this.dxErrorProviderReportes.SetError(this.dateEditFinal, "Este campo no puede ser vacio");
            this.dxErrorProviderReportes.SetErrorType(this.dateEditFinal, DevExpress.XtraEditors.DXErrorProvider.ErrorType.Default);
            this.dateEditFinal.Location = new System.Drawing.Point(193, 68);
            this.dateEditFinal.Name = "dateEditFinal";
            this.dateEditFinal.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.dateEditFinal.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.dateEditFinal.Size = new System.Drawing.Size(100, 20);
            this.dateEditFinal.TabIndex = 3;
            this.dateEditFinal.Tag = "Fecha Final";
            this.dateEditFinal.Validating += new System.ComponentModel.CancelEventHandler(this.dateEditFinal_Validating);
            // 
            // btnGenerarReporte
            // 
            this.btnGenerarReporte.Location = new System.Drawing.Point(369, 46);
            this.btnGenerarReporte.Name = "btnGenerarReporte";
            this.btnGenerarReporte.Size = new System.Drawing.Size(105, 23);
            this.btnGenerarReporte.TabIndex = 2;
            this.btnGenerarReporte.Text = "Generar Reporte";
            this.btnGenerarReporte.Click += new System.EventHandler(this.btnGenerarReporte_Click);
            // 
            // lblFechaInicio
            // 
            this.lblFechaInicio.Location = new System.Drawing.Point(122, 29);
            this.lblFechaInicio.Name = "lblFechaInicio";
            this.lblFechaInicio.Size = new System.Drawing.Size(57, 13);
            this.lblFechaInicio.TabIndex = 1;
            this.lblFechaInicio.Text = "Fecha Inicio";
            // 
            // dateEditInit
            // 
            this.dateEditInit.EditValue = null;
            this.dxErrorProviderReportes.SetError(this.dateEditInit, "Este campo no puede ser vacio");
            this.dxErrorProviderReportes.SetErrorType(this.dateEditInit, DevExpress.XtraEditors.DXErrorProvider.ErrorType.Default);
            this.dateEditInit.Location = new System.Drawing.Point(193, 25);
            this.dateEditInit.Name = "dateEditInit";
            this.dateEditInit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.dateEditInit.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.dateEditInit.Size = new System.Drawing.Size(100, 20);
            this.dateEditInit.TabIndex = 0;
            this.dateEditInit.Tag = "Fecha Inicio";
            this.dateEditInit.Validating += new System.ComponentModel.CancelEventHandler(this.dateEditInit_Validating);
            // 
            // gridControlReporteVentas
            // 
            this.gridControlReporteVentas.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridControlReporteVentas.Location = new System.Drawing.Point(0, 253);
            this.gridControlReporteVentas.MainView = this.gridViewReporteVentas;
            this.gridControlReporteVentas.Name = "gridControlReporteVentas";
            this.gridControlReporteVentas.Size = new System.Drawing.Size(998, 272);
            this.gridControlReporteVentas.TabIndex = 21;
            this.gridControlReporteVentas.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridViewReporteVentas});
            // 
            // gridViewReporteVentas
            // 
            this.gridViewReporteVentas.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.gridColumnId,
            this.gridColumnNombre,
            this.gridColumnCostoLote,
            this.gridColumnCantidadLotes,
            this.gridColumncostoTotal});
            this.gridViewReporteVentas.GridControl = this.gridControlReporteVentas;
            this.gridViewReporteVentas.Name = "gridViewReporteVentas";
            // 
            // gridColumnId
            // 
            this.gridColumnId.Caption = "IdInsumo";
            this.gridColumnId.Name = "gridColumnId";
            // 
            // gridColumnNombre
            // 
            this.gridColumnNombre.Caption = "Nombre Insumo";
            this.gridColumnNombre.Name = "gridColumnNombre";
            this.gridColumnNombre.Visible = true;
            this.gridColumnNombre.VisibleIndex = 0;
            // 
            // gridColumnCostoLote
            // 
            this.gridColumnCostoLote.Caption = "Costo Lote";
            this.gridColumnCostoLote.Name = "gridColumnCostoLote";
            this.gridColumnCostoLote.Visible = true;
            this.gridColumnCostoLote.VisibleIndex = 1;
            // 
            // gridColumnCantidadLotes
            // 
            this.gridColumnCantidadLotes.Caption = "Cantidad Lotes";
            this.gridColumnCantidadLotes.Name = "gridColumnCantidadLotes";
            this.gridColumnCantidadLotes.Visible = true;
            this.gridColumnCantidadLotes.VisibleIndex = 2;
            // 
            // gridColumncostoTotal
            // 
            this.gridColumncostoTotal.Caption = "Costo Total";
            this.gridColumncostoTotal.Name = "gridColumncostoTotal";
            this.gridColumncostoTotal.Visible = true;
            this.gridColumncostoTotal.VisibleIndex = 3;
            // 
            // dxErrorProviderReportes
            // 
            this.dxErrorProviderReportes.ContainerControl = this;
            // 
            // panel2
            // 
            this.panel2.BackColor = System.Drawing.Color.DarkGray;
            this.panel2.Controls.Add(this.lblLoading);
            this.panel2.Location = new System.Drawing.Point(344, 148);
            this.panel2.Name = "panel2";
            this.panel2.Size = new System.Drawing.Size(310, 228);
            this.panel2.TabIndex = 22;
            // 
            // lblLoading
            // 
            this.lblLoading.AutoSize = true;
            this.lblLoading.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold);
            this.lblLoading.ForeColor = System.Drawing.Color.Transparent;
            this.lblLoading.Location = new System.Drawing.Point(97, 104);
            this.lblLoading.Name = "lblLoading";
            this.lblLoading.Size = new System.Drawing.Size(112, 19);
            this.lblLoading.TabIndex = 0;
            this.lblLoading.Text = "Cargando.....";
            // 
            // imageCollection
            // 
            this.imageCollection.ImageSize = new System.Drawing.Size(32, 32);
            this.imageCollection.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imageCollection.ImageStream")));
            this.imageCollection.Images.SetKeyName(0, "alertIcon.png");
            // 
            // popupMenu1
            // 
            this.popupMenu1.Name = "popupMenu1";
            this.popupMenu1.Ribbon = this.ribbonControl;
            // 
            // ReportesComprasInsumos
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.gridControlReporteVentas);
            this.Controls.Add(this.panel1);
            this.Controls.Add(this.ribbonControl);
            this.Controls.Add(this.panel2);
            this.Name = "ReportesComprasInsumos";
            this.Size = new System.Drawing.Size(998, 525);
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu)).EndInit();
            this.panel1.ResumeLayout(false);
            this.panel1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dateEditFinal.Properties.VistaTimeProperties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dateEditFinal.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dateEditInit.Properties.VistaTimeProperties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dateEditInit.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControlReporteVentas)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewReporteVentas)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dxErrorProviderReportes)).EndInit();
            this.panel2.ResumeLayout(false);
            this.panel2.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.imageCollection)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
            this.ResumeLayout(false);

        }
Пример #34
0
        /// <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(ContractorsItemsForm));
            DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem1 = new DevExpress.Utils.ToolTipItem();
            this.ribbon = new DevExpress.XtraBars.Ribbon.RibbonControl();
            this.Ok = new DevExpress.XtraBars.BarButtonItem();
            this.Write = new DevExpress.XtraBars.BarButtonItem();
            this.Cancel = new DevExpress.XtraBars.BarButtonItem();
            this.ribbonStatusBar = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
            this.RefreshMapsInfoButton = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
            this.FillProductivity = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
            this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
            this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
            this.WebSiteControl = new DevExpress.XtraEditors.TextEdit();
            this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
            this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
            this.HouseControl = new DevExpress.XtraEditors.TextEdit();
            this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
            this.StreetControl = new DevExpress.XtraEditors.TextEdit();
            this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
            this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
            this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
            this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
            this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
            this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
            this.DescriptionControl = new DevExpress.XtraEditors.TextEdit();
            this.CutNameControl = new DevExpress.XtraEditors.TextEdit();
            this.CityControl = new Aramis.AramisSearchLookUpEdit();
            this.PhoneControl = new DevExpress.XtraEditors.TextEdit();
            this.FaxControl = new DevExpress.XtraEditors.TextEdit();
            this.OfficeControl = new DevExpress.XtraEditors.TextEdit();
            this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem5 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem6 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem7 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem8 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem9 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem10 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem11 = new DevExpress.XtraBars.BarButtonItem();
            this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
            this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
            this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
            this.CountryControl = new DevExpress.XtraEditors.LabelControl();
            ((System.ComponentModel.ISupportInitialize)(this.ribbon)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.WebSiteControl.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.HouseControl.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.StreetControl.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.DescriptionControl.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.CutNameControl.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.CityControl.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.PhoneControl.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.FaxControl.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.OfficeControl.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
            this.panelControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
            this.SuspendLayout();
            // 
            // ribbon
            // 
            this.ribbon.ApplicationButtonText = null;
            this.ribbon.ExpandCollapseItem.Id = 0;
            this.ribbon.ExpandCollapseItem.Name = "";
            this.ribbon.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.ribbon.ExpandCollapseItem,
            this.Ok,
            this.Write,
            this.Cancel});
            this.ribbon.Location = new System.Drawing.Point(0, 0);
            this.ribbon.MaxItemId = 10;
            this.ribbon.Name = "ribbon";
            this.ribbon.Size = new System.Drawing.Size(477, 54);
            this.ribbon.StatusBar = this.ribbonStatusBar;
            // 
            // Ok
            // 
            this.Ok.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.Ok.Caption = "Ок";
            this.Ok.Id = 7;
            this.Ok.ImageIndex = 0;
            this.Ok.Name = "Ok";
            this.Ok.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.OK_ItemClick);
            // 
            // Write
            // 
            this.Write.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.Write.Caption = "Записати";
            this.Write.Id = 8;
            this.Write.Name = "Write";
            this.Write.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.Write_ItemClick);
            // 
            // Cancel
            // 
            this.Cancel.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.Cancel.Caption = "Відміна";
            this.Cancel.Id = 9;
            this.Cancel.ImageIndex = 1;
            this.Cancel.Name = "Cancel";
            this.Cancel.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.Cancel_ItemClick);
            // 
            // ribbonStatusBar
            // 
            this.ribbonStatusBar.ItemLinks.Add(this.Ok);
            this.ribbonStatusBar.ItemLinks.Add(this.Write);
            this.ribbonStatusBar.ItemLinks.Add(this.Cancel);
            this.ribbonStatusBar.Location = new System.Drawing.Point(0, 275);
            this.ribbonStatusBar.Name = "ribbonStatusBar";
            this.ribbonStatusBar.Ribbon = this.ribbon;
            this.ribbonStatusBar.Size = new System.Drawing.Size(477, 23);
            // 
            // RefreshMapsInfoButton
            // 
            this.RefreshMapsInfoButton.Caption = "constructorButton";
            this.RefreshMapsInfoButton.Glyph = ((System.Drawing.Image)(resources.GetObject("RefreshMapsInfoButton.Glyph")));
            this.RefreshMapsInfoButton.Id = 1;
            this.RefreshMapsInfoButton.Name = "RefreshMapsInfoButton";
            toolTipTitleItem1.Text = "Обновить информацию по картам";
            toolTipItem1.LeftIndent = 6;
            toolTipItem1.Text = "Инициировать обновление информации по картам";
            superToolTip1.Items.Add(toolTipTitleItem1);
            superToolTip1.Items.Add(toolTipItem1);
            this.RefreshMapsInfoButton.SuperTip = superToolTip1;
            // 
            // barButtonItem1
            // 
            this.barButtonItem1.Caption = "Плановый доход";
            this.barButtonItem1.Id = 5;
            this.barButtonItem1.Name = "barButtonItem1";
            // 
            // FillProductivity
            // 
            this.FillProductivity.Caption = "Заполнить урожайность";
            this.FillProductivity.Id = 6;
            this.FillProductivity.Name = "FillProductivity";
            // 
            // barButtonItem2
            // 
            this.barButtonItem2.Caption = "barButtonItem2";
            this.barButtonItem2.Id = 3;
            this.barButtonItem2.Name = "barButtonItem2";
            // 
            // labelControl13
            // 
            this.labelControl13.Appearance.ForeColor = System.Drawing.Color.Gray;
            this.labelControl13.Location = new System.Drawing.Point(60, 192);
            this.labelControl13.Name = "labelControl13";
            this.labelControl13.Size = new System.Drawing.Size(60, 13);
            this.labelControl13.TabIndex = 29;
            this.labelControl13.Text = "http://www.";
            // 
            // labelControl11
            // 
            this.labelControl11.Location = new System.Drawing.Point(10, 192);
            this.labelControl11.Name = "labelControl11";
            this.labelControl11.Size = new System.Drawing.Size(25, 13);
            this.labelControl11.TabIndex = 22;
            this.labelControl11.Text = "Сайт";
            // 
            // WebSiteControl
            // 
            this.WebSiteControl.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.WebSiteControl.Location = new System.Drawing.Point(126, 189);
            this.WebSiteControl.MenuManager = this.ribbon;
            this.WebSiteControl.Name = "WebSiteControl";
            this.WebSiteControl.Properties.Mask.EditMask = "http://www.[a-zA-Z.-?/]+";
            this.WebSiteControl.Size = new System.Drawing.Size(339, 20);
            this.WebSiteControl.TabIndex = 8;
            // 
            // labelControl10
            // 
            this.labelControl10.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.labelControl10.Appearance.ForeColor = System.Drawing.Color.Gray;
            this.labelControl10.Location = new System.Drawing.Point(371, 114);
            this.labelControl10.Name = "labelControl10";
            this.labelControl10.Size = new System.Drawing.Size(22, 13);
            this.labelControl10.TabIndex = 20;
            this.labelControl10.Text = "офіс";
            // 
            // labelControl9
            // 
            this.labelControl9.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.labelControl9.Appearance.ForeColor = System.Drawing.Color.Gray;
            this.labelControl9.Location = new System.Drawing.Point(278, 114);
            this.labelControl9.Name = "labelControl9";
            this.labelControl9.Size = new System.Drawing.Size(22, 13);
            this.labelControl9.TabIndex = 18;
            this.labelControl9.Text = "буд.";
            // 
            // HouseControl
            // 
            this.HouseControl.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.HouseControl.Location = new System.Drawing.Point(307, 111);
            this.HouseControl.MenuManager = this.ribbon;
            this.HouseControl.Name = "HouseControl";
            this.HouseControl.Size = new System.Drawing.Size(57, 20);
            this.HouseControl.TabIndex = 4;
            // 
            // labelControl8
            // 
            this.labelControl8.Location = new System.Drawing.Point(10, 114);
            this.labelControl8.Name = "labelControl8";
            this.labelControl8.Size = new System.Drawing.Size(37, 13);
            this.labelControl8.TabIndex = 16;
            this.labelControl8.Text = "Адреса";
            // 
            // StreetControl
            // 
            this.StreetControl.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.StreetControl.Location = new System.Drawing.Point(88, 111);
            this.StreetControl.MenuManager = this.ribbon;
            this.StreetControl.Name = "StreetControl";
            this.StreetControl.Size = new System.Drawing.Size(184, 20);
            this.StreetControl.TabIndex = 3;
            // 
            // labelControl7
            // 
            this.labelControl7.Location = new System.Drawing.Point(10, 166);
            this.labelControl7.Name = "labelControl7";
            this.labelControl7.Size = new System.Drawing.Size(25, 13);
            this.labelControl7.TabIndex = 14;
            this.labelControl7.Text = "Факс";
            // 
            // labelControl6
            // 
            this.labelControl6.Location = new System.Drawing.Point(10, 140);
            this.labelControl6.Name = "labelControl6";
            this.labelControl6.Size = new System.Drawing.Size(44, 13);
            this.labelControl6.TabIndex = 12;
            this.labelControl6.Text = "Телефон";
            // 
            // labelControl4
            // 
            this.labelControl4.Location = new System.Drawing.Point(10, 66);
            this.labelControl4.Name = "labelControl4";
            this.labelControl4.Size = new System.Drawing.Size(28, 13);
            this.labelControl4.TabIndex = 8;
            this.labelControl4.Text = "Місто";
            // 
            // labelControl3
            // 
            this.labelControl3.Appearance.ForeColor = System.Drawing.Color.Gray;
            this.labelControl3.Location = new System.Drawing.Point(60, 92);
            this.labelControl3.Name = "labelControl3";
            this.labelControl3.Size = new System.Drawing.Size(38, 13);
            this.labelControl3.TabIndex = 6;
            this.labelControl3.Text = "Країна:";
            // 
            // labelControl2
            // 
            this.labelControl2.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.labelControl2.Location = new System.Drawing.Point(10, 36);
            this.labelControl2.Name = "labelControl2";
            this.labelControl2.Size = new System.Drawing.Size(100, 13);
            this.labelControl2.TabIndex = 4;
            this.labelControl2.Text = "Скорочена назва";
            // 
            // labelControl1
            // 
            this.labelControl1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.labelControl1.Location = new System.Drawing.Point(10, 10);
            this.labelControl1.Name = "labelControl1";
            this.labelControl1.Size = new System.Drawing.Size(73, 13);
            this.labelControl1.TabIndex = 2;
            this.labelControl1.Text = "Повна назва";
            // 
            // DescriptionControl
            // 
            this.DescriptionControl.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.DescriptionControl.Location = new System.Drawing.Point(116, 6);
            this.DescriptionControl.MenuManager = this.ribbon;
            this.DescriptionControl.Name = "DescriptionControl";
            this.DescriptionControl.Size = new System.Drawing.Size(349, 20);
            this.DescriptionControl.TabIndex = 0;
            // 
            // CutNameControl
            // 
            this.CutNameControl.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.CutNameControl.Location = new System.Drawing.Point(116, 33);
            this.CutNameControl.MenuManager = this.ribbon;
            this.CutNameControl.Name = "CutNameControl";
            this.CutNameControl.Size = new System.Drawing.Size(349, 20);
            this.CutNameControl.TabIndex = 1;
            // 
            // CityControl
            // 
            this.CityControl.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.CityControl.BaseFilter = null;
            this.CityControl.Location = new System.Drawing.Point(60, 66);
            this.CityControl.MenuManager = this.ribbon;
            this.CityControl.Name = "CityControl";
            this.CityControl.Properties.BaseFilter = null;
            this.CityControl.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.CityControl.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
            this.CityControl.Properties.NullText = "";
            this.CityControl.Size = new System.Drawing.Size(405, 20);
            this.CityControl.TabIndex = 2;
            // 
            // PhoneControl
            // 
            this.PhoneControl.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.PhoneControl.Location = new System.Drawing.Point(60, 137);
            this.PhoneControl.MenuManager = this.ribbon;
            this.PhoneControl.Name = "PhoneControl";
            this.PhoneControl.Properties.Mask.EditMask = "+38 (000) 00-00-000";
            this.PhoneControl.Properties.Mask.IgnoreMaskBlank = false;
            this.PhoneControl.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Simple;
            this.PhoneControl.Size = new System.Drawing.Size(405, 20);
            this.PhoneControl.TabIndex = 6;
            // 
            // FaxControl
            // 
            this.FaxControl.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.FaxControl.Location = new System.Drawing.Point(60, 163);
            this.FaxControl.MenuManager = this.ribbon;
            this.FaxControl.Name = "FaxControl";
            this.FaxControl.Properties.Mask.EditMask = "+38 (000) 00-00-000";
            this.FaxControl.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Simple;
            this.FaxControl.Size = new System.Drawing.Size(405, 20);
            this.FaxControl.TabIndex = 7;
            // 
            // OfficeControl
            // 
            this.OfficeControl.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.OfficeControl.Location = new System.Drawing.Point(398, 111);
            this.OfficeControl.MenuManager = this.ribbon;
            this.OfficeControl.Name = "OfficeControl";
            this.OfficeControl.Size = new System.Drawing.Size(67, 20);
            this.OfficeControl.TabIndex = 5;
            // 
            // barButtonItem3
            // 
            this.barButtonItem3.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barButtonItem3.Caption = "Ок";
            this.barButtonItem3.Id = 7;
            this.barButtonItem3.ImageIndex = 0;
            this.barButtonItem3.Name = "barButtonItem3";
            // 
            // barButtonItem4
            // 
            this.barButtonItem4.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barButtonItem4.Caption = "Записать";
            this.barButtonItem4.Id = 8;
            this.barButtonItem4.Name = "barButtonItem4";
            // 
            // barButtonItem5
            // 
            this.barButtonItem5.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barButtonItem5.Caption = "Отменить";
            this.barButtonItem5.Id = 9;
            this.barButtonItem5.ImageIndex = 1;
            this.barButtonItem5.Name = "barButtonItem5";
            // 
            // barButtonItem6
            // 
            this.barButtonItem6.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barButtonItem6.Caption = "Ок";
            this.barButtonItem6.Id = 7;
            this.barButtonItem6.ImageIndex = 0;
            this.barButtonItem6.Name = "barButtonItem6";
            // 
            // barButtonItem7
            // 
            this.barButtonItem7.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barButtonItem7.Caption = "Записать";
            this.barButtonItem7.Id = 8;
            this.barButtonItem7.Name = "barButtonItem7";
            // 
            // barButtonItem8
            // 
            this.barButtonItem8.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barButtonItem8.Caption = "Отменить";
            this.barButtonItem8.Id = 9;
            this.barButtonItem8.ImageIndex = 1;
            this.barButtonItem8.Name = "barButtonItem8";
            // 
            // barButtonItem9
            // 
            this.barButtonItem9.Caption = "barButtonItem2";
            this.barButtonItem9.Id = 3;
            this.barButtonItem9.Name = "barButtonItem9";
            // 
            // barButtonItem10
            // 
            this.barButtonItem10.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barButtonItem10.Caption = "OK";
            this.barButtonItem10.Id = 4;
            this.barButtonItem10.ImageIndex = 0;
            this.barButtonItem10.Name = "barButtonItem10";
            // 
            // barButtonItem11
            // 
            this.barButtonItem11.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barButtonItem11.Caption = "Отмена";
            this.barButtonItem11.Id = 6;
            this.barButtonItem11.ImageIndex = 1;
            this.barButtonItem11.Name = "barButtonItem11";
            // 
            // panelControl1
            // 
            this.panelControl1.Controls.Add(this.panelControl2);
            this.panelControl1.Controls.Add(this.labelControl5);
            this.panelControl1.Controls.Add(this.labelControl1);
            this.panelControl1.Controls.Add(this.OfficeControl);
            this.panelControl1.Controls.Add(this.FaxControl);
            this.panelControl1.Controls.Add(this.CountryControl);
            this.panelControl1.Controls.Add(this.PhoneControl);
            this.panelControl1.Controls.Add(this.labelControl13);
            this.panelControl1.Controls.Add(this.CityControl);
            this.panelControl1.Controls.Add(this.CutNameControl);
            this.panelControl1.Controls.Add(this.labelControl11);
            this.panelControl1.Controls.Add(this.DescriptionControl);
            this.panelControl1.Controls.Add(this.WebSiteControl);
            this.panelControl1.Controls.Add(this.labelControl2);
            this.panelControl1.Controls.Add(this.labelControl10);
            this.panelControl1.Controls.Add(this.labelControl3);
            this.panelControl1.Controls.Add(this.labelControl9);
            this.panelControl1.Controls.Add(this.labelControl4);
            this.panelControl1.Controls.Add(this.HouseControl);
            this.panelControl1.Controls.Add(this.labelControl6);
            this.panelControl1.Controls.Add(this.labelControl8);
            this.panelControl1.Controls.Add(this.labelControl7);
            this.panelControl1.Controls.Add(this.StreetControl);
            this.panelControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panelControl1.Location = new System.Drawing.Point(0, 54);
            this.panelControl1.Name = "panelControl1";
            this.panelControl1.Size = new System.Drawing.Size(477, 221);
            this.panelControl1.TabIndex = 35;
            // 
            // panelControl2
            // 
            this.panelControl2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.panelControl2.Appearance.BackColor = System.Drawing.Color.Silver;
            this.panelControl2.Appearance.Options.UseBackColor = true;
            this.panelControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.panelControl2.Location = new System.Drawing.Point(10, 59);
            this.panelControl2.Name = "panelControl2";
            this.panelControl2.Size = new System.Drawing.Size(455, 1);
            this.panelControl2.TabIndex = 33;
            // 
            // labelControl5
            // 
            this.labelControl5.Appearance.ForeColor = System.Drawing.Color.Gray;
            this.labelControl5.Location = new System.Drawing.Point(60, 114);
            this.labelControl5.Name = "labelControl5";
            this.labelControl5.Size = new System.Drawing.Size(21, 13);
            this.labelControl5.TabIndex = 32;
            this.labelControl5.Text = "вул.";
            // 
            // CountryControl
            // 
            this.CountryControl.Location = new System.Drawing.Point(103, 92);
            this.CountryControl.Name = "CountryControl";
            this.CountryControl.Size = new System.Drawing.Size(16, 13);
            this.CountryControl.TabIndex = 31;
            this.CountryControl.Text = "{0}";
            // 
            // ContractorsItemsForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(477, 298);
            this.Controls.Add(this.panelControl1);
            this.Controls.Add(this.ribbonStatusBar);
            this.Controls.Add(this.ribbon);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
            this.MaximizeBox = false;
            this.Name = "ContractorsItemsForm";
            this.Ribbon = this.ribbon;
            this.StatusBar = this.ribbonStatusBar;
            this.Text = "ItemsForm";
            ((System.ComponentModel.ISupportInitialize)(this.ribbon)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.WebSiteControl.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.HouseControl.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.StreetControl.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.DescriptionControl.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.CutNameControl.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.CityControl.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.PhoneControl.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.FaxControl.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.OfficeControl.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
            this.panelControl1.ResumeLayout(false);
            this.panelControl1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
            this.ResumeLayout(false);

        }
Пример #35
0
        /// <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.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem1 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip2 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem2 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip3 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem3 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem3 = new DevExpress.Utils.ToolTipItem();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
            this.ribbon = new DevExpress.XtraBars.Ribbon.RibbonControl();
            this.applicationMenu1 = new DevExpress.XtraBars.Ribbon.ApplicationMenu(this.components);
            this.barOpen = new DevExpress.XtraBars.BarButtonItem();
            this.barClose = new DevExpress.XtraBars.BarButtonItem();
            this.barExit = new DevExpress.XtraBars.BarButtonItem();
            this.barApplications = new DevExpress.XtraBars.BarButtonItem();
            this.barEnvironments = new DevExpress.XtraBars.BarButtonItem();
            this.barUsers = new DevExpress.XtraBars.BarButtonItem();
            this.barSubItem1 = new DevExpress.XtraBars.BarSubItem();
            this.barSelectLocalDataFile = new DevExpress.XtraBars.BarSubItem();
            this.barDatabase = new DevExpress.XtraBars.BarStaticItem();
            this.barVersion = new DevExpress.XtraBars.BarStaticItem();
            this.rpgAdmin = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.ribbonPageGroup1 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonStatusBar = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
            this.xtraTabbedMdiManager1 = new DevExpress.XtraTabbedMdi.XtraTabbedMdiManager(this.components);
            this.openFileDialogLocalData = new System.Windows.Forms.OpenFileDialog();
            ((System.ComponentModel.ISupportInitialize)(this.ribbon)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.applicationMenu1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabbedMdiManager1)).BeginInit();
            this.SuspendLayout();
            // 
            // ribbon
            // 
            this.ribbon.ApplicationButtonDropDownControl = this.applicationMenu1;
            this.ribbon.ApplicationButtonText = null;
            // 
            // 
            // 
            this.ribbon.ExpandCollapseItem.Id = 0;
            this.ribbon.ExpandCollapseItem.Name = "";
            this.ribbon.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.ribbon.ExpandCollapseItem,
            this.barApplications,
            this.barEnvironments,
            this.barUsers,
            this.barOpen,
            this.barClose,
            this.barSubItem1,
            this.barExit,
            this.barSelectLocalDataFile,
            this.barDatabase,
            this.barVersion});
            this.ribbon.Location = new System.Drawing.Point(0, 0);
            this.ribbon.MaxItemId = 11;
            this.ribbon.Name = "ribbon";
            this.ribbon.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.rpgAdmin});
            this.ribbon.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonControlStyle.Office2010;
            this.ribbon.SelectedPage = this.rpgAdmin;
            this.ribbon.Size = new System.Drawing.Size(442, 148);
            this.ribbon.StatusBar = this.ribbonStatusBar;
            // 
            // applicationMenu1
            // 
            this.applicationMenu1.ItemLinks.Add(this.barOpen);
            this.applicationMenu1.ItemLinks.Add(this.barClose);
            this.applicationMenu1.ItemLinks.Add(this.barExit);
            this.applicationMenu1.Name = "applicationMenu1";
            this.applicationMenu1.Ribbon = this.ribbon;
            // 
            // barOpen
            // 
            this.barOpen.Caption = "&Open";
            this.barOpen.Id = 4;
            this.barOpen.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O));
            this.barOpen.Name = "barOpen";
            this.barOpen.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barOpen_ItemClick);
            // 
            // barClose
            // 
            this.barClose.Caption = "&Close";
            this.barClose.Enabled = false;
            this.barClose.Id = 5;
            this.barClose.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.F4));
            this.barClose.Name = "barClose";
            this.barClose.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barClose_ItemClick);
            // 
            // barExit
            // 
            this.barExit.Caption = "E&xit";
            this.barExit.Id = 7;
            this.barExit.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.F4));
            this.barExit.Name = "barExit";
            this.barExit.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barExit_ItemClick);
            // 
            // barApplications
            // 
            this.barApplications.Caption = "Applications";
            this.barApplications.Enabled = false;
            this.barApplications.Id = 1;
            this.barApplications.LargeGlyph = global::Disney.iDash.LocalDataManager.Properties.Resources.applications_folder;
            this.barApplications.Name = "barApplications";
            this.barApplications.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            toolTipTitleItem1.Text = "Applications";
            toolTipItem1.LeftIndent = 6;
            toolTipItem1.Text = "Manage applications supported by the framework.  Maintain list of menu option des" +
    "criptions";
            superToolTip1.Items.Add(toolTipTitleItem1);
            superToolTip1.Items.Add(toolTipItem1);
            this.barApplications.SuperTip = superToolTip1;
            this.barApplications.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barApplications_ItemClick);
            // 
            // barEnvironments
            // 
            this.barEnvironments.Caption = "Environments";
            this.barEnvironments.Enabled = false;
            this.barEnvironments.Id = 2;
            this.barEnvironments.LargeGlyph = global::Disney.iDash.LocalDataManager.Properties.Resources.Environments;
            this.barEnvironments.Name = "barEnvironments";
            this.barEnvironments.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            toolTipTitleItem2.Text = "Environments";
            toolTipItem2.LeftIndent = 6;
            toolTipItem2.Text = "Maintain connections to databases and servers";
            superToolTip2.Items.Add(toolTipTitleItem2);
            superToolTip2.Items.Add(toolTipItem2);
            this.barEnvironments.SuperTip = superToolTip2;
            this.barEnvironments.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barEnvironments_ItemClick);
            // 
            // barUsers
            // 
            this.barUsers.Caption = "Users";
            this.barUsers.Enabled = false;
            this.barUsers.Id = 3;
            this.barUsers.LargeGlyph = global::Disney.iDash.LocalDataManager.Properties.Resources.network_connections;
            this.barUsers.Name = "barUsers";
            this.barUsers.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            toolTipTitleItem3.Text = "Users";
            toolTipItem3.LeftIndent = 6;
            toolTipItem3.Text = "Manage user details, authorisation to applications, environments and restricted m" +
    "enu options.";
            superToolTip3.Items.Add(toolTipTitleItem3);
            superToolTip3.Items.Add(toolTipItem3);
            this.barUsers.SuperTip = superToolTip3;
            this.barUsers.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barUsers_ItemClick);
            // 
            // barSubItem1
            // 
            this.barSubItem1.Caption = "barSubItem1";
            this.barSubItem1.Id = 6;
            this.barSubItem1.Name = "barSubItem1";
            // 
            // barSelectLocalDataFile
            // 
            this.barSelectLocalDataFile.Caption = "Select Local Data File";
            this.barSelectLocalDataFile.Id = 8;
            this.barSelectLocalDataFile.Name = "barSelectLocalDataFile";
            // 
            // barDatabase
            // 
            this.barDatabase.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.barDatabase.Appearance.Options.UseFont = true;
            this.barDatabase.Caption = "No file open.";
            this.barDatabase.Id = 9;
            this.barDatabase.Name = "barDatabase";
            this.barDatabase.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // barVersion
            // 
            this.barVersion.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barVersion.Caption = "v0.0.0";
            this.barVersion.Id = 10;
            this.barVersion.Name = "barVersion";
            this.barVersion.TextAlignment = System.Drawing.StringAlignment.Far;
            // 
            // rpgAdmin
            // 
            this.rpgAdmin.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonPageGroup1});
            this.rpgAdmin.Name = "rpgAdmin";
            this.rpgAdmin.Text = "Administration";
            // 
            // ribbonPageGroup1
            // 
            this.ribbonPageGroup1.ItemLinks.Add(this.barApplications);
            this.ribbonPageGroup1.ItemLinks.Add(this.barEnvironments);
            this.ribbonPageGroup1.ItemLinks.Add(this.barUsers);
            this.ribbonPageGroup1.Name = "ribbonPageGroup1";
            this.ribbonPageGroup1.ShowCaptionButton = false;
            this.ribbonPageGroup1.Text = "Administration";
            // 
            // ribbonStatusBar
            // 
            this.ribbonStatusBar.ItemLinks.Add(this.barDatabase);
            this.ribbonStatusBar.ItemLinks.Add(this.barVersion);
            this.ribbonStatusBar.Location = new System.Drawing.Point(0, 426);
            this.ribbonStatusBar.Name = "ribbonStatusBar";
            this.ribbonStatusBar.Ribbon = this.ribbon;
            this.ribbonStatusBar.Size = new System.Drawing.Size(442, 23);
            // 
            // xtraTabbedMdiManager1
            // 
            this.xtraTabbedMdiManager1.AppearancePage.HeaderActive.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.xtraTabbedMdiManager1.AppearancePage.HeaderActive.Options.UseFont = true;
            this.xtraTabbedMdiManager1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.xtraTabbedMdiManager1.BorderStylePage = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.xtraTabbedMdiManager1.ClosePageButtonShowMode = DevExpress.XtraTab.ClosePageButtonShowMode.InAllTabPageHeaders;
            this.xtraTabbedMdiManager1.MdiParent = this;
            // 
            // openFileDialogLocalData
            // 
            this.openFileDialogLocalData.Filter = "Data Files (*.sdf)|*.sdf";
            // 
            // MainForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(442, 449);
            this.Controls.Add(this.ribbonStatusBar);
            this.Controls.Add(this.ribbon);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.IsMdiContainer = true;
            this.Name = "MainForm";
            this.Ribbon = this.ribbon;
            this.StatusBar = this.ribbonStatusBar;
            this.Text = "Local Data Manager";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            this.Load += new System.EventHandler(this.MainForm_Load);
            ((System.ComponentModel.ISupportInitialize)(this.ribbon)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.applicationMenu1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabbedMdiManager1)).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(frmTsk_SendReport));
            DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem1 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.ToolTipSeparatorItem toolTipSeparatorItem1 = new DevExpress.Utils.ToolTipSeparatorItem();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2 = new DevExpress.Utils.ToolTipTitleItem();
            this.windowsUIButtonPanel1 = new DevExpress.XtraBars.Docking2010.WindowsUIButtonPanel();
            this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
            this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
            this.gridControl1 = new DevExpress.XtraGrid.GridControl();
            this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
            this.SuspendLayout();
            // 
            // windowsUIButtonPanel1
            // 
            toolTipTitleItem1.Appearance.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image")));
            toolTipTitleItem1.Appearance.Options.UseImage = true;
            toolTipTitleItem1.Image = ((System.Drawing.Image)(resources.GetObject("toolTipTitleItem1.Image")));
            toolTipTitleItem1.Text = "sssssssssssssss";
            toolTipItem1.Appearance.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image1")));
            toolTipItem1.Appearance.Options.UseImage = true;
            toolTipItem1.Image = ((System.Drawing.Image)(resources.GetObject("toolTipItem1.Image")));
            toolTipItem1.LeftIndent = 6;
            toolTipItem1.Text = "ddddddddddd";
            toolTipTitleItem2.Appearance.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image2")));
            toolTipTitleItem2.Appearance.Options.UseImage = true;
            toolTipTitleItem2.Image = ((System.Drawing.Image)(resources.GetObject("toolTipTitleItem2.Image")));
            toolTipTitleItem2.LeftIndent = 6;
            toolTipTitleItem2.Text = "sssssssss";
            superToolTip1.Items.Add(toolTipTitleItem1);
            superToolTip1.Items.Add(toolTipItem1);
            superToolTip1.Items.Add(toolTipSeparatorItem1);
            superToolTip1.Items.Add(toolTipTitleItem2);
            this.windowsUIButtonPanel1.Buttons.AddRange(new DevExpress.XtraEditors.ButtonPanel.IBaseButton[] {
            new DevExpress.XtraBars.Docking2010.WindowsUIButton("Buttonss", ((System.Drawing.Image)(resources.GetObject("windowsUIButtonPanel1.Buttons"))), -1, DevExpress.XtraBars.Docking2010.ImageLocation.Default, DevExpress.XtraBars.Docking2010.ButtonStyle.PushButton, "", true, -1, true, null, true, true, true, null, null, -1, false, false),
            new DevExpress.XtraBars.Docking2010.WindowsUIButton("Button", ((System.Drawing.Image)(resources.GetObject("windowsUIButtonPanel1.Buttons1"))), 1, DevExpress.XtraBars.Docking2010.ImageLocation.Default, DevExpress.XtraBars.Docking2010.ButtonStyle.PushButton, "", false, -1, true, superToolTip1, true, false, true, null, null, -1, false, true),
            new DevExpress.XtraBars.Docking2010.WindowsUIButton()});
            this.windowsUIButtonPanel1.Location = new System.Drawing.Point(12, 12);
            this.windowsUIButtonPanel1.Name = "windowsUIButtonPanel1";
            this.windowsUIButtonPanel1.Size = new System.Drawing.Size(295, 60);
            this.windowsUIButtonPanel1.TabIndex = 0;
            this.windowsUIButtonPanel1.Text = "windowsUIButtonPanel1";
            // 
            // openFileDialog1
            // 
            this.openFileDialog1.FileName = "openFileDialog1";
            this.openFileDialog1.FileOk += new System.ComponentModel.CancelEventHandler(this.openFileDialog1_FileOk);
            // 
            // simpleButton1
            // 
            this.simpleButton1.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
            this.simpleButton1.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton1.Image")));
            this.simpleButton1.Location = new System.Drawing.Point(356, 49);
            this.simpleButton1.Name = "simpleButton1";
            this.simpleButton1.Size = new System.Drawing.Size(106, 23);
            this.simpleButton1.TabIndex = 1;
            this.simpleButton1.Text = "simpleButton1";
            this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
            // 
            // gridControl1
            // 
            this.gridControl1.Location = new System.Drawing.Point(2, 122);
            this.gridControl1.MainView = this.gridView1;
            this.gridControl1.Name = "gridControl1";
            this.gridControl1.Size = new System.Drawing.Size(919, 355);
            this.gridControl1.TabIndex = 2;
            this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridView1});
            // 
            // gridView1
            // 
            this.gridView1.GridControl = this.gridControl1;
            this.gridView1.Name = "gridView1";
            // 
            // frmTsk_SendReport
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(923, 504);
            this.Controls.Add(this.simpleButton1);
            this.Controls.Add(this.gridControl1);
            this.Controls.Add(this.windowsUIButtonPanel1);
            this.Name = "frmTsk_SendReport";
            this.Text = "frmTsk_SendReport";
            ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
            this.ResumeLayout(false);

        }
Пример #37
0
        /// <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.XtraGrid.GridLevelNode gridLevelNode1 = new DevExpress.XtraGrid.GridLevelNode();
            DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition1 = new DevExpress.XtraGrid.StyleFormatCondition();
            DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition2 = new DevExpress.XtraGrid.StyleFormatCondition();
            DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition3 = new DevExpress.XtraGrid.StyleFormatCondition();
            DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition4 = new DevExpress.XtraGrid.StyleFormatCondition();
            DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PreOrderForm));
            DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem1 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip2 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem2 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip3 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem3 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem3 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip4 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem4 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem4 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip5 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem5 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem5 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip6 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem6 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem6 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip7 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem7 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem7 = new DevExpress.Utils.ToolTipItem();
            this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.gridColumn21 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn26 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn27 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn29 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn30 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn31 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn32 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn35 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn36 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.grid = new DevExpress.XtraGrid.GridControl();
            this.goodsBalanceObjBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.gridView = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.colReqQuantity = new DevExpress.XtraGrid.Columns.GridColumn();
            this.repositoryItemSpinEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
            this.colid = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colGroup = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colName = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colPrice = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colQuantityInPack = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colOrdered = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colMeasure = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colQuantity = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colSupplier = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colCode = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colDate = new DevExpress.XtraGrid.Columns.GridColumn();
            this.repositoryItemTimeEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemTimeEdit();
            this.colBarcode = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colReserved = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colFreeBalance = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colMinOrder = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colRreqAssort = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colForOrder = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colAvgSell = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colShopBalance = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colQuota = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colIsQuoted = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colSelfImport = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colFactQuantity = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.repositoryItemImageComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
            this.ilState = new System.Windows.Forms.ImageList(this.components);
            this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
            this.actionContainerBarItem4 = new DevExpress.ExpressApp.Win.Templates.ActionContainers.ActionContainerBarItem();
            this.actionContainerBarItem3 = new DevExpress.ExpressApp.Win.Templates.ActionContainers.ActionContainerBarItem();
            this.actionContainerBarItem10 = new DevExpress.ExpressApp.Win.Templates.ActionContainers.ActionContainerBarItem();
            this.actionContainerBarItem5 = new DevExpress.ExpressApp.Win.Templates.ActionContainers.ActionContainerBarItem();
            this.mainMenuItem2 = new DevExpress.ExpressApp.Win.Templates.MainMenuItem();
            this.actionContainerBarItem8 = new DevExpress.ExpressApp.Win.Templates.ActionContainers.ActionContainerBarItem();
            this.actionContainerBarItem6 = new DevExpress.ExpressApp.Win.Templates.ActionContainers.ActionContainerBarItem();
            this.actionContainerBarItem11 = new DevExpress.ExpressApp.Win.Templates.ActionContainers.ActionContainerBarItem();
            this.actionContainerBarItem7 = new DevExpress.ExpressApp.Win.Templates.ActionContainers.ActionContainerBarItem();
            this.actionContainerBarItem1 = new DevExpress.ExpressApp.Win.Templates.ActionContainers.ActionContainerBarItem();
            this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
            this.actionContainerBarItem2 = new DevExpress.ExpressApp.Win.Templates.ActionContainers.ActionContainerBarItem();
            this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
            this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
            this.mainMenuItem1 = new DevExpress.ExpressApp.Win.Templates.MainMenuItem();
            this.repositoryItemTimeEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTimeEdit();
            this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
            this.mainMenuItem3 = new DevExpress.ExpressApp.Win.Templates.MainMenuItem();
            this.barSubItem1 = new DevExpress.XtraBars.BarSubItem();
            this.actionContainerMenuBarItem7 = new DevExpress.ExpressApp.Win.Templates.ActionContainers.ActionContainerMenuBarItem();
            this.actionContainerBarItem13 = new DevExpress.ExpressApp.Win.Templates.ActionContainers.ActionContainerBarItem();
            this.actionContainerMenuBarItem3 = new DevExpress.ExpressApp.Win.Templates.ActionContainers.ActionContainerMenuBarItem();
            this.actionContainerBarItem12 = new DevExpress.ExpressApp.Win.Templates.ActionContainers.ActionContainerBarItem();
            this.actionContainerBarItem17 = new DevExpress.ExpressApp.Win.Templates.ActionContainers.ActionContainerBarItem();
            this.actionContainerBarItem9 = new DevExpress.ExpressApp.Win.Templates.ActionContainers.ActionContainerBarItem();
            this.actionContainerBarItem18 = new DevExpress.ExpressApp.Win.Templates.ActionContainers.ActionContainerBarItem();
            this.actionContainerBarItem14 = new DevExpress.ExpressApp.Win.Templates.ActionContainers.ActionContainerBarItem();
            this.actionContainerBarItem16 = new DevExpress.ExpressApp.Win.Templates.ActionContainers.ActionContainerBarItem();
            this.actionContainerBarItem15 = new DevExpress.ExpressApp.Win.Templates.ActionContainers.ActionContainerBarItem();
            this.actionContainerMenuBarItem1 = new DevExpress.ExpressApp.Win.Templates.ActionContainers.ActionContainerMenuBarItem();
            this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
            this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
            this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
            this.actionContainerMenuBarItem4 = new DevExpress.ExpressApp.Win.Templates.ActionContainers.ActionContainerMenuBarItem();
            this.actionContainerMenuBarItem5 = new DevExpress.ExpressApp.Win.Templates.ActionContainers.ActionContainerMenuBarItem();
            this.mainMenuItem5 = new DevExpress.ExpressApp.Win.Templates.MainMenuItem();
            this.actionContainerMenuBarItem6 = new DevExpress.ExpressApp.Win.Templates.ActionContainers.ActionContainerMenuBarItem();
            this.actionContainerMenuBarItem2 = new DevExpress.ExpressApp.Win.Templates.ActionContainers.ActionContainerMenuBarItem();
            this.mainMenuItem6 = new DevExpress.ExpressApp.Win.Templates.MainMenuItem();
            this.xafBarLinkContainerItem1 = new DevExpress.ExpressApp.Win.Templates.ActionContainers.XafBarLinkContainerItem();
            this.barMdiChildrenListItem1 = new DevExpress.XtraBars.BarMdiChildrenListItem();
            this.actionContainerBarItem20 = new DevExpress.ExpressApp.Win.Templates.ActionContainers.ActionContainerBarItem();
            this.actionContainerBarItem19 = new DevExpress.ExpressApp.Win.Templates.ActionContainers.ActionContainerBarItem();
            this.mainMenuItem4 = new DevExpress.ExpressApp.Win.Templates.MainMenuItem();
            this.bеForOrder = new DevExpress.XtraBars.BarSubItem();
            this.treeListColumn1 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
            this.treeList = new DevExpress.XtraTreeList.TreeList();
            this.cdDateFilterItem = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
            this.cdDateFilter = new DevExpress.XtraBars.BarEditItem();
            this.btNewOrder = new DevExpress.XtraBars.BarButtonItem();
            this.xafBar3 = new DevExpress.ExpressApp.Win.Templates.Controls.XafBar();
            this.btCommit = new DevExpress.XtraBars.BarButtonItem();
            this.barCheckNts = new DevExpress.XtraBars.BarCheckItem();
            this.barCheck = new DevExpress.XtraBars.BarCheckItem();
            this.barCheckCold = new DevExpress.XtraBars.BarCheckItem();
            this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
            this.btRefresh = new DevExpress.XtraBars.BarButtonItem();
            this.xafBar2 = new DevExpress.ExpressApp.Win.Templates.Controls.XafBar();
            this.BarManager = new DevExpress.ExpressApp.Win.Templates.Controls.XafBarManager(this.components);
            this.vGoodsBalanceOrderBindingSource = new System.Windows.Forms.BindingSource(this.components);
            ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.grid)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.goodsBalanceObjBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTimeEdit2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTimeEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
            this.splitContainerControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.treeList)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cdDateFilterItem)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cdDateFilterItem.VistaTimeProperties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.BarManager)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.vGoodsBalanceOrderBindingSource)).BeginInit();
            this.SuspendLayout();
            // 
            // gridView1
            // 
            this.gridView1.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(244)))), ((int)(((byte)(250)))));
            this.gridView1.Appearance.ColumnFilterButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(154)))), ((int)(((byte)(153)))), ((int)(((byte)(182)))));
            this.gridView1.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(244)))), ((int)(((byte)(250)))));
            this.gridView1.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.Black;
            this.gridView1.Appearance.ColumnFilterButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.gridView1.Appearance.ColumnFilterButton.Options.UseBackColor = true;
            this.gridView1.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
            this.gridView1.Appearance.ColumnFilterButton.Options.UseForeColor = true;
            this.gridView1.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.White;
            this.gridView1.Appearance.ColumnFilterButtonActive.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(198)))), ((int)(((byte)(198)))), ((int)(((byte)(215)))));
            this.gridView1.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.White;
            this.gridView1.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Black;
            this.gridView1.Appearance.ColumnFilterButtonActive.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.gridView1.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
            this.gridView1.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
            this.gridView1.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
            this.gridView1.Appearance.Empty.BackColor = System.Drawing.Color.White;
            this.gridView1.Appearance.Empty.Options.UseBackColor = true;
            this.gridView1.Appearance.EvenRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(244)))), ((int)(((byte)(250)))));
            this.gridView1.Appearance.EvenRow.ForeColor = System.Drawing.Color.Black;
            this.gridView1.Appearance.EvenRow.Options.UseBackColor = true;
            this.gridView1.Appearance.EvenRow.Options.UseForeColor = true;
            this.gridView1.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(244)))), ((int)(((byte)(250)))));
            this.gridView1.Appearance.FilterCloseButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(154)))), ((int)(((byte)(153)))), ((int)(((byte)(182)))));
            this.gridView1.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(244)))), ((int)(((byte)(250)))));
            this.gridView1.Appearance.FilterCloseButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.gridView1.Appearance.FilterCloseButton.Options.UseBackColor = true;
            this.gridView1.Appearance.FilterCloseButton.Options.UseBorderColor = true;
            this.gridView1.Appearance.FilterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(131)))), ((int)(((byte)(161)))));
            this.gridView1.Appearance.FilterPanel.ForeColor = System.Drawing.Color.White;
            this.gridView1.Appearance.FilterPanel.Options.UseBackColor = true;
            this.gridView1.Appearance.FilterPanel.Options.UseForeColor = true;
            this.gridView1.Appearance.FixedLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(124)))), ((int)(((byte)(124)))), ((int)(((byte)(148)))));
            this.gridView1.Appearance.FixedLine.Options.UseBackColor = true;
            this.gridView1.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(178)))), ((int)(((byte)(180)))), ((int)(((byte)(191)))));
            this.gridView1.Appearance.FocusedRow.ForeColor = System.Drawing.Color.Black;
            this.gridView1.Appearance.FocusedRow.Options.UseBackColor = true;
            this.gridView1.Appearance.FocusedRow.Options.UseForeColor = true;
            this.gridView1.Appearance.FooterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(244)))), ((int)(((byte)(250)))));
            this.gridView1.Appearance.FooterPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(154)))), ((int)(((byte)(153)))), ((int)(((byte)(182)))));
            this.gridView1.Appearance.FooterPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(244)))), ((int)(((byte)(250)))));
            this.gridView1.Appearance.FooterPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.gridView1.Appearance.FooterPanel.Options.UseBackColor = true;
            this.gridView1.Appearance.FooterPanel.Options.UseBorderColor = true;
            this.gridView1.Appearance.GroupButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(215)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
            this.gridView1.Appearance.GroupButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(215)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
            this.gridView1.Appearance.GroupButton.ForeColor = System.Drawing.Color.Black;
            this.gridView1.Appearance.GroupButton.Options.UseBackColor = true;
            this.gridView1.Appearance.GroupButton.Options.UseBorderColor = true;
            this.gridView1.Appearance.GroupButton.Options.UseForeColor = true;
            this.gridView1.Appearance.GroupFooter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(215)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
            this.gridView1.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(215)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
            this.gridView1.Appearance.GroupFooter.ForeColor = System.Drawing.Color.Black;
            this.gridView1.Appearance.GroupFooter.Options.UseBackColor = true;
            this.gridView1.Appearance.GroupFooter.Options.UseBorderColor = true;
            this.gridView1.Appearance.GroupFooter.Options.UseForeColor = true;
            this.gridView1.Appearance.GroupPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(131)))), ((int)(((byte)(161)))));
            this.gridView1.Appearance.GroupPanel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(244)))), ((int)(((byte)(250)))));
            this.gridView1.Appearance.GroupPanel.Options.UseBackColor = true;
            this.gridView1.Appearance.GroupPanel.Options.UseForeColor = true;
            this.gridView1.Appearance.GroupRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(215)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
            this.gridView1.Appearance.GroupRow.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(215)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
            this.gridView1.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
            this.gridView1.Appearance.GroupRow.ForeColor = System.Drawing.Color.Black;
            this.gridView1.Appearance.GroupRow.Options.UseBackColor = true;
            this.gridView1.Appearance.GroupRow.Options.UseBorderColor = true;
            this.gridView1.Appearance.GroupRow.Options.UseFont = true;
            this.gridView1.Appearance.GroupRow.Options.UseForeColor = true;
            this.gridView1.Appearance.HeaderPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(244)))), ((int)(((byte)(250)))));
            this.gridView1.Appearance.HeaderPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(154)))), ((int)(((byte)(153)))), ((int)(((byte)(182)))));
            this.gridView1.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(244)))), ((int)(((byte)(250)))));
            this.gridView1.Appearance.HeaderPanel.ForeColor = System.Drawing.Color.Black;
            this.gridView1.Appearance.HeaderPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.gridView1.Appearance.HeaderPanel.Options.UseBackColor = true;
            this.gridView1.Appearance.HeaderPanel.Options.UseBorderColor = true;
            this.gridView1.Appearance.HeaderPanel.Options.UseForeColor = true;
            this.gridView1.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(218)))), ((int)(((byte)(219)))), ((int)(((byte)(226)))));
            this.gridView1.Appearance.HideSelectionRow.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(131)))), ((int)(((byte)(161)))));
            this.gridView1.Appearance.HideSelectionRow.Options.UseBackColor = true;
            this.gridView1.Appearance.HideSelectionRow.Options.UseForeColor = true;
            this.gridView1.Appearance.HorzLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(164)))), ((int)(((byte)(164)))), ((int)(((byte)(188)))));
            this.gridView1.Appearance.HorzLine.Options.UseBackColor = true;
            this.gridView1.Appearance.OddRow.BackColor = System.Drawing.Color.White;
            this.gridView1.Appearance.OddRow.ForeColor = System.Drawing.Color.Black;
            this.gridView1.Appearance.OddRow.Options.UseBackColor = true;
            this.gridView1.Appearance.OddRow.Options.UseForeColor = true;
            this.gridView1.Appearance.Preview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(250)))), ((int)(((byte)(253)))));
            this.gridView1.Appearance.Preview.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(163)))), ((int)(((byte)(165)))), ((int)(((byte)(177)))));
            this.gridView1.Appearance.Preview.Options.UseBackColor = true;
            this.gridView1.Appearance.Preview.Options.UseForeColor = true;
            this.gridView1.Appearance.Row.BackColor = System.Drawing.Color.White;
            this.gridView1.Appearance.Row.ForeColor = System.Drawing.Color.Black;
            this.gridView1.Appearance.Row.Options.UseBackColor = true;
            this.gridView1.Appearance.Row.Options.UseForeColor = true;
            this.gridView1.Appearance.RowSeparator.BackColor = System.Drawing.Color.White;
            this.gridView1.Appearance.RowSeparator.Options.UseBackColor = true;
            this.gridView1.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(195)))), ((int)(((byte)(197)))), ((int)(((byte)(205)))));
            this.gridView1.Appearance.SelectedRow.ForeColor = System.Drawing.Color.Black;
            this.gridView1.Appearance.SelectedRow.Options.UseBackColor = true;
            this.gridView1.Appearance.SelectedRow.Options.UseForeColor = true;
            this.gridView1.Appearance.VertLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(164)))), ((int)(((byte)(164)))), ((int)(((byte)(188)))));
            this.gridView1.Appearance.VertLine.Options.UseBackColor = true;
            this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.gridColumn21,
            this.gridColumn22,
            this.gridColumn23,
            this.gridColumn24,
            this.gridColumn25,
            this.gridColumn26,
            this.gridColumn27,
            this.gridColumn29,
            this.gridColumn30,
            this.gridColumn31,
            this.gridColumn32,
            this.gridColumn35,
            this.gridColumn36});
            this.gridView1.GridControl = this.grid;
            this.gridView1.Name = "gridView1";
            this.gridView1.OptionsBehavior.AllowAddRows = DevExpress.Utils.DefaultBoolean.False;
            this.gridView1.OptionsBehavior.AllowDeleteRows = DevExpress.Utils.DefaultBoolean.False;
            this.gridView1.OptionsBehavior.AutoPopulateColumns = false;
            this.gridView1.OptionsBehavior.Editable = false;
            this.gridView1.OptionsView.EnableAppearanceEvenRow = true;
            this.gridView1.OptionsView.EnableAppearanceOddRow = true;
            this.gridView1.OptionsView.ShowGroupPanel = false;
            // 
            // gridColumn21
            // 
            this.gridColumn21.FieldName = "id";
            this.gridColumn21.Name = "gridColumn21";
            this.gridColumn21.OptionsColumn.AllowEdit = false;
            this.gridColumn21.OptionsColumn.AllowFocus = false;
            this.gridColumn21.OptionsColumn.ReadOnly = true;
            this.gridColumn21.Width = 27;
            // 
            // gridColumn22
            // 
            this.gridColumn22.Caption = "Группа товара";
            this.gridColumn22.FieldName = "Group";
            this.gridColumn22.Name = "gridColumn22";
            this.gridColumn22.OptionsColumn.AllowEdit = false;
            this.gridColumn22.OptionsColumn.AllowFocus = false;
            this.gridColumn22.OptionsColumn.ReadOnly = true;
            this.gridColumn22.Visible = true;
            this.gridColumn22.VisibleIndex = 3;
            this.gridColumn22.Width = 72;
            // 
            // gridColumn23
            // 
            this.gridColumn23.Caption = "Название";
            this.gridColumn23.FieldName = "Name";
            this.gridColumn23.Name = "gridColumn23";
            this.gridColumn23.OptionsColumn.AllowEdit = false;
            this.gridColumn23.OptionsColumn.AllowFocus = false;
            this.gridColumn23.OptionsColumn.ReadOnly = true;
            this.gridColumn23.Visible = true;
            this.gridColumn23.VisibleIndex = 2;
            this.gridColumn23.Width = 87;
            // 
            // gridColumn24
            // 
            this.gridColumn24.Caption = "Цена";
            this.gridColumn24.FieldName = "Price";
            this.gridColumn24.Name = "gridColumn24";
            this.gridColumn24.OptionsColumn.AllowEdit = false;
            this.gridColumn24.OptionsColumn.AllowFocus = false;
            this.gridColumn24.OptionsColumn.ReadOnly = true;
            this.gridColumn24.Visible = true;
            this.gridColumn24.VisibleIndex = 4;
            this.gridColumn24.Width = 35;
            // 
            // gridColumn25
            // 
            this.gridColumn25.Caption = "Кол. в упаковке";
            this.gridColumn25.FieldName = "QuantityInPack";
            this.gridColumn25.Name = "gridColumn25";
            this.gridColumn25.OptionsColumn.AllowEdit = false;
            this.gridColumn25.OptionsColumn.AllowFocus = false;
            this.gridColumn25.OptionsColumn.ReadOnly = true;
            this.gridColumn25.Width = 89;
            // 
            // gridColumn26
            // 
            this.gridColumn26.AppearanceCell.BackColor = System.Drawing.Color.PaleGoldenrod;
            this.gridColumn26.AppearanceCell.Options.UseBackColor = true;
            this.gridColumn26.Caption = "Фактический заказ";
            this.gridColumn26.DisplayFormat.FormatString = "{0:0.00}";
            this.gridColumn26.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
            this.gridColumn26.FieldName = "Quantity";
            this.gridColumn26.MaxWidth = 100;
            this.gridColumn26.MinWidth = 50;
            this.gridColumn26.Name = "gridColumn26";
            this.gridColumn26.OptionsColumn.AllowEdit = false;
            this.gridColumn26.OptionsColumn.AllowFocus = false;
            this.gridColumn26.OptionsColumn.ReadOnly = true;
            this.gridColumn26.SummaryItem.FieldName = "Ordered";
            this.gridColumn26.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
            this.gridColumn26.Visible = true;
            this.gridColumn26.VisibleIndex = 0;
            this.gridColumn26.Width = 50;
            // 
            // gridColumn27
            // 
            this.gridColumn27.Caption = "Ед. изм. (шт/упак.)";
            this.gridColumn27.FieldName = "Measure";
            this.gridColumn27.Name = "gridColumn27";
            this.gridColumn27.OptionsColumn.AllowEdit = false;
            this.gridColumn27.OptionsColumn.AllowFocus = false;
            this.gridColumn27.OptionsColumn.ReadOnly = true;
            this.gridColumn27.Visible = true;
            this.gridColumn27.VisibleIndex = 5;
            this.gridColumn27.Width = 77;
            // 
            // gridColumn29
            // 
            this.gridColumn29.Caption = "Поставщик";
            this.gridColumn29.FieldName = "Supplier";
            this.gridColumn29.Name = "gridColumn29";
            this.gridColumn29.OptionsColumn.AllowEdit = false;
            this.gridColumn29.OptionsColumn.AllowFocus = false;
            this.gridColumn29.OptionsColumn.ReadOnly = true;
            this.gridColumn29.Visible = true;
            this.gridColumn29.VisibleIndex = 6;
            this.gridColumn29.Width = 48;
            // 
            // gridColumn30
            // 
            this.gridColumn30.Caption = "Код товара";
            this.gridColumn30.FieldName = "Code";
            this.gridColumn30.Name = "gridColumn30";
            this.gridColumn30.OptionsColumn.AllowEdit = false;
            this.gridColumn30.OptionsColumn.AllowFocus = false;
            this.gridColumn30.OptionsColumn.ReadOnly = true;
            this.gridColumn30.Width = 68;
            // 
            // gridColumn31
            // 
            this.gridColumn31.Caption = "Время создания";
            this.gridColumn31.FieldName = "Date";
            this.gridColumn31.Name = "gridColumn31";
            this.gridColumn31.OptionsColumn.AllowEdit = false;
            this.gridColumn31.OptionsColumn.AllowFocus = false;
            this.gridColumn31.OptionsColumn.ReadOnly = true;
            this.gridColumn31.Width = 60;
            // 
            // gridColumn32
            // 
            this.gridColumn32.Caption = "Штрихкод";
            this.gridColumn32.FieldName = "Barcode";
            this.gridColumn32.Name = "gridColumn32";
            this.gridColumn32.OptionsColumn.AllowEdit = false;
            this.gridColumn32.OptionsColumn.AllowFocus = false;
            this.gridColumn32.OptionsColumn.ReadOnly = true;
            this.gridColumn32.Visible = true;
            this.gridColumn32.VisibleIndex = 7;
            this.gridColumn32.Width = 42;
            // 
            // gridColumn35
            // 
            this.gridColumn35.AppearanceCell.BackColor = System.Drawing.Color.CornflowerBlue;
            this.gridColumn35.AppearanceCell.Options.UseBackColor = true;
            this.gridColumn35.Caption = "Минимальный заказ";
            this.gridColumn35.FieldName = "MinOrder";
            this.gridColumn35.MaxWidth = 100;
            this.gridColumn35.MinWidth = 50;
            this.gridColumn35.Name = "gridColumn35";
            this.gridColumn35.OptionsColumn.AllowEdit = false;
            this.gridColumn35.OptionsColumn.AllowFocus = false;
            this.gridColumn35.OptionsColumn.ReadOnly = true;
            this.gridColumn35.Visible = true;
            this.gridColumn35.VisibleIndex = 1;
            this.gridColumn35.Width = 58;
            // 
            // gridColumn36
            // 
            this.gridColumn36.Caption = "Собственный импорт";
            this.gridColumn36.FieldName = "SelfImport";
            this.gridColumn36.Name = "gridColumn36";
            this.gridColumn36.OptionsColumn.AllowEdit = false;
            this.gridColumn36.OptionsColumn.AllowFocus = false;
            this.gridColumn36.OptionsColumn.ReadOnly = true;
            this.gridColumn36.Visible = true;
            this.gridColumn36.VisibleIndex = 8;
            // 
            // grid
            // 
            this.grid.DataSource = this.goodsBalanceObjBindingSource;
            this.grid.Dock = System.Windows.Forms.DockStyle.Fill;
            gridLevelNode1.LevelTemplate = this.gridView1;
            gridLevelNode1.RelationName = "CommitList";
            this.grid.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
            gridLevelNode1});
            this.grid.Location = new System.Drawing.Point(0, 0);
            this.grid.MainView = this.gridView;
            this.grid.Name = "grid";
            this.grid.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemSpinEdit1,
            this.repositoryItemTextEdit1,
            this.repositoryItemTimeEdit2,
            this.repositoryItemImageComboBox1});
            this.grid.Size = new System.Drawing.Size(790, 428);
            this.grid.TabIndex = 0;
            this.grid.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridView,
            this.gridView1});
            // 
            // gridView
            // 
            this.gridView.Appearance.FocusedCell.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
            this.gridView.Appearance.FocusedCell.Options.UseBackColor = true;
            this.gridView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.colReqQuantity,
            this.colid,
            this.colGroup,
            this.colName,
            this.colPrice,
            this.colQuantityInPack,
            this.colOrdered,
            this.colMeasure,
            this.colQuantity,
            this.colSupplier,
            this.colCode,
            this.colDate,
            this.colBarcode,
            this.colReserved,
            this.colFreeBalance,
            this.colMinOrder,
            this.colRreqAssort,
            this.colForOrder,
            this.colAvgSell,
            this.colShopBalance,
            this.colQuota,
            this.colIsQuoted,
            this.colSelfImport,
            this.colFactQuantity,
            this.gridColumn1});
            styleFormatCondition1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            styleFormatCondition1.Appearance.Options.UseFont = true;
            styleFormatCondition1.ApplyToRow = true;
            styleFormatCondition1.Column = this.colRreqAssort;
            styleFormatCondition1.Condition = DevExpress.XtraGrid.FormatConditionEnum.Equal;
            styleFormatCondition1.Value1 = true;
            styleFormatCondition2.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            styleFormatCondition2.Appearance.Options.UseBackColor = true;
            styleFormatCondition2.Column = this.colQuota;
            styleFormatCondition2.Condition = DevExpress.XtraGrid.FormatConditionEnum.Expression;
            styleFormatCondition2.Expression = "[IsQuoted] == True";
            styleFormatCondition3.Appearance.ForeColor = System.Drawing.Color.Silver;
            styleFormatCondition3.Appearance.Options.UseForeColor = true;
            styleFormatCondition3.Column = this.colQuota;
            styleFormatCondition3.Condition = DevExpress.XtraGrid.FormatConditionEnum.Expression;
            styleFormatCondition3.Expression = "[IsQuoted] == False";
            styleFormatCondition4.Appearance.ForeColor = System.Drawing.Color.Blue;
            styleFormatCondition4.Appearance.Options.UseForeColor = true;
            styleFormatCondition4.ApplyToRow = true;
            styleFormatCondition4.Column = this.colSelfImport;
            styleFormatCondition4.Condition = DevExpress.XtraGrid.FormatConditionEnum.Expression;
            styleFormatCondition4.Expression = "[SelfImport]==True";
            this.gridView.FormatConditions.AddRange(new DevExpress.XtraGrid.StyleFormatCondition[] {
            styleFormatCondition1,
            styleFormatCondition2,
            styleFormatCondition3,
            styleFormatCondition4});
            this.gridView.GridControl = this.grid;
            this.gridView.Name = "gridView";
            this.gridView.OptionsDetail.AllowZoomDetail = false;
            this.gridView.OptionsDetail.ShowDetailTabs = false;
            this.gridView.OptionsView.ShowAutoFilterRow = true;
            this.gridView.OptionsView.ShowFooter = true;
            this.gridView.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
            new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colRreqAssort, DevExpress.Data.ColumnSortOrder.Descending)});
            // 
            // colReqQuantity
            // 
            this.colReqQuantity.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            this.colReqQuantity.AppearanceCell.Options.UseBackColor = true;
            this.colReqQuantity.Caption = "Заказ";
            this.colReqQuantity.ColumnEdit = this.repositoryItemSpinEdit1;
            this.colReqQuantity.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
            this.colReqQuantity.FieldName = "ReqQuantity";
            this.colReqQuantity.MaxWidth = 100;
            this.colReqQuantity.MinWidth = 50;
            this.colReqQuantity.Name = "colReqQuantity";
            this.colReqQuantity.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
            this.colReqQuantity.Visible = true;
            this.colReqQuantity.VisibleIndex = 1;
            this.colReqQuantity.Width = 52;
            // 
            // repositoryItemSpinEdit1
            // 
            this.repositoryItemSpinEdit1.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
            this.repositoryItemSpinEdit1.AutoHeight = false;
            this.repositoryItemSpinEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", null, null, true)});
            this.repositoryItemSpinEdit1.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
            this.repositoryItemSpinEdit1.HideSelection = false;
            this.repositoryItemSpinEdit1.IsFloatValue = false;
            this.repositoryItemSpinEdit1.Mask.EditMask = "n";
            this.repositoryItemSpinEdit1.MaxValue = new decimal(new int[] {
            1000000,
            0,
            0,
            0});
            this.repositoryItemSpinEdit1.Name = "repositoryItemSpinEdit1";
            // 
            // colid
            // 
            this.colid.FieldName = "id";
            this.colid.Name = "colid";
            this.colid.OptionsColumn.AllowEdit = false;
            this.colid.OptionsColumn.AllowFocus = false;
            this.colid.OptionsColumn.ReadOnly = true;
            this.colid.Width = 27;
            // 
            // colGroup
            // 
            this.colGroup.Caption = "Группа товара";
            this.colGroup.FieldName = "Group";
            this.colGroup.Name = "colGroup";
            this.colGroup.OptionsColumn.AllowEdit = false;
            this.colGroup.OptionsColumn.AllowFocus = false;
            this.colGroup.OptionsColumn.ReadOnly = true;
            this.colGroup.Visible = true;
            this.colGroup.VisibleIndex = 9;
            this.colGroup.Width = 48;
            // 
            // colName
            // 
            this.colName.Caption = "Название";
            this.colName.FieldName = "Name";
            this.colName.Name = "colName";
            this.colName.OptionsColumn.AllowEdit = false;
            this.colName.OptionsColumn.AllowFocus = false;
            this.colName.OptionsColumn.ReadOnly = true;
            this.colName.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Count;
            this.colName.Visible = true;
            this.colName.VisibleIndex = 8;
            this.colName.Width = 46;
            // 
            // colPrice
            // 
            this.colPrice.Caption = "Цена";
            this.colPrice.FieldName = "Price";
            this.colPrice.Name = "colPrice";
            this.colPrice.OptionsColumn.AllowEdit = false;
            this.colPrice.OptionsColumn.AllowFocus = false;
            this.colPrice.OptionsColumn.ReadOnly = true;
            this.colPrice.Visible = true;
            this.colPrice.VisibleIndex = 10;
            this.colPrice.Width = 22;
            // 
            // colQuantityInPack
            // 
            this.colQuantityInPack.Caption = "Кол. в упаковке";
            this.colQuantityInPack.FieldName = "QuantityInPack";
            this.colQuantityInPack.Name = "colQuantityInPack";
            this.colQuantityInPack.OptionsColumn.AllowEdit = false;
            this.colQuantityInPack.OptionsColumn.AllowFocus = false;
            this.colQuantityInPack.OptionsColumn.ReadOnly = true;
            this.colQuantityInPack.Width = 27;
            // 
            // colOrdered
            // 
            this.colOrdered.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            this.colOrdered.AppearanceCell.Options.UseBackColor = true;
            this.colOrdered.Caption = "Резерв";
            this.colOrdered.FieldName = "Ordered";
            this.colOrdered.MaxWidth = 100;
            this.colOrdered.MinWidth = 50;
            this.colOrdered.Name = "colOrdered";
            this.colOrdered.OptionsColumn.AllowEdit = false;
            this.colOrdered.OptionsColumn.AllowFocus = false;
            this.colOrdered.OptionsColumn.ReadOnly = true;
            this.colOrdered.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
            this.colOrdered.Visible = true;
            this.colOrdered.VisibleIndex = 2;
            this.colOrdered.Width = 52;
            // 
            // colMeasure
            // 
            this.colMeasure.Caption = "Ед. изм. (шт/упак.)";
            this.colMeasure.FieldName = "Measure";
            this.colMeasure.Name = "colMeasure";
            this.colMeasure.OptionsColumn.AllowEdit = false;
            this.colMeasure.OptionsColumn.AllowFocus = false;
            this.colMeasure.OptionsColumn.ReadOnly = true;
            this.colMeasure.Visible = true;
            this.colMeasure.VisibleIndex = 11;
            this.colMeasure.Width = 22;
            // 
            // colQuantity
            // 
            this.colQuantity.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
            this.colQuantity.AppearanceCell.Options.UseBackColor = true;
            this.colQuantity.Caption = "Остаток";
            this.colQuantity.FieldName = "Quantity";
            this.colQuantity.MaxWidth = 100;
            this.colQuantity.MinWidth = 50;
            this.colQuantity.Name = "colQuantity";
            this.colQuantity.OptionsColumn.AllowEdit = false;
            this.colQuantity.OptionsColumn.AllowFocus = false;
            this.colQuantity.OptionsColumn.ReadOnly = true;
            this.colQuantity.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
            this.colQuantity.Width = 50;
            // 
            // colSupplier
            // 
            this.colSupplier.Caption = "Поставщик";
            this.colSupplier.FieldName = "Supplier";
            this.colSupplier.Name = "colSupplier";
            this.colSupplier.OptionsColumn.AllowEdit = false;
            this.colSupplier.OptionsColumn.AllowFocus = false;
            this.colSupplier.OptionsColumn.ReadOnly = true;
            this.colSupplier.Visible = true;
            this.colSupplier.VisibleIndex = 12;
            this.colSupplier.Width = 22;
            // 
            // colCode
            // 
            this.colCode.Caption = "Код товара";
            this.colCode.FieldName = "Code";
            this.colCode.Name = "colCode";
            this.colCode.OptionsColumn.AllowEdit = false;
            this.colCode.OptionsColumn.AllowFocus = false;
            this.colCode.OptionsColumn.ReadOnly = true;
            this.colCode.Width = 27;
            // 
            // colDate
            // 
            this.colDate.Caption = "Время";
            this.colDate.ColumnEdit = this.repositoryItemTimeEdit2;
            this.colDate.FieldName = "Date";
            this.colDate.Name = "colDate";
            this.colDate.OptionsColumn.AllowEdit = false;
            this.colDate.OptionsColumn.AllowFocus = false;
            this.colDate.OptionsColumn.ReadOnly = true;
            this.colDate.Visible = true;
            this.colDate.VisibleIndex = 13;
            this.colDate.Width = 22;
            // 
            // repositoryItemTimeEdit2
            // 
            this.repositoryItemTimeEdit2.AutoHeight = false;
            this.repositoryItemTimeEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.repositoryItemTimeEdit2.Name = "repositoryItemTimeEdit2";
            // 
            // colBarcode
            // 
            this.colBarcode.Caption = "Штрихкод";
            this.colBarcode.FieldName = "Barcode";
            this.colBarcode.Name = "colBarcode";
            this.colBarcode.OptionsColumn.AllowEdit = false;
            this.colBarcode.OptionsColumn.AllowFocus = false;
            this.colBarcode.OptionsColumn.ReadOnly = true;
            this.colBarcode.Visible = true;
            this.colBarcode.VisibleIndex = 14;
            this.colBarcode.Width = 78;
            // 
            // colReserved
            // 
            this.colReserved.FieldName = "Reserved";
            this.colReserved.Name = "colReserved";
            this.colReserved.OptionsColumn.AllowEdit = false;
            this.colReserved.OptionsColumn.AllowFocus = false;
            this.colReserved.OptionsColumn.ReadOnly = true;
            this.colReserved.Width = 27;
            // 
            // colFreeBalance
            // 
            this.colFreeBalance.FieldName = "FreeBalance";
            this.colFreeBalance.Name = "colFreeBalance";
            this.colFreeBalance.OptionsColumn.AllowEdit = false;
            this.colFreeBalance.OptionsColumn.AllowFocus = false;
            this.colFreeBalance.OptionsColumn.ReadOnly = true;
            this.colFreeBalance.Width = 33;
            // 
            // colMinOrder
            // 
            this.colMinOrder.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(130)))), ((int)(((byte)(160)))), ((int)(((byte)(240)))));
            this.colMinOrder.AppearanceCell.Options.UseBackColor = true;
            this.colMinOrder.Caption = "Минимальный заказ";
            this.colMinOrder.FieldName = "MinOrder";
            this.colMinOrder.MaxWidth = 100;
            this.colMinOrder.MinWidth = 50;
            this.colMinOrder.Name = "colMinOrder";
            this.colMinOrder.OptionsColumn.AllowEdit = false;
            this.colMinOrder.OptionsColumn.AllowFocus = false;
            this.colMinOrder.OptionsColumn.ReadOnly = true;
            this.colMinOrder.Visible = true;
            this.colMinOrder.VisibleIndex = 5;
            this.colMinOrder.Width = 52;
            // 
            // colRreqAssort
            // 
            this.colRreqAssort.Caption = "Обязательный ассортимент";
            this.colRreqAssort.FieldName = "RreqAssort";
            this.colRreqAssort.FilterMode = DevExpress.XtraGrid.ColumnFilterMode.DisplayText;
            this.colRreqAssort.MaxWidth = 60;
            this.colRreqAssort.Name = "colRreqAssort";
            this.colRreqAssort.OptionsColumn.AllowEdit = false;
            this.colRreqAssort.OptionsColumn.AllowFocus = false;
            this.colRreqAssort.OptionsColumn.ReadOnly = true;
            this.colRreqAssort.Visible = true;
            this.colRreqAssort.VisibleIndex = 15;
            this.colRreqAssort.Width = 20;
            // 
            // colForOrder
            // 
            this.colForOrder.Caption = "Рекомендовано";
            this.colForOrder.DisplayFormat.FormatString = "N00";
            this.colForOrder.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
            this.colForOrder.FieldName = "ForOrder";
            this.colForOrder.MaxWidth = 100;
            this.colForOrder.MinWidth = 50;
            this.colForOrder.Name = "colForOrder";
            this.colForOrder.OptionsColumn.AllowEdit = false;
            this.colForOrder.OptionsColumn.AllowFocus = false;
            this.colForOrder.OptionsColumn.ReadOnly = true;
            this.colForOrder.Visible = true;
            this.colForOrder.VisibleIndex = 4;
            this.colForOrder.Width = 52;
            // 
            // colAvgSell
            // 
            this.colAvgSell.Caption = "Средние продажи";
            this.colAvgSell.DisplayFormat.FormatString = "N00";
            this.colAvgSell.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
            this.colAvgSell.FieldName = "AvgSell";
            this.colAvgSell.Name = "colAvgSell";
            this.colAvgSell.OptionsColumn.AllowEdit = false;
            this.colAvgSell.OptionsColumn.AllowFocus = false;
            this.colAvgSell.OptionsColumn.ReadOnly = true;
            this.colAvgSell.Visible = true;
            this.colAvgSell.VisibleIndex = 7;
            this.colAvgSell.Width = 28;
            // 
            // colShopBalance
            // 
            this.colShopBalance.Caption = "Остатки магазина";
            this.colShopBalance.DisplayFormat.FormatString = "N00";
            this.colShopBalance.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
            this.colShopBalance.FieldName = "ShopBalance";
            this.colShopBalance.Name = "colShopBalance";
            this.colShopBalance.OptionsColumn.AllowEdit = false;
            this.colShopBalance.OptionsColumn.AllowFocus = false;
            this.colShopBalance.OptionsColumn.ReadOnly = true;
            this.colShopBalance.Visible = true;
            this.colShopBalance.VisibleIndex = 6;
            this.colShopBalance.Width = 28;
            // 
            // colQuota
            // 
            this.colQuota.Caption = "Квота заказа";
            this.colQuota.FieldName = "Quota";
            this.colQuota.Name = "colQuota";
            this.colQuota.OptionsColumn.AllowEdit = false;
            this.colQuota.OptionsColumn.AllowFocus = false;
            this.colQuota.OptionsColumn.ReadOnly = true;
            this.colQuota.Visible = true;
            this.colQuota.VisibleIndex = 16;
            this.colQuota.Width = 36;
            // 
            // colIsQuoted
            // 
            this.colIsQuoted.Caption = "Квота активна";
            this.colIsQuoted.FieldName = "IsQuoted";
            this.colIsQuoted.Name = "colIsQuoted";
            this.colIsQuoted.OptionsColumn.AllowEdit = false;
            this.colIsQuoted.OptionsColumn.AllowFocus = false;
            this.colIsQuoted.OptionsColumn.ReadOnly = true;
            this.colIsQuoted.Visible = true;
            this.colIsQuoted.VisibleIndex = 17;
            this.colIsQuoted.Width = 20;
            // 
            // colSelfImport
            // 
            this.colSelfImport.Caption = "Собственный импорт";
            this.colSelfImport.FieldName = "SelfImport";
            this.colSelfImport.Name = "colSelfImport";
            this.colSelfImport.OptionsColumn.AllowEdit = false;
            this.colSelfImport.OptionsColumn.AllowFocus = false;
            this.colSelfImport.OptionsColumn.ReadOnly = true;
            this.colSelfImport.Visible = true;
            this.colSelfImport.VisibleIndex = 18;
            this.colSelfImport.Width = 45;
            // 
            // colFactQuantity
            // 
            this.colFactQuantity.Caption = "Фактический заказ";
            this.colFactQuantity.DisplayFormat.FormatString = "{0:0.00}";
            this.colFactQuantity.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
            this.colFactQuantity.FieldName = "FactOrder";
            this.colFactQuantity.MaxWidth = 100;
            this.colFactQuantity.MinWidth = 50;
            this.colFactQuantity.Name = "colFactQuantity";
            this.colFactQuantity.OptionsColumn.AllowEdit = false;
            this.colFactQuantity.OptionsColumn.AllowFocus = false;
            this.colFactQuantity.OptionsColumn.ReadOnly = true;
            this.colFactQuantity.Visible = true;
            this.colFactQuantity.VisibleIndex = 3;
            // 
            // gridColumn1
            // 
            this.gridColumn1.Caption = "Статус";
            this.gridColumn1.ColumnEdit = this.repositoryItemImageComboBox1;
            this.gridColumn1.FieldName = "StateRow";
            this.gridColumn1.MaxWidth = 50;
            this.gridColumn1.MinWidth = 50;
            this.gridColumn1.Name = "gridColumn1";
            this.gridColumn1.OptionsColumn.AllowEdit = false;
            this.gridColumn1.OptionsColumn.AllowFocus = false;
            this.gridColumn1.OptionsColumn.ReadOnly = true;
            this.gridColumn1.UnboundType = DevExpress.Data.UnboundColumnType.Integer;
            this.gridColumn1.Visible = true;
            this.gridColumn1.VisibleIndex = 0;
            this.gridColumn1.Width = 50;
            // 
            // repositoryItemImageComboBox1
            // 
            this.repositoryItemImageComboBox1.AutoHeight = false;
            this.repositoryItemImageComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemImageComboBox1.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
            new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 0, 0),
            new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 1, 1),
            new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 2, 2)});
            this.repositoryItemImageComboBox1.Name = "repositoryItemImageComboBox1";
            this.repositoryItemImageComboBox1.SmallImages = this.ilState;
            // 
            // ilState
            // 
            this.ilState.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("ilState.ImageStream")));
            this.ilState.TransparentColor = System.Drawing.Color.Transparent;
            this.ilState.Images.SetKeyName(0, "check_7519.png");
            this.ilState.Images.SetKeyName(1, "add_5224.png");
            this.ilState.Images.SetKeyName(2, "delete_4774.png");
            // 
            // repositoryItemTextEdit1
            // 
            this.repositoryItemTextEdit1.AutoHeight = false;
            this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
            // 
            // actionContainerBarItem4
            // 
            this.actionContainerBarItem4.ApplicationMenuIndex = 10;
            this.actionContainerBarItem4.ApplicationMenuItem = true;
            this.actionContainerBarItem4.Caption = "Export";
            this.actionContainerBarItem4.ContainerId = "Export";
            this.actionContainerBarItem4.Id = 7;
            this.actionContainerBarItem4.MergeType = DevExpress.XtraBars.BarMenuMerge.MergeItems;
            this.actionContainerBarItem4.Name = "actionContainerBarItem4";
            this.actionContainerBarItem4.TargetPageCategoryColor = System.Drawing.Color.Empty;
            this.actionContainerBarItem4.TargetPageGroupCaption = null;
            // 
            // actionContainerBarItem3
            // 
            this.actionContainerBarItem3.ApplicationMenuIndex = 11;
            this.actionContainerBarItem3.ApplicationMenuItem = true;
            this.actionContainerBarItem3.Caption = "Print";
            this.actionContainerBarItem3.ContainerId = "Print";
            this.actionContainerBarItem3.Id = 6;
            this.actionContainerBarItem3.MergeType = DevExpress.XtraBars.BarMenuMerge.MergeItems;
            this.actionContainerBarItem3.Name = "actionContainerBarItem3";
            this.actionContainerBarItem3.TargetPageCategoryColor = System.Drawing.Color.Empty;
            this.actionContainerBarItem3.TargetPageGroupCaption = null;
            // 
            // actionContainerBarItem10
            // 
            this.actionContainerBarItem10.ApplicationMenuIndex = 900;
            this.actionContainerBarItem10.ApplicationMenuItem = true;
            this.actionContainerBarItem10.Caption = "Exit";
            this.actionContainerBarItem10.ContainerId = "Exit";
            this.actionContainerBarItem10.Id = 8;
            this.actionContainerBarItem10.MergeOrder = 900;
            this.actionContainerBarItem10.Name = "actionContainerBarItem10";
            this.actionContainerBarItem10.TargetPageCategoryColor = System.Drawing.Color.Empty;
            this.actionContainerBarItem10.TargetPageGroupCaption = null;
            // 
            // actionContainerBarItem5
            // 
            this.actionContainerBarItem5.ApplicationMenuIndex = 7;
            this.actionContainerBarItem5.ApplicationMenuItem = true;
            this.actionContainerBarItem5.Caption = "Save";
            this.actionContainerBarItem5.ContainerId = "Save";
            this.actionContainerBarItem5.Id = 8;
            this.actionContainerBarItem5.MergeType = DevExpress.XtraBars.BarMenuMerge.MergeItems;
            this.actionContainerBarItem5.Name = "actionContainerBarItem5";
            this.actionContainerBarItem5.TargetPageCategoryColor = System.Drawing.Color.Empty;
            this.actionContainerBarItem5.TargetPageGroupCaption = null;
            // 
            // mainMenuItem2
            // 
            this.mainMenuItem2.Caption = "Edit";
            this.mainMenuItem2.Id = 1;
            this.mainMenuItem2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.actionContainerBarItem8, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.actionContainerBarItem6, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.actionContainerBarItem11, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.actionContainerBarItem7, true)});
            this.mainMenuItem2.MergeType = DevExpress.XtraBars.BarMenuMerge.MergeItems;
            this.mainMenuItem2.Name = "mainMenuItem2";
            this.mainMenuItem2.VisibleInRibbon = false;
            // 
            // actionContainerBarItem8
            // 
            this.actionContainerBarItem8.Caption = "UndoRedo";
            this.actionContainerBarItem8.ContainerId = "UndoRedo";
            this.actionContainerBarItem8.Id = 10;
            this.actionContainerBarItem8.MergeType = DevExpress.XtraBars.BarMenuMerge.MergeItems;
            this.actionContainerBarItem8.Name = "actionContainerBarItem8";
            this.actionContainerBarItem8.TargetPageCategoryColor = System.Drawing.Color.Empty;
            this.actionContainerBarItem8.TargetPageGroupCaption = null;
            // 
            // actionContainerBarItem6
            // 
            this.actionContainerBarItem6.Caption = "Edit";
            this.actionContainerBarItem6.ContainerId = "Edit";
            this.actionContainerBarItem6.Id = 9;
            this.actionContainerBarItem6.MergeType = DevExpress.XtraBars.BarMenuMerge.MergeItems;
            this.actionContainerBarItem6.Name = "actionContainerBarItem6";
            this.actionContainerBarItem6.TargetPageCategoryColor = System.Drawing.Color.Empty;
            this.actionContainerBarItem6.TargetPageGroupCaption = null;
            // 
            // actionContainerBarItem11
            // 
            this.actionContainerBarItem11.Caption = "Record Edit";
            this.actionContainerBarItem11.ContainerId = "RecordEdit";
            this.actionContainerBarItem11.Id = 9;
            this.actionContainerBarItem11.MergeType = DevExpress.XtraBars.BarMenuMerge.MergeItems;
            this.actionContainerBarItem11.Name = "actionContainerBarItem11";
            this.actionContainerBarItem11.TargetPageCategoryColor = System.Drawing.Color.Empty;
            this.actionContainerBarItem11.TargetPageGroupCaption = null;
            // 
            // actionContainerBarItem7
            // 
            this.actionContainerBarItem7.Caption = "Open Object";
            this.actionContainerBarItem7.ContainerId = "OpenObject";
            this.actionContainerBarItem7.Id = 9;
            this.actionContainerBarItem7.MergeType = DevExpress.XtraBars.BarMenuMerge.MergeItems;
            this.actionContainerBarItem7.Name = "actionContainerBarItem7";
            this.actionContainerBarItem7.TargetPageCategoryColor = System.Drawing.Color.Empty;
            this.actionContainerBarItem7.TargetPageGroupCaption = null;
            // 
            // actionContainerBarItem1
            // 
            this.actionContainerBarItem1.ApplicationMenuIndex = 2;
            this.actionContainerBarItem1.ApplicationMenuItem = true;
            this.actionContainerBarItem1.Caption = "File";
            this.actionContainerBarItem1.ContainerId = "File";
            this.actionContainerBarItem1.Id = 5;
            this.actionContainerBarItem1.MergeOrder = 2;
            this.actionContainerBarItem1.MergeType = DevExpress.XtraBars.BarMenuMerge.MergeItems;
            this.actionContainerBarItem1.Name = "actionContainerBarItem1";
            this.actionContainerBarItem1.TargetPageCategoryColor = System.Drawing.Color.Empty;
            this.actionContainerBarItem1.TargetPageGroupCaption = null;
            // 
            // barButtonItem4
            // 
            this.barButtonItem4.Caption = "Всему ассортименту";
            this.barButtonItem4.Enabled = false;
            this.barButtonItem4.Id = 17;
            this.barButtonItem4.Name = "barButtonItem4";
            // 
            // actionContainerBarItem2
            // 
            this.actionContainerBarItem2.ApplicationMenuIndex = 1;
            this.actionContainerBarItem2.ApplicationMenuItem = true;
            this.actionContainerBarItem2.Caption = "Objects Creation";
            this.actionContainerBarItem2.ContainerId = "ObjectsCreation";
            this.actionContainerBarItem2.Id = 18;
            this.actionContainerBarItem2.MergeType = DevExpress.XtraBars.BarMenuMerge.MergeItems;
            this.actionContainerBarItem2.Name = "actionContainerBarItem2";
            this.actionContainerBarItem2.TargetPageCategoryColor = System.Drawing.Color.Empty;
            this.actionContainerBarItem2.TargetPageGroupCaption = null;
            // 
            // barDockControlLeft
            // 
            this.barDockControlLeft.CausesValidation = false;
            this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
            this.barDockControlLeft.Location = new System.Drawing.Point(0, 47);
            this.barDockControlLeft.Size = new System.Drawing.Size(0, 428);
            // 
            // barButtonItem1
            // 
            this.barButtonItem1.Caption = "Обязательному ассортименту";
            this.barButtonItem1.Enabled = false;
            this.barButtonItem1.Id = 16;
            this.barButtonItem1.Name = "barButtonItem1";
            // 
            // mainMenuItem1
            // 
            this.mainMenuItem1.Caption = "File";
            this.mainMenuItem1.Id = 0;
            this.mainMenuItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.actionContainerBarItem2, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.actionContainerBarItem1, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.actionContainerBarItem5, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.actionContainerBarItem3, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.actionContainerBarItem4, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.actionContainerBarItem10, true)});
            this.mainMenuItem1.MergeType = DevExpress.XtraBars.BarMenuMerge.MergeItems;
            this.mainMenuItem1.Name = "mainMenuItem1";
            this.mainMenuItem1.VisibleInRibbon = false;
            // 
            // repositoryItemTimeEdit1
            // 
            this.repositoryItemTimeEdit1.AutoHeight = false;
            this.repositoryItemTimeEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.repositoryItemTimeEdit1.Name = "repositoryItemTimeEdit1";
            // 
            // barDockControlRight
            // 
            this.barDockControlRight.CausesValidation = false;
            this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
            this.barDockControlRight.Location = new System.Drawing.Point(1020, 47);
            this.barDockControlRight.Size = new System.Drawing.Size(0, 428);
            // 
            // mainMenuItem3
            // 
            this.mainMenuItem3.Caption = "View";
            this.mainMenuItem3.Id = 2;
            this.mainMenuItem3.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.actionContainerBarItem13, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.actionContainerMenuBarItem3, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.actionContainerBarItem12, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.actionContainerBarItem17, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.actionContainerBarItem9, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.actionContainerBarItem18, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.actionContainerBarItem14, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.actionContainerBarItem16, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.actionContainerBarItem15, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.actionContainerMenuBarItem1, true)});
            this.mainMenuItem3.MergeType = DevExpress.XtraBars.BarMenuMerge.MergeItems;
            this.mainMenuItem3.Name = "mainMenuItem3";
            // 
            // barSubItem1
            // 
            this.barSubItem1.Caption = "Panels";
            this.barSubItem1.Id = 35;
            this.barSubItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.actionContainerMenuBarItem7, true)});
            this.barSubItem1.Name = "barSubItem1";
            // 
            // actionContainerMenuBarItem7
            // 
            this.actionContainerMenuBarItem7.Caption = "Panels";
            this.actionContainerMenuBarItem7.ContainerId = "Panels";
            this.actionContainerMenuBarItem7.Id = 16;
            this.actionContainerMenuBarItem7.MergeType = DevExpress.XtraBars.BarMenuMerge.MergeItems;
            this.actionContainerMenuBarItem7.Name = "actionContainerMenuBarItem7";
            this.actionContainerMenuBarItem7.TargetPageCaption = "View";
            this.actionContainerMenuBarItem7.TargetPageCategoryColor = System.Drawing.Color.Empty;
            this.actionContainerMenuBarItem7.TargetPageGroupCaption = null;
            // 
            // actionContainerBarItem13
            // 
            this.actionContainerBarItem13.Caption = "Views History Navigation";
            this.actionContainerBarItem13.ContainerId = "ViewsHistoryNavigation";
            this.actionContainerBarItem13.Id = 35;
            this.actionContainerBarItem13.MergeType = DevExpress.XtraBars.BarMenuMerge.MergeItems;
            this.actionContainerBarItem13.Name = "actionContainerBarItem13";
            this.actionContainerBarItem13.TargetPageCategoryColor = System.Drawing.Color.Empty;
            this.actionContainerBarItem13.TargetPageGroupCaption = null;
            // 
            // actionContainerMenuBarItem3
            // 
            this.actionContainerMenuBarItem3.Caption = "Navigation";
            this.actionContainerMenuBarItem3.ContainerId = "ViewsNavigation";
            this.actionContainerMenuBarItem3.Id = 14;
            this.actionContainerMenuBarItem3.MergeType = DevExpress.XtraBars.BarMenuMerge.MergeItems;
            this.actionContainerMenuBarItem3.Name = "actionContainerMenuBarItem3";
            this.actionContainerMenuBarItem3.TargetPageCategoryColor = System.Drawing.Color.Empty;
            this.actionContainerMenuBarItem3.TargetPageGroupCaption = null;
            // 
            // actionContainerBarItem12
            // 
            this.actionContainerBarItem12.Caption = "Records Navigation";
            this.actionContainerBarItem12.ContainerId = "RecordsNavigation";
            this.actionContainerBarItem12.Id = 10;
            this.actionContainerBarItem12.MergeType = DevExpress.XtraBars.BarMenuMerge.MergeItems;
            this.actionContainerBarItem12.Name = "actionContainerBarItem12";
            this.actionContainerBarItem12.TargetPageCategoryColor = System.Drawing.Color.Empty;
            this.actionContainerBarItem12.TargetPageGroupCaption = null;
            // 
            // actionContainerBarItem17
            // 
            this.actionContainerBarItem17.Caption = "View";
            this.actionContainerBarItem17.ContainerId = "View";
            this.actionContainerBarItem17.Id = 12;
            this.actionContainerBarItem17.MergeType = DevExpress.XtraBars.BarMenuMerge.MergeItems;
            this.actionContainerBarItem17.Name = "actionContainerBarItem17";
            this.actionContainerBarItem17.TargetPageCategoryColor = System.Drawing.Color.Empty;
            this.actionContainerBarItem17.TargetPageGroupCaption = null;
            // 
            // actionContainerBarItem9
            // 
            this.actionContainerBarItem9.ApplicationMenuIndex = 12;
            this.actionContainerBarItem9.ApplicationMenuItem = true;
            this.actionContainerBarItem9.Caption = "Reports";
            this.actionContainerBarItem9.ContainerId = "Reports";
            this.actionContainerBarItem9.Id = 11;
            this.actionContainerBarItem9.MergeType = DevExpress.XtraBars.BarMenuMerge.MergeItems;
            this.actionContainerBarItem9.Name = "actionContainerBarItem9";
            this.actionContainerBarItem9.TargetPageCategoryColor = System.Drawing.Color.Empty;
            this.actionContainerBarItem9.TargetPageGroupCaption = null;
            // 
            // actionContainerBarItem18
            // 
            this.actionContainerBarItem18.Caption = "Default";
            this.actionContainerBarItem18.ContainerId = "Default";
            this.actionContainerBarItem18.Id = 50;
            this.actionContainerBarItem18.MergeType = DevExpress.XtraBars.BarMenuMerge.MergeItems;
            this.actionContainerBarItem18.Name = "actionContainerBarItem18";
            this.actionContainerBarItem18.TargetPageCategoryColor = System.Drawing.Color.Empty;
            this.actionContainerBarItem18.TargetPageGroupCaption = null;
            // 
            // actionContainerBarItem14
            // 
            this.actionContainerBarItem14.Caption = "Search";
            this.actionContainerBarItem14.ContainerId = "Search";
            this.actionContainerBarItem14.Id = 11;
            this.actionContainerBarItem14.MergeType = DevExpress.XtraBars.BarMenuMerge.MergeItems;
            this.actionContainerBarItem14.Name = "actionContainerBarItem14";
            this.actionContainerBarItem14.TargetPageCategoryColor = System.Drawing.Color.Empty;
            this.actionContainerBarItem14.TargetPageGroupCaption = null;
            // 
            // actionContainerBarItem16
            // 
            this.actionContainerBarItem16.Caption = "Filters";
            this.actionContainerBarItem16.ContainerId = "Filters";
            this.actionContainerBarItem16.Id = 26;
            this.actionContainerBarItem16.MergeType = DevExpress.XtraBars.BarMenuMerge.MergeItems;
            this.actionContainerBarItem16.Name = "actionContainerBarItem16";
            this.actionContainerBarItem16.TargetPageCategoryColor = System.Drawing.Color.Empty;
            this.actionContainerBarItem16.TargetPageGroupCaption = null;
            // 
            // actionContainerBarItem15
            // 
            this.actionContainerBarItem15.Caption = "Full Text Search";
            this.actionContainerBarItem15.ContainerId = "FullTextSearch";
            this.actionContainerBarItem15.Id = 12;
            this.actionContainerBarItem15.MergeType = DevExpress.XtraBars.BarMenuMerge.MergeItems;
            this.actionContainerBarItem15.Name = "actionContainerBarItem15";
            this.actionContainerBarItem15.TargetPageCategoryColor = System.Drawing.Color.Empty;
            this.actionContainerBarItem15.TargetPageGroupCaption = null;
            // 
            // actionContainerMenuBarItem1
            // 
            this.actionContainerMenuBarItem1.Caption = "Appearance";
            this.actionContainerMenuBarItem1.ContainerId = "Appearance";
            this.actionContainerMenuBarItem1.Id = 9;
            this.actionContainerMenuBarItem1.MergeType = DevExpress.XtraBars.BarMenuMerge.MergeItems;
            this.actionContainerMenuBarItem1.Name = "actionContainerMenuBarItem1";
            this.actionContainerMenuBarItem1.TargetPageCategoryColor = System.Drawing.Color.Empty;
            this.actionContainerMenuBarItem1.TargetPageGroupCaption = null;
            // 
            // barDockControlBottom
            // 
            this.barDockControlBottom.CausesValidation = false;
            this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.barDockControlBottom.Location = new System.Drawing.Point(0, 475);
            this.barDockControlBottom.Size = new System.Drawing.Size(1020, 26);
            // 
            // 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(1020, 47);
            // 
            // barButtonItem2
            // 
            this.barButtonItem2.Caption = "Склад НТС";
            this.barButtonItem2.Glyph = global::ShopOrderCustom.Properties.Resources.package__3_;
            this.barButtonItem2.GroupIndex = 1;
            this.barButtonItem2.Id = 6;
            this.barButtonItem2.Name = "barButtonItem2";
            toolTipTitleItem1.Appearance.Image = global::ShopOrderCustom.Properties.Resources.filter;
            toolTipTitleItem1.Appearance.Options.UseImage = true;
            toolTipTitleItem1.Image = global::ShopOrderCustom.Properties.Resources.filter;
            toolTipTitleItem1.Text = "Фильтр склад НТС";
            toolTipItem1.LeftIndent = 6;
            toolTipItem1.Text = "Показыват товарные позиции НТС";
            superToolTip1.Items.Add(toolTipTitleItem1);
            superToolTip1.Items.Add(toolTipItem1);
            this.barButtonItem2.SuperTip = superToolTip1;
            // 
            // actionContainerMenuBarItem4
            // 
            this.actionContainerMenuBarItem4.Caption = "Diagnostic";
            this.actionContainerMenuBarItem4.ContainerId = "Diagnostic";
            this.actionContainerMenuBarItem4.Id = 16;
            this.actionContainerMenuBarItem4.MergeType = DevExpress.XtraBars.BarMenuMerge.MergeItems;
            this.actionContainerMenuBarItem4.Name = "actionContainerMenuBarItem4";
            this.actionContainerMenuBarItem4.TargetPageCategoryColor = System.Drawing.Color.Empty;
            this.actionContainerMenuBarItem4.TargetPageGroupCaption = null;
            // 
            // actionContainerMenuBarItem5
            // 
            this.actionContainerMenuBarItem5.Caption = "Options";
            this.actionContainerMenuBarItem5.ContainerId = "Options";
            this.actionContainerMenuBarItem5.Id = 14;
            this.actionContainerMenuBarItem5.MergeType = DevExpress.XtraBars.BarMenuMerge.MergeItems;
            this.actionContainerMenuBarItem5.Name = "actionContainerMenuBarItem5";
            this.actionContainerMenuBarItem5.TargetPageCategoryColor = System.Drawing.Color.Empty;
            this.actionContainerMenuBarItem5.TargetPageGroupCaption = null;
            // 
            // mainMenuItem5
            // 
            this.mainMenuItem5.Caption = "Help";
            this.mainMenuItem5.Id = 4;
            this.mainMenuItem5.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.actionContainerMenuBarItem6, true)});
            this.mainMenuItem5.MergeType = DevExpress.XtraBars.BarMenuMerge.MergeItems;
            this.mainMenuItem5.Name = "mainMenuItem5";
            this.mainMenuItem5.VisibleInRibbon = false;
            // 
            // actionContainerMenuBarItem6
            // 
            this.actionContainerMenuBarItem6.ApplicationMenuIndex = 15;
            this.actionContainerMenuBarItem6.ApplicationMenuItem = true;
            this.actionContainerMenuBarItem6.Caption = "About";
            this.actionContainerMenuBarItem6.ContainerId = "About";
            this.actionContainerMenuBarItem6.Id = 15;
            this.actionContainerMenuBarItem6.MergeType = DevExpress.XtraBars.BarMenuMerge.MergeItems;
            this.actionContainerMenuBarItem6.Name = "actionContainerMenuBarItem6";
            this.actionContainerMenuBarItem6.TargetPageCategoryColor = System.Drawing.Color.Empty;
            this.actionContainerMenuBarItem6.TargetPageGroupCaption = null;
            // 
            // actionContainerMenuBarItem2
            // 
            this.actionContainerMenuBarItem2.Caption = "Tools";
            this.actionContainerMenuBarItem2.ContainerId = "Tools";
            this.actionContainerMenuBarItem2.Id = 13;
            this.actionContainerMenuBarItem2.MergeType = DevExpress.XtraBars.BarMenuMerge.MergeItems;
            this.actionContainerMenuBarItem2.Name = "actionContainerMenuBarItem2";
            this.actionContainerMenuBarItem2.TargetPageCategoryColor = System.Drawing.Color.Empty;
            this.actionContainerMenuBarItem2.TargetPageGroupCaption = null;
            // 
            // mainMenuItem6
            // 
            this.mainMenuItem6.Caption = "Window";
            this.mainMenuItem6.Id = 32;
            this.mainMenuItem6.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.xafBarLinkContainerItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.actionContainerBarItem20, true)});
            this.mainMenuItem6.MergeType = DevExpress.XtraBars.BarMenuMerge.MergeItems;
            this.mainMenuItem6.Name = "mainMenuItem6";
            // 
            // xafBarLinkContainerItem1
            // 
            this.xafBarLinkContainerItem1.Caption = "Windows";
            this.xafBarLinkContainerItem1.Id = 16;
            this.xafBarLinkContainerItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barMdiChildrenListItem1)});
            this.xafBarLinkContainerItem1.MergeType = DevExpress.XtraBars.BarMenuMerge.MergeItems;
            this.xafBarLinkContainerItem1.Name = "xafBarLinkContainerItem1";
            this.xafBarLinkContainerItem1.TargetPageCaption = "View";
            this.xafBarLinkContainerItem1.TargetPageCategoryCaption = "";
            this.xafBarLinkContainerItem1.TargetPageCategoryColor = System.Drawing.Color.Empty;
            this.xafBarLinkContainerItem1.TargetPageGroupCaption = null;
            // 
            // barMdiChildrenListItem1
            // 
            this.barMdiChildrenListItem1.Caption = "Window List";
            this.barMdiChildrenListItem1.Id = 37;
            this.barMdiChildrenListItem1.Name = "barMdiChildrenListItem1";
            // 
            // actionContainerBarItem20
            // 
            this.actionContainerBarItem20.Caption = "Window";
            this.actionContainerBarItem20.ContainerId = "Windows";
            this.actionContainerBarItem20.Id = 34;
            this.actionContainerBarItem20.MergeType = DevExpress.XtraBars.BarMenuMerge.MergeItems;
            this.actionContainerBarItem20.Name = "actionContainerBarItem20";
            this.actionContainerBarItem20.TargetPageCaption = "View";
            this.actionContainerBarItem20.TargetPageCategoryColor = System.Drawing.Color.Empty;
            this.actionContainerBarItem20.TargetPageGroupCaption = null;
            // 
            // actionContainerBarItem19
            // 
            this.actionContainerBarItem19.Caption = "Menu";
            this.actionContainerBarItem19.ContainerId = "Menu";
            this.actionContainerBarItem19.Id = 7;
            this.actionContainerBarItem19.Name = "actionContainerBarItem19";
            this.actionContainerBarItem19.TargetPageCategoryColor = System.Drawing.Color.Empty;
            this.actionContainerBarItem19.TargetPageGroupCaption = null;
            // 
            // mainMenuItem4
            // 
            this.mainMenuItem4.Caption = "Tools";
            this.mainMenuItem4.Id = 3;
            this.mainMenuItem4.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.actionContainerMenuBarItem2, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.actionContainerMenuBarItem5, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.actionContainerMenuBarItem4, true)});
            this.mainMenuItem4.MergeType = DevExpress.XtraBars.BarMenuMerge.MergeItems;
            this.mainMenuItem4.Name = "mainMenuItem4";
            // 
            // bеForOrder
            // 
            this.bеForOrder.Caption = "Рекомендованный заказ";
            this.bеForOrder.Enabled = false;
            this.bеForOrder.Glyph = global::ShopOrderCustom.Properties.Resources.Order;
            this.bеForOrder.Id = 15;
            this.bеForOrder.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem1),
            new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.None, false, this.barButtonItem4, false)});
            this.bеForOrder.Name = "bеForOrder";
            // 
            // treeListColumn1
            // 
            this.treeListColumn1.Caption = "Заказы";
            this.treeListColumn1.FieldName = "Name";
            this.treeListColumn1.Name = "treeListColumn1";
            this.treeListColumn1.Visible = true;
            this.treeListColumn1.VisibleIndex = 0;
            // 
            // splitContainerControl1
            // 
            this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainerControl1.Location = new System.Drawing.Point(0, 47);
            this.splitContainerControl1.Name = "splitContainerControl1";
            this.splitContainerControl1.Panel1.Controls.Add(this.treeList);
            this.splitContainerControl1.Panel1.Text = "Panel1";
            this.splitContainerControl1.Panel2.Controls.Add(this.grid);
            this.splitContainerControl1.Panel2.Text = "Panel2";
            this.splitContainerControl1.Size = new System.Drawing.Size(1020, 428);
            this.splitContainerControl1.SplitterPosition = 225;
            this.splitContainerControl1.TabIndex = 4;
            this.splitContainerControl1.Text = "splitContainerControl1";
            // 
            // treeList
            // 
            this.treeList.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
            this.treeListColumn1});
            this.treeList.Dock = System.Windows.Forms.DockStyle.Fill;
            this.treeList.Location = new System.Drawing.Point(0, 0);
            this.treeList.Name = "treeList";
            this.treeList.OptionsBehavior.Editable = false;
            this.treeList.OptionsSelection.UseIndicatorForSelection = true;
            this.treeList.OptionsView.ShowHorzLines = false;
            this.treeList.OptionsView.ShowVertLines = false;
            this.treeList.Size = new System.Drawing.Size(225, 428);
            this.treeList.TabIndex = 0;
            this.treeList.AfterFocusNode += new DevExpress.XtraTreeList.NodeEventHandler(this.TreeListAfterFocusNode);
            this.treeList.CustomDrawNodeCell += new DevExpress.XtraTreeList.CustomDrawNodeCellEventHandler(this.TreeListCustomDrawNodeCell);
            // 
            // cdDateFilterItem
            // 
            this.cdDateFilterItem.AutoHeight = false;
            this.cdDateFilterItem.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.cdDateFilterItem.Name = "cdDateFilterItem";
            this.cdDateFilterItem.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            // 
            // cdDateFilter
            // 
            this.cdDateFilter.Caption = "Дата";
            this.cdDateFilter.Edit = this.cdDateFilterItem;
            this.cdDateFilter.EditValue = new System.DateTime(2011, 8, 17, 0, 0, 0, 0);
            this.cdDateFilter.Id = 14;
            this.cdDateFilter.Name = "cdDateFilter";
            this.cdDateFilter.Width = 89;
            this.cdDateFilter.EditValueChanged += new System.EventHandler(this.DateFilterChange);
            // 
            // btNewOrder
            // 
            this.btNewOrder.Caption = "Новый заказ";
            this.btNewOrder.CategoryGuid = new System.Guid("f4698afc-915d-46b6-b4ad-e497d23d7378");
            this.btNewOrder.Glyph = global::ShopOrderCustom.Properties.Resources.basket_put;
            this.btNewOrder.Id = 0;
            this.btNewOrder.Name = "btNewOrder";
            toolTipTitleItem2.Text = "Создание нового заказа";
            toolTipItem2.LeftIndent = 6;
            toolTipItem2.Text = "Создание нового заказа автоматически закроет все предыдущие заказы и их нельзя бу" +
                "дет редактировать";
            superToolTip2.Items.Add(toolTipTitleItem2);
            superToolTip2.Items.Add(toolTipItem2);
            this.btNewOrder.SuperTip = superToolTip2;
            this.btNewOrder.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.NewOrderClick);
            // 
            // xafBar3
            // 
            this.xafBar3.BarName = "Main Toolbar";
            this.xafBar3.DockCol = 0;
            this.xafBar3.DockRow = 0;
            this.xafBar3.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
            this.xafBar3.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.cdDateFilter, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
            new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.btNewOrder, "", true, true, true, 0, null, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
            new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.btCommit, "", true, true, true, 0, null, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
            new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barCheckNts, "", true, true, true, 0, null, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
            new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barCheck, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
            new DevExpress.XtraBars.LinkPersistInfo(this.barCheckCold),
            new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barButtonItem3, "", true, true, true, 0, null, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
            new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.btRefresh, "", true, true, true, 0, null, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph)});
            this.xafBar3.TargetPageCategoryColor = System.Drawing.Color.Empty;
            this.xafBar3.Text = "Main Toolbar";
            // 
            // btCommit
            // 
            this.btCommit.Caption = "Подтвердить";
            this.btCommit.Enabled = false;
            this.btCommit.Glyph = global::ShopOrderCustom.Properties.Resources.check;
            this.btCommit.Id = 8;
            this.btCommit.Name = "btCommit";
            toolTipTitleItem3.Text = "Подтвердить заказ";
            toolTipItem3.LeftIndent = 6;
            toolTipItem3.Text = "Подтверждение заказа закроет доступ для рдактирования заказа";
            superToolTip3.Items.Add(toolTipTitleItem3);
            superToolTip3.Items.Add(toolTipItem3);
            this.btCommit.SuperTip = superToolTip3;
            this.btCommit.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.CommitOrderClick);
            // 
            // barCheckNts
            // 
            this.barCheckNts.Caption = "Склад НТС";
            this.barCheckNts.Glyph = global::ShopOrderCustom.Properties.Resources.package__3_;
            this.barCheckNts.GroupIndex = 1;
            this.barCheckNts.Id = 9;
            this.barCheckNts.Name = "barCheckNts";
            toolTipTitleItem4.Appearance.Image = global::ShopOrderCustom.Properties.Resources.package__3_;
            toolTipTitleItem4.Appearance.Options.UseImage = true;
            toolTipTitleItem4.Image = global::ShopOrderCustom.Properties.Resources.package__3_;
            toolTipTitleItem4.Text = "Фильтр склад НТС";
            toolTipItem4.LeftIndent = 6;
            toolTipItem4.Text = "Показывает товарные позиции НТС";
            superToolTip4.Items.Add(toolTipTitleItem4);
            superToolTip4.Items.Add(toolTipItem4);
            this.barCheckNts.SuperTip = superToolTip4;
            this.barCheckNts.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
            this.barCheckNts.CheckedChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.BarCheckNtsCheckedChanged);
            // 
            // barCheck
            // 
            this.barCheck.Caption = "Склад аренды";
            this.barCheck.Glyph = global::ShopOrderCustom.Properties.Resources.drink_empty;
            this.barCheck.GroupIndex = 1;
            this.barCheck.Id = 10;
            this.barCheck.Name = "barCheck";
            toolTipTitleItem5.Appearance.Image = global::ShopOrderCustom.Properties.Resources.drink_empty;
            toolTipTitleItem5.Appearance.Options.UseImage = true;
            toolTipTitleItem5.Image = global::ShopOrderCustom.Properties.Resources.drink_empty;
            toolTipTitleItem5.Text = "Фильтр склад аренды";
            toolTipItem5.LeftIndent = 6;
            toolTipItem5.Text = "Показывает товарные позиции других поставщиков";
            superToolTip5.Items.Add(toolTipTitleItem5);
            superToolTip5.Items.Add(toolTipItem5);
            this.barCheck.SuperTip = superToolTip5;
            this.barCheck.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
            this.barCheck.CheckedChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.BarCheckCheckedChanged);
            // 
            // barCheckCold
            // 
            this.barCheckCold.Caption = "Холодный склад";
            this.barCheckCold.Checked = true;
            this.barCheckCold.Glyph = global::ShopOrderCustom.Properties.Resources.snow;
            this.barCheckCold.GroupIndex = 1;
            this.barCheckCold.Id = 19;
            this.barCheckCold.Name = "barCheckCold";
            this.barCheckCold.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            toolTipTitleItem6.Text = "Фильтр холодный склад НТС";
            toolTipItem6.LeftIndent = 6;
            toolTipItem6.Text = "Показывает товарные позиции холодного склада НТС";
            superToolTip6.Items.Add(toolTipTitleItem6);
            superToolTip6.Items.Add(toolTipItem6);
            this.barCheckCold.SuperTip = superToolTip6;
            this.barCheckCold.CheckedChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.BarCheckColdCheckedChanged);
            // 
            // barButtonItem3
            // 
            this.barButtonItem3.Caption = "Экспорт";
            this.barButtonItem3.Glyph = global::ShopOrderCustom.Properties.Resources.Excel_icon;
            this.barButtonItem3.Id = 12;
            this.barButtonItem3.Name = "barButtonItem3";
            toolTipTitleItem7.Appearance.Image = global::ShopOrderCustom.Properties.Resources.Excel_icon;
            toolTipTitleItem7.Appearance.Options.UseImage = true;
            toolTipTitleItem7.Image = global::ShopOrderCustom.Properties.Resources.Excel_icon;
            toolTipTitleItem7.Text = "Экспорт в Excel";
            toolTipItem7.LeftIndent = 6;
            toolTipItem7.Text = "Экспортировать текущий набор позиций в Excel";
            superToolTip7.Items.Add(toolTipTitleItem7);
            superToolTip7.Items.Add(toolTipItem7);
            this.barButtonItem3.SuperTip = superToolTip7;
            this.barButtonItem3.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.ExportExcelClick);
            // 
            // btRefresh
            // 
            this.btRefresh.Caption = "Обновить";
            this.btRefresh.Glyph = global::ShopOrderCustom.Properties.Resources.reload_all_tabs;
            this.btRefresh.Id = 11;
            this.btRefresh.Name = "btRefresh";
            this.btRefresh.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.BtRefreshItemClick);
            // 
            // xafBar2
            // 
            this.xafBar2.BarName = "StatusBar";
            this.xafBar2.CanDockStyle = DevExpress.XtraBars.BarCanDockStyle.Bottom;
            this.xafBar2.DockCol = 0;
            this.xafBar2.DockRow = 0;
            this.xafBar2.DockStyle = DevExpress.XtraBars.BarDockStyle.Bottom;
            this.xafBar2.OptionsBar.AllowQuickCustomization = false;
            this.xafBar2.OptionsBar.DrawDragBorder = false;
            this.xafBar2.OptionsBar.UseWholeRow = true;
            this.xafBar2.TargetPageCategoryColor = System.Drawing.Color.Empty;
            this.xafBar2.Text = "StatusBar";
            // 
            // BarManager
            // 
            this.BarManager.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
            this.xafBar2,
            this.xafBar3});
            this.BarManager.Categories.AddRange(new DevExpress.XtraBars.BarManagerCategory[] {
            new DevExpress.XtraBars.BarManagerCategory("Заказы", new System.Guid("f4698afc-915d-46b6-b4ad-e497d23d7378"))});
            this.BarManager.DockControls.Add(this.barDockControlTop);
            this.BarManager.DockControls.Add(this.barDockControlBottom);
            this.BarManager.DockControls.Add(this.barDockControlLeft);
            this.BarManager.DockControls.Add(this.barDockControlRight);
            this.BarManager.Form = this;
            this.BarManager.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.btNewOrder,
            this.barButtonItem2,
            this.btCommit,
            this.barCheckNts,
            this.barCheck,
            this.btRefresh,
            this.barButtonItem3,
            this.cdDateFilter,
            this.bеForOrder,
            this.barButtonItem1,
            this.barButtonItem4,
            this.barCheckCold});
            this.BarManager.MaxItemId = 20;
            this.BarManager.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemTimeEdit1,
            this.cdDateFilterItem});
            this.BarManager.StatusBar = this.xafBar2;
            // 
            // PreOrderForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1020, 501);
            this.Controls.Add(this.splitContainerControl1);
            this.Controls.Add(this.barDockControlLeft);
            this.Controls.Add(this.barDockControlRight);
            this.Controls.Add(this.barDockControlBottom);
            this.Controls.Add(this.barDockControlTop);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Name = "PreOrderForm";
            this.Text = "Создание кроссдокингового заказов";
            this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.CrossDocOrderFormClosed);
            ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.grid)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.goodsBalanceObjBindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTimeEdit2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTimeEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
            this.splitContainerControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.treeList)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cdDateFilterItem.VistaTimeProperties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cdDateFilterItem)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.BarManager)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.vGoodsBalanceOrderBindingSource)).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.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
			DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
			DevExpress.Utils.ToolTipItem toolTipItem1 = new DevExpress.Utils.ToolTipItem();
			DevExpress.Utils.SuperToolTip superToolTip2 = new DevExpress.Utils.SuperToolTip();
			DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2 = new DevExpress.Utils.ToolTipTitleItem();
			DevExpress.Utils.ToolTipItem toolTipItem2 = new DevExpress.Utils.ToolTipItem();
			DevExpress.Utils.SuperToolTip superToolTip3 = new DevExpress.Utils.SuperToolTip();
			DevExpress.Utils.ToolTipTitleItem toolTipTitleItem3 = new DevExpress.Utils.ToolTipTitleItem();
			DevExpress.Utils.ToolTipItem toolTipItem3 = new DevExpress.Utils.ToolTipItem();
			DevExpress.Utils.SuperToolTip superToolTip4 = new DevExpress.Utils.SuperToolTip();
			DevExpress.Utils.ToolTipTitleItem toolTipTitleItem4 = new DevExpress.Utils.ToolTipTitleItem();
			DevExpress.Utils.ToolTipItem toolTipItem4 = new DevExpress.Utils.ToolTipItem();
			DevExpress.Utils.SuperToolTip superToolTip5 = new DevExpress.Utils.SuperToolTip();
			DevExpress.Utils.ToolTipTitleItem toolTipTitleItem5 = new DevExpress.Utils.ToolTipTitleItem();
			DevExpress.Utils.ToolTipItem toolTipItem5 = new DevExpress.Utils.ToolTipItem();
			DevExpress.Utils.SuperToolTip superToolTip6 = new DevExpress.Utils.SuperToolTip();
			DevExpress.Utils.ToolTipTitleItem toolTipTitleItem6 = new DevExpress.Utils.ToolTipTitleItem();
			DevExpress.Utils.ToolTipItem toolTipItem6 = new DevExpress.Utils.ToolTipItem();
			DevExpress.Utils.SuperToolTip superToolTip7 = new DevExpress.Utils.SuperToolTip();
			DevExpress.Utils.ToolTipTitleItem toolTipTitleItem7 = new DevExpress.Utils.ToolTipTitleItem();
			DevExpress.Utils.ToolTipItem toolTipItem7 = new DevExpress.Utils.ToolTipItem();
			DevExpress.Utils.SuperToolTip superToolTip8 = new DevExpress.Utils.SuperToolTip();
			DevExpress.Utils.ToolTipTitleItem toolTipTitleItem8 = new DevExpress.Utils.ToolTipTitleItem();
			DevExpress.Utils.ToolTipItem toolTipItem8 = new DevExpress.Utils.ToolTipItem();
			this.barManager = new DevExpress.XtraBars.BarManager(this.components);
			this.barOperations = new DevExpress.XtraBars.Bar();
			this.barLargeButtonItemOpen = new DevExpress.XtraBars.BarLargeButtonItem();
			this.barLargeButtonItemInsert = new DevExpress.XtraBars.BarLargeButtonItem();
			this.barLargeButtonItemSave = new DevExpress.XtraBars.BarLargeButtonItem();
			this.barLargeButtonItemEmail = new DevExpress.XtraBars.BarLargeButtonItem();
			this.barLargeButtonItemPrint = new DevExpress.XtraBars.BarLargeButtonItem();
			this.barLargeButtonItemSettings = new DevExpress.XtraBars.BarLargeButtonItem();
			this.barLargeButtonItemHelp = new DevExpress.XtraBars.BarLargeButtonItem();
			this.barLargeButtonItemExit = new DevExpress.XtraBars.BarLargeButtonItem();
			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.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
			this.pnPreview = new System.Windows.Forms.Panel();
			((System.ComponentModel.ISupportInitialize)(this.barManager)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
			this.SuspendLayout();
			// 
			// barManager
			// 
			this.barManager.AllowCustomization = false;
			this.barManager.AllowItemAnimatedHighlighting = false;
			this.barManager.AllowMoveBarOnToolbar = false;
			this.barManager.AllowQuickCustomization = false;
			this.barManager.AllowShowToolbarsPopup = false;
			this.barManager.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
            this.barOperations});
			this.barManager.DockControls.Add(this.barDockControlTop);
			this.barManager.DockControls.Add(this.barDockControlBottom);
			this.barManager.DockControls.Add(this.barDockControlLeft);
			this.barManager.DockControls.Add(this.barDockControlRight);
			this.barManager.Form = this;
			this.barManager.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.barLargeButtonItemOpen,
            this.barLargeButtonItemSave,
            this.barLargeButtonItemEmail,
            this.barLargeButtonItemPrint,
            this.barLargeButtonItemHelp,
            this.barLargeButtonItemExit,
            this.barLargeButtonItemInsert,
            this.barLargeButtonItemSettings});
			this.barManager.MaxItemId = 15;
			this.barManager.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemTextEdit1});
			// 
			// barOperations
			// 
			this.barOperations.BarName = "Tools";
			this.barOperations.CanDockStyle = DevExpress.XtraBars.BarCanDockStyle.Top;
			this.barOperations.DockCol = 0;
			this.barOperations.DockRow = 0;
			this.barOperations.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
			this.barOperations.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barLargeButtonItemOpen, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
            new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barLargeButtonItemInsert, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
            new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barLargeButtonItemSave, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
            new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barLargeButtonItemEmail, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
            new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barLargeButtonItemPrint, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
            new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barLargeButtonItemSettings, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
            new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barLargeButtonItemHelp, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
            new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barLargeButtonItemExit, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph)});
			this.barOperations.OptionsBar.AllowQuickCustomization = false;
			this.barOperations.OptionsBar.DisableClose = true;
			this.barOperations.OptionsBar.DisableCustomization = true;
			this.barOperations.OptionsBar.DrawDragBorder = false;
			this.barOperations.OptionsBar.UseWholeRow = true;
			this.barOperations.Text = "Tools";
			// 
			// barLargeButtonItemOpen
			// 
			this.barLargeButtonItemOpen.Border = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
			this.barLargeButtonItemOpen.Caption = "Open";
			this.barLargeButtonItemOpen.Glyph = global::SalesLibraries.SalesDepot.Properties.Resources.QuickViewOpen;
			this.barLargeButtonItemOpen.Id = 1;
			this.barLargeButtonItemOpen.Name = "barLargeButtonItemOpen";
			toolTipTitleItem1.Text = "Open";
			toolTipItem1.LeftIndent = 6;
			toolTipItem1.Text = "Open a copy of this file";
			superToolTip1.Items.Add(toolTipTitleItem1);
			superToolTip1.Items.Add(toolTipItem1);
			this.barLargeButtonItemOpen.SuperTip = superToolTip1;
			this.barLargeButtonItemOpen.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemOpenLink_ItemClick);
			// 
			// barLargeButtonItemInsert
			// 
			this.barLargeButtonItemInsert.Border = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
			this.barLargeButtonItemInsert.Caption = "Insert";
			this.barLargeButtonItemInsert.Glyph = global::SalesLibraries.SalesDepot.Properties.Resources.QuickViewAdd;
			this.barLargeButtonItemInsert.Id = 11;
			this.barLargeButtonItemInsert.Name = "barLargeButtonItemInsert";
			toolTipTitleItem2.Text = "Insert this video";
			toolTipItem2.LeftIndent = 6;
			toolTipItem2.Text = "Insert this video file to presentation";
			superToolTip2.Items.Add(toolTipTitleItem2);
			superToolTip2.Items.Add(toolTipItem2);
			this.barLargeButtonItemInsert.SuperTip = superToolTip2;
			this.barLargeButtonItemInsert.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barLargeButtonItemInsert_ItemClick);
			// 
			// barLargeButtonItemSave
			// 
			this.barLargeButtonItemSave.Border = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
			this.barLargeButtonItemSave.Caption = "Save";
			this.barLargeButtonItemSave.Glyph = global::SalesLibraries.SalesDepot.Properties.Resources.QuickViewSave;
			this.barLargeButtonItemSave.Id = 2;
			this.barLargeButtonItemSave.Name = "barLargeButtonItemSave";
			toolTipTitleItem3.Text = "Save";
			toolTipItem3.LeftIndent = 6;
			toolTipItem3.Text = "Save a copy of this file";
			superToolTip3.Items.Add(toolTipTitleItem3);
			superToolTip3.Items.Add(toolTipItem3);
			this.barLargeButtonItemSave.SuperTip = superToolTip3;
			this.barLargeButtonItemSave.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemSave_ItemClick);
			// 
			// barLargeButtonItemEmail
			// 
			this.barLargeButtonItemEmail.Border = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
			this.barLargeButtonItemEmail.Caption = "Email";
			this.barLargeButtonItemEmail.Glyph = global::SalesLibraries.SalesDepot.Properties.Resources.QuickViewEmail;
			this.barLargeButtonItemEmail.Id = 4;
			this.barLargeButtonItemEmail.Name = "barLargeButtonItemEmail";
			toolTipTitleItem4.Text = "Email this file";
			toolTipItem4.LeftIndent = 6;
			toolTipItem4.Text = "Attach this file to an email and send it";
			superToolTip4.Items.Add(toolTipTitleItem4);
			superToolTip4.Items.Add(toolTipItem4);
			this.barLargeButtonItemEmail.SuperTip = superToolTip4;
			this.barLargeButtonItemEmail.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemEmailLink_ItemClick);
			// 
			// barLargeButtonItemPrint
			// 
			this.barLargeButtonItemPrint.Border = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
			this.barLargeButtonItemPrint.Caption = "Print";
			this.barLargeButtonItemPrint.Glyph = global::SalesLibraries.SalesDepot.Properties.Resources.QuickViewPrint;
			this.barLargeButtonItemPrint.Id = 5;
			this.barLargeButtonItemPrint.Name = "barLargeButtonItemPrint";
			toolTipTitleItem5.Text = "Print";
			toolTipItem5.LeftIndent = 6;
			toolTipItem5.Text = "Print this PowerPoint file";
			superToolTip5.Items.Add(toolTipTitleItem5);
			superToolTip5.Items.Add(toolTipItem5);
			this.barLargeButtonItemPrint.SuperTip = superToolTip5;
			this.barLargeButtonItemPrint.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemPrintLink_ItemClick);
			// 
			// barLargeButtonItemSettings
			// 
			this.barLargeButtonItemSettings.Border = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
			this.barLargeButtonItemSettings.Caption = "Settings";
			this.barLargeButtonItemSettings.Glyph = global::SalesLibraries.SalesDepot.Properties.Resources.QuickViewUserSettings;
			this.barLargeButtonItemSettings.Id = 14;
			this.barLargeButtonItemSettings.Name = "barLargeButtonItemSettings";
			toolTipTitleItem6.Text = "Settings";
			toolTipItem6.LeftIndent = 6;
			toolTipItem6.Text = "Set Locations for Open File and Save File operations";
			superToolTip6.Items.Add(toolTipTitleItem6);
			superToolTip6.Items.Add(toolTipItem6);
			this.barLargeButtonItemSettings.SuperTip = superToolTip6;
			this.barLargeButtonItemSettings.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barLargeButtonItemSettings_ItemClick);
			// 
			// barLargeButtonItemHelp
			// 
			this.barLargeButtonItemHelp.Border = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
			this.barLargeButtonItemHelp.Caption = "Help";
			this.barLargeButtonItemHelp.Glyph = global::SalesLibraries.SalesDepot.Properties.Resources.Help;
			this.barLargeButtonItemHelp.Id = 6;
			this.barLargeButtonItemHelp.Name = "barLargeButtonItemHelp";
			toolTipTitleItem7.Text = "Help";
			toolTipItem7.LeftIndent = 6;
			toolTipItem7.Text = "Learn more about how to use QuickView";
			superToolTip7.Items.Add(toolTipTitleItem7);
			superToolTip7.Items.Add(toolTipItem7);
			this.barLargeButtonItemHelp.SuperTip = superToolTip7;
			this.barLargeButtonItemHelp.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barLargeButtonItemHelp_ItemClick);
			// 
			// barLargeButtonItemExit
			// 
			this.barLargeButtonItemExit.Border = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
			this.barLargeButtonItemExit.Caption = "Exit";
			this.barLargeButtonItemExit.Glyph = global::SalesLibraries.SalesDepot.Properties.Resources.Exit;
			this.barLargeButtonItemExit.Id = 7;
			this.barLargeButtonItemExit.Name = "barLargeButtonItemExit";
			toolTipTitleItem8.Text = "Exit";
			toolTipItem8.LeftIndent = 6;
			toolTipItem8.Text = "Close QuickView and return to the Sales Library";
			superToolTip8.Items.Add(toolTipTitleItem8);
			superToolTip8.Items.Add(toolTipItem8);
			this.barLargeButtonItemExit.SuperTip = superToolTip8;
			this.barLargeButtonItemExit.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barLargeButtonItemExit_ItemClick);
			// 
			// barDockControlTop
			// 
			this.barDockControlTop.CausesValidation = false;
			this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
			this.barDockControlTop.ForeColor = System.Drawing.Color.Black;
			this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
			this.barDockControlTop.Size = new System.Drawing.Size(934, 106);
			// 
			// barDockControlBottom
			// 
			this.barDockControlBottom.CausesValidation = false;
			this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
			this.barDockControlBottom.ForeColor = System.Drawing.Color.Black;
			this.barDockControlBottom.Location = new System.Drawing.Point(0, 562);
			this.barDockControlBottom.Size = new System.Drawing.Size(934, 0);
			// 
			// barDockControlLeft
			// 
			this.barDockControlLeft.CausesValidation = false;
			this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
			this.barDockControlLeft.ForeColor = System.Drawing.Color.Black;
			this.barDockControlLeft.Location = new System.Drawing.Point(0, 106);
			this.barDockControlLeft.Size = new System.Drawing.Size(0, 456);
			// 
			// barDockControlRight
			// 
			this.barDockControlRight.CausesValidation = false;
			this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
			this.barDockControlRight.ForeColor = System.Drawing.Color.Black;
			this.barDockControlRight.Location = new System.Drawing.Point(934, 106);
			this.barDockControlRight.Size = new System.Drawing.Size(0, 456);
			// 
			// repositoryItemTextEdit1
			// 
			this.repositoryItemTextEdit1.AutoHeight = false;
			this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
			// 
			// pnPreview
			// 
			this.pnPreview.BackColor = System.Drawing.Color.Transparent;
			this.pnPreview.Dock = System.Windows.Forms.DockStyle.Fill;
			this.pnPreview.ForeColor = System.Drawing.Color.Black;
			this.pnPreview.Location = new System.Drawing.Point(0, 106);
			this.pnPreview.Name = "pnPreview";
			this.pnPreview.Size = new System.Drawing.Size(934, 456);
			this.pnPreview.TabIndex = 10;
			// 
			// FormLinkPreview
			// 
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
			this.BackColor = System.Drawing.Color.White;
			this.ClientSize = new System.Drawing.Size(934, 562);
			this.Controls.Add(this.pnPreview);
			this.Controls.Add(this.barDockControlLeft);
			this.Controls.Add(this.barDockControlRight);
			this.Controls.Add(this.barDockControlBottom);
			this.Controls.Add(this.barDockControlTop);
			this.DoubleBuffered = true;
			this.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			this.Name = "FormLinkPreview";
			this.ShowIcon = false;
			this.ShowInTaskbar = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "QuickView";
			this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.FormLinkPreview_FormClosed);
			this.Shown += new System.EventHandler(this.FormQuickView_Shown);
			((System.ComponentModel.ISupportInitialize)(this.barManager)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).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() {
			DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
			DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
			DevExpress.Utils.ToolTipItem toolTipItem1 = new DevExpress.Utils.ToolTipItem();
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(EntryForm));
			DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject2 = new DevExpress.Utils.SerializableAppearanceObject();
			DevExpress.Utils.SuperToolTip superToolTip2 = new DevExpress.Utils.SuperToolTip();
			DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
			DevExpress.Utils.ToolTipItem toolTipItem2 = new DevExpress.Utils.ToolTipItem();
			this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
			this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
			this.save = new DevExpress.XtraEditors.SimpleButton();
			this.cancel = new DevExpress.XtraEditors.SimpleButton();
			this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
			this.summaryLabel = new DevExpress.XtraEditors.LabelControl();
			this.personSelector = new ShomreiTorah.Data.UI.Controls.PersonSelector();
			this.entryGrid = new ShomreiTorah.Billing.Events.Auctions.EntryGrid();
			this.groupSelector = new ShomreiTorah.Billing.Events.Auctions.AuctionGroupSelector();
			((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
			this.panelControl1.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.personSelector.Properties)).BeginInit();
			this.SuspendLayout();
			// 
			// panelControl1
			// 
			this.panelControl1.Controls.Add(this.labelControl2);
			this.panelControl1.Controls.Add(this.save);
			this.panelControl1.Controls.Add(this.cancel);
			this.panelControl1.Dock = System.Windows.Forms.DockStyle.Bottom;
			this.panelControl1.Location = new System.Drawing.Point(0, 584);
			this.panelControl1.Name = "panelControl1";
			this.panelControl1.Size = new System.Drawing.Size(621, 41);
			this.panelControl1.TabIndex = 3;
			// 
			// labelControl2
			// 
			this.labelControl2.Appearance.Font = new System.Drawing.Font("Larissa", 21F);
			this.labelControl2.Appearance.ForeColor = System.Drawing.Color.Purple;
			this.labelControl2.Dock = System.Windows.Forms.DockStyle.Left;
			this.labelControl2.Location = new System.Drawing.Point(2, 2);
			this.labelControl2.Margin = new System.Windows.Forms.Padding(0);
			this.labelControl2.Name = "labelControl2";
			this.labelControl2.Padding = new System.Windows.Forms.Padding(5, 0, 0, 0);
			this.labelControl2.Size = new System.Drawing.Size(170, 37);
			this.labelControl2.TabIndex = 2;
			this.labelControl2.Text = "Happy Birthday!";
			// 
			// save
			// 
			this.save.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
			this.save.Location = new System.Drawing.Point(416, 6);
			this.save.Name = "save";
			this.save.Size = new System.Drawing.Size(87, 23);
			this.save.TabIndex = 0;
			this.save.Text = "Apply Changes";
			this.save.Click += new System.EventHandler(this.save_Click);
			// 
			// cancel
			// 
			this.cancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
			this.cancel.Location = new System.Drawing.Point(509, 6);
			this.cancel.Name = "cancel";
			this.cancel.Size = new System.Drawing.Size(100, 23);
			this.cancel.TabIndex = 1;
			this.cancel.Text = "Discard Changes";
			this.cancel.Click += new System.EventHandler(this.cancel_Click);
			// 
			// labelControl1
			// 
			this.labelControl1.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.labelControl1.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
			this.labelControl1.Dock = System.Windows.Forms.DockStyle.Fill;
			this.labelControl1.Location = new System.Drawing.Point(0, 63);
			this.labelControl1.Name = "labelControl1";
			this.labelControl1.Size = new System.Drawing.Size(621, 521);
			this.labelControl1.TabIndex = 4;
			this.labelControl1.Text = "Please select a person";
			// 
			// summaryLabel
			// 
			this.summaryLabel.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Vertical;
			this.summaryLabel.Dock = System.Windows.Forms.DockStyle.Top;
			this.summaryLabel.Location = new System.Drawing.Point(0, 40);
			this.summaryLabel.Name = "summaryLabel";
			this.summaryLabel.Padding = new System.Windows.Forms.Padding(5);
			this.summaryLabel.Size = new System.Drawing.Size(621, 23);
			this.summaryLabel.TabIndex = 5;
			this.summaryLabel.Text = "a&b&c";
			this.summaryLabel.UseMnemonic = false;
			// 
			// personSelector
			// 
			this.personSelector.Dock = System.Windows.Forms.DockStyle.Top;
			this.personSelector.Location = new System.Drawing.Point(0, 0);
			this.personSelector.Name = "personSelector";
			toolTipItem1.Text = "Click to select a person";
			superToolTip1.Items.Add(toolTipItem1);
			toolTipTitleItem1.Text = "New Person...";
			toolTipItem2.Text = "Adds a new person to the master directory";
			superToolTip2.Items.Add(toolTipTitleItem1);
			superToolTip2.Items.Add(toolTipItem2);
			this.personSelector.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", null, superToolTip1, true),
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "New person...", 90, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleLeft, ((System.Drawing.Image)(resources.GetObject("personSelector.Properties.Buttons"))), new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject2, "", null, superToolTip2, true)});
			this.personSelector.Size = new System.Drawing.Size(621, 20);
			this.personSelector.TabIndex = 0;
			this.personSelector.ButtonPressed += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.personSelector_ButtonPressed);
			this.personSelector.EditValueChanged += new System.EventHandler(this.personSelector_EditValueChanged);
			// 
			// entryGrid
			// 
			this.entryGrid.Dock = System.Windows.Forms.DockStyle.Fill;
			this.entryGrid.Location = new System.Drawing.Point(0, 63);
			this.entryGrid.Name = "entryGrid";
			this.entryGrid.Size = new System.Drawing.Size(621, 521);
			this.entryGrid.TabIndex = 2;
			this.entryGrid.Visible = false;
			this.entryGrid.SummaryChanged += new System.EventHandler(this.entryGrid_SummaryChanged);
			// 
			// groupSelector
			// 
			this.groupSelector.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupSelector.Location = new System.Drawing.Point(0, 20);
			this.groupSelector.Name = "groupSelector";
			this.groupSelector.Size = new System.Drawing.Size(621, 20);
			this.groupSelector.TabIndex = 1;
			this.groupSelector.SelectionChanged += new System.EventHandler(this.groupSelector_SelectionChanged);
			// 
			// EntryForm
			// 
			this.AcceptButton = this.save;
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.ClientSize = new System.Drawing.Size(621, 625);
			this.Controls.Add(this.entryGrid);
			this.Controls.Add(this.labelControl1);
			this.Controls.Add(this.summaryLabel);
			this.Controls.Add(this.panelControl1);
			this.Controls.Add(this.groupSelector);
			this.Controls.Add(this.personSelector);
			this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
			this.Name = "EntryForm";
			this.Text = "Auction Entry";
			((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
			this.panelControl1.ResumeLayout(false);
			this.panelControl1.PerformLayout();
			((System.ComponentModel.ISupportInitialize)(this.personSelector.Properties)).EndInit();
			this.ResumeLayout(false);

		}
Пример #40
0
        /// <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.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem1 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip2 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem2 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem3 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.SuperToolTip superToolTip3 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem4 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem3 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip4 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem5 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem4 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem6 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.SuperToolTip superToolTip5 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem7 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem5 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip6 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem8 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem6 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip7 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem9 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem7 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip8 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem10 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem8 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip9 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem11 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem9 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip10 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem12 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem10 = new DevExpress.Utils.ToolTipItem();
            this.ribbonControlClass = new DevExpress.XtraBars.Ribbon.RibbonControl();
            this.btnRemoveStudent = new DevExpress.XtraBars.BarButtonItem();
            this.btnRefreshStudent = new DevExpress.XtraBars.BarButtonItem();
            this.btnUserProperties = new DevExpress.XtraBars.BarButtonItem();
            this.lblClassName = new DevExpress.XtraBars.BarStaticItem();
            this.btnUploadCW = new DevExpress.XtraBars.BarButtonItem();
            this.btnDownloadCW = new DevExpress.XtraBars.BarButtonItem();
            this.btnDeleteCW = new DevExpress.XtraBars.BarButtonItem();
            this.btnRefreshCW = new DevExpress.XtraBars.BarButtonItem();
            this.btnCWBin = new DevExpress.XtraBars.BarButtonItem();
            this.btnOpenCW = new DevExpress.XtraBars.BarButtonItem();
            this.lblClassNameVal = new DevExpress.XtraBars.BarStaticItem();
            this.btnAddStudent = new DevExpress.XtraBars.BarButtonItem();
            this.btnSend = new DevExpress.XtraBars.BarButtonItem();
            this.barToggleSwitchItemReg = new DevExpress.XtraBars.BarToggleSwitchItem();
            this.btnStudentFile = new DevExpress.XtraBars.BarButtonItem();
            this.btnBatchDL = new DevExpress.XtraBars.BarButtonItem();
            this.btnMoveToPC = new DevExpress.XtraBars.BarButtonItem();
            this.btnRefresh = new DevExpress.XtraBars.BarButtonItem();
            this.barToggleSwitchItemEnableSPlan = new DevExpress.XtraBars.BarToggleSwitchItem();
            this.btnNewActivity = new DevExpress.XtraBars.BarButtonItem();
            this.btnEditActivity = new DevExpress.XtraBars.BarButtonItem();
            this.btnDeleteActivity = new DevExpress.XtraBars.BarButtonItem();
            this.btnRefreshActivity = new DevExpress.XtraBars.BarButtonItem();
            this.btnOpenActivity = new DevExpress.XtraBars.BarButtonItem();
            this.btnActBin = new DevExpress.XtraBars.BarButtonItem();
            this.btnViewResponse = new DevExpress.XtraBars.BarButtonItem();
            this.btnAddCW = new DevExpress.XtraBars.BarButtonItem();
            this.btnRemoveCW = new DevExpress.XtraBars.BarButtonItem();
            this.ribbonPageCourseware = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.ribbonPageGroupCWMan = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroupCWView = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageStudents = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.ribbonPageGroupClass = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroupView = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroupComm = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroupRegistration = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageClassFile = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.ribbonPageGroupStudentFile = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageSeatPlan = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.ribbonPageGroupTools = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroupSeatPlanView = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroupSeatPlan = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageClassActivity = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.ribbonPageGroupActivity = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroupActView = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroupActBin = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroupActChecking = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.repositoryItemToggleSwitch1 = new DevExpress.XtraEditors.Repository.RepositoryItemToggleSwitch();
            this.ribbonStatusBarClass = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
            this.panelControlClass = new DevExpress.XtraEditors.PanelControl();
            this.saveFileDialogBatch = new System.Windows.Forms.SaveFileDialog();
            this.timerNotify = new System.Windows.Forms.Timer(this.components);
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControlClass)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemToggleSwitch1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControlClass)).BeginInit();
            this.SuspendLayout();
            // 
            // ribbonControlClass
            // 
            this.ribbonControlClass.ExpandCollapseItem.Id = 0;
            this.ribbonControlClass.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.ribbonControlClass.ExpandCollapseItem,
            this.btnRemoveStudent,
            this.btnRefreshStudent,
            this.btnUserProperties,
            this.lblClassName,
            this.btnUploadCW,
            this.btnDownloadCW,
            this.btnDeleteCW,
            this.btnRefreshCW,
            this.btnCWBin,
            this.btnOpenCW,
            this.lblClassNameVal,
            this.btnAddStudent,
            this.btnSend,
            this.barToggleSwitchItemReg,
            this.btnStudentFile,
            this.btnBatchDL,
            this.btnMoveToPC,
            this.btnRefresh,
            this.barToggleSwitchItemEnableSPlan,
            this.btnNewActivity,
            this.btnEditActivity,
            this.btnDeleteActivity,
            this.btnRefreshActivity,
            this.btnOpenActivity,
            this.btnActBin,
            this.btnViewResponse,
            this.btnAddCW,
            this.btnRemoveCW});
            this.ribbonControlClass.Location = new System.Drawing.Point(0, 0);
            this.ribbonControlClass.MaxItemId = 37;
            this.ribbonControlClass.Name = "ribbonControlClass";
            this.ribbonControlClass.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.ribbonPageCourseware,
            this.ribbonPageStudents,
            this.ribbonPageClassFile,
            this.ribbonPageSeatPlan,
            this.ribbonPageClassActivity});
            this.ribbonControlClass.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemToggleSwitch1});
            this.ribbonControlClass.Size = new System.Drawing.Size(844, 141);
            this.ribbonControlClass.StatusBar = this.ribbonStatusBarClass;
            this.ribbonControlClass.SelectedPageChanged += new System.EventHandler(this.ribbonControlClass_SelectedPageChanged);
            // 
            // btnRemoveStudent
            // 
            this.btnRemoveStudent.Caption = "Remove a student";
            this.btnRemoveStudent.Glyph = global::ComDriveSW.Properties.Resources.removeStud;
            this.btnRemoveStudent.Id = 2;
            this.btnRemoveStudent.Name = "btnRemoveStudent";
            this.btnRemoveStudent.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            toolTipTitleItem1.Text = "Remove from class";
            toolTipItem1.LeftIndent = 6;
            toolTipItem1.Text = "Remove a student from this class";
            superToolTip1.Items.Add(toolTipTitleItem1);
            superToolTip1.Items.Add(toolTipItem1);
            this.btnRemoveStudent.SuperTip = superToolTip1;
            this.btnRemoveStudent.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnRemoveStudent_ItemClick);
            // 
            // btnRefreshStudent
            // 
            this.btnRefreshStudent.Caption = "Refresh";
            this.btnRefreshStudent.Glyph = global::ComDriveSW.Properties.Resources.Refresh_32;
            this.btnRefreshStudent.Id = 3;
            this.btnRefreshStudent.Name = "btnRefreshStudent";
            this.btnRefreshStudent.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            toolTipTitleItem2.Text = "Refresh";
            toolTipItem2.LeftIndent = 6;
            toolTipItem2.Text = "Reloads the list of student(s)";
            toolTipTitleItem3.LeftIndent = 6;
            toolTipTitleItem3.Text = "Press F5 to refresh";
            superToolTip2.Items.Add(toolTipTitleItem2);
            superToolTip2.Items.Add(toolTipItem2);
            superToolTip2.Items.Add(toolTipTitleItem3);
            this.btnRefreshStudent.SuperTip = superToolTip2;
            this.btnRefreshStudent.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnRefreshStudent_ItemClick);
            // 
            // btnUserProperties
            // 
            this.btnUserProperties.Caption = "Properties";
            this.btnUserProperties.Glyph = global::ComDriveSW.Properties.Resources.Show_Property_32;
            this.btnUserProperties.Id = 4;
            this.btnUserProperties.Name = "btnUserProperties";
            this.btnUserProperties.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            toolTipTitleItem4.Text = "Properties";
            toolTipItem3.LeftIndent = 6;
            toolTipItem3.Text = "Shows the properties of the selected student(s)";
            superToolTip3.Items.Add(toolTipTitleItem4);
            superToolTip3.Items.Add(toolTipItem3);
            this.btnUserProperties.SuperTip = superToolTip3;
            this.btnUserProperties.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnUserProperties_ItemClick);
            // 
            // lblClassName
            // 
            this.lblClassName.Caption = "Class :";
            this.lblClassName.Id = 5;
            this.lblClassName.Name = "lblClassName";
            this.lblClassName.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // btnUploadCW
            // 
            this.btnUploadCW.Caption = "Upload Courseware";
            this.btnUploadCW.Glyph = global::ComDriveSW.Properties.Resources.CW_add;
            this.btnUploadCW.Id = 6;
            this.btnUploadCW.Name = "btnUploadCW";
            this.btnUploadCW.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            toolTipTitleItem5.Text = "Upload Courseware";
            toolTipItem4.LeftIndent = 6;
            toolTipItem4.Text = "Uploads the selected courseware(s)";
            toolTipTitleItem6.LeftIndent = 6;
            toolTipTitleItem6.Text = "Only coursewares with PDF format is accepted";
            superToolTip4.Items.Add(toolTipTitleItem5);
            superToolTip4.Items.Add(toolTipItem4);
            superToolTip4.Items.Add(toolTipTitleItem6);
            this.btnUploadCW.SuperTip = superToolTip4;
            this.btnUploadCW.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnUploadCW_ItemClick);
            // 
            // btnDownloadCW
            // 
            this.btnDownloadCW.Caption = "Download Courseware";
            this.btnDownloadCW.Glyph = global::ComDriveSW.Properties.Resources.CW_Download;
            this.btnDownloadCW.Id = 7;
            this.btnDownloadCW.Name = "btnDownloadCW";
            this.btnDownloadCW.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            toolTipTitleItem7.Text = "Download Courseware";
            toolTipItem5.LeftIndent = 6;
            toolTipItem5.Text = "Downloads the selected courseware(s)";
            superToolTip5.Items.Add(toolTipTitleItem7);
            superToolTip5.Items.Add(toolTipItem5);
            this.btnDownloadCW.SuperTip = superToolTip5;
            this.btnDownloadCW.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnDownloadCW_ItemClick);
            // 
            // btnDeleteCW
            // 
            this.btnDeleteCW.Caption = "Delete Courseware";
            this.btnDeleteCW.Glyph = global::ComDriveSW.Properties.Resources.CW_remove;
            this.btnDeleteCW.Id = 8;
            this.btnDeleteCW.Name = "btnDeleteCW";
            this.btnDeleteCW.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            toolTipTitleItem8.Text = "Delete Courseware";
            toolTipItem6.LeftIndent = 6;
            toolTipItem6.Text = "Archives the selected courseware(s)";
            superToolTip6.Items.Add(toolTipTitleItem8);
            superToolTip6.Items.Add(toolTipItem6);
            this.btnDeleteCW.SuperTip = superToolTip6;
            this.btnDeleteCW.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnDeleteCW_ItemClick);
            // 
            // btnRefreshCW
            // 
            this.btnRefreshCW.Caption = "Refresh";
            this.btnRefreshCW.Glyph = global::ComDriveSW.Properties.Resources.Refresh_32;
            this.btnRefreshCW.Id = 9;
            this.btnRefreshCW.Name = "btnRefreshCW";
            this.btnRefreshCW.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            toolTipTitleItem9.Text = "Refresh";
            toolTipItem7.LeftIndent = 6;
            toolTipItem7.Text = "Reloads the list of courseware(s)";
            superToolTip7.Items.Add(toolTipTitleItem9);
            superToolTip7.Items.Add(toolTipItem7);
            this.btnRefreshCW.SuperTip = superToolTip7;
            this.btnRefreshCW.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnRefreshCW_ItemClick);
            // 
            // btnCWBin
            // 
            this.btnCWBin.Caption = "Bin";
            this.btnCWBin.Glyph = global::ComDriveSW.Properties.Resources.Recycle_Sign_32;
            this.btnCWBin.Id = 10;
            this.btnCWBin.Name = "btnCWBin";
            this.btnCWBin.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            this.btnCWBin.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnCWBin_ItemClick);
            // 
            // btnOpenCW
            // 
            this.btnOpenCW.Caption = "Open";
            this.btnOpenCW.Glyph = global::ComDriveSW.Properties.Resources.External_Link_32;
            this.btnOpenCW.Id = 11;
            this.btnOpenCW.Name = "btnOpenCW";
            this.btnOpenCW.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            this.btnOpenCW.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnOpenCW_ItemClick);
            // 
            // lblClassNameVal
            // 
            this.lblClassNameVal.Caption = "Value";
            this.lblClassNameVal.Id = 13;
            this.lblClassNameVal.Name = "lblClassNameVal";
            this.lblClassNameVal.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // btnAddStudent
            // 
            this.btnAddStudent.Caption = "Add a student";
            this.btnAddStudent.Glyph = global::ComDriveSW.Properties.Resources.add_stud;
            this.btnAddStudent.Id = 15;
            this.btnAddStudent.Name = "btnAddStudent";
            this.btnAddStudent.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            toolTipTitleItem10.Text = "Add to Class";
            toolTipItem8.LeftIndent = 6;
            toolTipItem8.Text = "Add a student to this class";
            superToolTip8.Items.Add(toolTipTitleItem10);
            superToolTip8.Items.Add(toolTipItem8);
            this.btnAddStudent.SuperTip = superToolTip8;
            this.btnAddStudent.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnAddStudent_ItemClick);
            // 
            // btnSend
            // 
            this.btnSend.Caption = "Send a message";
            this.btnSend.Glyph = global::ComDriveSW.Properties.Resources.Speech_Bubble_32;
            this.btnSend.Id = 16;
            this.btnSend.Name = "btnSend";
            this.btnSend.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            this.btnSend.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnSend_ItemClick);
            // 
            // barToggleSwitchItemReg
            // 
            this.barToggleSwitchItemReg.Id = 18;
            this.barToggleSwitchItemReg.Name = "barToggleSwitchItemReg";
            this.barToggleSwitchItemReg.CheckedChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.barToggleSwitchItemReg_CheckedChanged);
            // 
            // btnStudentFile
            // 
            this.btnStudentFile.Caption = "Student File";
            this.btnStudentFile.Glyph = global::ComDriveSW.Properties.Resources.File_32;
            this.btnStudentFile.Id = 19;
            this.btnStudentFile.Name = "btnStudentFile";
            this.btnStudentFile.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            toolTipTitleItem11.Text = "Student File";
            toolTipItem9.LeftIndent = 6;
            toolTipItem9.Text = "Shows the list of file(s) of the selected student(s)";
            superToolTip9.Items.Add(toolTipTitleItem11);
            superToolTip9.Items.Add(toolTipItem9);
            this.btnStudentFile.SuperTip = superToolTip9;
            this.btnStudentFile.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnStudentFile_ItemClick);
            // 
            // btnBatchDL
            // 
            this.btnBatchDL.Caption = "Collect File";
            this.btnBatchDL.Glyph = global::ComDriveSW.Properties.Resources.Copy_32;
            this.btnBatchDL.Id = 20;
            this.btnBatchDL.Name = "btnBatchDL";
            this.btnBatchDL.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            toolTipTitleItem12.Text = "Collect File";
            toolTipItem10.LeftIndent = 6;
            toolTipItem10.Text = "Downloads the file(s) of the selected student(s) either by filter or all files";
            superToolTip10.Items.Add(toolTipTitleItem12);
            superToolTip10.Items.Add(toolTipItem10);
            this.btnBatchDL.SuperTip = superToolTip10;
            this.btnBatchDL.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnBatchDL_ItemClick);
            // 
            // btnMoveToPC
            // 
            this.btnMoveToPC.Caption = "Assign to";
            this.btnMoveToPC.Glyph = global::ComDriveSW.Properties.Resources.Counselor_32;
            this.btnMoveToPC.Id = 21;
            this.btnMoveToPC.Name = "btnMoveToPC";
            this.btnMoveToPC.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            this.btnMoveToPC.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnMoveToPC_ItemClick);
            // 
            // btnRefresh
            // 
            this.btnRefresh.Caption = "Refresh";
            this.btnRefresh.Glyph = global::ComDriveSW.Properties.Resources.Refresh_32;
            this.btnRefresh.Id = 23;
            this.btnRefresh.Name = "btnRefresh";
            this.btnRefresh.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            this.btnRefresh.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnRefresh_ItemClick);
            // 
            // barToggleSwitchItemEnableSPlan
            // 
            this.barToggleSwitchItemEnableSPlan.Id = 26;
            this.barToggleSwitchItemEnableSPlan.Name = "barToggleSwitchItemEnableSPlan";
            this.barToggleSwitchItemEnableSPlan.CheckedChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.barToggleSwitchItemEnableSPlan_CheckedChanged);
            // 
            // btnNewActivity
            // 
            this.btnNewActivity.Caption = "New Activity";
            this.btnNewActivity.Glyph = global::ComDriveSW.Properties.Resources.Create_New_32;
            this.btnNewActivity.Id = 27;
            this.btnNewActivity.Name = "btnNewActivity";
            this.btnNewActivity.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            this.btnNewActivity.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnNewActivity_ItemClick);
            // 
            // btnEditActivity
            // 
            this.btnEditActivity.Caption = "Edit Activity";
            this.btnEditActivity.Glyph = global::ComDriveSW.Properties.Resources.Edit_32;
            this.btnEditActivity.Id = 28;
            this.btnEditActivity.Name = "btnEditActivity";
            this.btnEditActivity.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            this.btnEditActivity.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnEditActivity_ItemClick);
            // 
            // btnDeleteActivity
            // 
            this.btnDeleteActivity.Caption = "Delete Activity";
            this.btnDeleteActivity.Glyph = global::ComDriveSW.Properties.Resources.Cancel_323;
            this.btnDeleteActivity.Id = 29;
            this.btnDeleteActivity.Name = "btnDeleteActivity";
            this.btnDeleteActivity.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            this.btnDeleteActivity.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnDeleteActivity_ItemClick);
            // 
            // btnRefreshActivity
            // 
            this.btnRefreshActivity.Caption = "Refresh";
            this.btnRefreshActivity.Glyph = global::ComDriveSW.Properties.Resources.Refresh_32;
            this.btnRefreshActivity.Id = 30;
            this.btnRefreshActivity.Name = "btnRefreshActivity";
            this.btnRefreshActivity.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            this.btnRefreshActivity.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnRefreshActivity_ItemClick);
            // 
            // btnOpenActivity
            // 
            this.btnOpenActivity.Caption = "Open";
            this.btnOpenActivity.Glyph = global::ComDriveSW.Properties.Resources.External_Link_32;
            this.btnOpenActivity.Id = 31;
            this.btnOpenActivity.Name = "btnOpenActivity";
            this.btnOpenActivity.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            this.btnOpenActivity.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnOpenActivity_ItemClick);
            // 
            // btnActBin
            // 
            this.btnActBin.Caption = "Bin";
            this.btnActBin.Glyph = global::ComDriveSW.Properties.Resources.Recycle_Sign_32;
            this.btnActBin.Id = 32;
            this.btnActBin.Name = "btnActBin";
            this.btnActBin.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            this.btnActBin.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnActBin_ItemClick);
            // 
            // btnViewResponse
            // 
            this.btnViewResponse.Caption = "View Student Response";
            this.btnViewResponse.Glyph = global::ComDriveSW.Properties.Resources.Response_32;
            this.btnViewResponse.Id = 33;
            this.btnViewResponse.Name = "btnViewResponse";
            this.btnViewResponse.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            this.btnViewResponse.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnViewResponse_ItemClick);
            // 
            // btnAddCW
            // 
            this.btnAddCW.Caption = "Add Courseware";
            this.btnAddCW.Glyph = global::ComDriveSW.Properties.Resources.Plus_32;
            this.btnAddCW.Id = 35;
            this.btnAddCW.Name = "btnAddCW";
            this.btnAddCW.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            this.btnAddCW.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnAddCW_ItemClick);
            // 
            // btnRemoveCW
            // 
            this.btnRemoveCW.Caption = "Remove Courseware";
            this.btnRemoveCW.Glyph = global::ComDriveSW.Properties.Resources.Cancel_323;
            this.btnRemoveCW.Id = 36;
            this.btnRemoveCW.Name = "btnRemoveCW";
            this.btnRemoveCW.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            this.btnRemoveCW.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnRemoveCW_ItemClick);
            // 
            // ribbonPageCourseware
            // 
            this.ribbonPageCourseware.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonPageGroupCWMan,
            this.ribbonPageGroupCWView});
            this.ribbonPageCourseware.Name = "ribbonPageCourseware";
            this.ribbonPageCourseware.Text = "Courseware";
            // 
            // ribbonPageGroupCWMan
            // 
            this.ribbonPageGroupCWMan.AllowTextClipping = false;
            this.ribbonPageGroupCWMan.ItemLinks.Add(this.btnAddCW);
            this.ribbonPageGroupCWMan.ItemLinks.Add(this.btnRemoveCW);
            this.ribbonPageGroupCWMan.Name = "ribbonPageGroupCWMan";
            this.ribbonPageGroupCWMan.ShowCaptionButton = false;
            this.ribbonPageGroupCWMan.Text = "Manipulate Coursewares";
            // 
            // ribbonPageGroupCWView
            // 
            this.ribbonPageGroupCWView.AllowTextClipping = false;
            this.ribbonPageGroupCWView.ItemLinks.Add(this.btnOpenCW);
            this.ribbonPageGroupCWView.ItemLinks.Add(this.btnRefreshCW);
            this.ribbonPageGroupCWView.Name = "ribbonPageGroupCWView";
            this.ribbonPageGroupCWView.ShowCaptionButton = false;
            this.ribbonPageGroupCWView.Text = "View";
            // 
            // ribbonPageStudents
            // 
            this.ribbonPageStudents.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonPageGroupClass,
            this.ribbonPageGroupView,
            this.ribbonPageGroupComm,
            this.ribbonPageGroupRegistration});
            this.ribbonPageStudents.Name = "ribbonPageStudents";
            this.ribbonPageStudents.Text = "Students";
            // 
            // ribbonPageGroupClass
            // 
            this.ribbonPageGroupClass.AllowTextClipping = false;
            this.ribbonPageGroupClass.ItemLinks.Add(this.btnAddStudent);
            this.ribbonPageGroupClass.ItemLinks.Add(this.btnRemoveStudent);
            this.ribbonPageGroupClass.Name = "ribbonPageGroupClass";
            this.ribbonPageGroupClass.ShowCaptionButton = false;
            this.ribbonPageGroupClass.Text = "Class";
            // 
            // ribbonPageGroupView
            // 
            this.ribbonPageGroupView.AllowTextClipping = false;
            this.ribbonPageGroupView.ItemLinks.Add(this.btnRefreshStudent);
            this.ribbonPageGroupView.ItemLinks.Add(this.btnUserProperties);
            this.ribbonPageGroupView.Name = "ribbonPageGroupView";
            this.ribbonPageGroupView.ShowCaptionButton = false;
            this.ribbonPageGroupView.Text = "View";
            // 
            // ribbonPageGroupComm
            // 
            this.ribbonPageGroupComm.AllowTextClipping = false;
            this.ribbonPageGroupComm.ItemLinks.Add(this.btnSend);
            this.ribbonPageGroupComm.Name = "ribbonPageGroupComm";
            this.ribbonPageGroupComm.ShowCaptionButton = false;
            this.ribbonPageGroupComm.Text = "Communicate";
            // 
            // ribbonPageGroupRegistration
            // 
            this.ribbonPageGroupRegistration.AllowTextClipping = false;
            this.ribbonPageGroupRegistration.ItemLinks.Add(this.barToggleSwitchItemReg);
            this.ribbonPageGroupRegistration.Name = "ribbonPageGroupRegistration";
            this.ribbonPageGroupRegistration.ShowCaptionButton = false;
            this.ribbonPageGroupRegistration.Text = "Student Registration";
            // 
            // ribbonPageClassFile
            // 
            this.ribbonPageClassFile.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonPageGroupStudentFile});
            this.ribbonPageClassFile.Name = "ribbonPageClassFile";
            this.ribbonPageClassFile.Text = "File";
            // 
            // ribbonPageGroupStudentFile
            // 
            this.ribbonPageGroupStudentFile.AllowTextClipping = false;
            this.ribbonPageGroupStudentFile.ItemLinks.Add(this.btnStudentFile);
            this.ribbonPageGroupStudentFile.ItemLinks.Add(this.btnBatchDL);
            this.ribbonPageGroupStudentFile.Name = "ribbonPageGroupStudentFile";
            this.ribbonPageGroupStudentFile.ShowCaptionButton = false;
            this.ribbonPageGroupStudentFile.Text = "Student File";
            // 
            // ribbonPageSeatPlan
            // 
            this.ribbonPageSeatPlan.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonPageGroupTools,
            this.ribbonPageGroupSeatPlanView,
            this.ribbonPageGroupSeatPlan});
            this.ribbonPageSeatPlan.Name = "ribbonPageSeatPlan";
            this.ribbonPageSeatPlan.Text = "Seat Plan";
            // 
            // ribbonPageGroupTools
            // 
            this.ribbonPageGroupTools.AllowTextClipping = false;
            this.ribbonPageGroupTools.ItemLinks.Add(this.btnMoveToPC);
            this.ribbonPageGroupTools.Name = "ribbonPageGroupTools";
            this.ribbonPageGroupTools.ShowCaptionButton = false;
            this.ribbonPageGroupTools.Text = "Tools";
            // 
            // ribbonPageGroupSeatPlanView
            // 
            this.ribbonPageGroupSeatPlanView.AllowTextClipping = false;
            this.ribbonPageGroupSeatPlanView.ItemLinks.Add(this.btnRefresh);
            this.ribbonPageGroupSeatPlanView.Name = "ribbonPageGroupSeatPlanView";
            this.ribbonPageGroupSeatPlanView.ShowCaptionButton = false;
            this.ribbonPageGroupSeatPlanView.Text = "View";
            // 
            // ribbonPageGroupSeatPlan
            // 
            this.ribbonPageGroupSeatPlan.AllowTextClipping = false;
            this.ribbonPageGroupSeatPlan.ItemLinks.Add(this.barToggleSwitchItemEnableSPlan);
            this.ribbonPageGroupSeatPlan.Name = "ribbonPageGroupSeatPlan";
            this.ribbonPageGroupSeatPlan.ShowCaptionButton = false;
            this.ribbonPageGroupSeatPlan.Text = "Seat Plan";
            // 
            // ribbonPageClassActivity
            // 
            this.ribbonPageClassActivity.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonPageGroupActivity,
            this.ribbonPageGroupActView,
            this.ribbonPageGroupActBin,
            this.ribbonPageGroupActChecking});
            this.ribbonPageClassActivity.Name = "ribbonPageClassActivity";
            this.ribbonPageClassActivity.Text = "Activity";
            // 
            // ribbonPageGroupActivity
            // 
            this.ribbonPageGroupActivity.AllowTextClipping = false;
            this.ribbonPageGroupActivity.ItemLinks.Add(this.btnNewActivity);
            this.ribbonPageGroupActivity.ItemLinks.Add(this.btnEditActivity);
            this.ribbonPageGroupActivity.ItemLinks.Add(this.btnDeleteActivity);
            this.ribbonPageGroupActivity.Name = "ribbonPageGroupActivity";
            this.ribbonPageGroupActivity.ShowCaptionButton = false;
            this.ribbonPageGroupActivity.Text = "Activity";
            // 
            // ribbonPageGroupActView
            // 
            this.ribbonPageGroupActView.AllowTextClipping = false;
            this.ribbonPageGroupActView.ItemLinks.Add(this.btnOpenActivity);
            this.ribbonPageGroupActView.ItemLinks.Add(this.btnRefreshActivity);
            this.ribbonPageGroupActView.Name = "ribbonPageGroupActView";
            this.ribbonPageGroupActView.ShowCaptionButton = false;
            this.ribbonPageGroupActView.Text = "View";
            // 
            // ribbonPageGroupActBin
            // 
            this.ribbonPageGroupActBin.AllowTextClipping = false;
            this.ribbonPageGroupActBin.ItemLinks.Add(this.btnActBin);
            this.ribbonPageGroupActBin.Name = "ribbonPageGroupActBin";
            this.ribbonPageGroupActBin.ShowCaptionButton = false;
            this.ribbonPageGroupActBin.Text = "Bin";
            // 
            // ribbonPageGroupActChecking
            // 
            this.ribbonPageGroupActChecking.AllowTextClipping = false;
            this.ribbonPageGroupActChecking.ItemLinks.Add(this.btnViewResponse);
            this.ribbonPageGroupActChecking.Name = "ribbonPageGroupActChecking";
            this.ribbonPageGroupActChecking.ShowCaptionButton = false;
            this.ribbonPageGroupActChecking.Text = "Checking";
            // 
            // repositoryItemToggleSwitch1
            // 
            this.repositoryItemToggleSwitch1.AutoHeight = false;
            this.repositoryItemToggleSwitch1.Name = "repositoryItemToggleSwitch1";
            this.repositoryItemToggleSwitch1.OffText = "Off";
            this.repositoryItemToggleSwitch1.OnText = "On";
            // 
            // ribbonStatusBarClass
            // 
            this.ribbonStatusBarClass.ItemLinks.Add(this.lblClassName);
            this.ribbonStatusBarClass.ItemLinks.Add(this.lblClassNameVal);
            this.ribbonStatusBarClass.Location = new System.Drawing.Point(0, 473);
            this.ribbonStatusBarClass.Name = "ribbonStatusBarClass";
            this.ribbonStatusBarClass.Ribbon = this.ribbonControlClass;
            this.ribbonStatusBarClass.Size = new System.Drawing.Size(844, 27);
            // 
            // panelControlClass
            // 
            this.panelControlClass.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panelControlClass.Location = new System.Drawing.Point(0, 141);
            this.panelControlClass.Name = "panelControlClass";
            this.panelControlClass.Size = new System.Drawing.Size(844, 359);
            this.panelControlClass.TabIndex = 1;
            // 
            // timerNotify
            // 
            this.timerNotify.Interval = 500;
            this.timerNotify.Tick += new System.EventHandler(this.timerNotify_Tick);
            // 
            // frmClass
            // 
            this.AllowDrop = true;
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(844, 500);
            this.Controls.Add(this.ribbonStatusBarClass);
            this.Controls.Add(this.panelControlClass);
            this.Controls.Add(this.ribbonControlClass);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
            this.MaximizeBox = false;
            this.Name = "frmClass";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Class";
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmClass_FormClosing);
            this.Load += new System.EventHandler(this.frmClass_Load);
            this.DragDrop += new System.Windows.Forms.DragEventHandler(this.frmClass_DragDrop);
            this.DragEnter += new System.Windows.Forms.DragEventHandler(this.frmClass_DragEnter);
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControlClass)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemToggleSwitch1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControlClass)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
        /// <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.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
			DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
			DevExpress.Utils.ToolTipItem toolTipItem1 = new DevExpress.Utils.ToolTipItem();
			DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject2 = new DevExpress.Utils.SerializableAppearanceObject();
			DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject3 = new DevExpress.Utils.SerializableAppearanceObject();
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SlideSimpleSummaryControl));
			DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
			DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject6 = new DevExpress.Utils.SerializableAppearanceObject();
			DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject7 = new DevExpress.Utils.SerializableAppearanceObject();
			DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject4 = new DevExpress.Utils.SerializableAppearanceObject();
			DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject5 = new DevExpress.Utils.SerializableAppearanceObject();
			this.dateEditFligtDatesStart = new DevExpress.XtraEditors.DateEdit();
			this.ckFlightDates = new System.Windows.Forms.CheckBox();
			this.dateEditFligtDatesEnd = new DevExpress.XtraEditors.DateEdit();
			this.laFlightDatesStart = new System.Windows.Forms.Label();
			this.laFlightDatesEnd = new System.Windows.Forms.Label();
			this.tabItemCampaign = new DevComponents.DotNetBar.TabItem(this.components);
			this.comboBoxEditDecisionMaker = new Asa.Common.GUI.Common.ComboBoxListEdit();
			this.comboBoxEditAdvertiser = new Asa.Common.GUI.Common.ComboBoxListEdit();
			this.dateEditDate = new DevExpress.XtraEditors.DateEdit();
			this.ckDate = new System.Windows.Forms.CheckBox();
			this.ckDecisionMaker = new System.Windows.Forms.CheckBox();
			this.ckAdvertiser = new System.Windows.Forms.CheckBox();
			this.simpleSummaryItemContainer = new Asa.Dashboard.TabHomeForms.SimpleSummaryItemContainer();
			this.spinEditTotal = new DevExpress.XtraEditors.SpinEdit();
			this.spinEditMonthly = new DevExpress.XtraEditors.SpinEdit();
			this.buttonXAddItem = new DevComponents.DotNetBar.ButtonX();
			this.xtraTabControl = new DevExpress.XtraTab.XtraTabControl();
			this.xtraTabPageBasicInfo = new DevExpress.XtraTab.XtraTabPage();
			this.pnBasicInfo = new System.Windows.Forms.Panel();
			this.pbFlightDates = new System.Windows.Forms.PictureBox();
			this.laFlightDates = new System.Windows.Forms.Label();
			this.pbDate = new System.Windows.Forms.PictureBox();
			this.laDate = new System.Windows.Forms.Label();
			this.pbDecisionMaker = new System.Windows.Forms.PictureBox();
			this.laDecisionMaker = new System.Windows.Forms.Label();
			this.laAdvertiser = new System.Windows.Forms.Label();
			this.pbAdvertiser = new System.Windows.Forms.PictureBox();
			this.xtraTabPagePaymentDetails = new DevExpress.XtraTab.XtraTabPage();
			this.checkEditTotalInvestment = new DevExpress.XtraEditors.CheckEdit();
			this.checkEditMonthlyInvestment = new DevExpress.XtraEditors.CheckEdit();
			this.checkEditTableOutput = new DevExpress.XtraEditors.CheckEdit();
			this.pnTotals = new DevExpress.XtraEditors.PanelControl();
			this.labelControlFlightDatesWeeks = new DevExpress.XtraEditors.LabelControl();
			this.pnMain.SuspendLayout();
			this.pnBottom.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEditSlideHeader.Properties)).BeginInit();
			this.pnTop.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.checkEditSolutionNew.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.pbDescription)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEditFligtDatesStart.Properties.CalendarTimeProperties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEditFligtDatesStart.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEditFligtDatesEnd.Properties.CalendarTimeProperties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEditFligtDatesEnd.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEditDecisionMaker.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEditAdvertiser.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEditDate.Properties.CalendarTimeProperties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEditDate.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.spinEditTotal.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.spinEditMonthly.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.xtraTabControl)).BeginInit();
			this.xtraTabControl.SuspendLayout();
			this.xtraTabPageBasicInfo.SuspendLayout();
			this.pnBasicInfo.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.pbFlightDates)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.pbDate)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.pbDecisionMaker)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.pbAdvertiser)).BeginInit();
			this.xtraTabPagePaymentDetails.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.checkEditTotalInvestment.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEditMonthlyInvestment.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEditTableOutput.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.pnTotals)).BeginInit();
			this.pnTotals.SuspendLayout();
			this.SuspendLayout();
			// 
			// pnMain
			// 
			this.pnMain.Controls.Add(this.xtraTabControl);
			this.pnMain.Controls.Add(this.pnTotals);
			this.pnMain.Padding = new System.Windows.Forms.Padding(10, 0, 0, 0);
			// 
			// pnBottom
			// 
			this.pnBottom.Controls.Add(this.checkEditTableOutput);
			this.pnBottom.Controls.SetChildIndex(this.simpleButtonSaveTemplate, 0);
			this.pnBottom.Controls.SetChildIndex(this.pbDescription, 0);
			this.pnBottom.Controls.SetChildIndex(this.checkEditSolutionNew, 0);
			this.pnBottom.Controls.SetChildIndex(this.checkEditTableOutput, 0);
			// 
			// comboBoxEditSlideHeader
			// 
			this.comboBoxEditSlideHeader.Properties.Appearance.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
			this.comboBoxEditSlideHeader.Properties.Appearance.Options.UseFont = true;
			this.comboBoxEditSlideHeader.Properties.AppearanceDisabled.Font = new System.Drawing.Font("Arial", 9.75F);
			this.comboBoxEditSlideHeader.Properties.AppearanceDisabled.Options.UseFont = true;
			this.comboBoxEditSlideHeader.Properties.AppearanceDropDown.Font = new System.Drawing.Font("Arial", 9.75F);
			this.comboBoxEditSlideHeader.Properties.AppearanceDropDown.Options.UseFont = true;
			this.comboBoxEditSlideHeader.Properties.AppearanceFocused.Font = new System.Drawing.Font("Arial", 9.75F);
			this.comboBoxEditSlideHeader.Properties.AppearanceFocused.Options.UseFont = true;
			this.comboBoxEditSlideHeader.Properties.AppearanceReadOnly.Font = new System.Drawing.Font("Arial", 9.75F);
			this.comboBoxEditSlideHeader.Properties.AppearanceReadOnly.Options.UseFont = true;
			this.comboBoxEditSlideHeader.EditValueChanged += new System.EventHandler(this.EditValueChanged);
			// 
			// checkEditSolutionNew
			// 
			this.checkEditSolutionNew.Properties.Appearance.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
			this.checkEditSolutionNew.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
			this.checkEditSolutionNew.Properties.Appearance.Options.UseFont = true;
			this.checkEditSolutionNew.Properties.Appearance.Options.UseForeColor = true;
			this.checkEditSolutionNew.Size = new System.Drawing.Size(157, 20);
			// 
			// pbDescription
			// 
			this.pbDescription.Image = global::Asa.Dashboard.Properties.Resources.DescriptionSummary;
			this.pbDescription.Size = new System.Drawing.Size(279, 48);
			// 
			// simpleButtonSaveTemplate
			// 
			toolTipTitleItem1.Text = "Save";
			toolTipItem1.LeftIndent = 6;
			toolTipItem1.Text = "Save this Summary Slide\r\nData for future presentations";
			superToolTip1.Items.Add(toolTipTitleItem1);
			superToolTip1.Items.Add(toolTipItem1);
			this.simpleButtonSaveTemplate.SuperTip = superToolTip1;
			// 
			// dateEditFligtDatesStart
			// 
			this.dateEditFligtDatesStart.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.dateEditFligtDatesStart.EditValue = null;
			this.dateEditFligtDatesStart.Location = new System.Drawing.Point(476, 237);
			this.dateEditFligtDatesStart.Name = "dateEditFligtDatesStart";
			this.dateEditFligtDatesStart.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.False;
			this.dateEditFligtDatesStart.Properties.Appearance.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
			this.dateEditFligtDatesStart.Properties.Appearance.Options.UseFont = true;
			this.dateEditFligtDatesStart.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, ((System.Drawing.Image)(resources.GetObject("dateEditFligtDatesStart.Properties.Buttons"))), new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject2, "", null, null, true)});
			this.dateEditFligtDatesStart.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
			this.dateEditFligtDatesStart.Properties.DisplayFormat.FormatString = "MM/dd/yyyy";
			this.dateEditFligtDatesStart.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
			this.dateEditFligtDatesStart.Properties.EditFormat.FormatString = "MM/dd/yyyy";
			this.dateEditFligtDatesStart.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom;
			this.dateEditFligtDatesStart.Properties.FirstDayOfWeek = System.DayOfWeek.Monday;
			this.dateEditFligtDatesStart.Properties.Mask.EditMask = "MM/dd/yyyy";
			this.dateEditFligtDatesStart.Properties.ShowPopupShadow = false;
			this.dateEditFligtDatesStart.Properties.ShowToday = false;
			this.dateEditFligtDatesStart.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.dateEditFligtDatesStart.Size = new System.Drawing.Size(123, 22);
			this.dateEditFligtDatesStart.TabIndex = 8;
			this.dateEditFligtDatesStart.EditValueChanged += new System.EventHandler(this.dateEditFligtDatesStart_EditValueChanged);
			// 
			// ckFlightDates
			// 
			this.ckFlightDates.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.ckFlightDates.AutoSize = true;
			this.ckFlightDates.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(175)))), ((int)(((byte)(210)))), ((int)(((byte)(255)))));
			this.ckFlightDates.Checked = true;
			this.ckFlightDates.CheckState = System.Windows.Forms.CheckState.Checked;
			this.ckFlightDates.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
			this.ckFlightDates.Location = new System.Drawing.Point(455, 190);
			this.ckFlightDates.Name = "ckFlightDates";
			this.ckFlightDates.Size = new System.Drawing.Size(15, 14);
			this.ckFlightDates.TabIndex = 7;
			this.ckFlightDates.UseVisualStyleBackColor = false;
			this.ckFlightDates.CheckedChanged += new System.EventHandler(this.ckFlightDates_CheckedChanged);
			// 
			// dateEditFligtDatesEnd
			// 
			this.dateEditFligtDatesEnd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.dateEditFligtDatesEnd.EditValue = null;
			this.dateEditFligtDatesEnd.Location = new System.Drawing.Point(616, 237);
			this.dateEditFligtDatesEnd.Name = "dateEditFligtDatesEnd";
			this.dateEditFligtDatesEnd.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.False;
			this.dateEditFligtDatesEnd.Properties.Appearance.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
			this.dateEditFligtDatesEnd.Properties.Appearance.Options.UseFont = true;
			this.dateEditFligtDatesEnd.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, ((System.Drawing.Image)(resources.GetObject("dateEditFligtDatesEnd.Properties.Buttons"))), new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject3, "", null, null, true)});
			this.dateEditFligtDatesEnd.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
			this.dateEditFligtDatesEnd.Properties.DisplayFormat.FormatString = "MM/dd/yyyy";
			this.dateEditFligtDatesEnd.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
			this.dateEditFligtDatesEnd.Properties.EditFormat.FormatString = "MM/dd/yyyy";
			this.dateEditFligtDatesEnd.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom;
			this.dateEditFligtDatesEnd.Properties.FirstDayOfWeek = System.DayOfWeek.Monday;
			this.dateEditFligtDatesEnd.Properties.Mask.EditMask = "MM/dd/yyyy";
			this.dateEditFligtDatesEnd.Properties.ShowPopupShadow = false;
			this.dateEditFligtDatesEnd.Properties.ShowToday = false;
			this.dateEditFligtDatesEnd.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.dateEditFligtDatesEnd.Size = new System.Drawing.Size(123, 22);
			this.dateEditFligtDatesEnd.TabIndex = 9;
			this.dateEditFligtDatesEnd.EditValueChanged += new System.EventHandler(this.dateEditFligtDatesEnd_EditValueChanged);
			// 
			// laFlightDatesStart
			// 
			this.laFlightDatesStart.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.laFlightDatesStart.BackColor = System.Drawing.Color.White;
			this.laFlightDatesStart.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
			this.laFlightDatesStart.Location = new System.Drawing.Point(476, 262);
			this.laFlightDatesStart.Name = "laFlightDatesStart";
			this.laFlightDatesStart.Size = new System.Drawing.Size(123, 21);
			this.laFlightDatesStart.TabIndex = 73;
			this.laFlightDatesStart.Text = "start";
			// 
			// laFlightDatesEnd
			// 
			this.laFlightDatesEnd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.laFlightDatesEnd.BackColor = System.Drawing.Color.White;
			this.laFlightDatesEnd.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
			this.laFlightDatesEnd.Location = new System.Drawing.Point(616, 262);
			this.laFlightDatesEnd.Name = "laFlightDatesEnd";
			this.laFlightDatesEnd.Size = new System.Drawing.Size(123, 21);
			this.laFlightDatesEnd.TabIndex = 74;
			this.laFlightDatesEnd.Text = "end";
			// 
			// tabItemCampaign
			// 
			this.tabItemCampaign.Name = "tabItemCampaign";
			this.tabItemCampaign.Text = "2. Campaign Dates";
			// 
			// comboBoxEditDecisionMaker
			// 
			this.comboBoxEditDecisionMaker.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.comboBoxEditDecisionMaker.Location = new System.Drawing.Point(476, 102);
			this.comboBoxEditDecisionMaker.Name = "comboBoxEditDecisionMaker";
			this.comboBoxEditDecisionMaker.OverrideTab = false;
			this.comboBoxEditDecisionMaker.Properties.Appearance.Font = new System.Drawing.Font("Arial", 9.75F);
			this.comboBoxEditDecisionMaker.Properties.Appearance.Options.UseFont = true;
			this.comboBoxEditDecisionMaker.Properties.AppearanceDisabled.Font = new System.Drawing.Font("Arial", 9.75F);
			this.comboBoxEditDecisionMaker.Properties.AppearanceDisabled.Options.UseFont = true;
			this.comboBoxEditDecisionMaker.Properties.AppearanceDropDown.Font = new System.Drawing.Font("Arial", 9.75F);
			this.comboBoxEditDecisionMaker.Properties.AppearanceDropDown.Options.UseFont = true;
			this.comboBoxEditDecisionMaker.Properties.AppearanceFocused.Font = new System.Drawing.Font("Arial", 9.75F);
			this.comboBoxEditDecisionMaker.Properties.AppearanceFocused.Options.UseFont = true;
			this.comboBoxEditDecisionMaker.Properties.AppearanceReadOnly.Font = new System.Drawing.Font("Arial", 9.75F);
			this.comboBoxEditDecisionMaker.Properties.AppearanceReadOnly.Options.UseFont = true;
			this.comboBoxEditDecisionMaker.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo),
            new DevExpress.XtraEditors.Controls.EditorButton()});
			this.comboBoxEditDecisionMaker.Properties.ListType = Asa.Common.GUI.Common.ListType.DecisionMakers;
			this.comboBoxEditDecisionMaker.Properties.NullText = "Type or Select";
			this.comboBoxEditDecisionMaker.Size = new System.Drawing.Size(275, 20);
			this.comboBoxEditDecisionMaker.TabIndex = 4;
			this.comboBoxEditDecisionMaker.EditValueChanged += new System.EventHandler(this.EditValueChanged);
			// 
			// comboBoxEditAdvertiser
			// 
			this.comboBoxEditAdvertiser.Location = new System.Drawing.Point(38, 102);
			this.comboBoxEditAdvertiser.Name = "comboBoxEditAdvertiser";
			this.comboBoxEditAdvertiser.OverrideTab = false;
			this.comboBoxEditAdvertiser.Properties.Appearance.Font = new System.Drawing.Font("Arial", 9.75F);
			this.comboBoxEditAdvertiser.Properties.Appearance.Options.UseFont = true;
			this.comboBoxEditAdvertiser.Properties.AppearanceDisabled.Font = new System.Drawing.Font("Arial", 9.75F);
			this.comboBoxEditAdvertiser.Properties.AppearanceDisabled.Options.UseFont = true;
			this.comboBoxEditAdvertiser.Properties.AppearanceDropDown.Font = new System.Drawing.Font("Arial", 9.75F);
			this.comboBoxEditAdvertiser.Properties.AppearanceDropDown.Options.UseFont = true;
			this.comboBoxEditAdvertiser.Properties.AppearanceFocused.Font = new System.Drawing.Font("Arial", 9.75F);
			this.comboBoxEditAdvertiser.Properties.AppearanceFocused.Options.UseFont = true;
			this.comboBoxEditAdvertiser.Properties.AppearanceReadOnly.Font = new System.Drawing.Font("Arial", 9.75F);
			this.comboBoxEditAdvertiser.Properties.AppearanceReadOnly.Options.UseFont = true;
			this.comboBoxEditAdvertiser.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo),
            new DevExpress.XtraEditors.Controls.EditorButton()});
			this.comboBoxEditAdvertiser.Properties.ListType = Asa.Common.GUI.Common.ListType.Advertisers;
			this.comboBoxEditAdvertiser.Properties.NullText = "Type or Select";
			this.comboBoxEditAdvertiser.Size = new System.Drawing.Size(257, 22);
			this.comboBoxEditAdvertiser.TabIndex = 2;
			this.comboBoxEditAdvertiser.EditValueChanged += new System.EventHandler(this.EditValueChanged);
			// 
			// dateEditDate
			// 
			this.dateEditDate.EditValue = null;
			this.dateEditDate.Location = new System.Drawing.Point(38, 237);
			this.dateEditDate.Name = "dateEditDate";
			this.dateEditDate.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.False;
			this.dateEditDate.Properties.Appearance.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
			this.dateEditDate.Properties.Appearance.Options.UseFont = true;
			this.dateEditDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, ((System.Drawing.Image)(resources.GetObject("dateEditDate.Properties.Buttons"))), new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", null, null, true)});
			this.dateEditDate.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
			this.dateEditDate.Properties.DisplayFormat.FormatString = "MM/dd/yyyy";
			this.dateEditDate.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
			this.dateEditDate.Properties.EditFormat.FormatString = "MM/dd/yyyy";
			this.dateEditDate.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom;
			this.dateEditDate.Properties.FirstDayOfWeek = System.DayOfWeek.Monday;
			this.dateEditDate.Properties.Mask.EditMask = "MM/dd/yyyy";
			this.dateEditDate.Properties.ShowPopupShadow = false;
			this.dateEditDate.Properties.ShowToday = false;
			this.dateEditDate.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.dateEditDate.Size = new System.Drawing.Size(120, 22);
			this.dateEditDate.TabIndex = 6;
			this.dateEditDate.EditValueChanged += new System.EventHandler(this.EditValueChanged);
			// 
			// ckDate
			// 
			this.ckDate.AutoSize = true;
			this.ckDate.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(175)))), ((int)(((byte)(210)))), ((int)(((byte)(255)))));
			this.ckDate.Checked = true;
			this.ckDate.CheckState = System.Windows.Forms.CheckState.Checked;
			this.ckDate.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
			this.ckDate.Location = new System.Drawing.Point(17, 190);
			this.ckDate.Name = "ckDate";
			this.ckDate.Size = new System.Drawing.Size(15, 14);
			this.ckDate.TabIndex = 5;
			this.ckDate.UseVisualStyleBackColor = false;
			this.ckDate.CheckedChanged += new System.EventHandler(this.ckDate_CheckedChanged);
			// 
			// ckDecisionMaker
			// 
			this.ckDecisionMaker.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.ckDecisionMaker.AutoSize = true;
			this.ckDecisionMaker.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(175)))), ((int)(((byte)(210)))), ((int)(((byte)(255)))));
			this.ckDecisionMaker.Checked = true;
			this.ckDecisionMaker.CheckState = System.Windows.Forms.CheckState.Checked;
			this.ckDecisionMaker.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
			this.ckDecisionMaker.Location = new System.Drawing.Point(455, 55);
			this.ckDecisionMaker.Name = "ckDecisionMaker";
			this.ckDecisionMaker.Size = new System.Drawing.Size(15, 14);
			this.ckDecisionMaker.TabIndex = 3;
			this.ckDecisionMaker.UseVisualStyleBackColor = false;
			this.ckDecisionMaker.CheckedChanged += new System.EventHandler(this.ckDecisionMaker_CheckedChanged);
			// 
			// ckAdvertiser
			// 
			this.ckAdvertiser.AutoSize = true;
			this.ckAdvertiser.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(175)))), ((int)(((byte)(210)))), ((int)(((byte)(255)))));
			this.ckAdvertiser.Checked = true;
			this.ckAdvertiser.CheckState = System.Windows.Forms.CheckState.Checked;
			this.ckAdvertiser.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
			this.ckAdvertiser.Location = new System.Drawing.Point(17, 55);
			this.ckAdvertiser.Name = "ckAdvertiser";
			this.ckAdvertiser.Size = new System.Drawing.Size(15, 14);
			this.ckAdvertiser.TabIndex = 1;
			this.ckAdvertiser.UseVisualStyleBackColor = false;
			this.ckAdvertiser.CheckedChanged += new System.EventHandler(this.ckAdvertiser_CheckedChanged);
			// 
			// simpleSummaryItemContainer
			// 
			this.simpleSummaryItemContainer.BackColor = System.Drawing.Color.White;
			this.simpleSummaryItemContainer.Dock = System.Windows.Forms.DockStyle.Fill;
			this.simpleSummaryItemContainer.Location = new System.Drawing.Point(0, 0);
			this.simpleSummaryItemContainer.Name = "simpleSummaryItemContainer";
			this.simpleSummaryItemContainer.SelectedIndex = -1;
			this.simpleSummaryItemContainer.Size = new System.Drawing.Size(777, 308);
			this.simpleSummaryItemContainer.TabIndex = 37;
			this.simpleSummaryItemContainer.TabStop = false;
			// 
			// spinEditTotal
			// 
			this.spinEditTotal.EditValue = new decimal(new int[] {
            0,
            0,
            0,
            0});
			this.spinEditTotal.Enabled = false;
			this.spinEditTotal.Location = new System.Drawing.Point(298, 10);
			this.spinEditTotal.Name = "spinEditTotal";
			this.spinEditTotal.Properties.Appearance.Font = new System.Drawing.Font("Arial", 9F);
			this.spinEditTotal.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
			this.spinEditTotal.Properties.Appearance.Options.UseFont = true;
			this.spinEditTotal.Properties.Appearance.Options.UseForeColor = true;
			this.spinEditTotal.Properties.AppearanceDisabled.ForeColor = System.Drawing.Color.Black;
			this.spinEditTotal.Properties.AppearanceDisabled.Options.UseForeColor = true;
			this.spinEditTotal.Properties.AppearanceFocused.ForeColor = System.Drawing.Color.Black;
			this.spinEditTotal.Properties.AppearanceFocused.Options.UseForeColor = true;
			this.spinEditTotal.Properties.AppearanceReadOnly.ForeColor = System.Drawing.Color.Black;
			this.spinEditTotal.Properties.AppearanceReadOnly.Options.UseForeColor = true;
			this.spinEditTotal.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject6, "", null, null, true),
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, ((System.Drawing.Image)(resources.GetObject("spinEditTotal.Properties.Buttons"))), new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject7, "", null, null, true)});
			this.spinEditTotal.Properties.DisplayFormat.FormatString = "$#,###.00";
			this.spinEditTotal.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
			this.spinEditTotal.Properties.EditFormat.FormatString = "$#,###.00";
			this.spinEditTotal.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom;
			this.spinEditTotal.Size = new System.Drawing.Size(124, 30);
			this.spinEditTotal.TabIndex = 105;
			this.spinEditTotal.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.spinEditTotal_ButtonClick);
			this.spinEditTotal.EditValueChanged += new System.EventHandler(this.spinEditTotals_EditValueChanged);
			// 
			// spinEditMonthly
			// 
			this.spinEditMonthly.EditValue = new decimal(new int[] {
            0,
            0,
            0,
            0});
			this.spinEditMonthly.Enabled = false;
			this.spinEditMonthly.Location = new System.Drawing.Point(95, 10);
			this.spinEditMonthly.Name = "spinEditMonthly";
			this.spinEditMonthly.Properties.Appearance.Font = new System.Drawing.Font("Arial", 9F);
			this.spinEditMonthly.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
			this.spinEditMonthly.Properties.Appearance.Options.UseFont = true;
			this.spinEditMonthly.Properties.Appearance.Options.UseForeColor = true;
			this.spinEditMonthly.Properties.AppearanceDisabled.ForeColor = System.Drawing.Color.Black;
			this.spinEditMonthly.Properties.AppearanceDisabled.Options.UseForeColor = true;
			this.spinEditMonthly.Properties.AppearanceFocused.ForeColor = System.Drawing.Color.Black;
			this.spinEditMonthly.Properties.AppearanceFocused.Options.UseForeColor = true;
			this.spinEditMonthly.Properties.AppearanceReadOnly.ForeColor = System.Drawing.Color.Black;
			this.spinEditMonthly.Properties.AppearanceReadOnly.Options.UseForeColor = true;
			this.spinEditMonthly.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject4, "", null, null, true),
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, ((System.Drawing.Image)(resources.GetObject("spinEditMonthly.Properties.Buttons"))), new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject5, "", null, null, true)});
			this.spinEditMonthly.Properties.DisplayFormat.FormatString = "$#,###.00";
			this.spinEditMonthly.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
			this.spinEditMonthly.Properties.EditFormat.FormatString = "$#,###.00";
			this.spinEditMonthly.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom;
			this.spinEditMonthly.Size = new System.Drawing.Size(124, 30);
			this.spinEditMonthly.TabIndex = 104;
			this.spinEditMonthly.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.spinEditMonthly_ButtonClick);
			this.spinEditMonthly.EditValueChanged += new System.EventHandler(this.spinEditTotals_EditValueChanged);
			// 
			// buttonXAddItem
			// 
			this.buttonXAddItem.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
			this.buttonXAddItem.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.buttonXAddItem.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
			this.buttonXAddItem.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
			this.buttonXAddItem.Location = new System.Drawing.Point(617, 8);
			this.buttonXAddItem.Name = "buttonXAddItem";
			this.buttonXAddItem.Size = new System.Drawing.Size(162, 35);
			this.buttonXAddItem.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
			this.buttonXAddItem.TabIndex = 54;
			this.buttonXAddItem.TabStop = false;
			this.buttonXAddItem.Text = "Add Item";
			this.buttonXAddItem.TextColor = System.Drawing.Color.Black;
			this.buttonXAddItem.Click += new System.EventHandler(this.buttonXAddItem_Click);
			// 
			// xtraTabControl
			// 
			this.xtraTabControl.Appearance.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
			this.xtraTabControl.Appearance.ForeColor = System.Drawing.Color.Black;
			this.xtraTabControl.Appearance.Options.UseFont = true;
			this.xtraTabControl.Appearance.Options.UseForeColor = true;
			this.xtraTabControl.AppearancePage.Header.Font = new System.Drawing.Font("Arial", 9.75F);
			this.xtraTabControl.AppearancePage.Header.ForeColor = System.Drawing.Color.Black;
			this.xtraTabControl.AppearancePage.Header.Options.UseFont = true;
			this.xtraTabControl.AppearancePage.Header.Options.UseForeColor = true;
			this.xtraTabControl.AppearancePage.HeaderActive.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
			this.xtraTabControl.AppearancePage.HeaderActive.Options.UseFont = true;
			this.xtraTabControl.AppearancePage.HeaderDisabled.Font = new System.Drawing.Font("Arial", 9.75F);
			this.xtraTabControl.AppearancePage.HeaderDisabled.Options.UseFont = true;
			this.xtraTabControl.AppearancePage.HeaderHotTracked.Font = new System.Drawing.Font("Arial", 9.75F);
			this.xtraTabControl.AppearancePage.HeaderHotTracked.Options.UseFont = true;
			this.xtraTabControl.AppearancePage.PageClient.Font = new System.Drawing.Font("Arial", 9.75F);
			this.xtraTabControl.AppearancePage.PageClient.Options.UseFont = true;
			this.xtraTabControl.Dock = System.Windows.Forms.DockStyle.Fill;
			this.xtraTabControl.Location = new System.Drawing.Point(10, 0);
			this.xtraTabControl.Name = "xtraTabControl";
			this.xtraTabControl.SelectedTabPage = this.xtraTabPageBasicInfo;
			this.xtraTabControl.Size = new System.Drawing.Size(779, 336);
			this.xtraTabControl.TabIndex = 75;
			this.xtraTabControl.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
            this.xtraTabPageBasicInfo,
            this.xtraTabPagePaymentDetails});
			this.xtraTabControl.SelectedPageChanged += new DevExpress.XtraTab.TabPageChangedEventHandler(this.xtraTabControl_SelectedPageChanged);
			// 
			// xtraTabPageBasicInfo
			// 
			this.xtraTabPageBasicInfo.Controls.Add(this.pnBasicInfo);
			this.xtraTabPageBasicInfo.Name = "xtraTabPageBasicInfo";
			this.xtraTabPageBasicInfo.Size = new System.Drawing.Size(777, 308);
			this.xtraTabPageBasicInfo.Text = "Basic Info";
			// 
			// pnBasicInfo
			// 
			this.pnBasicInfo.BackColor = System.Drawing.Color.Transparent;
			this.pnBasicInfo.Controls.Add(this.labelControlFlightDatesWeeks);
			this.pnBasicInfo.Controls.Add(this.pbFlightDates);
			this.pnBasicInfo.Controls.Add(this.laFlightDates);
			this.pnBasicInfo.Controls.Add(this.pbDate);
			this.pnBasicInfo.Controls.Add(this.laDate);
			this.pnBasicInfo.Controls.Add(this.pbDecisionMaker);
			this.pnBasicInfo.Controls.Add(this.laDecisionMaker);
			this.pnBasicInfo.Controls.Add(this.laAdvertiser);
			this.pnBasicInfo.Controls.Add(this.pbAdvertiser);
			this.pnBasicInfo.Controls.Add(this.comboBoxEditDecisionMaker);
			this.pnBasicInfo.Controls.Add(this.ckFlightDates);
			this.pnBasicInfo.Controls.Add(this.laFlightDatesEnd);
			this.pnBasicInfo.Controls.Add(this.comboBoxEditAdvertiser);
			this.pnBasicInfo.Controls.Add(this.dateEditDate);
			this.pnBasicInfo.Controls.Add(this.dateEditFligtDatesStart);
			this.pnBasicInfo.Controls.Add(this.ckDate);
			this.pnBasicInfo.Controls.Add(this.ckAdvertiser);
			this.pnBasicInfo.Controls.Add(this.laFlightDatesStart);
			this.pnBasicInfo.Controls.Add(this.dateEditFligtDatesEnd);
			this.pnBasicInfo.Controls.Add(this.ckDecisionMaker);
			this.pnBasicInfo.Dock = System.Windows.Forms.DockStyle.Fill;
			this.pnBasicInfo.Location = new System.Drawing.Point(0, 0);
			this.pnBasicInfo.Name = "pnBasicInfo";
			this.pnBasicInfo.Size = new System.Drawing.Size(777, 308);
			this.pnBasicInfo.TabIndex = 0;
			// 
			// pbFlightDates
			// 
			this.pbFlightDates.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.pbFlightDates.Image = global::Asa.Dashboard.Properties.Resources.SummaryFlightDates;
			this.pbFlightDates.Location = new System.Drawing.Point(476, 167);
			this.pbFlightDates.Name = "pbFlightDates";
			this.pbFlightDates.Size = new System.Drawing.Size(64, 64);
			this.pbFlightDates.TabIndex = 84;
			this.pbFlightDates.TabStop = false;
			// 
			// laFlightDates
			// 
			this.laFlightDates.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.laFlightDates.AutoSize = true;
			this.laFlightDates.Font = new System.Drawing.Font("Arial", 12F);
			this.laFlightDates.Location = new System.Drawing.Point(562, 187);
			this.laFlightDates.Name = "laFlightDates";
			this.laFlightDates.Size = new System.Drawing.Size(127, 18);
			this.laFlightDates.TabIndex = 83;
			this.laFlightDates.Text = "Campaign Dates";
			// 
			// pbDate
			// 
			this.pbDate.Image = global::Asa.Dashboard.Properties.Resources.SummaryPresentationDate;
			this.pbDate.Location = new System.Drawing.Point(38, 167);
			this.pbDate.Name = "pbDate";
			this.pbDate.Size = new System.Drawing.Size(64, 64);
			this.pbDate.TabIndex = 82;
			this.pbDate.TabStop = false;
			// 
			// laDate
			// 
			this.laDate.AutoSize = true;
			this.laDate.Font = new System.Drawing.Font("Arial", 12F);
			this.laDate.Location = new System.Drawing.Point(121, 186);
			this.laDate.Name = "laDate";
			this.laDate.Size = new System.Drawing.Size(134, 18);
			this.laDate.TabIndex = 81;
			this.laDate.Text = "Presentation Date";
			// 
			// pbDecisionMaker
			// 
			this.pbDecisionMaker.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.pbDecisionMaker.Image = global::Asa.Dashboard.Properties.Resources.SummaryDecisionMaker;
			this.pbDecisionMaker.Location = new System.Drawing.Point(476, 32);
			this.pbDecisionMaker.Name = "pbDecisionMaker";
			this.pbDecisionMaker.Size = new System.Drawing.Size(64, 64);
			this.pbDecisionMaker.TabIndex = 80;
			this.pbDecisionMaker.TabStop = false;
			// 
			// laDecisionMaker
			// 
			this.laDecisionMaker.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.laDecisionMaker.AutoSize = true;
			this.laDecisionMaker.Font = new System.Drawing.Font("Arial", 12F);
			this.laDecisionMaker.Location = new System.Drawing.Point(562, 55);
			this.laDecisionMaker.Name = "laDecisionMaker";
			this.laDecisionMaker.Size = new System.Drawing.Size(119, 18);
			this.laDecisionMaker.TabIndex = 79;
			this.laDecisionMaker.Text = "Decision-maker";
			// 
			// laAdvertiser
			// 
			this.laAdvertiser.AutoSize = true;
			this.laAdvertiser.Font = new System.Drawing.Font("Arial", 12F);
			this.laAdvertiser.Location = new System.Drawing.Point(121, 55);
			this.laAdvertiser.Name = "laAdvertiser";
			this.laAdvertiser.Size = new System.Drawing.Size(118, 18);
			this.laAdvertiser.TabIndex = 78;
			this.laAdvertiser.Text = "Business Name";
			// 
			// pbAdvertiser
			// 
			this.pbAdvertiser.Image = global::Asa.Dashboard.Properties.Resources.SummaryBusinessName;
			this.pbAdvertiser.Location = new System.Drawing.Point(38, 32);
			this.pbAdvertiser.Name = "pbAdvertiser";
			this.pbAdvertiser.Size = new System.Drawing.Size(64, 64);
			this.pbAdvertiser.TabIndex = 77;
			this.pbAdvertiser.TabStop = false;
			// 
			// xtraTabPagePaymentDetails
			// 
			this.xtraTabPagePaymentDetails.Controls.Add(this.simpleSummaryItemContainer);
			this.xtraTabPagePaymentDetails.Name = "xtraTabPagePaymentDetails";
			this.xtraTabPagePaymentDetails.Size = new System.Drawing.Size(777, 308);
			this.xtraTabPagePaymentDetails.Text = "What are you Selling?";
			// 
			// checkEditTotalInvestment
			// 
			this.checkEditTotalInvestment.Location = new System.Drawing.Point(238, 15);
			this.checkEditTotalInvestment.Name = "checkEditTotalInvestment";
			this.checkEditTotalInvestment.Properties.AllowFocused = false;
			this.checkEditTotalInvestment.Properties.Appearance.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
			this.checkEditTotalInvestment.Properties.Appearance.ForeColor = System.Drawing.Color.Gray;
			this.checkEditTotalInvestment.Properties.Appearance.Options.UseFont = true;
			this.checkEditTotalInvestment.Properties.Appearance.Options.UseForeColor = true;
			this.checkEditTotalInvestment.Properties.AutoWidth = true;
			this.checkEditTotalInvestment.Properties.Caption = "Total:";
			this.checkEditTotalInvestment.Size = new System.Drawing.Size(54, 20);
			this.checkEditTotalInvestment.TabIndex = 119;
			this.checkEditTotalInvestment.CheckedChanged += new System.EventHandler(this.checkEdit_CheckedChanged);
			// 
			// checkEditMonthlyInvestment
			// 
			this.checkEditMonthlyInvestment.Location = new System.Drawing.Point(17, 15);
			this.checkEditMonthlyInvestment.Name = "checkEditMonthlyInvestment";
			this.checkEditMonthlyInvestment.Properties.AllowFocused = false;
			this.checkEditMonthlyInvestment.Properties.Appearance.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
			this.checkEditMonthlyInvestment.Properties.Appearance.ForeColor = System.Drawing.Color.Gray;
			this.checkEditMonthlyInvestment.Properties.Appearance.Options.UseFont = true;
			this.checkEditMonthlyInvestment.Properties.Appearance.Options.UseForeColor = true;
			this.checkEditMonthlyInvestment.Properties.AutoWidth = true;
			this.checkEditMonthlyInvestment.Properties.Caption = "Monthly:";
			this.checkEditMonthlyInvestment.Size = new System.Drawing.Size(72, 20);
			this.checkEditMonthlyInvestment.TabIndex = 118;
			this.checkEditMonthlyInvestment.CheckedChanged += new System.EventHandler(this.checkEdit_CheckedChanged);
			// 
			// checkEditTableOutput
			// 
			this.checkEditTableOutput.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.checkEditTableOutput.Location = new System.Drawing.Point(331, 27);
			this.checkEditTableOutput.Name = "checkEditTableOutput";
			this.checkEditTableOutput.Properties.Appearance.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
			this.checkEditTableOutput.Properties.Appearance.Options.UseFont = true;
			this.checkEditTableOutput.Properties.Appearance.Options.UseTextOptions = true;
			this.checkEditTableOutput.Properties.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
			this.checkEditTableOutput.Properties.AutoWidth = true;
			this.checkEditTableOutput.Properties.Caption = "Output 1 Slide Table Grid";
			this.checkEditTableOutput.Size = new System.Drawing.Size(168, 19);
			this.checkEditTableOutput.TabIndex = 121;
			this.checkEditTableOutput.CheckedChanged += new System.EventHandler(this.checkEdit_CheckedChanged);
			// 
			// pnTotals
			// 
			this.pnTotals.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
			this.pnTotals.Controls.Add(this.checkEditTotalInvestment);
			this.pnTotals.Controls.Add(this.checkEditMonthlyInvestment);
			this.pnTotals.Controls.Add(this.buttonXAddItem);
			this.pnTotals.Controls.Add(this.spinEditMonthly);
			this.pnTotals.Controls.Add(this.spinEditTotal);
			this.pnTotals.Dock = System.Windows.Forms.DockStyle.Bottom;
			this.pnTotals.Location = new System.Drawing.Point(10, 336);
			this.pnTotals.Name = "pnTotals";
			this.pnTotals.Size = new System.Drawing.Size(779, 51);
			this.pnTotals.TabIndex = 85;
			this.pnTotals.Visible = false;
			// 
			// labelControlFlightDatesWeeks
			// 
			this.labelControlFlightDatesWeeks.AllowHtmlString = true;
			this.labelControlFlightDatesWeeks.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.labelControlFlightDatesWeeks.Appearance.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
			this.labelControlFlightDatesWeeks.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
			this.labelControlFlightDatesWeeks.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
			this.labelControlFlightDatesWeeks.Location = new System.Drawing.Point(619, 286);
			this.labelControlFlightDatesWeeks.Name = "labelControlFlightDatesWeeks";
			this.labelControlFlightDatesWeeks.Size = new System.Drawing.Size(120, 19);
			this.labelControlFlightDatesWeeks.TabIndex = 85;
			// 
			// SlideSimpleSummaryControl
			// 
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
			this.BackColor = System.Drawing.Color.White;
			this.Name = "SlideSimpleSummaryControl";
			this.pnMain.ResumeLayout(false);
			this.pnBottom.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEditSlideHeader.Properties)).EndInit();
			this.pnTop.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.checkEditSolutionNew.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.pbDescription)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEditFligtDatesStart.Properties.CalendarTimeProperties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEditFligtDatesStart.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEditFligtDatesEnd.Properties.CalendarTimeProperties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEditFligtDatesEnd.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEditDecisionMaker.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEditAdvertiser.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEditDate.Properties.CalendarTimeProperties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEditDate.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.spinEditTotal.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.spinEditMonthly.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.xtraTabControl)).EndInit();
			this.xtraTabControl.ResumeLayout(false);
			this.xtraTabPageBasicInfo.ResumeLayout(false);
			this.pnBasicInfo.ResumeLayout(false);
			this.pnBasicInfo.PerformLayout();
			((System.ComponentModel.ISupportInitialize)(this.pbFlightDates)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.pbDate)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.pbDecisionMaker)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.pbAdvertiser)).EndInit();
			this.xtraTabPagePaymentDetails.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.checkEditTotalInvestment.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEditMonthlyInvestment.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEditTableOutput.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.pnTotals)).EndInit();
			this.pnTotals.ResumeLayout(false);
			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(DashboardDesignerUC));
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem1 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem2 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem3 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem4 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem5 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem6 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem7 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem8 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem9 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem10 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem11 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem12 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItem galleryItem13 = new DevExpress.XtraBars.Ribbon.GalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup2 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup3 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup4 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup5 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup6 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup7 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup8 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup9 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem1 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem2 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem3 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup10 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem4 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem5 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem6 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem7 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem8 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem9 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup11 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem10 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem11 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem12 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem13 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem14 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem15 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem16 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup12 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem17 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem18 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup13 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem19 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup14 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem20 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem21 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem chartSeriesTypeGalleryItem22 = new DevExpress.DashboardWin.Bars.ChartSeriesTypeGalleryItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup15 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup16 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup17 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem1 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip2 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem2 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip3 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem3 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem3 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip4 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem4 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem4 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip5 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem5 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem5 = new DevExpress.Utils.ToolTipItem();
            this.dashboardDesignerMain = new DevExpress.DashboardWin.DashboardDesigner();
            this.ribbonControlMain = new DevExpress.XtraBars.Ribbon.RibbonControl();
            this.dashboardBackstageViewControl1 = new DevExpress.DashboardWin.Bars.DashboardBackstageViewControl();
            this.dashboardBarAndDockingControllerMain = new DevExpress.DashboardWin.Native.DashboardBarAndDockingController(this.components);
            this.backstageViewClientControl1 = new DevExpress.XtraBars.Ribbon.BackstageViewClientControl();
            this.recentDashboardsControl1 = new DevExpress.DashboardWin.Bars.RecentDashboardsControl();
            this.dashboardBackstageRecentTab1 = new DevExpress.DashboardWin.Bars.DashboardBackstageRecentTab();
            this.dashboardBackstageNewButton1 = new DevExpress.DashboardWin.Bars.DashboardBackstageNewButton();
            this.dashboardBackstageOpenButton1 = new DevExpress.DashboardWin.Bars.DashboardBackstageOpenButton();
            this.dashboardBackstageSaveButton1 = new DevExpress.DashboardWin.Bars.DashboardBackstageSaveButton();
            this.dashboardBackstageSaveAsButton1 = new DevExpress.DashboardWin.Bars.DashboardBackstageSaveAsButton();
            this.fileNewBarItem1 = new DevExpress.DashboardWin.Bars.FileNewBarItem();
            this.fileOpenBarItem1 = new DevExpress.DashboardWin.Bars.FileOpenBarItem();
            this.fileSaveBarItem1 = new DevExpress.DashboardWin.Bars.FileSaveBarItem();
            this.fileSaveAsBarItem1 = new DevExpress.DashboardWin.Bars.FileSaveAsBarItem();
            this.undoBarItem1 = new DevExpress.DashboardWin.Bars.UndoBarItem();
            this.redoBarItem1 = new DevExpress.DashboardWin.Bars.RedoBarItem();
            this.newDataSourceBarItem1 = new DevExpress.DashboardWin.Bars.NewDataSourceBarItem();
            this.editDataSourceBarItem1 = new DevExpress.DashboardWin.Bars.EditDataSourceBarItem();
            this.renameDataSourceBarItem1 = new DevExpress.DashboardWin.Bars.RenameDataSourceBarItem();
            this.deleteDataSourceBarItem1 = new DevExpress.DashboardWin.Bars.DeleteDataSourceBarItem();
            this.serverModeBarItem1 = new DevExpress.DashboardWin.Bars.ServerModeBarItem();
            this.addCalculatedFieldBarItem1 = new DevExpress.DashboardWin.Bars.AddCalculatedFieldBarItem();
            this.dashboardParametersBarItem1 = new DevExpress.DashboardWin.Bars.DashboardParametersBarItem();
            this.editDataSourceFilterBarItem1 = new DevExpress.DashboardWin.Bars.EditDataSourceFilterBarItem();
            this.clearDataSourceFilterBarItem1 = new DevExpress.DashboardWin.Bars.ClearDataSourceFilterBarItem();
            this.insertPivotBarItem1 = new DevExpress.DashboardWin.Bars.InsertPivotBarItem();
            this.insertGridBarItem1 = new DevExpress.DashboardWin.Bars.InsertGridBarItem();
            this.insertChartBarItem1 = new DevExpress.DashboardWin.Bars.InsertChartBarItem();
            this.insertPiesBarItem1 = new DevExpress.DashboardWin.Bars.InsertPiesBarItem();
            this.insertGaugesBarItem1 = new DevExpress.DashboardWin.Bars.InsertGaugesBarItem();
            this.insertCardsBarItem1 = new DevExpress.DashboardWin.Bars.InsertCardsBarItem();
            this.insertChoroplethMapBarItem1 = new DevExpress.DashboardWin.Bars.InsertChoroplethMapBarItem();
            this.insertGeoPointMapBarSubItem1 = new DevExpress.DashboardWin.Bars.InsertGeoPointMapBarSubItem();
            this.insertGeoPointMapBarItem1 = new DevExpress.DashboardWin.Bars.InsertGeoPointMapBarItem();
            this.insertBubbleMapBarItem1 = new DevExpress.DashboardWin.Bars.InsertBubbleMapBarItem();
            this.insertPieMapBarItem1 = new DevExpress.DashboardWin.Bars.InsertPieMapBarItem();
            this.insertRangeFilterBarItem1 = new DevExpress.DashboardWin.Bars.InsertRangeFilterBarItem();
            this.insertImageBarItem1 = new DevExpress.DashboardWin.Bars.InsertImageBarItem();
            this.insertTextBoxBarItem1 = new DevExpress.DashboardWin.Bars.InsertTextBoxBarItem();
            this.duplicateItemBarItem1 = new DevExpress.DashboardWin.Bars.DuplicateItemBarItem();
            this.deleteItemBarItem1 = new DevExpress.DashboardWin.Bars.DeleteItemBarItem();
            this.convertDashboardItemTypeBarItem1 = new DevExpress.DashboardWin.Bars.ConvertDashboardItemTypeBarItem();
            this.convertToPivotBarItem1 = new DevExpress.DashboardWin.Bars.ConvertToPivotBarItem();
            this.convertToGridBarItem1 = new DevExpress.DashboardWin.Bars.ConvertToGridBarItem();
            this.convertToChartBarItem1 = new DevExpress.DashboardWin.Bars.ConvertToChartBarItem();
            this.convertToPieBarItem1 = new DevExpress.DashboardWin.Bars.ConvertToPieBarItem();
            this.convertToGaugeBarItem1 = new DevExpress.DashboardWin.Bars.ConvertToGaugeBarItem();
            this.convertToCardBarItem1 = new DevExpress.DashboardWin.Bars.ConvertToCardBarItem();
            this.convertToChoroplethMapBarItem1 = new DevExpress.DashboardWin.Bars.ConvertToChoroplethMapBarItem();
            this.convertGeoPointMapBaseBarItem1 = new DevExpress.DashboardWin.Bars.ConvertGeoPointMapBaseBarItem();
            this.convertToGeoPointMapBarItem1 = new DevExpress.DashboardWin.Bars.ConvertToGeoPointMapBarItem();
            this.convertToBubbleMapBarItem1 = new DevExpress.DashboardWin.Bars.ConvertToBubbleMapBarItem();
            this.convertToPieMapBarItem1 = new DevExpress.DashboardWin.Bars.ConvertToPieMapBarItem();
            this.convertToRangeFilterBarItem1 = new DevExpress.DashboardWin.Bars.ConvertToRangeFilterBarItem();
            this.removeDataItemsBarItem1 = new DevExpress.DashboardWin.Bars.RemoveDataItemsBarItem();
            this.transposeItemBarItem1 = new DevExpress.DashboardWin.Bars.TransposeItemBarItem();
            this.dashboardTitleBarItem1 = new DevExpress.DashboardWin.Bars.DashboardTitleBarItem();
            this.setCurrencyCultureBarItem1 = new DevExpress.DashboardWin.Bars.SetCurrencyCultureBarItem();
            this.dashboardSkinsBarItem1 = new DevExpress.DashboardWin.Bars.DashboardSkinsBarItem();
            this.editFilterBarItem1 = new DevExpress.DashboardWin.Bars.EditFilterBarItem();
            this.clearFilterBarItem1 = new DevExpress.DashboardWin.Bars.ClearFilterBarItem();
            this.masterFilterBarItem1 = new DevExpress.DashboardWin.Bars.MasterFilterBarItem();
            this.multipleValuesMasterFilterBarItem1 = new DevExpress.DashboardWin.Bars.MultipleValuesMasterFilterBarItem();
            this.drillDownBarItem1 = new DevExpress.DashboardWin.Bars.DrillDownBarItem();
            this.ignoreMasterFiltersBarItem1 = new DevExpress.DashboardWin.Bars.IgnoreMasterFiltersBarItem();
            this.crossDataSourceFilteringBarItem1 = new DevExpress.DashboardWin.Bars.CrossDataSourceFilteringBarItem();
            this.chartTargetDimensionsArgumentsBarItem1 = new DevExpress.DashboardWin.Bars.ChartTargetDimensionsArgumentsBarItem();
            this.chartTargetDimensionsSeriesBarItem1 = new DevExpress.DashboardWin.Bars.ChartTargetDimensionsSeriesBarItem();
            this.pieTargetDimensionsArgumentsBarItem1 = new DevExpress.DashboardWin.Bars.PieTargetDimensionsArgumentsBarItem();
            this.pieTargetDimensionsSeriesBarItem1 = new DevExpress.DashboardWin.Bars.PieTargetDimensionsSeriesBarItem();
            this.geoPointMapClusterizationBarItem1 = new DevExpress.DashboardWin.Bars.GeoPointMapClusterizationBarItem();
            this.showItemCaptionBarItem1 = new DevExpress.DashboardWin.Bars.ShowItemCaptionBarItem();
            this.editItemNamesBarItem1 = new DevExpress.DashboardWin.Bars.EditItemNamesBarItem();
            this.contentAutoArrangeBarItem1 = new DevExpress.DashboardWin.Bars.ContentAutoArrangeBarItem();
            this.contentArrangeInColumnsBarItem1 = new DevExpress.DashboardWin.Bars.ContentArrangeInColumnsBarItem();
            this.contentArrangeInRowsBarItem1 = new DevExpress.DashboardWin.Bars.ContentArrangeInRowsBarItem();
            this.contentArrangementCountBarItem1 = new DevExpress.DashboardWin.Bars.ContentArrangementCountBarItem();
            this.repositoryItemSpinEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
            this.gridHorizontalLinesBarItem1 = new DevExpress.DashboardWin.Bars.GridHorizontalLinesBarItem();
            this.gridVerticalLinesBarItem1 = new DevExpress.DashboardWin.Bars.GridVerticalLinesBarItem();
            this.gridMergeCellsBarItem1 = new DevExpress.DashboardWin.Bars.GridMergeCellsBarItem();
            this.gridBandedRowsBarItem1 = new DevExpress.DashboardWin.Bars.GridBandedRowsBarItem();
            this.gridColumnHeadersBarItem1 = new DevExpress.DashboardWin.Bars.GridColumnHeadersBarItem();
            this.chartRotateBarItem1 = new DevExpress.DashboardWin.Bars.ChartRotateBarItem();
            this.chartXAxisSettingsBarItem1 = new DevExpress.DashboardWin.Bars.ChartXAxisSettingsBarItem();
            this.chartYAxisSettingsBarItem1 = new DevExpress.DashboardWin.Bars.ChartYAxisSettingsBarItem();
            this.chartShowLegendBarItem1 = new DevExpress.DashboardWin.Bars.ChartShowLegendBarItem();
            this.galleryChartLegendPositionItem1 = new DevExpress.DashboardWin.Bars.GalleryChartLegendPositionItem();
            this.galleryChartSeriesTypeItem1 = new DevExpress.DashboardWin.Bars.GalleryChartSeriesTypeItem();
            this.pieLabelsDataLabelsBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsDataLabelsBarItem();
            this.pieLabelsDataLabelsNoneBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsDataLabelsNoneBarItem();
            this.pieLabelsDataLabelArgumentBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsDataLabelArgumentBarItem();
            this.pieLabelsDataLabelsValueBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsDataLabelsValueBarItem();
            this.pieLabelsDataLabelsArgumentAndValueBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsDataLabelsArgumentAndValueBarItem();
            this.pieLabelsDataLabelsPercentBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsDataLabelsPercentBarItem();
            this.pieLabelsDataLabelsValueAndPercentBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsDataLabelsValueAndPercentBarItem();
            this.pieLabelsDataLabelsArgumentAndPercentBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsDataLabelsArgumentAndPercentBarItem();
            this.pieLabelsDataLabelsArgumentValueAndPercentBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsDataLabelsArgumentValueAndPercentBarItem();
            this.pieTooltipsBarItem1 = new DevExpress.DashboardWin.Bars.PieTooltipsBarItem();
            this.pieLabelsTooltipsNoneBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsTooltipsNoneBarItem();
            this.pieLabelsTooltipsArgumentBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsTooltipsArgumentBarItem();
            this.pieLabelsTooltipsValueBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsTooltipsValueBarItem();
            this.pieLabelsTooltipsArgumentAndValueBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsTooltipsArgumentAndValueBarItem();
            this.pieLabelsTooltipsPercentBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsTooltipsPercentBarItem();
            this.pieLabelsTooltipsValueAndPercentBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsTooltipsValueAndPercentBarItem();
            this.pieLabelsTooltipsArgumentAndPercentBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsTooltipsArgumentAndPercentBarItem();
            this.pieLabelsTooltipsArgumentValueAndPercentBarItem1 = new DevExpress.DashboardWin.Bars.PieLabelsTooltipsArgumentValueAndPercentBarItem();
            this.pieStylePieBarItem1 = new DevExpress.DashboardWin.Bars.PieStylePieBarItem();
            this.pieStyleDonutBarItem1 = new DevExpress.DashboardWin.Bars.PieStyleDonutBarItem();
            this.pieShowCaptionsBarItem1 = new DevExpress.DashboardWin.Bars.PieShowCaptionsBarItem();
            this.gaugeStyleFullCircularBarItem1 = new DevExpress.DashboardWin.Bars.GaugeStyleFullCircularBarItem();
            this.gaugeStyleHalfCircularBarItem1 = new DevExpress.DashboardWin.Bars.GaugeStyleHalfCircularBarItem();
            this.gaugeStyleLeftQuarterCircularBarItem1 = new DevExpress.DashboardWin.Bars.GaugeStyleLeftQuarterCircularBarItem();
            this.gaugeStyleRightQuarterCircularBarItem1 = new DevExpress.DashboardWin.Bars.GaugeStyleRightQuarterCircularBarItem();
            this.gaugeStyleThreeForthCircularBarItem1 = new DevExpress.DashboardWin.Bars.GaugeStyleThreeForthCircularBarItem();
            this.gaugeStyleLinearHorizontalBarItem1 = new DevExpress.DashboardWin.Bars.GaugeStyleLinearHorizontalBarItem();
            this.gaugeStyleLinearVerticalBarItem1 = new DevExpress.DashboardWin.Bars.GaugeStyleLinearVerticalBarItem();
            this.gaugeShowCaptionsBarItem1 = new DevExpress.DashboardWin.Bars.GaugeShowCaptionsBarItem();
            this.imageLoadBarItem1 = new DevExpress.DashboardWin.Bars.ImageLoadBarItem();
            this.imageImportBarItem1 = new DevExpress.DashboardWin.Bars.ImageImportBarItem();
            this.imageSizeModeClipBarItem1 = new DevExpress.DashboardWin.Bars.ImageSizeModeClipBarItem();
            this.imageSizeModeStretchBarItem1 = new DevExpress.DashboardWin.Bars.ImageSizeModeStretchBarItem();
            this.imageSizeModeSqueezeBarItem1 = new DevExpress.DashboardWin.Bars.ImageSizeModeSqueezeBarItem();
            this.imageSizeModeZoomBarItem1 = new DevExpress.DashboardWin.Bars.ImageSizeModeZoomBarItem();
            this.imageAlignmentTopLeftBarItem1 = new DevExpress.DashboardWin.Bars.ImageAlignmentTopLeftBarItem();
            this.imageAlignmentCenterLeftBarItem1 = new DevExpress.DashboardWin.Bars.ImageAlignmentCenterLeftBarItem();
            this.imageAlignmentBottomLeftBarItem1 = new DevExpress.DashboardWin.Bars.ImageAlignmentBottomLeftBarItem();
            this.imageAlignmentTopCenterBarItem1 = new DevExpress.DashboardWin.Bars.ImageAlignmentTopCenterBarItem();
            this.imageAlignmentCenterCenterBarItem1 = new DevExpress.DashboardWin.Bars.ImageAlignmentCenterCenterBarItem();
            this.imageAlignmentBottomCenterBarItem1 = new DevExpress.DashboardWin.Bars.ImageAlignmentBottomCenterBarItem();
            this.imageAlignmentTopRightBarItem1 = new DevExpress.DashboardWin.Bars.ImageAlignmentTopRightBarItem();
            this.imageAlignmentCenterRightBarItem1 = new DevExpress.DashboardWin.Bars.ImageAlignmentCenterRightBarItem();
            this.imageAlignmentBottomRightBarItem1 = new DevExpress.DashboardWin.Bars.ImageAlignmentBottomRightBarItem();
            this.textBoxEditTextBarItem1 = new DevExpress.DashboardWin.Bars.TextBoxEditTextBarItem();
            this.rangeFilterLineSeriesTypeBarItem1 = new DevExpress.DashboardWin.Bars.RangeFilterLineSeriesTypeBarItem();
            this.rangeFilterStackedLineSeriesTypeBarItem1 = new DevExpress.DashboardWin.Bars.RangeFilterStackedLineSeriesTypeBarItem();
            this.rangeFilterFullStackedLineSeriesTypeBarItem1 = new DevExpress.DashboardWin.Bars.RangeFilterFullStackedLineSeriesTypeBarItem();
            this.rangeFilterAreaSeriesTypeBarItem1 = new DevExpress.DashboardWin.Bars.RangeFilterAreaSeriesTypeBarItem();
            this.rangeFilterStackedAreaSeriesTypeBarItem1 = new DevExpress.DashboardWin.Bars.RangeFilterStackedAreaSeriesTypeBarItem();
            this.rangeFilterFullStackedAreaSeriesTypeBarItem1 = new DevExpress.DashboardWin.Bars.RangeFilterFullStackedAreaSeriesTypeBarItem();
            this.pivotInitialStateBarItem1 = new DevExpress.DashboardWin.Bars.PivotInitialStateBarItem();
            this.pivotAutoExpandColumnBarItem1 = new DevExpress.DashboardWin.Bars.PivotAutoExpandColumnBarItem();
            this.pivotAutoExpandRowBarItem1 = new DevExpress.DashboardWin.Bars.PivotAutoExpandRowBarItem();
            this.mapLoadBarItem1 = new DevExpress.DashboardWin.Bars.MapLoadBarItem();
            this.mapImportBarItem1 = new DevExpress.DashboardWin.Bars.MapImportBarItem();
            this.mapDefaultShapefileBarItem1 = new DevExpress.DashboardWin.Bars.MapDefaultShapefileBarItem();
            this.mapWorldCountriesBarItem1 = new DevExpress.DashboardWin.Bars.MapWorldCountriesBarItem();
            this.mapEuropeBarItem1 = new DevExpress.DashboardWin.Bars.MapEuropeBarItem();
            this.mapAsiaBarItem1 = new DevExpress.DashboardWin.Bars.MapAsiaBarItem();
            this.mapNorthAmericaBarItem1 = new DevExpress.DashboardWin.Bars.MapNorthAmericaBarItem();
            this.mapSouthAmericaBarItem1 = new DevExpress.DashboardWin.Bars.MapSouthAmericaBarItem();
            this.mapAfricaBarItem1 = new DevExpress.DashboardWin.Bars.MapAfricaBarItem();
            this.mapUSABarItem1 = new DevExpress.DashboardWin.Bars.MapUSABarItem();
            this.mapCanadaBarItem1 = new DevExpress.DashboardWin.Bars.MapCanadaBarItem();
            this.mapLockNavigationBarItem1 = new DevExpress.DashboardWin.Bars.MapLockNavigationBarItem();
            this.mapFullExtentBarItem1 = new DevExpress.DashboardWin.Bars.MapFullExtentBarItem();
            this.mapShowLegendBarItem1 = new DevExpress.DashboardWin.Bars.MapShowLegendBarItem();
            this.galleryMapLegendPositionItem1 = new DevExpress.DashboardWin.Bars.GalleryMapLegendPositionItem();
            this.changeWeightedLegendTypeBarItem1 = new DevExpress.DashboardWin.Bars.ChangeWeightedLegendTypeBarItem();
            this.weightedLegendNoneBarItem1 = new DevExpress.DashboardWin.Bars.WeightedLegendNoneBarItem();
            this.weightedLegendLinearBarItem1 = new DevExpress.DashboardWin.Bars.WeightedLegendLinearBarItem();
            this.weightedLegendNestedBarItem1 = new DevExpress.DashboardWin.Bars.WeightedLegendNestedBarItem();
            this.galleryWeightedLegendPositionItem1 = new DevExpress.DashboardWin.Bars.GalleryWeightedLegendPositionItem();
            this.pieMapIsWeightedBarItem1 = new DevExpress.DashboardWin.Bars.PieMapIsWeightedBarItem();
            this.quickAccessUndoBarItem1 = new DevExpress.DashboardWin.Bars.QuickAccessUndoBarItem();
            this.quickAccessRedoBarItem1 = new DevExpress.DashboardWin.Bars.QuickAccessRedoBarItem();
            this.bbiNew = new DevExpress.XtraBars.BarButtonItem();
            this.bbiOpen = new DevExpress.XtraBars.BarButtonItem();
            this.bbiSave = new DevExpress.XtraBars.BarButtonItem();
            this.bbiSaveAs = new DevExpress.XtraBars.BarButtonItem();
            this.bbiAddDatasource = new DevExpress.XtraBars.BarButtonItem();
            this.pivotToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.PivotToolsRibbonPageCategory();
            this.dataRibbonPage1 = new DevExpress.DashboardWin.Bars.DataRibbonPage();
            this.filteringRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.FilteringRibbonPageGroup();
            this.interactivitySettingsRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.InteractivitySettingsRibbonPageGroup();
            this.pivotLayoutRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.PivotLayoutRibbonPageGroup();
            this.dashboardItemDesignRibbonPage9 = new DevExpress.DashboardWin.Bars.DashboardItemDesignRibbonPage();
            this.commonItemDesignRibbonPageGroup9 = new DevExpress.DashboardWin.Bars.CommonItemDesignRibbonPageGroup();
            this.gridToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.GridToolsRibbonPageCategory();
            this.dataRibbonPage2 = new DevExpress.DashboardWin.Bars.DataRibbonPage();
            this.filteringRibbonPageGroup2 = new DevExpress.DashboardWin.Bars.FilteringRibbonPageGroup();
            this.masterFilterRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.MasterFilterRibbonPageGroup();
            this.interactivitySettingsRibbonPageGroup2 = new DevExpress.DashboardWin.Bars.InteractivitySettingsRibbonPageGroup();
            this.dashboardItemDesignRibbonPage1 = new DevExpress.DashboardWin.Bars.DashboardItemDesignRibbonPage();
            this.commonItemDesignRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.CommonItemDesignRibbonPageGroup();
            this.gridCellsRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.GridCellsRibbonPageGroup();
            this.chartToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.ChartToolsRibbonPageCategory();
            this.dataRibbonPage3 = new DevExpress.DashboardWin.Bars.DataRibbonPage();
            this.filteringRibbonPageGroup3 = new DevExpress.DashboardWin.Bars.FilteringRibbonPageGroup();
            this.masterFilterRibbonPageGroup2 = new DevExpress.DashboardWin.Bars.MasterFilterRibbonPageGroup();
            this.interactivitySettingsRibbonPageGroup3 = new DevExpress.DashboardWin.Bars.InteractivitySettingsRibbonPageGroup();
            this.targetDimensionsRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.TargetDimensionsRibbonPageGroup();
            this.dashboardItemDesignRibbonPage2 = new DevExpress.DashboardWin.Bars.DashboardItemDesignRibbonPage();
            this.commonItemDesignRibbonPageGroup2 = new DevExpress.DashboardWin.Bars.CommonItemDesignRibbonPageGroup();
            this.chartLayoutPageGroup1 = new DevExpress.DashboardWin.Bars.ChartLayoutPageGroup();
            this.chartLegendPositionPageGroup1 = new DevExpress.DashboardWin.Bars.ChartLegendPositionPageGroup();
            this.chartStylePageGroup1 = new DevExpress.DashboardWin.Bars.ChartStylePageGroup();
            this.piesToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.PiesToolsRibbonPageCategory();
            this.dataRibbonPage4 = new DevExpress.DashboardWin.Bars.DataRibbonPage();
            this.filteringRibbonPageGroup4 = new DevExpress.DashboardWin.Bars.FilteringRibbonPageGroup();
            this.masterFilterRibbonPageGroup3 = new DevExpress.DashboardWin.Bars.MasterFilterRibbonPageGroup();
            this.interactivitySettingsRibbonPageGroup4 = new DevExpress.DashboardWin.Bars.InteractivitySettingsRibbonPageGroup();
            this.targetDimensionsRibbonPageGroup2 = new DevExpress.DashboardWin.Bars.TargetDimensionsRibbonPageGroup();
            this.dashboardItemDesignRibbonPage3 = new DevExpress.DashboardWin.Bars.DashboardItemDesignRibbonPage();
            this.commonItemDesignRibbonPageGroup3 = new DevExpress.DashboardWin.Bars.CommonItemDesignRibbonPageGroup();
            this.contentArrangementRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.ContentArrangementRibbonPageGroup();
            this.pieLabelsRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.PieLabelsRibbonPageGroup();
            this.pieStyleRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.PieStyleRibbonPageGroup();
            this.gaugesToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.GaugesToolsRibbonPageCategory();
            this.dataRibbonPage5 = new DevExpress.DashboardWin.Bars.DataRibbonPage();
            this.filteringRibbonPageGroup5 = new DevExpress.DashboardWin.Bars.FilteringRibbonPageGroup();
            this.masterFilterRibbonPageGroup4 = new DevExpress.DashboardWin.Bars.MasterFilterRibbonPageGroup();
            this.interactivitySettingsRibbonPageGroup5 = new DevExpress.DashboardWin.Bars.InteractivitySettingsRibbonPageGroup();
            this.dashboardItemDesignRibbonPage4 = new DevExpress.DashboardWin.Bars.DashboardItemDesignRibbonPage();
            this.commonItemDesignRibbonPageGroup4 = new DevExpress.DashboardWin.Bars.CommonItemDesignRibbonPageGroup();
            this.contentArrangementRibbonPageGroup2 = new DevExpress.DashboardWin.Bars.ContentArrangementRibbonPageGroup();
            this.gaugeStyleRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.GaugeStyleRibbonPageGroup();
            this.gaugesLabelsRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.GaugesLabelsRibbonPageGroup();
            this.cardsToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.CardsToolsRibbonPageCategory();
            this.dataRibbonPage6 = new DevExpress.DashboardWin.Bars.DataRibbonPage();
            this.filteringRibbonPageGroup6 = new DevExpress.DashboardWin.Bars.FilteringRibbonPageGroup();
            this.masterFilterRibbonPageGroup5 = new DevExpress.DashboardWin.Bars.MasterFilterRibbonPageGroup();
            this.interactivitySettingsRibbonPageGroup6 = new DevExpress.DashboardWin.Bars.InteractivitySettingsRibbonPageGroup();
            this.dashboardItemDesignRibbonPage5 = new DevExpress.DashboardWin.Bars.DashboardItemDesignRibbonPage();
            this.commonItemDesignRibbonPageGroup5 = new DevExpress.DashboardWin.Bars.CommonItemDesignRibbonPageGroup();
            this.contentArrangementRibbonPageGroup3 = new DevExpress.DashboardWin.Bars.ContentArrangementRibbonPageGroup();
            this.rangeFilterToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.RangeFilterToolsRibbonPageCategory();
            this.dataRibbonPage7 = new DevExpress.DashboardWin.Bars.DataRibbonPage();
            this.filteringRibbonPageGroup7 = new DevExpress.DashboardWin.Bars.FilteringRibbonPageGroup();
            this.interactivitySettingsRibbonPageGroup7 = new DevExpress.DashboardWin.Bars.InteractivitySettingsRibbonPageGroup();
            this.dashboardItemDesignRibbonPage8 = new DevExpress.DashboardWin.Bars.DashboardItemDesignRibbonPage();
            this.commonItemDesignRibbonPageGroup8 = new DevExpress.DashboardWin.Bars.CommonItemDesignRibbonPageGroup();
            this.rangeFilterSeriesTypeRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.RangeFilterSeriesTypeRibbonPageGroup();
            this.choroplethMapToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.ChoroplethMapToolsRibbonPageCategory();
            this.dataRibbonPage8 = new DevExpress.DashboardWin.Bars.DataRibbonPage();
            this.filteringRibbonPageGroup8 = new DevExpress.DashboardWin.Bars.FilteringRibbonPageGroup();
            this.masterFilterRibbonPageGroup6 = new DevExpress.DashboardWin.Bars.MasterFilterRibbonPageGroup();
            this.interactivitySettingsRibbonPageGroup8 = new DevExpress.DashboardWin.Bars.InteractivitySettingsRibbonPageGroup();
            this.dashboardItemDesignRibbonPage10 = new DevExpress.DashboardWin.Bars.DashboardItemDesignRibbonPage();
            this.commonItemDesignRibbonPageGroup10 = new DevExpress.DashboardWin.Bars.CommonItemDesignRibbonPageGroup();
            this.mapShapefileRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.MapShapefileRibbonPageGroup();
            this.mapNavigationPageGroup1 = new DevExpress.DashboardWin.Bars.MapNavigationPageGroup();
            this.mapLegendPositionPageGroup1 = new DevExpress.DashboardWin.Bars.MapLegendPositionPageGroup();
            this.geoPointMapToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.GeoPointMapToolsRibbonPageCategory();
            this.dataRibbonPage9 = new DevExpress.DashboardWin.Bars.DataRibbonPage();
            this.filteringRibbonPageGroup9 = new DevExpress.DashboardWin.Bars.FilteringRibbonPageGroup();
            this.masterFilterRibbonPageGroup7 = new DevExpress.DashboardWin.Bars.MasterFilterRibbonPageGroup();
            this.interactivitySettingsRibbonPageGroup9 = new DevExpress.DashboardWin.Bars.InteractivitySettingsRibbonPageGroup();
            this.geoPointMapClusterizationRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.GeoPointMapClusterizationRibbonPageGroup();
            this.dashboardItemDesignRibbonPage11 = new DevExpress.DashboardWin.Bars.DashboardItemDesignRibbonPage();
            this.commonItemDesignRibbonPageGroup11 = new DevExpress.DashboardWin.Bars.CommonItemDesignRibbonPageGroup();
            this.mapShapefileRibbonPageGroup2 = new DevExpress.DashboardWin.Bars.MapShapefileRibbonPageGroup();
            this.mapNavigationPageGroup2 = new DevExpress.DashboardWin.Bars.MapNavigationPageGroup();
            this.bubbleMapToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.BubbleMapToolsRibbonPageCategory();
            this.dataRibbonPage10 = new DevExpress.DashboardWin.Bars.DataRibbonPage();
            this.filteringRibbonPageGroup10 = new DevExpress.DashboardWin.Bars.FilteringRibbonPageGroup();
            this.masterFilterRibbonPageGroup8 = new DevExpress.DashboardWin.Bars.MasterFilterRibbonPageGroup();
            this.interactivitySettingsRibbonPageGroup10 = new DevExpress.DashboardWin.Bars.InteractivitySettingsRibbonPageGroup();
            this.geoPointMapClusterizationRibbonPageGroup2 = new DevExpress.DashboardWin.Bars.GeoPointMapClusterizationRibbonPageGroup();
            this.dashboardItemDesignRibbonPage12 = new DevExpress.DashboardWin.Bars.DashboardItemDesignRibbonPage();
            this.commonItemDesignRibbonPageGroup12 = new DevExpress.DashboardWin.Bars.CommonItemDesignRibbonPageGroup();
            this.mapShapefileRibbonPageGroup3 = new DevExpress.DashboardWin.Bars.MapShapefileRibbonPageGroup();
            this.mapNavigationPageGroup3 = new DevExpress.DashboardWin.Bars.MapNavigationPageGroup();
            this.mapLegendPositionPageGroup2 = new DevExpress.DashboardWin.Bars.MapLegendPositionPageGroup();
            this.weightedLegendPageGroup1 = new DevExpress.DashboardWin.Bars.WeightedLegendPageGroup();
            this.pieMapToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.PieMapToolsRibbonPageCategory();
            this.dataRibbonPage11 = new DevExpress.DashboardWin.Bars.DataRibbonPage();
            this.filteringRibbonPageGroup11 = new DevExpress.DashboardWin.Bars.FilteringRibbonPageGroup();
            this.masterFilterRibbonPageGroup9 = new DevExpress.DashboardWin.Bars.MasterFilterRibbonPageGroup();
            this.interactivitySettingsRibbonPageGroup11 = new DevExpress.DashboardWin.Bars.InteractivitySettingsRibbonPageGroup();
            this.geoPointMapClusterizationRibbonPageGroup3 = new DevExpress.DashboardWin.Bars.GeoPointMapClusterizationRibbonPageGroup();
            this.dashboardItemDesignRibbonPage13 = new DevExpress.DashboardWin.Bars.DashboardItemDesignRibbonPage();
            this.commonItemDesignRibbonPageGroup13 = new DevExpress.DashboardWin.Bars.CommonItemDesignRibbonPageGroup();
            this.mapShapefileRibbonPageGroup4 = new DevExpress.DashboardWin.Bars.MapShapefileRibbonPageGroup();
            this.mapNavigationPageGroup4 = new DevExpress.DashboardWin.Bars.MapNavigationPageGroup();
            this.mapLegendPositionPageGroup3 = new DevExpress.DashboardWin.Bars.MapLegendPositionPageGroup();
            this.weightedLegendPageGroup2 = new DevExpress.DashboardWin.Bars.WeightedLegendPageGroup();
            this.pieMapOptionsPageGroup1 = new DevExpress.DashboardWin.Bars.PieMapOptionsPageGroup();
            this.imageToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.ImageToolsRibbonPageCategory();
            this.dashboardItemDesignRibbonPage6 = new DevExpress.DashboardWin.Bars.DashboardItemDesignRibbonPage();
            this.commonItemDesignRibbonPageGroup6 = new DevExpress.DashboardWin.Bars.CommonItemDesignRibbonPageGroup();
            this.imageOpenRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.ImageOpenRibbonPageGroup();
            this.imageSizeModeRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.ImageSizeModeRibbonPageGroup();
            this.imageAlignmentRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.ImageAlignmentRibbonPageGroup();
            this.textBoxToolsRibbonPageCategory1 = new DevExpress.DashboardWin.Bars.TextBoxToolsRibbonPageCategory();
            this.dashboardItemDesignRibbonPage7 = new DevExpress.DashboardWin.Bars.DashboardItemDesignRibbonPage();
            this.commonItemDesignRibbonPageGroup7 = new DevExpress.DashboardWin.Bars.CommonItemDesignRibbonPageGroup();
            this.textBoxSettingsRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.TextBoxSettingsRibbonPageGroup();
            this.homeRibbonPage1 = new DevExpress.DashboardWin.Bars.HomeRibbonPage();
            this.fileRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.FileRibbonPageGroup();
            this.historyRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.HistoryRibbonPageGroup();
            this.insertRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.InsertRibbonPageGroup();
            this.itemOperationRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.ItemOperationRibbonPageGroup();
            this.dashboardDesignRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.DashboardDesignRibbonPageGroup();
            this.quickAccessHistoryRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.QuickAccessHistoryRibbonPageGroup();
            this.dataSourceRibbonPage1 = new DevExpress.DashboardWin.Bars.DataSourceRibbonPage();
            this.dataSourceRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.DataSourceRibbonPageGroup();
            this.dataSourceElementsRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.DataSourceElementsRibbonPageGroup();
            this.dataSourceFilteringRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.DataSourceFilteringRibbonPageGroup();
            this.viewRibbonPage1 = new DevExpress.DashboardWin.Bars.ViewRibbonPage();
            this.skinsRibbonPageGroup1 = new DevExpress.DashboardWin.Bars.SkinsRibbonPageGroup();
            this.dashboardBarControllerMain = new DevExpress.DashboardWin.Bars.DashboardBarController();
            this.appDashboardDSTableAdapter = new NICSQLTools.Data.dsDataSourceTableAdapters.AppDatasourceTableAdapter();
            this.dsData = new NICSQLTools.Data.dsData();
            this.appDashboardSchemaTableAdapter = new NICSQLTools.Data.dsDataTableAdapters.AppDashboardSchemaTableAdapter();
            this.dsDataSource = new NICSQLTools.Data.dsDataSource();
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControlMain)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dashboardBackstageViewControl1)).BeginInit();
            this.dashboardBackstageViewControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dashboardBarAndDockingControllerMain)).BeginInit();
            this.backstageViewClientControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dashboardBarControllerMain)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dsData)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dsDataSource)).BeginInit();
            this.SuspendLayout();
            // 
            // dashboardDesignerMain
            // 
            this.dashboardDesignerMain.ActionOnClose = DevExpress.DashboardWin.DashboardActionOnClose.Discard;
            this.dashboardDesignerMain.AutoScroll = true;
            this.dashboardDesignerMain.CustomDBSchemaProvider = null;
            this.dashboardDesignerMain.Dock = System.Windows.Forms.DockStyle.Fill;
            this.dashboardDesignerMain.Location = new System.Drawing.Point(0, 142);
            this.dashboardDesignerMain.MenuManager = this.ribbonControlMain;
            this.dashboardDesignerMain.Name = "dashboardDesignerMain";
            this.dashboardDesignerMain.PrintingOptions.DocumentContentOptions.FilterState = DevExpress.DashboardWin.DashboardPrintingFilterState.SeparatePage;
            this.dashboardDesignerMain.PrintingOptions.FontInfo.GdiCharSet = ((byte)(0));
            this.dashboardDesignerMain.PrintingOptions.FontInfo.Name = null;
            this.dashboardDesignerMain.Size = new System.Drawing.Size(982, 391);
            this.dashboardDesignerMain.TabIndex = 0;
            // 
            // ribbonControlMain
            // 
            this.ribbonControlMain.ApplicationButtonDropDownControl = this.dashboardBackstageViewControl1;
            this.ribbonControlMain.AutoSaveLayoutToXml = true;
            this.ribbonControlMain.AutoSaveLayoutToXmlPath = "RibbonSettingsDashboard.xml";
            this.ribbonControlMain.Controller = this.dashboardBarAndDockingControllerMain;
            this.ribbonControlMain.ExpandCollapseItem.Id = 0;
            this.ribbonControlMain.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.ribbonControlMain.ExpandCollapseItem,
            this.fileNewBarItem1,
            this.fileOpenBarItem1,
            this.fileSaveBarItem1,
            this.fileSaveAsBarItem1,
            this.undoBarItem1,
            this.redoBarItem1,
            this.newDataSourceBarItem1,
            this.editDataSourceBarItem1,
            this.renameDataSourceBarItem1,
            this.deleteDataSourceBarItem1,
            this.serverModeBarItem1,
            this.addCalculatedFieldBarItem1,
            this.dashboardParametersBarItem1,
            this.editDataSourceFilterBarItem1,
            this.clearDataSourceFilterBarItem1,
            this.insertPivotBarItem1,
            this.insertGridBarItem1,
            this.insertChartBarItem1,
            this.insertPiesBarItem1,
            this.insertGaugesBarItem1,
            this.insertCardsBarItem1,
            this.insertChoroplethMapBarItem1,
            this.insertGeoPointMapBarSubItem1,
            this.insertGeoPointMapBarItem1,
            this.insertBubbleMapBarItem1,
            this.insertPieMapBarItem1,
            this.insertRangeFilterBarItem1,
            this.insertImageBarItem1,
            this.insertTextBoxBarItem1,
            this.duplicateItemBarItem1,
            this.deleteItemBarItem1,
            this.convertDashboardItemTypeBarItem1,
            this.convertToPivotBarItem1,
            this.convertToGridBarItem1,
            this.convertToChartBarItem1,
            this.convertToPieBarItem1,
            this.convertToGaugeBarItem1,
            this.convertToCardBarItem1,
            this.convertToChoroplethMapBarItem1,
            this.convertToGeoPointMapBarItem1,
            this.convertToBubbleMapBarItem1,
            this.convertToPieMapBarItem1,
            this.convertGeoPointMapBaseBarItem1,
            this.convertToRangeFilterBarItem1,
            this.removeDataItemsBarItem1,
            this.transposeItemBarItem1,
            this.dashboardTitleBarItem1,
            this.setCurrencyCultureBarItem1,
            this.dashboardSkinsBarItem1,
            this.editFilterBarItem1,
            this.clearFilterBarItem1,
            this.masterFilterBarItem1,
            this.multipleValuesMasterFilterBarItem1,
            this.drillDownBarItem1,
            this.ignoreMasterFiltersBarItem1,
            this.crossDataSourceFilteringBarItem1,
            this.chartTargetDimensionsArgumentsBarItem1,
            this.chartTargetDimensionsSeriesBarItem1,
            this.pieTargetDimensionsArgumentsBarItem1,
            this.pieTargetDimensionsSeriesBarItem1,
            this.geoPointMapClusterizationBarItem1,
            this.showItemCaptionBarItem1,
            this.editItemNamesBarItem1,
            this.contentAutoArrangeBarItem1,
            this.contentArrangeInColumnsBarItem1,
            this.contentArrangeInRowsBarItem1,
            this.contentArrangementCountBarItem1,
            this.gridHorizontalLinesBarItem1,
            this.gridVerticalLinesBarItem1,
            this.gridMergeCellsBarItem1,
            this.gridBandedRowsBarItem1,
            this.gridColumnHeadersBarItem1,
            this.chartRotateBarItem1,
            this.chartXAxisSettingsBarItem1,
            this.chartYAxisSettingsBarItem1,
            this.chartShowLegendBarItem1,
            this.galleryChartLegendPositionItem1,
            this.galleryChartSeriesTypeItem1,
            this.pieLabelsDataLabelsBarItem1,
            this.pieLabelsDataLabelsNoneBarItem1,
            this.pieLabelsDataLabelArgumentBarItem1,
            this.pieLabelsDataLabelsValueBarItem1,
            this.pieLabelsDataLabelsArgumentAndValueBarItem1,
            this.pieLabelsDataLabelsPercentBarItem1,
            this.pieLabelsDataLabelsValueAndPercentBarItem1,
            this.pieLabelsDataLabelsArgumentAndPercentBarItem1,
            this.pieLabelsDataLabelsArgumentValueAndPercentBarItem1,
            this.pieTooltipsBarItem1,
            this.pieLabelsTooltipsNoneBarItem1,
            this.pieLabelsTooltipsArgumentBarItem1,
            this.pieLabelsTooltipsValueBarItem1,
            this.pieLabelsTooltipsArgumentAndValueBarItem1,
            this.pieLabelsTooltipsPercentBarItem1,
            this.pieLabelsTooltipsValueAndPercentBarItem1,
            this.pieLabelsTooltipsArgumentAndPercentBarItem1,
            this.pieLabelsTooltipsArgumentValueAndPercentBarItem1,
            this.pieStylePieBarItem1,
            this.pieStyleDonutBarItem1,
            this.pieShowCaptionsBarItem1,
            this.gaugeStyleFullCircularBarItem1,
            this.gaugeStyleHalfCircularBarItem1,
            this.gaugeStyleLeftQuarterCircularBarItem1,
            this.gaugeStyleRightQuarterCircularBarItem1,
            this.gaugeStyleThreeForthCircularBarItem1,
            this.gaugeStyleLinearHorizontalBarItem1,
            this.gaugeStyleLinearVerticalBarItem1,
            this.gaugeShowCaptionsBarItem1,
            this.imageLoadBarItem1,
            this.imageImportBarItem1,
            this.imageSizeModeClipBarItem1,
            this.imageSizeModeStretchBarItem1,
            this.imageSizeModeSqueezeBarItem1,
            this.imageSizeModeZoomBarItem1,
            this.imageAlignmentTopLeftBarItem1,
            this.imageAlignmentCenterLeftBarItem1,
            this.imageAlignmentBottomLeftBarItem1,
            this.imageAlignmentTopCenterBarItem1,
            this.imageAlignmentCenterCenterBarItem1,
            this.imageAlignmentBottomCenterBarItem1,
            this.imageAlignmentTopRightBarItem1,
            this.imageAlignmentCenterRightBarItem1,
            this.imageAlignmentBottomRightBarItem1,
            this.textBoxEditTextBarItem1,
            this.rangeFilterLineSeriesTypeBarItem1,
            this.rangeFilterStackedLineSeriesTypeBarItem1,
            this.rangeFilterFullStackedLineSeriesTypeBarItem1,
            this.rangeFilterAreaSeriesTypeBarItem1,
            this.rangeFilterStackedAreaSeriesTypeBarItem1,
            this.rangeFilterFullStackedAreaSeriesTypeBarItem1,
            this.pivotInitialStateBarItem1,
            this.pivotAutoExpandColumnBarItem1,
            this.pivotAutoExpandRowBarItem1,
            this.mapLoadBarItem1,
            this.mapImportBarItem1,
            this.mapDefaultShapefileBarItem1,
            this.mapWorldCountriesBarItem1,
            this.mapEuropeBarItem1,
            this.mapAsiaBarItem1,
            this.mapNorthAmericaBarItem1,
            this.mapSouthAmericaBarItem1,
            this.mapAfricaBarItem1,
            this.mapUSABarItem1,
            this.mapCanadaBarItem1,
            this.mapLockNavigationBarItem1,
            this.mapFullExtentBarItem1,
            this.mapShowLegendBarItem1,
            this.galleryMapLegendPositionItem1,
            this.changeWeightedLegendTypeBarItem1,
            this.weightedLegendNoneBarItem1,
            this.weightedLegendLinearBarItem1,
            this.weightedLegendNestedBarItem1,
            this.galleryWeightedLegendPositionItem1,
            this.pieMapIsWeightedBarItem1,
            this.quickAccessUndoBarItem1,
            this.quickAccessRedoBarItem1,
            this.bbiNew,
            this.bbiOpen,
            this.bbiSave,
            this.bbiSaveAs,
            this.bbiAddDatasource});
            this.ribbonControlMain.Location = new System.Drawing.Point(0, 0);
            this.ribbonControlMain.MaxItemId = 161;
            this.ribbonControlMain.Name = "ribbonControlMain";
            this.ribbonControlMain.PageCategories.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageCategory[] {
            this.pivotToolsRibbonPageCategory1,
            this.gridToolsRibbonPageCategory1,
            this.chartToolsRibbonPageCategory1,
            this.piesToolsRibbonPageCategory1,
            this.gaugesToolsRibbonPageCategory1,
            this.cardsToolsRibbonPageCategory1,
            this.rangeFilterToolsRibbonPageCategory1,
            this.choroplethMapToolsRibbonPageCategory1,
            this.geoPointMapToolsRibbonPageCategory1,
            this.bubbleMapToolsRibbonPageCategory1,
            this.pieMapToolsRibbonPageCategory1,
            this.imageToolsRibbonPageCategory1,
            this.textBoxToolsRibbonPageCategory1});
            this.ribbonControlMain.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.homeRibbonPage1,
            this.dataSourceRibbonPage1,
            this.viewRibbonPage1});
            this.ribbonControlMain.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemSpinEdit1});
            this.ribbonControlMain.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonControlStyle.Office2013;
            this.ribbonControlMain.ShowApplicationButton = DevExpress.Utils.DefaultBoolean.False;
            this.ribbonControlMain.ShowFullScreenButton = DevExpress.Utils.DefaultBoolean.True;
            this.ribbonControlMain.Size = new System.Drawing.Size(982, 142);
            this.ribbonControlMain.Toolbar.ItemLinks.Add(this.bbiSave);
            this.ribbonControlMain.Toolbar.ItemLinks.Add(this.quickAccessUndoBarItem1);
            this.ribbonControlMain.Toolbar.ItemLinks.Add(this.quickAccessRedoBarItem1);
            this.ribbonControlMain.ToolbarLocation = DevExpress.XtraBars.Ribbon.RibbonQuickAccessToolbarLocation.Above;
            // 
            // dashboardBackstageViewControl1
            // 
            this.dashboardBackstageViewControl1.ColorScheme = DevExpress.XtraBars.Ribbon.RibbonControlColorScheme.Yellow;
            this.dashboardBackstageViewControl1.Controller = this.dashboardBarAndDockingControllerMain;
            this.dashboardBackstageViewControl1.Controls.Add(this.backstageViewClientControl1);
            this.dashboardBackstageViewControl1.DashboardRecentTab = this.dashboardBackstageRecentTab1;
            this.dashboardBackstageViewControl1.Items.Add(this.dashboardBackstageNewButton1);
            this.dashboardBackstageViewControl1.Items.Add(this.dashboardBackstageOpenButton1);
            this.dashboardBackstageViewControl1.Items.Add(this.dashboardBackstageSaveButton1);
            this.dashboardBackstageViewControl1.Items.Add(this.dashboardBackstageSaveAsButton1);
            this.dashboardBackstageViewControl1.Items.Add(this.dashboardBackstageRecentTab1);
            this.dashboardBackstageViewControl1.Location = new System.Drawing.Point(0, 0);
            this.dashboardBackstageViewControl1.Name = "dashboardBackstageViewControl1";
            this.dashboardBackstageViewControl1.Ribbon = this.ribbonControlMain;
            this.dashboardBackstageViewControl1.SelectedTab = this.dashboardBackstageRecentTab1;
            this.dashboardBackstageViewControl1.SelectedTabIndex = 4;
            this.dashboardBackstageViewControl1.Size = new System.Drawing.Size(240, 150);
            this.dashboardBackstageViewControl1.TabIndex = 2;
            // 
            // dashboardBarAndDockingControllerMain
            // 
            this.dashboardBarAndDockingControllerMain.PropertiesBar.DefaultGlyphSize = new System.Drawing.Size(16, 16);
            this.dashboardBarAndDockingControllerMain.PropertiesBar.DefaultLargeGlyphSize = new System.Drawing.Size(32, 32);
            // 
            // backstageViewClientControl1
            // 
            this.backstageViewClientControl1.Controls.Add(this.recentDashboardsControl1);
            this.backstageViewClientControl1.Location = new System.Drawing.Point(133, 63);
            this.backstageViewClientControl1.Name = "backstageViewClientControl1";
            this.backstageViewClientControl1.Size = new System.Drawing.Size(106, 86);
            this.backstageViewClientControl1.TabIndex = 0;
            // 
            // recentDashboardsControl1
            // 
            this.recentDashboardsControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.recentDashboardsControl1.ForeColor = System.Drawing.Color.Transparent;
            this.recentDashboardsControl1.Location = new System.Drawing.Point(0, 0);
            this.recentDashboardsControl1.Name = "recentDashboardsControl1";
            this.recentDashboardsControl1.ServiceProvider = this.dashboardDesignerMain;
            this.recentDashboardsControl1.Size = new System.Drawing.Size(106, 86);
            this.recentDashboardsControl1.TabIndex = 0;
            // 
            // dashboardBackstageRecentTab1
            // 
            this.dashboardBackstageRecentTab1.ContentControl = this.backstageViewClientControl1;
            this.dashboardBackstageRecentTab1.Name = "dashboardBackstageRecentTab1";
            this.dashboardBackstageRecentTab1.RecentDashboardsControl = this.recentDashboardsControl1;
            this.dashboardBackstageRecentTab1.Selected = true;
            // 
            // dashboardBackstageNewButton1
            // 
            this.dashboardBackstageNewButton1.Glyph = ((System.Drawing.Image)(resources.GetObject("dashboardBackstageNewButton1.Glyph")));
            this.dashboardBackstageNewButton1.Name = "dashboardBackstageNewButton1";
            this.dashboardBackstageNewButton1.ServiceProvider = this.dashboardDesignerMain;
            // 
            // dashboardBackstageOpenButton1
            // 
            this.dashboardBackstageOpenButton1.Glyph = ((System.Drawing.Image)(resources.GetObject("dashboardBackstageOpenButton1.Glyph")));
            this.dashboardBackstageOpenButton1.Name = "dashboardBackstageOpenButton1";
            this.dashboardBackstageOpenButton1.ServiceProvider = this.dashboardDesignerMain;
            // 
            // dashboardBackstageSaveButton1
            // 
            this.dashboardBackstageSaveButton1.Glyph = ((System.Drawing.Image)(resources.GetObject("dashboardBackstageSaveButton1.Glyph")));
            this.dashboardBackstageSaveButton1.Name = "dashboardBackstageSaveButton1";
            this.dashboardBackstageSaveButton1.ServiceProvider = this.dashboardDesignerMain;
            // 
            // dashboardBackstageSaveAsButton1
            // 
            this.dashboardBackstageSaveAsButton1.Glyph = ((System.Drawing.Image)(resources.GetObject("dashboardBackstageSaveAsButton1.Glyph")));
            this.dashboardBackstageSaveAsButton1.Name = "dashboardBackstageSaveAsButton1";
            this.dashboardBackstageSaveAsButton1.ServiceProvider = this.dashboardDesignerMain;
            // 
            // fileNewBarItem1
            // 
            this.fileNewBarItem1.Id = 1;
            this.fileNewBarItem1.Name = "fileNewBarItem1";
            // 
            // fileOpenBarItem1
            // 
            this.fileOpenBarItem1.Id = 2;
            this.fileOpenBarItem1.Name = "fileOpenBarItem1";
            // 
            // fileSaveBarItem1
            // 
            this.fileSaveBarItem1.Id = 3;
            this.fileSaveBarItem1.Name = "fileSaveBarItem1";
            // 
            // fileSaveAsBarItem1
            // 
            this.fileSaveAsBarItem1.Id = 4;
            this.fileSaveAsBarItem1.Name = "fileSaveAsBarItem1";
            // 
            // undoBarItem1
            // 
            this.undoBarItem1.Id = 5;
            this.undoBarItem1.Name = "undoBarItem1";
            // 
            // redoBarItem1
            // 
            this.redoBarItem1.Id = 6;
            this.redoBarItem1.Name = "redoBarItem1";
            // 
            // newDataSourceBarItem1
            // 
            this.newDataSourceBarItem1.Id = 7;
            this.newDataSourceBarItem1.Name = "newDataSourceBarItem1";
            // 
            // editDataSourceBarItem1
            // 
            this.editDataSourceBarItem1.Id = 8;
            this.editDataSourceBarItem1.Name = "editDataSourceBarItem1";
            // 
            // renameDataSourceBarItem1
            // 
            this.renameDataSourceBarItem1.Id = 9;
            this.renameDataSourceBarItem1.Name = "renameDataSourceBarItem1";
            // 
            // deleteDataSourceBarItem1
            // 
            this.deleteDataSourceBarItem1.Id = 10;
            this.deleteDataSourceBarItem1.Name = "deleteDataSourceBarItem1";
            // 
            // serverModeBarItem1
            // 
            this.serverModeBarItem1.Id = 11;
            this.serverModeBarItem1.Name = "serverModeBarItem1";
            // 
            // addCalculatedFieldBarItem1
            // 
            this.addCalculatedFieldBarItem1.Id = 12;
            this.addCalculatedFieldBarItem1.Name = "addCalculatedFieldBarItem1";
            // 
            // dashboardParametersBarItem1
            // 
            this.dashboardParametersBarItem1.Id = 13;
            this.dashboardParametersBarItem1.Name = "dashboardParametersBarItem1";
            // 
            // editDataSourceFilterBarItem1
            // 
            this.editDataSourceFilterBarItem1.Id = 14;
            this.editDataSourceFilterBarItem1.Name = "editDataSourceFilterBarItem1";
            // 
            // clearDataSourceFilterBarItem1
            // 
            this.clearDataSourceFilterBarItem1.Id = 15;
            this.clearDataSourceFilterBarItem1.Name = "clearDataSourceFilterBarItem1";
            // 
            // insertPivotBarItem1
            // 
            this.insertPivotBarItem1.Id = 16;
            this.insertPivotBarItem1.Name = "insertPivotBarItem1";
            // 
            // insertGridBarItem1
            // 
            this.insertGridBarItem1.Id = 17;
            this.insertGridBarItem1.Name = "insertGridBarItem1";
            // 
            // insertChartBarItem1
            // 
            this.insertChartBarItem1.Id = 18;
            this.insertChartBarItem1.Name = "insertChartBarItem1";
            // 
            // insertPiesBarItem1
            // 
            this.insertPiesBarItem1.Id = 19;
            this.insertPiesBarItem1.Name = "insertPiesBarItem1";
            // 
            // insertGaugesBarItem1
            // 
            this.insertGaugesBarItem1.Id = 20;
            this.insertGaugesBarItem1.Name = "insertGaugesBarItem1";
            // 
            // insertCardsBarItem1
            // 
            this.insertCardsBarItem1.Id = 21;
            this.insertCardsBarItem1.Name = "insertCardsBarItem1";
            // 
            // insertChoroplethMapBarItem1
            // 
            this.insertChoroplethMapBarItem1.Id = 22;
            this.insertChoroplethMapBarItem1.Name = "insertChoroplethMapBarItem1";
            // 
            // insertGeoPointMapBarSubItem1
            // 
            this.insertGeoPointMapBarSubItem1.Id = 23;
            this.insertGeoPointMapBarSubItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.insertGeoPointMapBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.insertBubbleMapBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.insertPieMapBarItem1)});
            this.insertGeoPointMapBarSubItem1.Name = "insertGeoPointMapBarSubItem1";
            this.insertGeoPointMapBarSubItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionInMenu;
            // 
            // insertGeoPointMapBarItem1
            // 
            this.insertGeoPointMapBarItem1.Id = 24;
            this.insertGeoPointMapBarItem1.Name = "insertGeoPointMapBarItem1";
            // 
            // insertBubbleMapBarItem1
            // 
            this.insertBubbleMapBarItem1.Id = 25;
            this.insertBubbleMapBarItem1.Name = "insertBubbleMapBarItem1";
            // 
            // insertPieMapBarItem1
            // 
            this.insertPieMapBarItem1.Id = 26;
            this.insertPieMapBarItem1.Name = "insertPieMapBarItem1";
            // 
            // insertRangeFilterBarItem1
            // 
            this.insertRangeFilterBarItem1.Id = 27;
            this.insertRangeFilterBarItem1.Name = "insertRangeFilterBarItem1";
            // 
            // insertImageBarItem1
            // 
            this.insertImageBarItem1.Id = 28;
            this.insertImageBarItem1.Name = "insertImageBarItem1";
            // 
            // insertTextBoxBarItem1
            // 
            this.insertTextBoxBarItem1.Id = 29;
            this.insertTextBoxBarItem1.Name = "insertTextBoxBarItem1";
            // 
            // duplicateItemBarItem1
            // 
            this.duplicateItemBarItem1.Id = 30;
            this.duplicateItemBarItem1.Name = "duplicateItemBarItem1";
            // 
            // deleteItemBarItem1
            // 
            this.deleteItemBarItem1.Id = 31;
            this.deleteItemBarItem1.Name = "deleteItemBarItem1";
            // 
            // convertDashboardItemTypeBarItem1
            // 
            this.convertDashboardItemTypeBarItem1.Id = 32;
            this.convertDashboardItemTypeBarItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.convertToPivotBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.convertToGridBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.convertToChartBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.convertToPieBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.convertToGaugeBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.convertToCardBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.convertToChoroplethMapBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.convertGeoPointMapBaseBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.convertToRangeFilterBarItem1)});
            this.convertDashboardItemTypeBarItem1.Name = "convertDashboardItemTypeBarItem1";
            this.convertDashboardItemTypeBarItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionInMenu;
            // 
            // convertToPivotBarItem1
            // 
            this.convertToPivotBarItem1.Id = 33;
            this.convertToPivotBarItem1.Name = "convertToPivotBarItem1";
            // 
            // convertToGridBarItem1
            // 
            this.convertToGridBarItem1.Id = 34;
            this.convertToGridBarItem1.Name = "convertToGridBarItem1";
            // 
            // convertToChartBarItem1
            // 
            this.convertToChartBarItem1.Id = 35;
            this.convertToChartBarItem1.Name = "convertToChartBarItem1";
            // 
            // convertToPieBarItem1
            // 
            this.convertToPieBarItem1.Id = 36;
            this.convertToPieBarItem1.Name = "convertToPieBarItem1";
            // 
            // convertToGaugeBarItem1
            // 
            this.convertToGaugeBarItem1.Id = 37;
            this.convertToGaugeBarItem1.Name = "convertToGaugeBarItem1";
            // 
            // convertToCardBarItem1
            // 
            this.convertToCardBarItem1.Id = 38;
            this.convertToCardBarItem1.Name = "convertToCardBarItem1";
            // 
            // convertToChoroplethMapBarItem1
            // 
            this.convertToChoroplethMapBarItem1.Id = 39;
            this.convertToChoroplethMapBarItem1.Name = "convertToChoroplethMapBarItem1";
            // 
            // convertGeoPointMapBaseBarItem1
            // 
            this.convertGeoPointMapBaseBarItem1.Id = 43;
            this.convertGeoPointMapBaseBarItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.convertToGeoPointMapBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.convertToBubbleMapBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.convertToPieMapBarItem1)});
            this.convertGeoPointMapBaseBarItem1.Name = "convertGeoPointMapBaseBarItem1";
            // 
            // convertToGeoPointMapBarItem1
            // 
            this.convertToGeoPointMapBarItem1.Id = 40;
            this.convertToGeoPointMapBarItem1.Name = "convertToGeoPointMapBarItem1";
            // 
            // convertToBubbleMapBarItem1
            // 
            this.convertToBubbleMapBarItem1.Id = 41;
            this.convertToBubbleMapBarItem1.Name = "convertToBubbleMapBarItem1";
            // 
            // convertToPieMapBarItem1
            // 
            this.convertToPieMapBarItem1.Id = 42;
            this.convertToPieMapBarItem1.Name = "convertToPieMapBarItem1";
            // 
            // convertToRangeFilterBarItem1
            // 
            this.convertToRangeFilterBarItem1.Id = 44;
            this.convertToRangeFilterBarItem1.Name = "convertToRangeFilterBarItem1";
            // 
            // removeDataItemsBarItem1
            // 
            this.removeDataItemsBarItem1.Id = 45;
            this.removeDataItemsBarItem1.Name = "removeDataItemsBarItem1";
            // 
            // transposeItemBarItem1
            // 
            this.transposeItemBarItem1.Id = 46;
            this.transposeItemBarItem1.Name = "transposeItemBarItem1";
            // 
            // dashboardTitleBarItem1
            // 
            this.dashboardTitleBarItem1.Id = 47;
            this.dashboardTitleBarItem1.Name = "dashboardTitleBarItem1";
            // 
            // setCurrencyCultureBarItem1
            // 
            this.setCurrencyCultureBarItem1.Id = 48;
            this.setCurrencyCultureBarItem1.Name = "setCurrencyCultureBarItem1";
            // 
            // dashboardSkinsBarItem1
            // 
            // 
            // 
            // 
            this.dashboardSkinsBarItem1.Gallery.AllowHoverImages = true;
            this.dashboardSkinsBarItem1.Gallery.ColumnCount = 4;
            this.dashboardSkinsBarItem1.Gallery.FixedHoverImageSize = false;
            galleryItemGroup1.Caption = "Standard Skins";
            galleryItem1.Caption = "DevExpress Style";
            galleryItem1.Checked = true;
            galleryItem1.Hint = "DevExpress Style";
            galleryItem1.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem1.HoverImage")));
            galleryItem1.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem1.Image")));
            galleryItem1.Tag = "DevExpress Style";
            galleryItem2.Caption = "DevExpress Dark Style";
            galleryItem2.Hint = "DevExpress Dark Style";
            galleryItem2.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem2.HoverImage")));
            galleryItem2.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem2.Image")));
            galleryItem2.Tag = "DevExpress Dark Style";
            galleryItem3.Caption = "Office 2013 White";
            galleryItem3.Hint = "Office 2013 White";
            galleryItem3.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem3.HoverImage")));
            galleryItem3.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem3.Image")));
            galleryItem3.Tag = "Office 2013";
            galleryItem4.Caption = "Office 2013 Dark Gray";
            galleryItem4.Hint = "Office 2013 Dark Gray";
            galleryItem4.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem4.HoverImage")));
            galleryItem4.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem4.Image")));
            galleryItem4.Tag = "Office 2013 Dark Gray";
            galleryItem5.Caption = "Office 2013 Light Gray";
            galleryItem5.Hint = "Office 2013 Light Gray";
            galleryItem5.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem5.HoverImage")));
            galleryItem5.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem5.Image")));
            galleryItem5.Tag = "Office 2013 Light Gray";
            galleryItem6.Caption = "Office 2010 Blue";
            galleryItem6.Hint = "Office 2010 Blue";
            galleryItem6.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem6.HoverImage")));
            galleryItem6.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem6.Image")));
            galleryItem6.Tag = "Office 2010 Blue";
            galleryItem7.Caption = "Office 2010 Black";
            galleryItem7.Hint = "Office 2010 Black";
            galleryItem7.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem7.HoverImage")));
            galleryItem7.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem7.Image")));
            galleryItem7.Tag = "Office 2010 Black";
            galleryItem8.Caption = "Office 2010 Silver";
            galleryItem8.Hint = "Office 2010 Silver";
            galleryItem8.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem8.HoverImage")));
            galleryItem8.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem8.Image")));
            galleryItem8.Tag = "Office 2010 Silver";
            galleryItem9.Caption = "Visual Studio 2013 Blue";
            galleryItem9.Hint = "Visual Studio 2013 Blue";
            galleryItem9.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem9.HoverImage")));
            galleryItem9.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem9.Image")));
            galleryItem9.Tag = "Visual Studio 2013 Blue";
            galleryItem10.Caption = "Visual Studio 2013 Dark";
            galleryItem10.Hint = "Visual Studio 2013 Dark";
            galleryItem10.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem10.HoverImage")));
            galleryItem10.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem10.Image")));
            galleryItem10.Tag = "Visual Studio 2013 Dark";
            galleryItem11.Caption = "Visual Studio 2013 Light";
            galleryItem11.Hint = "Visual Studio 2013 Light";
            galleryItem11.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem11.HoverImage")));
            galleryItem11.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem11.Image")));
            galleryItem11.Tag = "Visual Studio 2013 Light";
            galleryItem12.Caption = "Seven Classic";
            galleryItem12.Hint = "Seven Classic";
            galleryItem12.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem12.HoverImage")));
            galleryItem12.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem12.Image")));
            galleryItem12.Tag = "Seven Classic";
            galleryItem13.Caption = "Visual Studio 2010";
            galleryItem13.Hint = "Visual Studio 2010";
            galleryItem13.HoverImage = ((System.Drawing.Image)(resources.GetObject("galleryItem13.HoverImage")));
            galleryItem13.Image = ((System.Drawing.Image)(resources.GetObject("galleryItem13.Image")));
            galleryItem13.Tag = "VS2010";
            galleryItemGroup1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            galleryItem1,
            galleryItem2,
            galleryItem3,
            galleryItem4,
            galleryItem5,
            galleryItem6,
            galleryItem7,
            galleryItem8,
            galleryItem9,
            galleryItem10,
            galleryItem11,
            galleryItem12,
            galleryItem13});
            galleryItemGroup2.Caption = "Bonus Skins";
            galleryItemGroup2.Visible = false;
            galleryItemGroup3.Caption = "Theme Skins";
            galleryItemGroup3.Visible = false;
            galleryItemGroup4.Caption = "Custom Skins";
            galleryItemGroup4.Visible = false;
            this.dashboardSkinsBarItem1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup1,
            galleryItemGroup2,
            galleryItemGroup3,
            galleryItemGroup4});
            this.dashboardSkinsBarItem1.Gallery.ImageSize = new System.Drawing.Size(32, 16);
            this.dashboardSkinsBarItem1.Gallery.ItemCheckMode = DevExpress.XtraBars.Ribbon.Gallery.ItemCheckMode.SingleRadio;
            this.dashboardSkinsBarItem1.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Top;
            this.dashboardSkinsBarItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("dashboardSkinsBarItem1.Glyph")));
            this.dashboardSkinsBarItem1.Id = 49;
            this.dashboardSkinsBarItem1.Name = "dashboardSkinsBarItem1";
            // 
            // editFilterBarItem1
            // 
            this.editFilterBarItem1.Id = 50;
            this.editFilterBarItem1.Name = "editFilterBarItem1";
            // 
            // clearFilterBarItem1
            // 
            this.clearFilterBarItem1.Id = 51;
            this.clearFilterBarItem1.Name = "clearFilterBarItem1";
            // 
            // masterFilterBarItem1
            // 
            this.masterFilterBarItem1.Id = 52;
            this.masterFilterBarItem1.Name = "masterFilterBarItem1";
            // 
            // multipleValuesMasterFilterBarItem1
            // 
            this.multipleValuesMasterFilterBarItem1.Id = 53;
            this.multipleValuesMasterFilterBarItem1.Name = "multipleValuesMasterFilterBarItem1";
            // 
            // drillDownBarItem1
            // 
            this.drillDownBarItem1.Id = 54;
            this.drillDownBarItem1.Name = "drillDownBarItem1";
            // 
            // ignoreMasterFiltersBarItem1
            // 
            this.ignoreMasterFiltersBarItem1.Id = 55;
            this.ignoreMasterFiltersBarItem1.Name = "ignoreMasterFiltersBarItem1";
            // 
            // crossDataSourceFilteringBarItem1
            // 
            this.crossDataSourceFilteringBarItem1.Id = 56;
            this.crossDataSourceFilteringBarItem1.Name = "crossDataSourceFilteringBarItem1";
            // 
            // chartTargetDimensionsArgumentsBarItem1
            // 
            this.chartTargetDimensionsArgumentsBarItem1.Id = 57;
            this.chartTargetDimensionsArgumentsBarItem1.Name = "chartTargetDimensionsArgumentsBarItem1";
            // 
            // chartTargetDimensionsSeriesBarItem1
            // 
            this.chartTargetDimensionsSeriesBarItem1.Id = 58;
            this.chartTargetDimensionsSeriesBarItem1.Name = "chartTargetDimensionsSeriesBarItem1";
            // 
            // pieTargetDimensionsArgumentsBarItem1
            // 
            this.pieTargetDimensionsArgumentsBarItem1.Id = 59;
            this.pieTargetDimensionsArgumentsBarItem1.Name = "pieTargetDimensionsArgumentsBarItem1";
            // 
            // pieTargetDimensionsSeriesBarItem1
            // 
            this.pieTargetDimensionsSeriesBarItem1.Id = 60;
            this.pieTargetDimensionsSeriesBarItem1.Name = "pieTargetDimensionsSeriesBarItem1";
            // 
            // geoPointMapClusterizationBarItem1
            // 
            this.geoPointMapClusterizationBarItem1.Id = 61;
            this.geoPointMapClusterizationBarItem1.Name = "geoPointMapClusterizationBarItem1";
            // 
            // showItemCaptionBarItem1
            // 
            this.showItemCaptionBarItem1.Id = 62;
            this.showItemCaptionBarItem1.Name = "showItemCaptionBarItem1";
            // 
            // editItemNamesBarItem1
            // 
            this.editItemNamesBarItem1.Id = 63;
            this.editItemNamesBarItem1.Name = "editItemNamesBarItem1";
            // 
            // contentAutoArrangeBarItem1
            // 
            this.contentAutoArrangeBarItem1.Id = 64;
            this.contentAutoArrangeBarItem1.Name = "contentAutoArrangeBarItem1";
            // 
            // contentArrangeInColumnsBarItem1
            // 
            this.contentArrangeInColumnsBarItem1.Id = 65;
            this.contentArrangeInColumnsBarItem1.Name = "contentArrangeInColumnsBarItem1";
            // 
            // contentArrangeInRowsBarItem1
            // 
            this.contentArrangeInRowsBarItem1.Id = 66;
            this.contentArrangeInRowsBarItem1.Name = "contentArrangeInRowsBarItem1";
            // 
            // contentArrangementCountBarItem1
            // 
            this.contentArrangementCountBarItem1.Edit = this.repositoryItemSpinEdit1;
            this.contentArrangementCountBarItem1.Id = 67;
            this.contentArrangementCountBarItem1.Name = "contentArrangementCountBarItem1";
            // 
            // repositoryItemSpinEdit1
            // 
            this.repositoryItemSpinEdit1.AutoHeight = false;
            this.repositoryItemSpinEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemSpinEdit1.IsFloatValue = false;
            this.repositoryItemSpinEdit1.Mask.EditMask = "N00";
            this.repositoryItemSpinEdit1.MaxValue = new decimal(new int[] {
            10000,
            0,
            0,
            0});
            this.repositoryItemSpinEdit1.MinValue = new decimal(new int[] {
            1,
            0,
            0,
            0});
            this.repositoryItemSpinEdit1.Name = "repositoryItemSpinEdit1";
            // 
            // gridHorizontalLinesBarItem1
            // 
            this.gridHorizontalLinesBarItem1.Id = 68;
            this.gridHorizontalLinesBarItem1.Name = "gridHorizontalLinesBarItem1";
            // 
            // gridVerticalLinesBarItem1
            // 
            this.gridVerticalLinesBarItem1.Id = 69;
            this.gridVerticalLinesBarItem1.Name = "gridVerticalLinesBarItem1";
            // 
            // gridMergeCellsBarItem1
            // 
            this.gridMergeCellsBarItem1.Id = 70;
            this.gridMergeCellsBarItem1.Name = "gridMergeCellsBarItem1";
            // 
            // gridBandedRowsBarItem1
            // 
            this.gridBandedRowsBarItem1.Id = 71;
            this.gridBandedRowsBarItem1.Name = "gridBandedRowsBarItem1";
            // 
            // gridColumnHeadersBarItem1
            // 
            this.gridColumnHeadersBarItem1.Id = 72;
            this.gridColumnHeadersBarItem1.Name = "gridColumnHeadersBarItem1";
            // 
            // chartRotateBarItem1
            // 
            this.chartRotateBarItem1.Id = 73;
            this.chartRotateBarItem1.Name = "chartRotateBarItem1";
            // 
            // chartXAxisSettingsBarItem1
            // 
            this.chartXAxisSettingsBarItem1.Id = 74;
            this.chartXAxisSettingsBarItem1.Name = "chartXAxisSettingsBarItem1";
            // 
            // chartYAxisSettingsBarItem1
            // 
            this.chartYAxisSettingsBarItem1.Id = 75;
            this.chartYAxisSettingsBarItem1.Name = "chartYAxisSettingsBarItem1";
            // 
            // chartShowLegendBarItem1
            // 
            this.chartShowLegendBarItem1.Id = 76;
            this.chartShowLegendBarItem1.Name = "chartShowLegendBarItem1";
            // 
            // galleryChartLegendPositionItem1
            // 
            // 
            // 
            // 
            this.galleryChartLegendPositionItem1.Gallery.ColumnCount = 3;
            galleryItemGroup5.Caption = "Inside Horizontal";
            galleryItemGroup6.Caption = "Inside Vertical";
            galleryItemGroup7.Caption = "Outside Horizontal";
            galleryItemGroup8.Caption = "Outside Vertical";
            this.galleryChartLegendPositionItem1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup5,
            galleryItemGroup6,
            galleryItemGroup7,
            galleryItemGroup8});
            this.galleryChartLegendPositionItem1.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.galleryChartLegendPositionItem1.Gallery.RowCount = 8;
            this.galleryChartLegendPositionItem1.Id = 77;
            this.galleryChartLegendPositionItem1.Name = "galleryChartLegendPositionItem1";
            // 
            // galleryChartSeriesTypeItem1
            // 
            // 
            // 
            // 
            galleryItemGroup9.Caption = "Bar";
            chartSeriesTypeGalleryItem1.Hint = "Bar";
            chartSeriesTypeGalleryItem1.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem1.Image")));
            chartSeriesTypeGalleryItem1.SeriesTypeCaption = "Bar";
            chartSeriesTypeGalleryItem2.Hint = "Stacked Bar";
            chartSeriesTypeGalleryItem2.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem2.Image")));
            chartSeriesTypeGalleryItem2.SeriesTypeCaption = "Stacked Bar";
            chartSeriesTypeGalleryItem3.Hint = "Full-Stacked Bar";
            chartSeriesTypeGalleryItem3.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem3.Image")));
            chartSeriesTypeGalleryItem3.SeriesTypeCaption = "Full-Stacked Bar";
            galleryItemGroup9.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem1,
            chartSeriesTypeGalleryItem2,
            chartSeriesTypeGalleryItem3});
            galleryItemGroup10.Caption = "Point / Line";
            chartSeriesTypeGalleryItem4.Hint = "Point";
            chartSeriesTypeGalleryItem4.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem4.Image")));
            chartSeriesTypeGalleryItem4.SeriesTypeCaption = "Point";
            chartSeriesTypeGalleryItem5.Hint = "Line";
            chartSeriesTypeGalleryItem5.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem5.Image")));
            chartSeriesTypeGalleryItem5.SeriesTypeCaption = "Line";
            chartSeriesTypeGalleryItem6.Hint = "Stacked Line";
            chartSeriesTypeGalleryItem6.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem6.Image")));
            chartSeriesTypeGalleryItem6.SeriesTypeCaption = "Stacked Line";
            chartSeriesTypeGalleryItem7.Hint = "Full-Stacked Line";
            chartSeriesTypeGalleryItem7.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem7.Image")));
            chartSeriesTypeGalleryItem7.SeriesTypeCaption = "Full-Stacked Line";
            chartSeriesTypeGalleryItem8.Hint = "Step Line";
            chartSeriesTypeGalleryItem8.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem8.Image")));
            chartSeriesTypeGalleryItem8.SeriesTypeCaption = "Step Line";
            chartSeriesTypeGalleryItem9.Hint = "Spline";
            chartSeriesTypeGalleryItem9.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem9.Image")));
            chartSeriesTypeGalleryItem9.SeriesTypeCaption = "Spline";
            galleryItemGroup10.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem4,
            chartSeriesTypeGalleryItem5,
            chartSeriesTypeGalleryItem6,
            chartSeriesTypeGalleryItem7,
            chartSeriesTypeGalleryItem8,
            chartSeriesTypeGalleryItem9});
            galleryItemGroup11.Caption = "Area";
            chartSeriesTypeGalleryItem10.Hint = "Area";
            chartSeriesTypeGalleryItem10.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem10.Image")));
            chartSeriesTypeGalleryItem10.SeriesTypeCaption = "Area";
            chartSeriesTypeGalleryItem11.Hint = "Stacked Area";
            chartSeriesTypeGalleryItem11.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem11.Image")));
            chartSeriesTypeGalleryItem11.SeriesTypeCaption = "Stacked Area";
            chartSeriesTypeGalleryItem12.Hint = "Full-Stacked Area";
            chartSeriesTypeGalleryItem12.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem12.Image")));
            chartSeriesTypeGalleryItem12.SeriesTypeCaption = "Full-Stacked Area";
            chartSeriesTypeGalleryItem13.Hint = "Step Area";
            chartSeriesTypeGalleryItem13.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem13.Image")));
            chartSeriesTypeGalleryItem13.SeriesTypeCaption = "Step Area";
            chartSeriesTypeGalleryItem14.Hint = "Spline Area";
            chartSeriesTypeGalleryItem14.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem14.Image")));
            chartSeriesTypeGalleryItem14.SeriesTypeCaption = "Spline Area";
            chartSeriesTypeGalleryItem15.Hint = "Stacked Spline Area";
            chartSeriesTypeGalleryItem15.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem15.Image")));
            chartSeriesTypeGalleryItem15.SeriesTypeCaption = "Stacked Spline Area";
            chartSeriesTypeGalleryItem16.Hint = "Full-Stacked Spline Area";
            chartSeriesTypeGalleryItem16.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem16.Image")));
            chartSeriesTypeGalleryItem16.SeriesTypeCaption = "Full-Stacked Spline Area";
            galleryItemGroup11.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem10,
            chartSeriesTypeGalleryItem11,
            chartSeriesTypeGalleryItem12,
            chartSeriesTypeGalleryItem13,
            chartSeriesTypeGalleryItem14,
            chartSeriesTypeGalleryItem15,
            chartSeriesTypeGalleryItem16});
            galleryItemGroup12.Caption = "Range";
            chartSeriesTypeGalleryItem17.Hint = "Range Bar Side-by-Side";
            chartSeriesTypeGalleryItem17.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem17.Image")));
            chartSeriesTypeGalleryItem17.SeriesTypeCaption = "Range Bar Side-by-Side";
            chartSeriesTypeGalleryItem18.Hint = "Range Area";
            chartSeriesTypeGalleryItem18.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem18.Image")));
            chartSeriesTypeGalleryItem18.SeriesTypeCaption = "Range Area";
            galleryItemGroup12.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem17,
            chartSeriesTypeGalleryItem18});
            galleryItemGroup13.Caption = "Bubble";
            chartSeriesTypeGalleryItem19.Hint = "Bubble";
            chartSeriesTypeGalleryItem19.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem19.Image")));
            chartSeriesTypeGalleryItem19.SeriesTypeCaption = "Bubble";
            galleryItemGroup13.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem19});
            galleryItemGroup14.Caption = "Financial";
            chartSeriesTypeGalleryItem20.Hint = "High-Low-Close";
            chartSeriesTypeGalleryItem20.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem20.Image")));
            chartSeriesTypeGalleryItem20.SeriesTypeCaption = "High-Low-Close";
            chartSeriesTypeGalleryItem21.Hint = "Open-High-Low-Close (Candle Stick)";
            chartSeriesTypeGalleryItem21.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem21.Image")));
            chartSeriesTypeGalleryItem21.SeriesTypeCaption = "Open-High-Low-Close (Candle Stick)";
            chartSeriesTypeGalleryItem22.Hint = "Open-High-Low-Close (Stock)";
            chartSeriesTypeGalleryItem22.Image = ((System.Drawing.Image)(resources.GetObject("chartSeriesTypeGalleryItem22.Image")));
            chartSeriesTypeGalleryItem22.SeriesTypeCaption = "Open-High-Low-Close (Stock)";
            galleryItemGroup14.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            chartSeriesTypeGalleryItem20,
            chartSeriesTypeGalleryItem21,
            chartSeriesTypeGalleryItem22});
            this.galleryChartSeriesTypeItem1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup9,
            galleryItemGroup10,
            galleryItemGroup11,
            galleryItemGroup12,
            galleryItemGroup13,
            galleryItemGroup14});
            this.galleryChartSeriesTypeItem1.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.galleryChartSeriesTypeItem1.Gallery.RowCount = 8;
            this.galleryChartSeriesTypeItem1.Id = 78;
            this.galleryChartSeriesTypeItem1.Name = "galleryChartSeriesTypeItem1";
            // 
            // pieLabelsDataLabelsBarItem1
            // 
            this.pieLabelsDataLabelsBarItem1.Id = 79;
            this.pieLabelsDataLabelsBarItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsDataLabelsNoneBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsDataLabelArgumentBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsDataLabelsValueBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsDataLabelsArgumentAndValueBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsDataLabelsPercentBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsDataLabelsValueAndPercentBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsDataLabelsArgumentAndPercentBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsDataLabelsArgumentValueAndPercentBarItem1)});
            this.pieLabelsDataLabelsBarItem1.Name = "pieLabelsDataLabelsBarItem1";
            this.pieLabelsDataLabelsBarItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionInMenu;
            // 
            // pieLabelsDataLabelsNoneBarItem1
            // 
            this.pieLabelsDataLabelsNoneBarItem1.Id = 80;
            this.pieLabelsDataLabelsNoneBarItem1.Name = "pieLabelsDataLabelsNoneBarItem1";
            // 
            // pieLabelsDataLabelArgumentBarItem1
            // 
            this.pieLabelsDataLabelArgumentBarItem1.Id = 81;
            this.pieLabelsDataLabelArgumentBarItem1.Name = "pieLabelsDataLabelArgumentBarItem1";
            // 
            // pieLabelsDataLabelsValueBarItem1
            // 
            this.pieLabelsDataLabelsValueBarItem1.Id = 82;
            this.pieLabelsDataLabelsValueBarItem1.Name = "pieLabelsDataLabelsValueBarItem1";
            // 
            // pieLabelsDataLabelsArgumentAndValueBarItem1
            // 
            this.pieLabelsDataLabelsArgumentAndValueBarItem1.Id = 83;
            this.pieLabelsDataLabelsArgumentAndValueBarItem1.Name = "pieLabelsDataLabelsArgumentAndValueBarItem1";
            // 
            // pieLabelsDataLabelsPercentBarItem1
            // 
            this.pieLabelsDataLabelsPercentBarItem1.Id = 84;
            this.pieLabelsDataLabelsPercentBarItem1.Name = "pieLabelsDataLabelsPercentBarItem1";
            // 
            // pieLabelsDataLabelsValueAndPercentBarItem1
            // 
            this.pieLabelsDataLabelsValueAndPercentBarItem1.Id = 85;
            this.pieLabelsDataLabelsValueAndPercentBarItem1.Name = "pieLabelsDataLabelsValueAndPercentBarItem1";
            // 
            // pieLabelsDataLabelsArgumentAndPercentBarItem1
            // 
            this.pieLabelsDataLabelsArgumentAndPercentBarItem1.Id = 86;
            this.pieLabelsDataLabelsArgumentAndPercentBarItem1.Name = "pieLabelsDataLabelsArgumentAndPercentBarItem1";
            // 
            // pieLabelsDataLabelsArgumentValueAndPercentBarItem1
            // 
            this.pieLabelsDataLabelsArgumentValueAndPercentBarItem1.Id = 87;
            this.pieLabelsDataLabelsArgumentValueAndPercentBarItem1.Name = "pieLabelsDataLabelsArgumentValueAndPercentBarItem1";
            // 
            // pieTooltipsBarItem1
            // 
            this.pieTooltipsBarItem1.Id = 88;
            this.pieTooltipsBarItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsTooltipsNoneBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsTooltipsArgumentBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsTooltipsValueBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsTooltipsArgumentAndValueBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsTooltipsPercentBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsTooltipsValueAndPercentBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsTooltipsArgumentAndPercentBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pieLabelsTooltipsArgumentValueAndPercentBarItem1)});
            this.pieTooltipsBarItem1.Name = "pieTooltipsBarItem1";
            this.pieTooltipsBarItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionInMenu;
            // 
            // pieLabelsTooltipsNoneBarItem1
            // 
            this.pieLabelsTooltipsNoneBarItem1.Id = 89;
            this.pieLabelsTooltipsNoneBarItem1.Name = "pieLabelsTooltipsNoneBarItem1";
            // 
            // pieLabelsTooltipsArgumentBarItem1
            // 
            this.pieLabelsTooltipsArgumentBarItem1.Id = 90;
            this.pieLabelsTooltipsArgumentBarItem1.Name = "pieLabelsTooltipsArgumentBarItem1";
            // 
            // pieLabelsTooltipsValueBarItem1
            // 
            this.pieLabelsTooltipsValueBarItem1.Id = 91;
            this.pieLabelsTooltipsValueBarItem1.Name = "pieLabelsTooltipsValueBarItem1";
            // 
            // pieLabelsTooltipsArgumentAndValueBarItem1
            // 
            this.pieLabelsTooltipsArgumentAndValueBarItem1.Id = 92;
            this.pieLabelsTooltipsArgumentAndValueBarItem1.Name = "pieLabelsTooltipsArgumentAndValueBarItem1";
            // 
            // pieLabelsTooltipsPercentBarItem1
            // 
            this.pieLabelsTooltipsPercentBarItem1.Id = 93;
            this.pieLabelsTooltipsPercentBarItem1.Name = "pieLabelsTooltipsPercentBarItem1";
            // 
            // pieLabelsTooltipsValueAndPercentBarItem1
            // 
            this.pieLabelsTooltipsValueAndPercentBarItem1.Id = 94;
            this.pieLabelsTooltipsValueAndPercentBarItem1.Name = "pieLabelsTooltipsValueAndPercentBarItem1";
            // 
            // pieLabelsTooltipsArgumentAndPercentBarItem1
            // 
            this.pieLabelsTooltipsArgumentAndPercentBarItem1.Id = 95;
            this.pieLabelsTooltipsArgumentAndPercentBarItem1.Name = "pieLabelsTooltipsArgumentAndPercentBarItem1";
            // 
            // pieLabelsTooltipsArgumentValueAndPercentBarItem1
            // 
            this.pieLabelsTooltipsArgumentValueAndPercentBarItem1.Id = 96;
            this.pieLabelsTooltipsArgumentValueAndPercentBarItem1.Name = "pieLabelsTooltipsArgumentValueAndPercentBarItem1";
            // 
            // pieStylePieBarItem1
            // 
            this.pieStylePieBarItem1.Id = 97;
            this.pieStylePieBarItem1.Name = "pieStylePieBarItem1";
            // 
            // pieStyleDonutBarItem1
            // 
            this.pieStyleDonutBarItem1.Id = 98;
            this.pieStyleDonutBarItem1.Name = "pieStyleDonutBarItem1";
            // 
            // pieShowCaptionsBarItem1
            // 
            this.pieShowCaptionsBarItem1.Id = 99;
            this.pieShowCaptionsBarItem1.Name = "pieShowCaptionsBarItem1";
            // 
            // gaugeStyleFullCircularBarItem1
            // 
            this.gaugeStyleFullCircularBarItem1.Id = 100;
            this.gaugeStyleFullCircularBarItem1.Name = "gaugeStyleFullCircularBarItem1";
            // 
            // gaugeStyleHalfCircularBarItem1
            // 
            this.gaugeStyleHalfCircularBarItem1.Id = 101;
            this.gaugeStyleHalfCircularBarItem1.Name = "gaugeStyleHalfCircularBarItem1";
            // 
            // gaugeStyleLeftQuarterCircularBarItem1
            // 
            this.gaugeStyleLeftQuarterCircularBarItem1.Id = 102;
            this.gaugeStyleLeftQuarterCircularBarItem1.Name = "gaugeStyleLeftQuarterCircularBarItem1";
            // 
            // gaugeStyleRightQuarterCircularBarItem1
            // 
            this.gaugeStyleRightQuarterCircularBarItem1.Id = 103;
            this.gaugeStyleRightQuarterCircularBarItem1.Name = "gaugeStyleRightQuarterCircularBarItem1";
            // 
            // gaugeStyleThreeForthCircularBarItem1
            // 
            this.gaugeStyleThreeForthCircularBarItem1.Id = 104;
            this.gaugeStyleThreeForthCircularBarItem1.Name = "gaugeStyleThreeForthCircularBarItem1";
            // 
            // gaugeStyleLinearHorizontalBarItem1
            // 
            this.gaugeStyleLinearHorizontalBarItem1.Id = 105;
            this.gaugeStyleLinearHorizontalBarItem1.Name = "gaugeStyleLinearHorizontalBarItem1";
            // 
            // gaugeStyleLinearVerticalBarItem1
            // 
            this.gaugeStyleLinearVerticalBarItem1.Id = 106;
            this.gaugeStyleLinearVerticalBarItem1.Name = "gaugeStyleLinearVerticalBarItem1";
            // 
            // gaugeShowCaptionsBarItem1
            // 
            this.gaugeShowCaptionsBarItem1.Id = 107;
            this.gaugeShowCaptionsBarItem1.Name = "gaugeShowCaptionsBarItem1";
            // 
            // imageLoadBarItem1
            // 
            this.imageLoadBarItem1.Id = 108;
            this.imageLoadBarItem1.Name = "imageLoadBarItem1";
            // 
            // imageImportBarItem1
            // 
            this.imageImportBarItem1.Id = 109;
            this.imageImportBarItem1.Name = "imageImportBarItem1";
            // 
            // imageSizeModeClipBarItem1
            // 
            this.imageSizeModeClipBarItem1.Id = 110;
            this.imageSizeModeClipBarItem1.Name = "imageSizeModeClipBarItem1";
            // 
            // imageSizeModeStretchBarItem1
            // 
            this.imageSizeModeStretchBarItem1.Id = 111;
            this.imageSizeModeStretchBarItem1.Name = "imageSizeModeStretchBarItem1";
            // 
            // imageSizeModeSqueezeBarItem1
            // 
            this.imageSizeModeSqueezeBarItem1.Id = 112;
            this.imageSizeModeSqueezeBarItem1.Name = "imageSizeModeSqueezeBarItem1";
            // 
            // imageSizeModeZoomBarItem1
            // 
            this.imageSizeModeZoomBarItem1.Id = 113;
            this.imageSizeModeZoomBarItem1.Name = "imageSizeModeZoomBarItem1";
            // 
            // imageAlignmentTopLeftBarItem1
            // 
            this.imageAlignmentTopLeftBarItem1.Id = 114;
            this.imageAlignmentTopLeftBarItem1.Name = "imageAlignmentTopLeftBarItem1";
            this.imageAlignmentTopLeftBarItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // imageAlignmentCenterLeftBarItem1
            // 
            this.imageAlignmentCenterLeftBarItem1.Id = 115;
            this.imageAlignmentCenterLeftBarItem1.Name = "imageAlignmentCenterLeftBarItem1";
            this.imageAlignmentCenterLeftBarItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // imageAlignmentBottomLeftBarItem1
            // 
            this.imageAlignmentBottomLeftBarItem1.Id = 116;
            this.imageAlignmentBottomLeftBarItem1.Name = "imageAlignmentBottomLeftBarItem1";
            this.imageAlignmentBottomLeftBarItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // imageAlignmentTopCenterBarItem1
            // 
            this.imageAlignmentTopCenterBarItem1.Id = 117;
            this.imageAlignmentTopCenterBarItem1.Name = "imageAlignmentTopCenterBarItem1";
            this.imageAlignmentTopCenterBarItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // imageAlignmentCenterCenterBarItem1
            // 
            this.imageAlignmentCenterCenterBarItem1.Id = 118;
            this.imageAlignmentCenterCenterBarItem1.Name = "imageAlignmentCenterCenterBarItem1";
            this.imageAlignmentCenterCenterBarItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // imageAlignmentBottomCenterBarItem1
            // 
            this.imageAlignmentBottomCenterBarItem1.Id = 119;
            this.imageAlignmentBottomCenterBarItem1.Name = "imageAlignmentBottomCenterBarItem1";
            this.imageAlignmentBottomCenterBarItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // imageAlignmentTopRightBarItem1
            // 
            this.imageAlignmentTopRightBarItem1.Id = 120;
            this.imageAlignmentTopRightBarItem1.Name = "imageAlignmentTopRightBarItem1";
            this.imageAlignmentTopRightBarItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // imageAlignmentCenterRightBarItem1
            // 
            this.imageAlignmentCenterRightBarItem1.Id = 121;
            this.imageAlignmentCenterRightBarItem1.Name = "imageAlignmentCenterRightBarItem1";
            this.imageAlignmentCenterRightBarItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // imageAlignmentBottomRightBarItem1
            // 
            this.imageAlignmentBottomRightBarItem1.Id = 122;
            this.imageAlignmentBottomRightBarItem1.Name = "imageAlignmentBottomRightBarItem1";
            this.imageAlignmentBottomRightBarItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // textBoxEditTextBarItem1
            // 
            this.textBoxEditTextBarItem1.Id = 123;
            this.textBoxEditTextBarItem1.Name = "textBoxEditTextBarItem1";
            // 
            // rangeFilterLineSeriesTypeBarItem1
            // 
            this.rangeFilterLineSeriesTypeBarItem1.Id = 124;
            this.rangeFilterLineSeriesTypeBarItem1.Name = "rangeFilterLineSeriesTypeBarItem1";
            // 
            // rangeFilterStackedLineSeriesTypeBarItem1
            // 
            this.rangeFilterStackedLineSeriesTypeBarItem1.Id = 125;
            this.rangeFilterStackedLineSeriesTypeBarItem1.Name = "rangeFilterStackedLineSeriesTypeBarItem1";
            // 
            // rangeFilterFullStackedLineSeriesTypeBarItem1
            // 
            this.rangeFilterFullStackedLineSeriesTypeBarItem1.Id = 126;
            this.rangeFilterFullStackedLineSeriesTypeBarItem1.Name = "rangeFilterFullStackedLineSeriesTypeBarItem1";
            // 
            // rangeFilterAreaSeriesTypeBarItem1
            // 
            this.rangeFilterAreaSeriesTypeBarItem1.Id = 127;
            this.rangeFilterAreaSeriesTypeBarItem1.Name = "rangeFilterAreaSeriesTypeBarItem1";
            // 
            // rangeFilterStackedAreaSeriesTypeBarItem1
            // 
            this.rangeFilterStackedAreaSeriesTypeBarItem1.Id = 128;
            this.rangeFilterStackedAreaSeriesTypeBarItem1.Name = "rangeFilterStackedAreaSeriesTypeBarItem1";
            // 
            // rangeFilterFullStackedAreaSeriesTypeBarItem1
            // 
            this.rangeFilterFullStackedAreaSeriesTypeBarItem1.Id = 129;
            this.rangeFilterFullStackedAreaSeriesTypeBarItem1.Name = "rangeFilterFullStackedAreaSeriesTypeBarItem1";
            // 
            // pivotInitialStateBarItem1
            // 
            this.pivotInitialStateBarItem1.Id = 130;
            this.pivotInitialStateBarItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.pivotAutoExpandColumnBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.pivotAutoExpandRowBarItem1)});
            this.pivotInitialStateBarItem1.Name = "pivotInitialStateBarItem1";
            this.pivotInitialStateBarItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionInMenu;
            // 
            // pivotAutoExpandColumnBarItem1
            // 
            this.pivotAutoExpandColumnBarItem1.Id = 131;
            this.pivotAutoExpandColumnBarItem1.Name = "pivotAutoExpandColumnBarItem1";
            // 
            // pivotAutoExpandRowBarItem1
            // 
            this.pivotAutoExpandRowBarItem1.Id = 132;
            this.pivotAutoExpandRowBarItem1.Name = "pivotAutoExpandRowBarItem1";
            // 
            // mapLoadBarItem1
            // 
            this.mapLoadBarItem1.Id = 133;
            this.mapLoadBarItem1.Name = "mapLoadBarItem1";
            // 
            // mapImportBarItem1
            // 
            this.mapImportBarItem1.Id = 134;
            this.mapImportBarItem1.Name = "mapImportBarItem1";
            // 
            // mapDefaultShapefileBarItem1
            // 
            this.mapDefaultShapefileBarItem1.Id = 135;
            this.mapDefaultShapefileBarItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.mapWorldCountriesBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.mapEuropeBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.mapAsiaBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.mapNorthAmericaBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.mapSouthAmericaBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.mapAfricaBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.mapUSABarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.mapCanadaBarItem1)});
            this.mapDefaultShapefileBarItem1.Name = "mapDefaultShapefileBarItem1";
            this.mapDefaultShapefileBarItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionInMenu;
            // 
            // mapWorldCountriesBarItem1
            // 
            this.mapWorldCountriesBarItem1.Id = 136;
            this.mapWorldCountriesBarItem1.Name = "mapWorldCountriesBarItem1";
            // 
            // mapEuropeBarItem1
            // 
            this.mapEuropeBarItem1.Id = 137;
            this.mapEuropeBarItem1.Name = "mapEuropeBarItem1";
            // 
            // mapAsiaBarItem1
            // 
            this.mapAsiaBarItem1.Id = 138;
            this.mapAsiaBarItem1.Name = "mapAsiaBarItem1";
            // 
            // mapNorthAmericaBarItem1
            // 
            this.mapNorthAmericaBarItem1.Id = 139;
            this.mapNorthAmericaBarItem1.Name = "mapNorthAmericaBarItem1";
            // 
            // mapSouthAmericaBarItem1
            // 
            this.mapSouthAmericaBarItem1.Id = 140;
            this.mapSouthAmericaBarItem1.Name = "mapSouthAmericaBarItem1";
            // 
            // mapAfricaBarItem1
            // 
            this.mapAfricaBarItem1.Id = 141;
            this.mapAfricaBarItem1.Name = "mapAfricaBarItem1";
            // 
            // mapUSABarItem1
            // 
            this.mapUSABarItem1.Id = 142;
            this.mapUSABarItem1.Name = "mapUSABarItem1";
            // 
            // mapCanadaBarItem1
            // 
            this.mapCanadaBarItem1.Id = 143;
            this.mapCanadaBarItem1.Name = "mapCanadaBarItem1";
            // 
            // mapLockNavigationBarItem1
            // 
            this.mapLockNavigationBarItem1.Id = 144;
            this.mapLockNavigationBarItem1.Name = "mapLockNavigationBarItem1";
            // 
            // mapFullExtentBarItem1
            // 
            this.mapFullExtentBarItem1.Id = 145;
            this.mapFullExtentBarItem1.Name = "mapFullExtentBarItem1";
            // 
            // mapShowLegendBarItem1
            // 
            this.mapShowLegendBarItem1.Id = 146;
            this.mapShowLegendBarItem1.Name = "mapShowLegendBarItem1";
            // 
            // galleryMapLegendPositionItem1
            // 
            // 
            // 
            // 
            this.galleryMapLegendPositionItem1.Gallery.ColumnCount = 3;
            galleryItemGroup15.Caption = "Vertical";
            galleryItemGroup16.Caption = "Horizontal";
            this.galleryMapLegendPositionItem1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup15,
            galleryItemGroup16});
            this.galleryMapLegendPositionItem1.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.galleryMapLegendPositionItem1.Gallery.RowCount = 4;
            this.galleryMapLegendPositionItem1.Id = 147;
            this.galleryMapLegendPositionItem1.Name = "galleryMapLegendPositionItem1";
            // 
            // changeWeightedLegendTypeBarItem1
            // 
            this.changeWeightedLegendTypeBarItem1.Id = 148;
            this.changeWeightedLegendTypeBarItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.weightedLegendNoneBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.weightedLegendLinearBarItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.weightedLegendNestedBarItem1)});
            this.changeWeightedLegendTypeBarItem1.Name = "changeWeightedLegendTypeBarItem1";
            this.changeWeightedLegendTypeBarItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionInMenu;
            // 
            // weightedLegendNoneBarItem1
            // 
            this.weightedLegendNoneBarItem1.Id = 149;
            this.weightedLegendNoneBarItem1.Name = "weightedLegendNoneBarItem1";
            // 
            // weightedLegendLinearBarItem1
            // 
            this.weightedLegendLinearBarItem1.Id = 150;
            this.weightedLegendLinearBarItem1.Name = "weightedLegendLinearBarItem1";
            // 
            // weightedLegendNestedBarItem1
            // 
            this.weightedLegendNestedBarItem1.Id = 151;
            this.weightedLegendNestedBarItem1.Name = "weightedLegendNestedBarItem1";
            // 
            // galleryWeightedLegendPositionItem1
            // 
            // 
            // 
            // 
            this.galleryWeightedLegendPositionItem1.Gallery.ColumnCount = 3;
            galleryItemGroup17.Caption = "Position";
            this.galleryWeightedLegendPositionItem1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup17});
            this.galleryWeightedLegendPositionItem1.Gallery.ImageSize = new System.Drawing.Size(32, 32);
            this.galleryWeightedLegendPositionItem1.Gallery.RowCount = 2;
            this.galleryWeightedLegendPositionItem1.Id = 152;
            this.galleryWeightedLegendPositionItem1.Name = "galleryWeightedLegendPositionItem1";
            // 
            // pieMapIsWeightedBarItem1
            // 
            this.pieMapIsWeightedBarItem1.Id = 153;
            this.pieMapIsWeightedBarItem1.Name = "pieMapIsWeightedBarItem1";
            // 
            // quickAccessUndoBarItem1
            // 
            this.quickAccessUndoBarItem1.Id = 154;
            this.quickAccessUndoBarItem1.Name = "quickAccessUndoBarItem1";
            // 
            // quickAccessRedoBarItem1
            // 
            this.quickAccessRedoBarItem1.Id = 155;
            this.quickAccessRedoBarItem1.Name = "quickAccessRedoBarItem1";
            // 
            // bbiNew
            // 
            this.bbiNew.Caption = "New Dashboard";
            this.bbiNew.CategoryGuid = new System.Guid("6ffddb2b-9015-4d97-a4c1-91613e0ef537");
            this.bbiNew.Glyph = global::NICSQLTools.Properties.Resources.new_16x16;
            this.bbiNew.Id = 156;
            this.bbiNew.LargeGlyph = global::NICSQLTools.Properties.Resources.new_32x32;
            this.bbiNew.Name = "bbiNew";
            this.bbiNew.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)(((DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText) 
            | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
            toolTipTitleItem1.Appearance.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image")));
            toolTipTitleItem1.Appearance.Options.UseImage = true;
            toolTipTitleItem1.Image = ((System.Drawing.Image)(resources.GetObject("toolTipTitleItem1.Image")));
            toolTipTitleItem1.Text = "New";
            toolTipItem1.LeftIndent = 6;
            toolTipItem1.Text = "Create a new dashboard";
            superToolTip1.Items.Add(toolTipTitleItem1);
            superToolTip1.Items.Add(toolTipItem1);
            this.bbiNew.SuperTip = superToolTip1;
            this.bbiNew.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiNew_ItemClick);
            // 
            // bbiOpen
            // 
            this.bbiOpen.Caption = "Open";
            this.bbiOpen.CategoryGuid = new System.Guid("6ffddb2b-9015-4d97-a4c1-91613e0ef537");
            this.bbiOpen.Glyph = global::NICSQLTools.Properties.Resources.open_16x16;
            this.bbiOpen.Id = 157;
            this.bbiOpen.LargeGlyph = global::NICSQLTools.Properties.Resources.open_32x32;
            this.bbiOpen.Name = "bbiOpen";
            this.bbiOpen.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)(((DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText) 
            | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
            toolTipTitleItem2.Appearance.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image1")));
            toolTipTitleItem2.Appearance.Options.UseImage = true;
            toolTipTitleItem2.Image = ((System.Drawing.Image)(resources.GetObject("toolTipTitleItem2.Image")));
            toolTipTitleItem2.Text = "Open";
            toolTipItem2.LeftIndent = 6;
            toolTipItem2.Text = "Open Saved Dashboard From Database";
            superToolTip2.Items.Add(toolTipTitleItem2);
            superToolTip2.Items.Add(toolTipItem2);
            this.bbiOpen.SuperTip = superToolTip2;
            this.bbiOpen.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiOpen_ItemClick);
            // 
            // bbiSave
            // 
            this.bbiSave.Caption = "Save";
            this.bbiSave.CategoryGuid = new System.Guid("6ffddb2b-9015-4d97-a4c1-91613e0ef537");
            this.bbiSave.Glyph = global::NICSQLTools.Properties.Resources.save_16x16;
            this.bbiSave.Id = 158;
            this.bbiSave.LargeGlyph = global::NICSQLTools.Properties.Resources.save_32x32;
            this.bbiSave.Name = "bbiSave";
            this.bbiSave.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)(((DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText) 
            | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
            toolTipTitleItem3.Appearance.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image2")));
            toolTipTitleItem3.Appearance.Options.UseImage = true;
            toolTipTitleItem3.Image = ((System.Drawing.Image)(resources.GetObject("toolTipTitleItem3.Image")));
            toolTipTitleItem3.Text = "Save";
            toolTipItem3.LeftIndent = 6;
            toolTipItem3.Text = "Save Current Dashboard to Database";
            superToolTip3.Items.Add(toolTipTitleItem3);
            superToolTip3.Items.Add(toolTipItem3);
            this.bbiSave.SuperTip = superToolTip3;
            this.bbiSave.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiSave_ItemClick);
            // 
            // bbiSaveAs
            // 
            this.bbiSaveAs.Caption = "Save As";
            this.bbiSaveAs.CategoryGuid = new System.Guid("6ffddb2b-9015-4d97-a4c1-91613e0ef537");
            this.bbiSaveAs.Glyph = global::NICSQLTools.Properties.Resources.saveall_16x16;
            this.bbiSaveAs.Id = 159;
            this.bbiSaveAs.LargeGlyph = global::NICSQLTools.Properties.Resources.saveall_32x32;
            this.bbiSaveAs.Name = "bbiSaveAs";
            this.bbiSaveAs.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)(((DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText) 
            | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
            toolTipTitleItem4.Appearance.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image3")));
            toolTipTitleItem4.Appearance.Options.UseImage = true;
            toolTipTitleItem4.Image = ((System.Drawing.Image)(resources.GetObject("toolTipTitleItem4.Image")));
            toolTipTitleItem4.Text = "Save As";
            toolTipItem4.LeftIndent = 6;
            toolTipItem4.Text = "Copy Current Dashboard To New Dashboard";
            superToolTip4.Items.Add(toolTipTitleItem4);
            superToolTip4.Items.Add(toolTipItem4);
            this.bbiSaveAs.SuperTip = superToolTip4;
            this.bbiSaveAs.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiSaveAs_ItemClick);
            // 
            // bbiAddDatasource
            // 
            this.bbiAddDatasource.Caption = "New Datasource";
            this.bbiAddDatasource.CategoryGuid = new System.Guid("6ffddb2b-9015-4d97-a4c1-91613e0ef537");
            this.bbiAddDatasource.Glyph = global::NICSQLTools.Properties.Resources.addnewdatasource_16x16;
            this.bbiAddDatasource.Id = 160;
            this.bbiAddDatasource.LargeGlyph = global::NICSQLTools.Properties.Resources.addnewdatasource_32x32;
            this.bbiAddDatasource.Name = "bbiAddDatasource";
            this.bbiAddDatasource.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)(((DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText) 
            | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
            toolTipTitleItem5.Appearance.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image4")));
            toolTipTitleItem5.Appearance.Options.UseImage = true;
            toolTipTitleItem5.Image = ((System.Drawing.Image)(resources.GetObject("toolTipTitleItem5.Image")));
            toolTipTitleItem5.Text = "New Datashource";
            toolTipItem5.LeftIndent = 6;
            toolTipItem5.Text = "Add New Datasource Into Current Dashboard";
            superToolTip5.Items.Add(toolTipTitleItem5);
            superToolTip5.Items.Add(toolTipItem5);
            this.bbiAddDatasource.SuperTip = superToolTip5;
            this.bbiAddDatasource.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiAddDatasource_ItemClick);
            // 
            // pivotToolsRibbonPageCategory1
            // 
            this.pivotToolsRibbonPageCategory1.Control = this.dashboardDesignerMain;
            this.pivotToolsRibbonPageCategory1.Name = "pivotToolsRibbonPageCategory1";
            this.pivotToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage1,
            this.dashboardItemDesignRibbonPage9});
            this.pivotToolsRibbonPageCategory1.Visible = false;
            // 
            // dataRibbonPage1
            // 
            this.dataRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.filteringRibbonPageGroup1,
            this.interactivitySettingsRibbonPageGroup1,
            this.pivotLayoutRibbonPageGroup1});
            this.dataRibbonPage1.Name = "dataRibbonPage1";
            this.dataRibbonPage1.Visible = false;
            // 
            // filteringRibbonPageGroup1
            // 
            this.filteringRibbonPageGroup1.ItemLinks.Add(this.editFilterBarItem1);
            this.filteringRibbonPageGroup1.ItemLinks.Add(this.clearFilterBarItem1);
            this.filteringRibbonPageGroup1.Name = "filteringRibbonPageGroup1";
            // 
            // interactivitySettingsRibbonPageGroup1
            // 
            this.interactivitySettingsRibbonPageGroup1.ItemLinks.Add(this.ignoreMasterFiltersBarItem1);
            this.interactivitySettingsRibbonPageGroup1.Name = "interactivitySettingsRibbonPageGroup1";
            // 
            // pivotLayoutRibbonPageGroup1
            // 
            this.pivotLayoutRibbonPageGroup1.ItemLinks.Add(this.pivotInitialStateBarItem1);
            this.pivotLayoutRibbonPageGroup1.Name = "pivotLayoutRibbonPageGroup1";
            // 
            // dashboardItemDesignRibbonPage9
            // 
            this.dashboardItemDesignRibbonPage9.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonItemDesignRibbonPageGroup9});
            this.dashboardItemDesignRibbonPage9.Name = "dashboardItemDesignRibbonPage9";
            this.dashboardItemDesignRibbonPage9.Visible = false;
            // 
            // commonItemDesignRibbonPageGroup9
            // 
            this.commonItemDesignRibbonPageGroup9.ItemLinks.Add(this.showItemCaptionBarItem1);
            this.commonItemDesignRibbonPageGroup9.ItemLinks.Add(this.editItemNamesBarItem1);
            this.commonItemDesignRibbonPageGroup9.Name = "commonItemDesignRibbonPageGroup9";
            // 
            // gridToolsRibbonPageCategory1
            // 
            this.gridToolsRibbonPageCategory1.Control = this.dashboardDesignerMain;
            this.gridToolsRibbonPageCategory1.Name = "gridToolsRibbonPageCategory1";
            this.gridToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage2,
            this.dashboardItemDesignRibbonPage1});
            this.gridToolsRibbonPageCategory1.Visible = false;
            // 
            // dataRibbonPage2
            // 
            this.dataRibbonPage2.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.filteringRibbonPageGroup2,
            this.masterFilterRibbonPageGroup1,
            this.interactivitySettingsRibbonPageGroup2});
            this.dataRibbonPage2.Name = "dataRibbonPage2";
            this.dataRibbonPage2.Visible = false;
            // 
            // filteringRibbonPageGroup2
            // 
            this.filteringRibbonPageGroup2.ItemLinks.Add(this.editFilterBarItem1);
            this.filteringRibbonPageGroup2.ItemLinks.Add(this.clearFilterBarItem1);
            this.filteringRibbonPageGroup2.Name = "filteringRibbonPageGroup2";
            // 
            // masterFilterRibbonPageGroup1
            // 
            this.masterFilterRibbonPageGroup1.ItemLinks.Add(this.masterFilterBarItem1);
            this.masterFilterRibbonPageGroup1.ItemLinks.Add(this.multipleValuesMasterFilterBarItem1);
            this.masterFilterRibbonPageGroup1.ItemLinks.Add(this.drillDownBarItem1);
            this.masterFilterRibbonPageGroup1.Name = "masterFilterRibbonPageGroup1";
            // 
            // interactivitySettingsRibbonPageGroup2
            // 
            this.interactivitySettingsRibbonPageGroup2.ItemLinks.Add(this.crossDataSourceFilteringBarItem1);
            this.interactivitySettingsRibbonPageGroup2.ItemLinks.Add(this.ignoreMasterFiltersBarItem1);
            this.interactivitySettingsRibbonPageGroup2.Name = "interactivitySettingsRibbonPageGroup2";
            // 
            // dashboardItemDesignRibbonPage1
            // 
            this.dashboardItemDesignRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonItemDesignRibbonPageGroup1,
            this.gridCellsRibbonPageGroup1});
            this.dashboardItemDesignRibbonPage1.Name = "dashboardItemDesignRibbonPage1";
            this.dashboardItemDesignRibbonPage1.Visible = false;
            // 
            // commonItemDesignRibbonPageGroup1
            // 
            this.commonItemDesignRibbonPageGroup1.ItemLinks.Add(this.showItemCaptionBarItem1);
            this.commonItemDesignRibbonPageGroup1.ItemLinks.Add(this.editItemNamesBarItem1);
            this.commonItemDesignRibbonPageGroup1.Name = "commonItemDesignRibbonPageGroup1";
            // 
            // gridCellsRibbonPageGroup1
            // 
            this.gridCellsRibbonPageGroup1.ItemLinks.Add(this.gridHorizontalLinesBarItem1);
            this.gridCellsRibbonPageGroup1.ItemLinks.Add(this.gridVerticalLinesBarItem1);
            this.gridCellsRibbonPageGroup1.ItemLinks.Add(this.gridMergeCellsBarItem1);
            this.gridCellsRibbonPageGroup1.ItemLinks.Add(this.gridBandedRowsBarItem1);
            this.gridCellsRibbonPageGroup1.ItemLinks.Add(this.gridColumnHeadersBarItem1);
            this.gridCellsRibbonPageGroup1.Name = "gridCellsRibbonPageGroup1";
            // 
            // chartToolsRibbonPageCategory1
            // 
            this.chartToolsRibbonPageCategory1.Control = this.dashboardDesignerMain;
            this.chartToolsRibbonPageCategory1.Name = "chartToolsRibbonPageCategory1";
            this.chartToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage3,
            this.dashboardItemDesignRibbonPage2});
            this.chartToolsRibbonPageCategory1.Visible = false;
            // 
            // dataRibbonPage3
            // 
            this.dataRibbonPage3.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.filteringRibbonPageGroup3,
            this.masterFilterRibbonPageGroup2,
            this.interactivitySettingsRibbonPageGroup3,
            this.targetDimensionsRibbonPageGroup1});
            this.dataRibbonPage3.Name = "dataRibbonPage3";
            this.dataRibbonPage3.Visible = false;
            // 
            // filteringRibbonPageGroup3
            // 
            this.filteringRibbonPageGroup3.ItemLinks.Add(this.editFilterBarItem1);
            this.filteringRibbonPageGroup3.ItemLinks.Add(this.clearFilterBarItem1);
            this.filteringRibbonPageGroup3.Name = "filteringRibbonPageGroup3";
            // 
            // masterFilterRibbonPageGroup2
            // 
            this.masterFilterRibbonPageGroup2.ItemLinks.Add(this.masterFilterBarItem1);
            this.masterFilterRibbonPageGroup2.ItemLinks.Add(this.multipleValuesMasterFilterBarItem1);
            this.masterFilterRibbonPageGroup2.ItemLinks.Add(this.drillDownBarItem1);
            this.masterFilterRibbonPageGroup2.Name = "masterFilterRibbonPageGroup2";
            // 
            // interactivitySettingsRibbonPageGroup3
            // 
            this.interactivitySettingsRibbonPageGroup3.ItemLinks.Add(this.crossDataSourceFilteringBarItem1);
            this.interactivitySettingsRibbonPageGroup3.ItemLinks.Add(this.ignoreMasterFiltersBarItem1);
            this.interactivitySettingsRibbonPageGroup3.Name = "interactivitySettingsRibbonPageGroup3";
            // 
            // targetDimensionsRibbonPageGroup1
            // 
            this.targetDimensionsRibbonPageGroup1.ItemLinks.Add(this.chartTargetDimensionsArgumentsBarItem1);
            this.targetDimensionsRibbonPageGroup1.ItemLinks.Add(this.chartTargetDimensionsSeriesBarItem1);
            this.targetDimensionsRibbonPageGroup1.Name = "targetDimensionsRibbonPageGroup1";
            // 
            // dashboardItemDesignRibbonPage2
            // 
            this.dashboardItemDesignRibbonPage2.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonItemDesignRibbonPageGroup2,
            this.chartLayoutPageGroup1,
            this.chartLegendPositionPageGroup1,
            this.chartStylePageGroup1});
            this.dashboardItemDesignRibbonPage2.Name = "dashboardItemDesignRibbonPage2";
            this.dashboardItemDesignRibbonPage2.Visible = false;
            // 
            // commonItemDesignRibbonPageGroup2
            // 
            this.commonItemDesignRibbonPageGroup2.ItemLinks.Add(this.showItemCaptionBarItem1);
            this.commonItemDesignRibbonPageGroup2.ItemLinks.Add(this.editItemNamesBarItem1);
            this.commonItemDesignRibbonPageGroup2.Name = "commonItemDesignRibbonPageGroup2";
            // 
            // chartLayoutPageGroup1
            // 
            this.chartLayoutPageGroup1.ItemLinks.Add(this.chartRotateBarItem1);
            this.chartLayoutPageGroup1.ItemLinks.Add(this.chartXAxisSettingsBarItem1);
            this.chartLayoutPageGroup1.ItemLinks.Add(this.chartYAxisSettingsBarItem1);
            this.chartLayoutPageGroup1.Name = "chartLayoutPageGroup1";
            // 
            // chartLegendPositionPageGroup1
            // 
            this.chartLegendPositionPageGroup1.ItemLinks.Add(this.chartShowLegendBarItem1);
            this.chartLegendPositionPageGroup1.ItemLinks.Add(this.galleryChartLegendPositionItem1);
            this.chartLegendPositionPageGroup1.Name = "chartLegendPositionPageGroup1";
            // 
            // chartStylePageGroup1
            // 
            this.chartStylePageGroup1.ItemLinks.Add(this.galleryChartSeriesTypeItem1);
            this.chartStylePageGroup1.Name = "chartStylePageGroup1";
            // 
            // piesToolsRibbonPageCategory1
            // 
            this.piesToolsRibbonPageCategory1.Control = this.dashboardDesignerMain;
            this.piesToolsRibbonPageCategory1.Name = "piesToolsRibbonPageCategory1";
            this.piesToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage4,
            this.dashboardItemDesignRibbonPage3});
            this.piesToolsRibbonPageCategory1.Visible = false;
            // 
            // dataRibbonPage4
            // 
            this.dataRibbonPage4.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.filteringRibbonPageGroup4,
            this.masterFilterRibbonPageGroup3,
            this.interactivitySettingsRibbonPageGroup4,
            this.targetDimensionsRibbonPageGroup2});
            this.dataRibbonPage4.Name = "dataRibbonPage4";
            this.dataRibbonPage4.Visible = false;
            // 
            // filteringRibbonPageGroup4
            // 
            this.filteringRibbonPageGroup4.ItemLinks.Add(this.editFilterBarItem1);
            this.filteringRibbonPageGroup4.ItemLinks.Add(this.clearFilterBarItem1);
            this.filteringRibbonPageGroup4.Name = "filteringRibbonPageGroup4";
            // 
            // masterFilterRibbonPageGroup3
            // 
            this.masterFilterRibbonPageGroup3.ItemLinks.Add(this.masterFilterBarItem1);
            this.masterFilterRibbonPageGroup3.ItemLinks.Add(this.multipleValuesMasterFilterBarItem1);
            this.masterFilterRibbonPageGroup3.ItemLinks.Add(this.drillDownBarItem1);
            this.masterFilterRibbonPageGroup3.Name = "masterFilterRibbonPageGroup3";
            // 
            // interactivitySettingsRibbonPageGroup4
            // 
            this.interactivitySettingsRibbonPageGroup4.ItemLinks.Add(this.crossDataSourceFilteringBarItem1);
            this.interactivitySettingsRibbonPageGroup4.ItemLinks.Add(this.ignoreMasterFiltersBarItem1);
            this.interactivitySettingsRibbonPageGroup4.Name = "interactivitySettingsRibbonPageGroup4";
            // 
            // targetDimensionsRibbonPageGroup2
            // 
            this.targetDimensionsRibbonPageGroup2.ItemLinks.Add(this.pieTargetDimensionsArgumentsBarItem1);
            this.targetDimensionsRibbonPageGroup2.ItemLinks.Add(this.pieTargetDimensionsSeriesBarItem1);
            this.targetDimensionsRibbonPageGroup2.Name = "targetDimensionsRibbonPageGroup2";
            // 
            // dashboardItemDesignRibbonPage3
            // 
            this.dashboardItemDesignRibbonPage3.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonItemDesignRibbonPageGroup3,
            this.contentArrangementRibbonPageGroup1,
            this.pieLabelsRibbonPageGroup1,
            this.pieStyleRibbonPageGroup1});
            this.dashboardItemDesignRibbonPage3.Name = "dashboardItemDesignRibbonPage3";
            this.dashboardItemDesignRibbonPage3.Visible = false;
            // 
            // commonItemDesignRibbonPageGroup3
            // 
            this.commonItemDesignRibbonPageGroup3.ItemLinks.Add(this.showItemCaptionBarItem1);
            this.commonItemDesignRibbonPageGroup3.ItemLinks.Add(this.editItemNamesBarItem1);
            this.commonItemDesignRibbonPageGroup3.Name = "commonItemDesignRibbonPageGroup3";
            // 
            // contentArrangementRibbonPageGroup1
            // 
            this.contentArrangementRibbonPageGroup1.ItemLinks.Add(this.contentAutoArrangeBarItem1);
            this.contentArrangementRibbonPageGroup1.ItemLinks.Add(this.contentArrangeInColumnsBarItem1);
            this.contentArrangementRibbonPageGroup1.ItemLinks.Add(this.contentArrangeInRowsBarItem1);
            this.contentArrangementRibbonPageGroup1.ItemLinks.Add(this.contentArrangementCountBarItem1);
            this.contentArrangementRibbonPageGroup1.Name = "contentArrangementRibbonPageGroup1";
            // 
            // pieLabelsRibbonPageGroup1
            // 
            this.pieLabelsRibbonPageGroup1.ItemLinks.Add(this.pieLabelsDataLabelsBarItem1);
            this.pieLabelsRibbonPageGroup1.ItemLinks.Add(this.pieTooltipsBarItem1);
            this.pieLabelsRibbonPageGroup1.ItemLinks.Add(this.pieShowCaptionsBarItem1);
            this.pieLabelsRibbonPageGroup1.Name = "pieLabelsRibbonPageGroup1";
            // 
            // pieStyleRibbonPageGroup1
            // 
            this.pieStyleRibbonPageGroup1.ItemLinks.Add(this.pieStylePieBarItem1);
            this.pieStyleRibbonPageGroup1.ItemLinks.Add(this.pieStyleDonutBarItem1);
            this.pieStyleRibbonPageGroup1.Name = "pieStyleRibbonPageGroup1";
            // 
            // gaugesToolsRibbonPageCategory1
            // 
            this.gaugesToolsRibbonPageCategory1.Control = this.dashboardDesignerMain;
            this.gaugesToolsRibbonPageCategory1.Name = "gaugesToolsRibbonPageCategory1";
            this.gaugesToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage5,
            this.dashboardItemDesignRibbonPage4});
            this.gaugesToolsRibbonPageCategory1.Visible = false;
            // 
            // dataRibbonPage5
            // 
            this.dataRibbonPage5.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.filteringRibbonPageGroup5,
            this.masterFilterRibbonPageGroup4,
            this.interactivitySettingsRibbonPageGroup5});
            this.dataRibbonPage5.Name = "dataRibbonPage5";
            this.dataRibbonPage5.Visible = false;
            // 
            // filteringRibbonPageGroup5
            // 
            this.filteringRibbonPageGroup5.ItemLinks.Add(this.editFilterBarItem1);
            this.filteringRibbonPageGroup5.ItemLinks.Add(this.clearFilterBarItem1);
            this.filteringRibbonPageGroup5.Name = "filteringRibbonPageGroup5";
            // 
            // masterFilterRibbonPageGroup4
            // 
            this.masterFilterRibbonPageGroup4.ItemLinks.Add(this.masterFilterBarItem1);
            this.masterFilterRibbonPageGroup4.ItemLinks.Add(this.multipleValuesMasterFilterBarItem1);
            this.masterFilterRibbonPageGroup4.ItemLinks.Add(this.drillDownBarItem1);
            this.masterFilterRibbonPageGroup4.Name = "masterFilterRibbonPageGroup4";
            // 
            // interactivitySettingsRibbonPageGroup5
            // 
            this.interactivitySettingsRibbonPageGroup5.ItemLinks.Add(this.crossDataSourceFilteringBarItem1);
            this.interactivitySettingsRibbonPageGroup5.ItemLinks.Add(this.ignoreMasterFiltersBarItem1);
            this.interactivitySettingsRibbonPageGroup5.Name = "interactivitySettingsRibbonPageGroup5";
            // 
            // dashboardItemDesignRibbonPage4
            // 
            this.dashboardItemDesignRibbonPage4.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonItemDesignRibbonPageGroup4,
            this.contentArrangementRibbonPageGroup2,
            this.gaugeStyleRibbonPageGroup1,
            this.gaugesLabelsRibbonPageGroup1});
            this.dashboardItemDesignRibbonPage4.Name = "dashboardItemDesignRibbonPage4";
            this.dashboardItemDesignRibbonPage4.Visible = false;
            // 
            // commonItemDesignRibbonPageGroup4
            // 
            this.commonItemDesignRibbonPageGroup4.ItemLinks.Add(this.showItemCaptionBarItem1);
            this.commonItemDesignRibbonPageGroup4.ItemLinks.Add(this.editItemNamesBarItem1);
            this.commonItemDesignRibbonPageGroup4.Name = "commonItemDesignRibbonPageGroup4";
            // 
            // contentArrangementRibbonPageGroup2
            // 
            this.contentArrangementRibbonPageGroup2.ItemLinks.Add(this.contentAutoArrangeBarItem1);
            this.contentArrangementRibbonPageGroup2.ItemLinks.Add(this.contentArrangeInColumnsBarItem1);
            this.contentArrangementRibbonPageGroup2.ItemLinks.Add(this.contentArrangeInRowsBarItem1);
            this.contentArrangementRibbonPageGroup2.ItemLinks.Add(this.contentArrangementCountBarItem1);
            this.contentArrangementRibbonPageGroup2.Name = "contentArrangementRibbonPageGroup2";
            // 
            // gaugeStyleRibbonPageGroup1
            // 
            this.gaugeStyleRibbonPageGroup1.ItemLinks.Add(this.gaugeStyleFullCircularBarItem1);
            this.gaugeStyleRibbonPageGroup1.ItemLinks.Add(this.gaugeStyleHalfCircularBarItem1);
            this.gaugeStyleRibbonPageGroup1.ItemLinks.Add(this.gaugeStyleLeftQuarterCircularBarItem1);
            this.gaugeStyleRibbonPageGroup1.ItemLinks.Add(this.gaugeStyleRightQuarterCircularBarItem1);
            this.gaugeStyleRibbonPageGroup1.ItemLinks.Add(this.gaugeStyleThreeForthCircularBarItem1);
            this.gaugeStyleRibbonPageGroup1.ItemLinks.Add(this.gaugeStyleLinearHorizontalBarItem1);
            this.gaugeStyleRibbonPageGroup1.ItemLinks.Add(this.gaugeStyleLinearVerticalBarItem1);
            this.gaugeStyleRibbonPageGroup1.Name = "gaugeStyleRibbonPageGroup1";
            // 
            // gaugesLabelsRibbonPageGroup1
            // 
            this.gaugesLabelsRibbonPageGroup1.ItemLinks.Add(this.gaugeShowCaptionsBarItem1);
            this.gaugesLabelsRibbonPageGroup1.Name = "gaugesLabelsRibbonPageGroup1";
            // 
            // cardsToolsRibbonPageCategory1
            // 
            this.cardsToolsRibbonPageCategory1.Control = this.dashboardDesignerMain;
            this.cardsToolsRibbonPageCategory1.Name = "cardsToolsRibbonPageCategory1";
            this.cardsToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage6,
            this.dashboardItemDesignRibbonPage5});
            this.cardsToolsRibbonPageCategory1.Visible = false;
            // 
            // dataRibbonPage6
            // 
            this.dataRibbonPage6.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.filteringRibbonPageGroup6,
            this.masterFilterRibbonPageGroup5,
            this.interactivitySettingsRibbonPageGroup6});
            this.dataRibbonPage6.Name = "dataRibbonPage6";
            this.dataRibbonPage6.Visible = false;
            // 
            // filteringRibbonPageGroup6
            // 
            this.filteringRibbonPageGroup6.ItemLinks.Add(this.editFilterBarItem1);
            this.filteringRibbonPageGroup6.ItemLinks.Add(this.clearFilterBarItem1);
            this.filteringRibbonPageGroup6.Name = "filteringRibbonPageGroup6";
            // 
            // masterFilterRibbonPageGroup5
            // 
            this.masterFilterRibbonPageGroup5.ItemLinks.Add(this.masterFilterBarItem1);
            this.masterFilterRibbonPageGroup5.ItemLinks.Add(this.multipleValuesMasterFilterBarItem1);
            this.masterFilterRibbonPageGroup5.ItemLinks.Add(this.drillDownBarItem1);
            this.masterFilterRibbonPageGroup5.Name = "masterFilterRibbonPageGroup5";
            // 
            // interactivitySettingsRibbonPageGroup6
            // 
            this.interactivitySettingsRibbonPageGroup6.ItemLinks.Add(this.crossDataSourceFilteringBarItem1);
            this.interactivitySettingsRibbonPageGroup6.ItemLinks.Add(this.ignoreMasterFiltersBarItem1);
            this.interactivitySettingsRibbonPageGroup6.Name = "interactivitySettingsRibbonPageGroup6";
            // 
            // dashboardItemDesignRibbonPage5
            // 
            this.dashboardItemDesignRibbonPage5.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonItemDesignRibbonPageGroup5,
            this.contentArrangementRibbonPageGroup3});
            this.dashboardItemDesignRibbonPage5.Name = "dashboardItemDesignRibbonPage5";
            this.dashboardItemDesignRibbonPage5.Visible = false;
            // 
            // commonItemDesignRibbonPageGroup5
            // 
            this.commonItemDesignRibbonPageGroup5.ItemLinks.Add(this.showItemCaptionBarItem1);
            this.commonItemDesignRibbonPageGroup5.ItemLinks.Add(this.editItemNamesBarItem1);
            this.commonItemDesignRibbonPageGroup5.Name = "commonItemDesignRibbonPageGroup5";
            // 
            // contentArrangementRibbonPageGroup3
            // 
            this.contentArrangementRibbonPageGroup3.ItemLinks.Add(this.contentAutoArrangeBarItem1);
            this.contentArrangementRibbonPageGroup3.ItemLinks.Add(this.contentArrangeInColumnsBarItem1);
            this.contentArrangementRibbonPageGroup3.ItemLinks.Add(this.contentArrangeInRowsBarItem1);
            this.contentArrangementRibbonPageGroup3.ItemLinks.Add(this.contentArrangementCountBarItem1);
            this.contentArrangementRibbonPageGroup3.Name = "contentArrangementRibbonPageGroup3";
            // 
            // rangeFilterToolsRibbonPageCategory1
            // 
            this.rangeFilterToolsRibbonPageCategory1.Control = this.dashboardDesignerMain;
            this.rangeFilterToolsRibbonPageCategory1.Name = "rangeFilterToolsRibbonPageCategory1";
            this.rangeFilterToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage7,
            this.dashboardItemDesignRibbonPage8});
            this.rangeFilterToolsRibbonPageCategory1.Visible = false;
            // 
            // dataRibbonPage7
            // 
            this.dataRibbonPage7.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.filteringRibbonPageGroup7,
            this.interactivitySettingsRibbonPageGroup7});
            this.dataRibbonPage7.Name = "dataRibbonPage7";
            this.dataRibbonPage7.Visible = false;
            // 
            // filteringRibbonPageGroup7
            // 
            this.filteringRibbonPageGroup7.ItemLinks.Add(this.editFilterBarItem1);
            this.filteringRibbonPageGroup7.ItemLinks.Add(this.clearFilterBarItem1);
            this.filteringRibbonPageGroup7.Name = "filteringRibbonPageGroup7";
            // 
            // interactivitySettingsRibbonPageGroup7
            // 
            this.interactivitySettingsRibbonPageGroup7.ItemLinks.Add(this.crossDataSourceFilteringBarItem1);
            this.interactivitySettingsRibbonPageGroup7.Name = "interactivitySettingsRibbonPageGroup7";
            // 
            // dashboardItemDesignRibbonPage8
            // 
            this.dashboardItemDesignRibbonPage8.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonItemDesignRibbonPageGroup8,
            this.rangeFilterSeriesTypeRibbonPageGroup1});
            this.dashboardItemDesignRibbonPage8.Name = "dashboardItemDesignRibbonPage8";
            this.dashboardItemDesignRibbonPage8.Visible = false;
            // 
            // commonItemDesignRibbonPageGroup8
            // 
            this.commonItemDesignRibbonPageGroup8.ItemLinks.Add(this.showItemCaptionBarItem1);
            this.commonItemDesignRibbonPageGroup8.ItemLinks.Add(this.editItemNamesBarItem1);
            this.commonItemDesignRibbonPageGroup8.Name = "commonItemDesignRibbonPageGroup8";
            // 
            // rangeFilterSeriesTypeRibbonPageGroup1
            // 
            this.rangeFilterSeriesTypeRibbonPageGroup1.ItemLinks.Add(this.rangeFilterLineSeriesTypeBarItem1);
            this.rangeFilterSeriesTypeRibbonPageGroup1.ItemLinks.Add(this.rangeFilterStackedLineSeriesTypeBarItem1);
            this.rangeFilterSeriesTypeRibbonPageGroup1.ItemLinks.Add(this.rangeFilterFullStackedLineSeriesTypeBarItem1);
            this.rangeFilterSeriesTypeRibbonPageGroup1.ItemLinks.Add(this.rangeFilterAreaSeriesTypeBarItem1);
            this.rangeFilterSeriesTypeRibbonPageGroup1.ItemLinks.Add(this.rangeFilterStackedAreaSeriesTypeBarItem1);
            this.rangeFilterSeriesTypeRibbonPageGroup1.ItemLinks.Add(this.rangeFilterFullStackedAreaSeriesTypeBarItem1);
            this.rangeFilterSeriesTypeRibbonPageGroup1.Name = "rangeFilterSeriesTypeRibbonPageGroup1";
            // 
            // choroplethMapToolsRibbonPageCategory1
            // 
            this.choroplethMapToolsRibbonPageCategory1.Control = this.dashboardDesignerMain;
            this.choroplethMapToolsRibbonPageCategory1.Name = "choroplethMapToolsRibbonPageCategory1";
            this.choroplethMapToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage8,
            this.dashboardItemDesignRibbonPage10});
            this.choroplethMapToolsRibbonPageCategory1.Visible = false;
            // 
            // dataRibbonPage8
            // 
            this.dataRibbonPage8.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.filteringRibbonPageGroup8,
            this.masterFilterRibbonPageGroup6,
            this.interactivitySettingsRibbonPageGroup8});
            this.dataRibbonPage8.Name = "dataRibbonPage8";
            this.dataRibbonPage8.Visible = false;
            // 
            // filteringRibbonPageGroup8
            // 
            this.filteringRibbonPageGroup8.ItemLinks.Add(this.editFilterBarItem1);
            this.filteringRibbonPageGroup8.ItemLinks.Add(this.clearFilterBarItem1);
            this.filteringRibbonPageGroup8.Name = "filteringRibbonPageGroup8";
            // 
            // masterFilterRibbonPageGroup6
            // 
            this.masterFilterRibbonPageGroup6.ItemLinks.Add(this.masterFilterBarItem1);
            this.masterFilterRibbonPageGroup6.ItemLinks.Add(this.multipleValuesMasterFilterBarItem1);
            this.masterFilterRibbonPageGroup6.Name = "masterFilterRibbonPageGroup6";
            // 
            // interactivitySettingsRibbonPageGroup8
            // 
            this.interactivitySettingsRibbonPageGroup8.ItemLinks.Add(this.crossDataSourceFilteringBarItem1);
            this.interactivitySettingsRibbonPageGroup8.ItemLinks.Add(this.ignoreMasterFiltersBarItem1);
            this.interactivitySettingsRibbonPageGroup8.Name = "interactivitySettingsRibbonPageGroup8";
            // 
            // dashboardItemDesignRibbonPage10
            // 
            this.dashboardItemDesignRibbonPage10.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonItemDesignRibbonPageGroup10,
            this.mapShapefileRibbonPageGroup1,
            this.mapNavigationPageGroup1,
            this.mapLegendPositionPageGroup1});
            this.dashboardItemDesignRibbonPage10.Name = "dashboardItemDesignRibbonPage10";
            this.dashboardItemDesignRibbonPage10.Visible = false;
            // 
            // commonItemDesignRibbonPageGroup10
            // 
            this.commonItemDesignRibbonPageGroup10.ItemLinks.Add(this.showItemCaptionBarItem1);
            this.commonItemDesignRibbonPageGroup10.ItemLinks.Add(this.editItemNamesBarItem1);
            this.commonItemDesignRibbonPageGroup10.Name = "commonItemDesignRibbonPageGroup10";
            // 
            // mapShapefileRibbonPageGroup1
            // 
            this.mapShapefileRibbonPageGroup1.ItemLinks.Add(this.mapLoadBarItem1);
            this.mapShapefileRibbonPageGroup1.ItemLinks.Add(this.mapImportBarItem1);
            this.mapShapefileRibbonPageGroup1.ItemLinks.Add(this.mapDefaultShapefileBarItem1);
            this.mapShapefileRibbonPageGroup1.Name = "mapShapefileRibbonPageGroup1";
            // 
            // mapNavigationPageGroup1
            // 
            this.mapNavigationPageGroup1.ItemLinks.Add(this.mapLockNavigationBarItem1);
            this.mapNavigationPageGroup1.ItemLinks.Add(this.mapFullExtentBarItem1);
            this.mapNavigationPageGroup1.Name = "mapNavigationPageGroup1";
            // 
            // mapLegendPositionPageGroup1
            // 
            this.mapLegendPositionPageGroup1.ItemLinks.Add(this.mapShowLegendBarItem1);
            this.mapLegendPositionPageGroup1.ItemLinks.Add(this.galleryMapLegendPositionItem1);
            this.mapLegendPositionPageGroup1.Name = "mapLegendPositionPageGroup1";
            // 
            // geoPointMapToolsRibbonPageCategory1
            // 
            this.geoPointMapToolsRibbonPageCategory1.Control = this.dashboardDesignerMain;
            this.geoPointMapToolsRibbonPageCategory1.Name = "geoPointMapToolsRibbonPageCategory1";
            this.geoPointMapToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage9,
            this.dashboardItemDesignRibbonPage11});
            this.geoPointMapToolsRibbonPageCategory1.Visible = false;
            // 
            // dataRibbonPage9
            // 
            this.dataRibbonPage9.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.filteringRibbonPageGroup9,
            this.masterFilterRibbonPageGroup7,
            this.interactivitySettingsRibbonPageGroup9,
            this.geoPointMapClusterizationRibbonPageGroup1});
            this.dataRibbonPage9.Name = "dataRibbonPage9";
            this.dataRibbonPage9.Visible = false;
            // 
            // filteringRibbonPageGroup9
            // 
            this.filteringRibbonPageGroup9.ItemLinks.Add(this.editFilterBarItem1);
            this.filteringRibbonPageGroup9.ItemLinks.Add(this.clearFilterBarItem1);
            this.filteringRibbonPageGroup9.Name = "filteringRibbonPageGroup9";
            // 
            // masterFilterRibbonPageGroup7
            // 
            this.masterFilterRibbonPageGroup7.ItemLinks.Add(this.masterFilterBarItem1);
            this.masterFilterRibbonPageGroup7.ItemLinks.Add(this.multipleValuesMasterFilterBarItem1);
            this.masterFilterRibbonPageGroup7.Name = "masterFilterRibbonPageGroup7";
            // 
            // interactivitySettingsRibbonPageGroup9
            // 
            this.interactivitySettingsRibbonPageGroup9.ItemLinks.Add(this.crossDataSourceFilteringBarItem1);
            this.interactivitySettingsRibbonPageGroup9.ItemLinks.Add(this.ignoreMasterFiltersBarItem1);
            this.interactivitySettingsRibbonPageGroup9.Name = "interactivitySettingsRibbonPageGroup9";
            // 
            // geoPointMapClusterizationRibbonPageGroup1
            // 
            this.geoPointMapClusterizationRibbonPageGroup1.ItemLinks.Add(this.geoPointMapClusterizationBarItem1);
            this.geoPointMapClusterizationRibbonPageGroup1.Name = "geoPointMapClusterizationRibbonPageGroup1";
            // 
            // dashboardItemDesignRibbonPage11
            // 
            this.dashboardItemDesignRibbonPage11.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonItemDesignRibbonPageGroup11,
            this.mapShapefileRibbonPageGroup2,
            this.mapNavigationPageGroup2});
            this.dashboardItemDesignRibbonPage11.Name = "dashboardItemDesignRibbonPage11";
            this.dashboardItemDesignRibbonPage11.Visible = false;
            // 
            // commonItemDesignRibbonPageGroup11
            // 
            this.commonItemDesignRibbonPageGroup11.ItemLinks.Add(this.showItemCaptionBarItem1);
            this.commonItemDesignRibbonPageGroup11.ItemLinks.Add(this.editItemNamesBarItem1);
            this.commonItemDesignRibbonPageGroup11.Name = "commonItemDesignRibbonPageGroup11";
            // 
            // mapShapefileRibbonPageGroup2
            // 
            this.mapShapefileRibbonPageGroup2.ItemLinks.Add(this.mapLoadBarItem1);
            this.mapShapefileRibbonPageGroup2.ItemLinks.Add(this.mapImportBarItem1);
            this.mapShapefileRibbonPageGroup2.ItemLinks.Add(this.mapDefaultShapefileBarItem1);
            this.mapShapefileRibbonPageGroup2.Name = "mapShapefileRibbonPageGroup2";
            // 
            // mapNavigationPageGroup2
            // 
            this.mapNavigationPageGroup2.ItemLinks.Add(this.mapLockNavigationBarItem1);
            this.mapNavigationPageGroup2.ItemLinks.Add(this.mapFullExtentBarItem1);
            this.mapNavigationPageGroup2.Name = "mapNavigationPageGroup2";
            // 
            // bubbleMapToolsRibbonPageCategory1
            // 
            this.bubbleMapToolsRibbonPageCategory1.Control = this.dashboardDesignerMain;
            this.bubbleMapToolsRibbonPageCategory1.Name = "bubbleMapToolsRibbonPageCategory1";
            this.bubbleMapToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage10,
            this.dashboardItemDesignRibbonPage12});
            this.bubbleMapToolsRibbonPageCategory1.Visible = false;
            // 
            // dataRibbonPage10
            // 
            this.dataRibbonPage10.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.filteringRibbonPageGroup10,
            this.masterFilterRibbonPageGroup8,
            this.interactivitySettingsRibbonPageGroup10,
            this.geoPointMapClusterizationRibbonPageGroup2});
            this.dataRibbonPage10.Name = "dataRibbonPage10";
            this.dataRibbonPage10.Visible = false;
            // 
            // filteringRibbonPageGroup10
            // 
            this.filteringRibbonPageGroup10.ItemLinks.Add(this.editFilterBarItem1);
            this.filteringRibbonPageGroup10.ItemLinks.Add(this.clearFilterBarItem1);
            this.filteringRibbonPageGroup10.Name = "filteringRibbonPageGroup10";
            // 
            // masterFilterRibbonPageGroup8
            // 
            this.masterFilterRibbonPageGroup8.ItemLinks.Add(this.masterFilterBarItem1);
            this.masterFilterRibbonPageGroup8.ItemLinks.Add(this.multipleValuesMasterFilterBarItem1);
            this.masterFilterRibbonPageGroup8.Name = "masterFilterRibbonPageGroup8";
            // 
            // interactivitySettingsRibbonPageGroup10
            // 
            this.interactivitySettingsRibbonPageGroup10.ItemLinks.Add(this.crossDataSourceFilteringBarItem1);
            this.interactivitySettingsRibbonPageGroup10.ItemLinks.Add(this.ignoreMasterFiltersBarItem1);
            this.interactivitySettingsRibbonPageGroup10.Name = "interactivitySettingsRibbonPageGroup10";
            // 
            // geoPointMapClusterizationRibbonPageGroup2
            // 
            this.geoPointMapClusterizationRibbonPageGroup2.ItemLinks.Add(this.geoPointMapClusterizationBarItem1);
            this.geoPointMapClusterizationRibbonPageGroup2.Name = "geoPointMapClusterizationRibbonPageGroup2";
            // 
            // dashboardItemDesignRibbonPage12
            // 
            this.dashboardItemDesignRibbonPage12.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonItemDesignRibbonPageGroup12,
            this.mapShapefileRibbonPageGroup3,
            this.mapNavigationPageGroup3,
            this.mapLegendPositionPageGroup2,
            this.weightedLegendPageGroup1});
            this.dashboardItemDesignRibbonPage12.Name = "dashboardItemDesignRibbonPage12";
            this.dashboardItemDesignRibbonPage12.Visible = false;
            // 
            // commonItemDesignRibbonPageGroup12
            // 
            this.commonItemDesignRibbonPageGroup12.ItemLinks.Add(this.showItemCaptionBarItem1);
            this.commonItemDesignRibbonPageGroup12.ItemLinks.Add(this.editItemNamesBarItem1);
            this.commonItemDesignRibbonPageGroup12.Name = "commonItemDesignRibbonPageGroup12";
            // 
            // mapShapefileRibbonPageGroup3
            // 
            this.mapShapefileRibbonPageGroup3.ItemLinks.Add(this.mapLoadBarItem1);
            this.mapShapefileRibbonPageGroup3.ItemLinks.Add(this.mapImportBarItem1);
            this.mapShapefileRibbonPageGroup3.ItemLinks.Add(this.mapDefaultShapefileBarItem1);
            this.mapShapefileRibbonPageGroup3.Name = "mapShapefileRibbonPageGroup3";
            // 
            // mapNavigationPageGroup3
            // 
            this.mapNavigationPageGroup3.ItemLinks.Add(this.mapLockNavigationBarItem1);
            this.mapNavigationPageGroup3.ItemLinks.Add(this.mapFullExtentBarItem1);
            this.mapNavigationPageGroup3.Name = "mapNavigationPageGroup3";
            // 
            // mapLegendPositionPageGroup2
            // 
            this.mapLegendPositionPageGroup2.ItemLinks.Add(this.mapShowLegendBarItem1);
            this.mapLegendPositionPageGroup2.ItemLinks.Add(this.galleryMapLegendPositionItem1);
            this.mapLegendPositionPageGroup2.Name = "mapLegendPositionPageGroup2";
            // 
            // weightedLegendPageGroup1
            // 
            this.weightedLegendPageGroup1.ItemLinks.Add(this.changeWeightedLegendTypeBarItem1);
            this.weightedLegendPageGroup1.ItemLinks.Add(this.galleryWeightedLegendPositionItem1);
            this.weightedLegendPageGroup1.Name = "weightedLegendPageGroup1";
            // 
            // pieMapToolsRibbonPageCategory1
            // 
            this.pieMapToolsRibbonPageCategory1.Control = this.dashboardDesignerMain;
            this.pieMapToolsRibbonPageCategory1.Name = "pieMapToolsRibbonPageCategory1";
            this.pieMapToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dataRibbonPage11,
            this.dashboardItemDesignRibbonPage13});
            this.pieMapToolsRibbonPageCategory1.Visible = false;
            // 
            // dataRibbonPage11
            // 
            this.dataRibbonPage11.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.filteringRibbonPageGroup11,
            this.masterFilterRibbonPageGroup9,
            this.interactivitySettingsRibbonPageGroup11,
            this.geoPointMapClusterizationRibbonPageGroup3});
            this.dataRibbonPage11.Name = "dataRibbonPage11";
            this.dataRibbonPage11.Visible = false;
            // 
            // filteringRibbonPageGroup11
            // 
            this.filteringRibbonPageGroup11.ItemLinks.Add(this.editFilterBarItem1);
            this.filteringRibbonPageGroup11.ItemLinks.Add(this.clearFilterBarItem1);
            this.filteringRibbonPageGroup11.Name = "filteringRibbonPageGroup11";
            // 
            // masterFilterRibbonPageGroup9
            // 
            this.masterFilterRibbonPageGroup9.ItemLinks.Add(this.masterFilterBarItem1);
            this.masterFilterRibbonPageGroup9.ItemLinks.Add(this.multipleValuesMasterFilterBarItem1);
            this.masterFilterRibbonPageGroup9.Name = "masterFilterRibbonPageGroup9";
            // 
            // interactivitySettingsRibbonPageGroup11
            // 
            this.interactivitySettingsRibbonPageGroup11.ItemLinks.Add(this.crossDataSourceFilteringBarItem1);
            this.interactivitySettingsRibbonPageGroup11.ItemLinks.Add(this.ignoreMasterFiltersBarItem1);
            this.interactivitySettingsRibbonPageGroup11.Name = "interactivitySettingsRibbonPageGroup11";
            // 
            // geoPointMapClusterizationRibbonPageGroup3
            // 
            this.geoPointMapClusterizationRibbonPageGroup3.ItemLinks.Add(this.geoPointMapClusterizationBarItem1);
            this.geoPointMapClusterizationRibbonPageGroup3.Name = "geoPointMapClusterizationRibbonPageGroup3";
            // 
            // dashboardItemDesignRibbonPage13
            // 
            this.dashboardItemDesignRibbonPage13.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonItemDesignRibbonPageGroup13,
            this.mapShapefileRibbonPageGroup4,
            this.mapNavigationPageGroup4,
            this.mapLegendPositionPageGroup3,
            this.weightedLegendPageGroup2,
            this.pieMapOptionsPageGroup1});
            this.dashboardItemDesignRibbonPage13.Name = "dashboardItemDesignRibbonPage13";
            this.dashboardItemDesignRibbonPage13.Visible = false;
            // 
            // commonItemDesignRibbonPageGroup13
            // 
            this.commonItemDesignRibbonPageGroup13.ItemLinks.Add(this.showItemCaptionBarItem1);
            this.commonItemDesignRibbonPageGroup13.ItemLinks.Add(this.editItemNamesBarItem1);
            this.commonItemDesignRibbonPageGroup13.Name = "commonItemDesignRibbonPageGroup13";
            // 
            // mapShapefileRibbonPageGroup4
            // 
            this.mapShapefileRibbonPageGroup4.ItemLinks.Add(this.mapLoadBarItem1);
            this.mapShapefileRibbonPageGroup4.ItemLinks.Add(this.mapImportBarItem1);
            this.mapShapefileRibbonPageGroup4.ItemLinks.Add(this.mapDefaultShapefileBarItem1);
            this.mapShapefileRibbonPageGroup4.Name = "mapShapefileRibbonPageGroup4";
            // 
            // mapNavigationPageGroup4
            // 
            this.mapNavigationPageGroup4.ItemLinks.Add(this.mapLockNavigationBarItem1);
            this.mapNavigationPageGroup4.ItemLinks.Add(this.mapFullExtentBarItem1);
            this.mapNavigationPageGroup4.Name = "mapNavigationPageGroup4";
            // 
            // mapLegendPositionPageGroup3
            // 
            this.mapLegendPositionPageGroup3.ItemLinks.Add(this.mapShowLegendBarItem1);
            this.mapLegendPositionPageGroup3.ItemLinks.Add(this.galleryMapLegendPositionItem1);
            this.mapLegendPositionPageGroup3.Name = "mapLegendPositionPageGroup3";
            // 
            // weightedLegendPageGroup2
            // 
            this.weightedLegendPageGroup2.ItemLinks.Add(this.changeWeightedLegendTypeBarItem1);
            this.weightedLegendPageGroup2.ItemLinks.Add(this.galleryWeightedLegendPositionItem1);
            this.weightedLegendPageGroup2.Name = "weightedLegendPageGroup2";
            // 
            // pieMapOptionsPageGroup1
            // 
            this.pieMapOptionsPageGroup1.ItemLinks.Add(this.pieMapIsWeightedBarItem1);
            this.pieMapOptionsPageGroup1.Name = "pieMapOptionsPageGroup1";
            // 
            // imageToolsRibbonPageCategory1
            // 
            this.imageToolsRibbonPageCategory1.Control = this.dashboardDesignerMain;
            this.imageToolsRibbonPageCategory1.Name = "imageToolsRibbonPageCategory1";
            this.imageToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dashboardItemDesignRibbonPage6});
            this.imageToolsRibbonPageCategory1.Visible = false;
            // 
            // dashboardItemDesignRibbonPage6
            // 
            this.dashboardItemDesignRibbonPage6.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonItemDesignRibbonPageGroup6,
            this.imageOpenRibbonPageGroup1,
            this.imageSizeModeRibbonPageGroup1,
            this.imageAlignmentRibbonPageGroup1});
            this.dashboardItemDesignRibbonPage6.Name = "dashboardItemDesignRibbonPage6";
            this.dashboardItemDesignRibbonPage6.Visible = false;
            // 
            // commonItemDesignRibbonPageGroup6
            // 
            this.commonItemDesignRibbonPageGroup6.ItemLinks.Add(this.showItemCaptionBarItem1);
            this.commonItemDesignRibbonPageGroup6.ItemLinks.Add(this.editItemNamesBarItem1);
            this.commonItemDesignRibbonPageGroup6.Name = "commonItemDesignRibbonPageGroup6";
            // 
            // imageOpenRibbonPageGroup1
            // 
            this.imageOpenRibbonPageGroup1.ItemLinks.Add(this.imageLoadBarItem1);
            this.imageOpenRibbonPageGroup1.ItemLinks.Add(this.imageImportBarItem1);
            this.imageOpenRibbonPageGroup1.Name = "imageOpenRibbonPageGroup1";
            // 
            // imageSizeModeRibbonPageGroup1
            // 
            this.imageSizeModeRibbonPageGroup1.ItemLinks.Add(this.imageSizeModeClipBarItem1);
            this.imageSizeModeRibbonPageGroup1.ItemLinks.Add(this.imageSizeModeStretchBarItem1);
            this.imageSizeModeRibbonPageGroup1.ItemLinks.Add(this.imageSizeModeSqueezeBarItem1);
            this.imageSizeModeRibbonPageGroup1.ItemLinks.Add(this.imageSizeModeZoomBarItem1);
            this.imageSizeModeRibbonPageGroup1.Name = "imageSizeModeRibbonPageGroup1";
            // 
            // imageAlignmentRibbonPageGroup1
            // 
            this.imageAlignmentRibbonPageGroup1.ItemLinks.Add(this.imageAlignmentTopLeftBarItem1);
            this.imageAlignmentRibbonPageGroup1.ItemLinks.Add(this.imageAlignmentCenterLeftBarItem1);
            this.imageAlignmentRibbonPageGroup1.ItemLinks.Add(this.imageAlignmentBottomLeftBarItem1);
            this.imageAlignmentRibbonPageGroup1.ItemLinks.Add(this.imageAlignmentTopCenterBarItem1);
            this.imageAlignmentRibbonPageGroup1.ItemLinks.Add(this.imageAlignmentCenterCenterBarItem1);
            this.imageAlignmentRibbonPageGroup1.ItemLinks.Add(this.imageAlignmentBottomCenterBarItem1);
            this.imageAlignmentRibbonPageGroup1.ItemLinks.Add(this.imageAlignmentTopRightBarItem1);
            this.imageAlignmentRibbonPageGroup1.ItemLinks.Add(this.imageAlignmentCenterRightBarItem1);
            this.imageAlignmentRibbonPageGroup1.ItemLinks.Add(this.imageAlignmentBottomRightBarItem1);
            this.imageAlignmentRibbonPageGroup1.Name = "imageAlignmentRibbonPageGroup1";
            // 
            // textBoxToolsRibbonPageCategory1
            // 
            this.textBoxToolsRibbonPageCategory1.Control = this.dashboardDesignerMain;
            this.textBoxToolsRibbonPageCategory1.Name = "textBoxToolsRibbonPageCategory1";
            this.textBoxToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.dashboardItemDesignRibbonPage7});
            this.textBoxToolsRibbonPageCategory1.Visible = false;
            // 
            // dashboardItemDesignRibbonPage7
            // 
            this.dashboardItemDesignRibbonPage7.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.commonItemDesignRibbonPageGroup7,
            this.textBoxSettingsRibbonPageGroup1});
            this.dashboardItemDesignRibbonPage7.Name = "dashboardItemDesignRibbonPage7";
            this.dashboardItemDesignRibbonPage7.Visible = false;
            // 
            // commonItemDesignRibbonPageGroup7
            // 
            this.commonItemDesignRibbonPageGroup7.ItemLinks.Add(this.showItemCaptionBarItem1);
            this.commonItemDesignRibbonPageGroup7.ItemLinks.Add(this.editItemNamesBarItem1);
            this.commonItemDesignRibbonPageGroup7.Name = "commonItemDesignRibbonPageGroup7";
            // 
            // textBoxSettingsRibbonPageGroup1
            // 
            this.textBoxSettingsRibbonPageGroup1.ItemLinks.Add(this.textBoxEditTextBarItem1);
            this.textBoxSettingsRibbonPageGroup1.Name = "textBoxSettingsRibbonPageGroup1";
            // 
            // homeRibbonPage1
            // 
            this.homeRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.fileRibbonPageGroup1,
            this.historyRibbonPageGroup1,
            this.insertRibbonPageGroup1,
            this.itemOperationRibbonPageGroup1,
            this.dashboardDesignRibbonPageGroup1,
            this.quickAccessHistoryRibbonPageGroup1});
            this.homeRibbonPage1.Name = "homeRibbonPage1";
            // 
            // fileRibbonPageGroup1
            // 
            this.fileRibbonPageGroup1.ItemLinks.Add(this.bbiNew);
            this.fileRibbonPageGroup1.ItemLinks.Add(this.bbiOpen);
            this.fileRibbonPageGroup1.ItemLinks.Add(this.bbiSave);
            this.fileRibbonPageGroup1.ItemLinks.Add(this.bbiSaveAs);
            this.fileRibbonPageGroup1.Name = "fileRibbonPageGroup1";
            this.fileRibbonPageGroup1.Text = "";
            // 
            // historyRibbonPageGroup1
            // 
            this.historyRibbonPageGroup1.ItemLinks.Add(this.undoBarItem1);
            this.historyRibbonPageGroup1.ItemLinks.Add(this.redoBarItem1);
            this.historyRibbonPageGroup1.Name = "historyRibbonPageGroup1";
            // 
            // insertRibbonPageGroup1
            // 
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertPivotBarItem1);
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertGridBarItem1);
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertChartBarItem1);
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertPiesBarItem1);
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertGaugesBarItem1);
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertCardsBarItem1);
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertChoroplethMapBarItem1);
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertGeoPointMapBarSubItem1);
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertRangeFilterBarItem1);
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertImageBarItem1);
            this.insertRibbonPageGroup1.ItemLinks.Add(this.insertTextBoxBarItem1);
            this.insertRibbonPageGroup1.Name = "insertRibbonPageGroup1";
            // 
            // itemOperationRibbonPageGroup1
            // 
            this.itemOperationRibbonPageGroup1.ItemLinks.Add(this.duplicateItemBarItem1);
            this.itemOperationRibbonPageGroup1.ItemLinks.Add(this.deleteItemBarItem1);
            this.itemOperationRibbonPageGroup1.ItemLinks.Add(this.convertDashboardItemTypeBarItem1);
            this.itemOperationRibbonPageGroup1.ItemLinks.Add(this.removeDataItemsBarItem1);
            this.itemOperationRibbonPageGroup1.ItemLinks.Add(this.transposeItemBarItem1);
            this.itemOperationRibbonPageGroup1.Name = "itemOperationRibbonPageGroup1";
            this.itemOperationRibbonPageGroup1.Visible = false;
            // 
            // dashboardDesignRibbonPageGroup1
            // 
            this.dashboardDesignRibbonPageGroup1.ItemLinks.Add(this.dashboardTitleBarItem1);
            this.dashboardDesignRibbonPageGroup1.ItemLinks.Add(this.setCurrencyCultureBarItem1);
            this.dashboardDesignRibbonPageGroup1.Name = "dashboardDesignRibbonPageGroup1";
            // 
            // quickAccessHistoryRibbonPageGroup1
            // 
            this.quickAccessHistoryRibbonPageGroup1.ItemLinks.Add(this.quickAccessUndoBarItem1);
            this.quickAccessHistoryRibbonPageGroup1.ItemLinks.Add(this.quickAccessRedoBarItem1);
            this.quickAccessHistoryRibbonPageGroup1.Name = "quickAccessHistoryRibbonPageGroup1";
            this.quickAccessHistoryRibbonPageGroup1.Visible = false;
            // 
            // dataSourceRibbonPage1
            // 
            this.dataSourceRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.dataSourceRibbonPageGroup1,
            this.dataSourceElementsRibbonPageGroup1,
            this.dataSourceFilteringRibbonPageGroup1});
            this.dataSourceRibbonPage1.Name = "dataSourceRibbonPage1";
            // 
            // dataSourceRibbonPageGroup1
            // 
            this.dataSourceRibbonPageGroup1.ItemLinks.Add(this.bbiAddDatasource);
            this.dataSourceRibbonPageGroup1.ItemLinks.Add(this.editDataSourceBarItem1);
            this.dataSourceRibbonPageGroup1.ItemLinks.Add(this.renameDataSourceBarItem1);
            this.dataSourceRibbonPageGroup1.ItemLinks.Add(this.deleteDataSourceBarItem1);
            this.dataSourceRibbonPageGroup1.ItemLinks.Add(this.serverModeBarItem1);
            this.dataSourceRibbonPageGroup1.Name = "dataSourceRibbonPageGroup1";
            // 
            // dataSourceElementsRibbonPageGroup1
            // 
            this.dataSourceElementsRibbonPageGroup1.ItemLinks.Add(this.addCalculatedFieldBarItem1);
            this.dataSourceElementsRibbonPageGroup1.ItemLinks.Add(this.dashboardParametersBarItem1);
            this.dataSourceElementsRibbonPageGroup1.Name = "dataSourceElementsRibbonPageGroup1";
            // 
            // dataSourceFilteringRibbonPageGroup1
            // 
            this.dataSourceFilteringRibbonPageGroup1.ItemLinks.Add(this.editDataSourceFilterBarItem1);
            this.dataSourceFilteringRibbonPageGroup1.ItemLinks.Add(this.clearDataSourceFilterBarItem1);
            this.dataSourceFilteringRibbonPageGroup1.Name = "dataSourceFilteringRibbonPageGroup1";
            // 
            // viewRibbonPage1
            // 
            this.viewRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.skinsRibbonPageGroup1});
            this.viewRibbonPage1.Name = "viewRibbonPage1";
            // 
            // skinsRibbonPageGroup1
            // 
            this.skinsRibbonPageGroup1.ItemLinks.Add(this.dashboardSkinsBarItem1);
            this.skinsRibbonPageGroup1.Name = "skinsRibbonPageGroup1";
            // 
            // dashboardBarControllerMain
            // 
            this.dashboardBarControllerMain.BarItems.Add(this.fileNewBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.fileOpenBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.fileSaveBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.fileSaveAsBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.undoBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.redoBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.newDataSourceBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.editDataSourceBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.renameDataSourceBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.deleteDataSourceBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.serverModeBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.addCalculatedFieldBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.dashboardParametersBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.editDataSourceFilterBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.clearDataSourceFilterBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.insertPivotBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.insertGridBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.insertChartBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.insertPiesBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.insertGaugesBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.insertCardsBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.insertChoroplethMapBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.insertGeoPointMapBarSubItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.insertGeoPointMapBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.insertBubbleMapBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.insertPieMapBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.insertRangeFilterBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.insertImageBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.insertTextBoxBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.duplicateItemBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.deleteItemBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.convertDashboardItemTypeBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.convertToPivotBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.convertToGridBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.convertToChartBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.convertToPieBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.convertToGaugeBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.convertToCardBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.convertToChoroplethMapBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.convertGeoPointMapBaseBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.convertToGeoPointMapBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.convertToBubbleMapBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.convertToPieMapBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.convertToRangeFilterBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.removeDataItemsBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.transposeItemBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.dashboardTitleBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.setCurrencyCultureBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.dashboardSkinsBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.editFilterBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.clearFilterBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.masterFilterBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.multipleValuesMasterFilterBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.drillDownBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.ignoreMasterFiltersBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.crossDataSourceFilteringBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.chartTargetDimensionsArgumentsBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.chartTargetDimensionsSeriesBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.pieTargetDimensionsArgumentsBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.pieTargetDimensionsSeriesBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.geoPointMapClusterizationBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.showItemCaptionBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.editItemNamesBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.contentAutoArrangeBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.contentArrangeInColumnsBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.contentArrangeInRowsBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.contentArrangementCountBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.gridHorizontalLinesBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.gridVerticalLinesBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.gridMergeCellsBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.gridBandedRowsBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.gridColumnHeadersBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.chartRotateBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.chartXAxisSettingsBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.chartYAxisSettingsBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.chartShowLegendBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.galleryChartLegendPositionItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.galleryChartSeriesTypeItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.pieLabelsDataLabelsBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.pieLabelsDataLabelsNoneBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.pieLabelsDataLabelArgumentBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.pieLabelsDataLabelsValueBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.pieLabelsDataLabelsArgumentAndValueBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.pieLabelsDataLabelsPercentBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.pieLabelsDataLabelsValueAndPercentBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.pieLabelsDataLabelsArgumentAndPercentBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.pieLabelsDataLabelsArgumentValueAndPercentBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.pieTooltipsBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.pieLabelsTooltipsNoneBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.pieLabelsTooltipsArgumentBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.pieLabelsTooltipsValueBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.pieLabelsTooltipsArgumentAndValueBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.pieLabelsTooltipsPercentBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.pieLabelsTooltipsValueAndPercentBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.pieLabelsTooltipsArgumentAndPercentBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.pieLabelsTooltipsArgumentValueAndPercentBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.pieStylePieBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.pieStyleDonutBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.pieShowCaptionsBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.gaugeStyleFullCircularBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.gaugeStyleHalfCircularBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.gaugeStyleLeftQuarterCircularBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.gaugeStyleRightQuarterCircularBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.gaugeStyleThreeForthCircularBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.gaugeStyleLinearHorizontalBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.gaugeStyleLinearVerticalBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.gaugeShowCaptionsBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.imageLoadBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.imageImportBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.imageSizeModeClipBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.imageSizeModeStretchBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.imageSizeModeSqueezeBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.imageSizeModeZoomBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.imageAlignmentTopLeftBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.imageAlignmentCenterLeftBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.imageAlignmentBottomLeftBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.imageAlignmentTopCenterBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.imageAlignmentCenterCenterBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.imageAlignmentBottomCenterBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.imageAlignmentTopRightBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.imageAlignmentCenterRightBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.imageAlignmentBottomRightBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.textBoxEditTextBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.rangeFilterLineSeriesTypeBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.rangeFilterStackedLineSeriesTypeBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.rangeFilterFullStackedLineSeriesTypeBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.rangeFilterAreaSeriesTypeBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.rangeFilterStackedAreaSeriesTypeBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.rangeFilterFullStackedAreaSeriesTypeBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.pivotInitialStateBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.pivotAutoExpandColumnBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.pivotAutoExpandRowBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.mapLoadBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.mapImportBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.mapDefaultShapefileBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.mapWorldCountriesBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.mapEuropeBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.mapAsiaBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.mapNorthAmericaBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.mapSouthAmericaBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.mapAfricaBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.mapUSABarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.mapCanadaBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.mapLockNavigationBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.mapFullExtentBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.mapShowLegendBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.galleryMapLegendPositionItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.changeWeightedLegendTypeBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.weightedLegendNoneBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.weightedLegendLinearBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.weightedLegendNestedBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.galleryWeightedLegendPositionItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.pieMapIsWeightedBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.quickAccessUndoBarItem1);
            this.dashboardBarControllerMain.BarItems.Add(this.quickAccessRedoBarItem1);
            this.dashboardBarControllerMain.Control = this.dashboardDesignerMain;
            // 
            // appDashboardDSTableAdapter
            // 
            this.appDashboardDSTableAdapter.ClearBeforeFill = true;
            // 
            // dsData
            // 
            this.dsData.DataSetName = "dsData";
            this.dsData.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
            // 
            // appDashboardSchemaTableAdapter
            // 
            this.appDashboardSchemaTableAdapter.ClearBeforeFill = true;
            // 
            // dsDataSource
            // 
            this.dsDataSource.DataSetName = "dsDataSource";
            this.dsDataSource.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
            // 
            // DashboardDesignerUC
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.dashboardDesignerMain);
            this.Controls.Add(this.ribbonControlMain);
            this.Controls.Add(this.dashboardBackstageViewControl1);
            this.Name = "DashboardDesignerUC";
            this.Size = new System.Drawing.Size(982, 533);
            this.Load += new System.EventHandler(this.DashboardDesignerUC_Load);
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControlMain)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dashboardBackstageViewControl1)).EndInit();
            this.dashboardBackstageViewControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.dashboardBarAndDockingControllerMain)).EndInit();
            this.backstageViewClientControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dashboardBarControllerMain)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dsData)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dsDataSource)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
Пример #43
0
        /// <summary>
        /// 设计器支持所需的方法 - 不要
        /// 使用代码编辑器修改此方法的内容。
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
            DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem1 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip2 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem2 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject13 = new DevExpress.Utils.SerializableAppearanceObject();
            DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject14 = new DevExpress.Utils.SerializableAppearanceObject();
            DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject15 = new DevExpress.Utils.SerializableAppearanceObject();
            DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject16 = new DevExpress.Utils.SerializableAppearanceObject();
            DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject17 = new DevExpress.Utils.SerializableAppearanceObject();
            DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject18 = new DevExpress.Utils.SerializableAppearanceObject();
            DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject19 = new DevExpress.Utils.SerializableAppearanceObject();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormMain));
            DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject2 = new DevExpress.Utils.SerializableAppearanceObject();
            DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject3 = new DevExpress.Utils.SerializableAppearanceObject();
            DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject4 = new DevExpress.Utils.SerializableAppearanceObject();
            DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject5 = new DevExpress.Utils.SerializableAppearanceObject();
            DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject6 = new DevExpress.Utils.SerializableAppearanceObject();
            DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject7 = new DevExpress.Utils.SerializableAppearanceObject();
            DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject8 = new DevExpress.Utils.SerializableAppearanceObject();
            DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject9 = new DevExpress.Utils.SerializableAppearanceObject();
            DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject10 = new DevExpress.Utils.SerializableAppearanceObject();
            DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject11 = new DevExpress.Utils.SerializableAppearanceObject();
            DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject12 = new DevExpress.Utils.SerializableAppearanceObject();
            this.repositoryItemSpinEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
            this.grpContrl = new DevExpress.XtraEditors.GroupControl();
            this.tabShow = new DevExpress.XtraTab.XtraTabControl();
            this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
            this.axisControl1 = new Contra.AxisControl();
            this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
            this.xtraTabPage3 = new DevExpress.XtraTab.XtraTabPage();
            this.xtraTabPage4 = new DevExpress.XtraTab.XtraTabPage();
            this.xtraTabPage5 = new DevExpress.XtraTab.XtraTabPage();
            this.xtraTabPage6 = new DevExpress.XtraTab.XtraTabPage();
            this.xtraTabPage9 = new DevExpress.XtraTab.XtraTabPage();
            this.xtraTabPage10 = new DevExpress.XtraTab.XtraTabPage();
            this.xtraTabPage11 = new DevExpress.XtraTab.XtraTabPage();
            this.xtraTabPage12 = new DevExpress.XtraTab.XtraTabPage();
            this.xtraTabPage13 = new DevExpress.XtraTab.XtraTabPage();
            this.xtraTabPage14 = new DevExpress.XtraTab.XtraTabPage();
            this.bindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.btnSetC = new DevExpress.XtraEditors.SimpleButton();
            this.btnZeroC = new DevExpress.XtraEditors.SimpleButton();
            this.btnSetB = new DevExpress.XtraEditors.SimpleButton();
            this.btnZeroB = new DevExpress.XtraEditors.SimpleButton();
            this.btnSetZ = new DevExpress.XtraEditors.SimpleButton();
            this.btnZeroZ = new DevExpress.XtraEditors.SimpleButton();
            this.btnSetW = new DevExpress.XtraEditors.SimpleButton();
            this.btnZeroW = new DevExpress.XtraEditors.SimpleButton();
            this.btnSetY = new DevExpress.XtraEditors.SimpleButton();
            this.btnZeroY = new DevExpress.XtraEditors.SimpleButton();
            this.btnSetX = new DevExpress.XtraEditors.SimpleButton();
            this.btnZeroX = new DevExpress.XtraEditors.SimpleButton();
            this.barManager = new DevExpress.XtraBars.BarManager(this.components);
            this.bar1 = new DevExpress.XtraBars.Bar();
            this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
            this.biFileName = new DevExpress.XtraBars.BarStaticItem();
            this.biTime = new DevExpress.XtraBars.BarStaticItem();
            this.barStaticItem2 = new DevExpress.XtraBars.BarStaticItem();
            this.barStaticItem3 = new DevExpress.XtraBars.BarStaticItem();
            this.biLastHole = new DevExpress.XtraBars.BarStaticItem();
            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.popupMenu1 = new DevExpress.XtraBars.PopupMenu(this.components);
            this.barEditItem2 = new DevExpress.XtraBars.BarEditItem();
            this.barEditItem3 = new DevExpress.XtraBars.BarEditItem();
            this.btnJiagong = new Contra.LockCheckButton(this.components);
            this.btnShuibang = new Contra.LockCheckButton(this.components);
            this.btnFanjixing = new Contra.LockCheckButton(this.components);
            this.btnShineng = new Contra.LockCheckButton(this.components);
            this.gcFileName = new DevExpress.XtraEditors.GroupControl();
            this.btnCheck = new DevExpress.XtraEditors.SimpleButton();
            this.cbEmptyRun = new Contra.LockCheckButton(this.components);
            this.btnNewHoles = new DevExpress.XtraEditors.SimpleButton();
            this.chkCheckAll = new System.Windows.Forms.CheckBox();
            this.btnSaveScript = new DevExpress.XtraEditors.SimpleButton();
            this.btnMoreOperate = new DevExpress.XtraEditors.SimpleButton();
            this.gridControl2 = new DevExpress.XtraGrid.GridControl();
            this.bindingSourceCnc = new System.Windows.Forms.BindingSource(this.components);
            this.gridViewCnc = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.repositoryItemComboBox7 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
            this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.repositoryItemComboBox6 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
            this.btnLoadFile = new DevExpress.XtraEditors.SimpleButton();
            this.label1 = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.pnlManual = new System.Windows.Forms.Panel();
            this.groupControl4 = new DevExpress.XtraEditors.GroupControl();
            this.btnChangeDaoXiang = new Contra.LockCheckButton(this.components);
            this.btnStopCenter = new DevExpress.XtraEditors.SimpleButton();
            this.btnAutoCenter = new DevExpress.XtraEditors.SimpleButton();
            this.btnToZero = new DevExpress.XtraEditors.SimpleButton();
            this.btnZeroRestart = new DevExpress.XtraEditors.SimpleButton();
            this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
            this.btnKeyboard = new DevExpress.XtraEditors.SimpleButton();
            this.btnInput1 = new DevExpress.XtraEditors.SimpleButton();
            this.txtInput1 = new DevExpress.XtraEditors.TextEdit();
            this.labelControl92 = new DevExpress.XtraEditors.LabelControl();
            this.gcAxisModify = new DevExpress.XtraEditors.GroupControl();
            this.listBoxControl1 = new DevExpress.XtraEditors.ListBoxControl();
            this.spSetC = new DevExpress.XtraEditors.SpinEdit();
            this.bindingSourceAxisSet = new System.Windows.Forms.BindingSource(this.components);
            this.btnHalfC = new DevExpress.XtraEditors.SimpleButton();
            this.btnHalfB = new DevExpress.XtraEditors.SimpleButton();
            this.btnHalfZ = new DevExpress.XtraEditors.SimpleButton();
            this.btnHalfW = new DevExpress.XtraEditors.SimpleButton();
            this.btnHalfY = new DevExpress.XtraEditors.SimpleButton();
            this.btnHalfX = new DevExpress.XtraEditors.SimpleButton();
            this.labelControl31 = new DevExpress.XtraEditors.LabelControl();
            this.spSetB = new DevExpress.XtraEditors.SpinEdit();
            this.labelControl25 = new DevExpress.XtraEditors.LabelControl();
            this.spSetZ = new DevExpress.XtraEditors.SpinEdit();
            this.labelControl20 = new DevExpress.XtraEditors.LabelControl();
            this.spSetW = new DevExpress.XtraEditors.SpinEdit();
            this.labelControl18 = new DevExpress.XtraEditors.LabelControl();
            this.spSetY = new DevExpress.XtraEditors.SpinEdit();
            this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
            this.spinEdit6 = new DevExpress.XtraEditors.SpinEdit();
            this.spSetX = new DevExpress.XtraEditors.SpinEdit();
            this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
            this.btnReset = new DevExpress.XtraEditors.SimpleButton();
            this.bindingSourceParam = new System.Windows.Forms.BindingSource(this.components);
            this.groupControl7 = new DevExpress.XtraEditors.GroupControl();
            this.lbJiagongOvertime = new DevExpress.XtraEditors.LabelControl();
            this.btnTimeSet = new DevExpress.XtraEditors.SimpleButton();
            this.btnJiagongHistory = new DevExpress.XtraEditors.SimpleButton();
            this.lbTotalTime = new DevExpress.XtraEditors.LabelControl();
            this.btnClearTotalCount = new DevExpress.XtraEditors.SimpleButton();
            this.lbTotalCount = new DevExpress.XtraEditors.LabelControl();
            this.lbLastTime = new DevExpress.XtraEditors.LabelControl();
            this.lbCurrentTime = new DevExpress.XtraEditors.LabelControl();
            this.timer = new System.Windows.Forms.Timer(this.components);
            this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
            this.btnWHitIgnore = new Contra.LockCheckButton(this.components);
            this.btnDaoKu = new Contra.LockCheckButton(this.components);
            this.btnSpeed = new Contra.LockCheckButton(this.components);
            this.btnMen = new Contra.StateButton();
            this.btnDuidao = new Contra.LockCheckButton(this.components);
            this.btnFushi = new Contra.StateButton();
            this.picLogo = new System.Windows.Forms.PictureBox();
            this.btnWarning = new Contra.LockCheckButton(this.components);
            this.btnClose = new Contra.CloseButton();
            this.btnWHit = new Contra.LockCheckButton(this.components);
            this.btnZThrow = new Contra.LockCheckButton(this.components);
            this.btnZZero = new Contra.LockCheckButton(this.components);
            this.btnWheel = new Contra.LockCheckButton(this.components);
            this.btnAxisR = new Contra.LockCheckButton(this.components);
            this.btnBuzzing = new Contra.LockCheckButton(this.components);
            this.btnChongShui = new Contra.LockCheckButton(this.components);
            this.btnMovePanel = new Contra.LockCheckButton(this.components);
            this.btnLight = new Contra.LockCheckButton(this.components);
            this.groupControl6 = new DevExpress.XtraEditors.GroupControl();
            this.btnShutdown = new DevExpress.XtraEditors.SimpleButton();
            this.btnSet = new DevExpress.XtraEditors.SimpleButton();
            this.btnProgram = new DevExpress.XtraEditors.SimpleButton();
            this.btnManual = new DevExpress.XtraEditors.SimpleButton();
            this.btnHelper = new DevExpress.XtraEditors.SimpleButton();
            this.bindingSourceSet = new System.Windows.Forms.BindingSource(this.components);
            this.groupControl5 = new DevExpress.XtraEditors.GroupControl();
            this.lbStopWarning = new DevExpress.XtraEditors.LabelControl();
            this.btnNext = new DevExpress.XtraEditors.SimpleButton();
            this.btnStart = new DevExpress.XtraEditors.SimpleButton();
            this.btnStop = new DevExpress.XtraEditors.SimpleButton();
            this.groupControl8 = new DevExpress.XtraEditors.GroupControl();
            this.spSafeHeight = new DevExpress.XtraEditors.SpinEdit();
            this.chkUseWSafeHeight = new DevExpress.XtraEditors.CheckEdit();
            this.gcParam = new DevExpress.XtraGrid.GridControl();
            this.gridViewParam = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.repositoryItemMaikuan = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
            this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.repositoryItemMainjian = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
            this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.repositoryItemDianliu = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
            this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.repositoryItemDianrong = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
            this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
            this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.repositoryItemXiuzhen = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
            this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.repositoryItemSudu = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
            this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.repositoryItemDianya = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
            this.gridColumn21 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.repositoryItemThrowMode = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
            this.btnMin = new Contra.CloseButton();
            this.digitalGauge73 = new DevExpress.XtraGauges.Win.Gauges.Digital.DigitalGauge();
            this.digitalGauge74 = new DevExpress.XtraGauges.Win.Gauges.Digital.DigitalGauge();
            this.timerCurrent = new System.Windows.Forms.Timer(this.components);
            this.timerTotal = new System.Windows.Forms.Timer(this.components);
            this.digitalGauge10 = new DevExpress.XtraGauges.Win.Gauges.Digital.DigitalGauge();
            this.digitalGauge9 = new DevExpress.XtraGauges.Win.Gauges.Digital.DigitalGauge();
            this.timerWheel = new System.Windows.Forms.Timer(this.components);
            this.pnlProgram = new System.Windows.Forms.Panel();
            this.lbJiagongWarning = new DevExpress.XtraEditors.LabelControl();
            this.tabE = new DevExpress.XtraTab.XtraTabControl();
            this.xpE1 = new DevExpress.XtraTab.XtraTabPage();
            this.xtraTabPage8 = new DevExpress.XtraTab.XtraTabPage();
            this.labelControl82 = new DevExpress.XtraEditors.LabelControl();
            this.txtThrowLeft2 = new DevExpress.XtraEditors.SpinEdit();
            this.bindingSourceThrowSet = new System.Windows.Forms.BindingSource(this.components);
            this.labelControl83 = new DevExpress.XtraEditors.LabelControl();
            this.txtThrowStartHeight2 = new DevExpress.XtraEditors.SpinEdit();
            this.labelControl84 = new DevExpress.XtraEditors.LabelControl();
            this.cmbThrowResponse2 = new DevExpress.XtraEditors.ComboBoxEdit();
            this.labelControl45 = new DevExpress.XtraEditors.LabelControl();
            this.txtThrowLeft = new DevExpress.XtraEditors.SpinEdit();
            this.labelControl44 = new DevExpress.XtraEditors.LabelControl();
            this.txtThrowStartHeight = new DevExpress.XtraEditors.SpinEdit();
            this.rgThrowMode = new DevExpress.XtraEditors.RadioGroup();
            this.labelControl37 = new DevExpress.XtraEditors.LabelControl();
            this.cmbThrowResponse = new DevExpress.XtraEditors.ComboBoxEdit();
            this.xtraTabPage7 = new DevExpress.XtraTab.XtraTabPage();
            this.xpE2 = new DevExpress.XtraTab.XtraTabPage();
            this.xpE3 = new DevExpress.XtraTab.XtraTabPage();
            this.xpE4 = new DevExpress.XtraTab.XtraTabPage();
            this.xpE5 = new DevExpress.XtraTab.XtraTabPage();
            this.xpE6 = new DevExpress.XtraTab.XtraTabPage();
            this.xpE7 = new DevExpress.XtraTab.XtraTabPage();
            this.xpE8 = new DevExpress.XtraTab.XtraTabPage();
            this.xpE9 = new DevExpress.XtraTab.XtraTabPage();
            this.xpE10 = new DevExpress.XtraTab.XtraTabPage();
            this.xpE11 = new DevExpress.XtraTab.XtraTabPage();
            this.xpE12 = new DevExpress.XtraTab.XtraTabPage();
            this.xpE13 = new DevExpress.XtraTab.XtraTabPage();
            this.xpE14 = new DevExpress.XtraTab.XtraTabPage();
            this.xpE15 = new DevExpress.XtraTab.XtraTabPage();
            this.xpE16 = new DevExpress.XtraTab.XtraTabPage();
            this.xpE17 = new DevExpress.XtraTab.XtraTabPage();
            this.xpE18 = new DevExpress.XtraTab.XtraTabPage();
            this.xpE19 = new DevExpress.XtraTab.XtraTabPage();
            this.xpE20 = new DevExpress.XtraTab.XtraTabPage();
            this.xpE21 = new DevExpress.XtraTab.XtraTabPage();
            this.xpE22 = new DevExpress.XtraTab.XtraTabPage();
            this.xpE23 = new DevExpress.XtraTab.XtraTabPage();
            this.xpE24 = new DevExpress.XtraTab.XtraTabPage();
            this.xpE25 = new DevExpress.XtraTab.XtraTabPage();
            this.xpE26 = new DevExpress.XtraTab.XtraTabPage();
            this.xpE27 = new DevExpress.XtraTab.XtraTabPage();
            this.xpE28 = new DevExpress.XtraTab.XtraTabPage();
            this.xpE29 = new DevExpress.XtraTab.XtraTabPage();
            this.xpE30 = new DevExpress.XtraTab.XtraTabPage();
            this.btnAddParam = new DevExpress.XtraEditors.SimpleButton();
            this.btnDeleteParam = new DevExpress.XtraEditors.SimpleButton();
            this.btnLoadParam = new DevExpress.XtraEditors.SimpleButton();
            this.timerTime = new System.Windows.Forms.Timer(this.components);
            this.bindingSourceHistory = new System.Windows.Forms.BindingSource(this.components);
            this.timerPlcCheck = new System.Windows.Forms.Timer(this.components);
            this.timerPlcCheck2 = new System.Windows.Forms.Timer(this.components);
            this.timerReg = new System.Windows.Forms.Timer(this.components);
            this.timerCOrigin = new System.Windows.Forms.Timer(this.components);
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.grpContrl)).BeginInit();
            this.grpContrl.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.tabShow)).BeginInit();
            this.tabShow.SuspendLayout();
            this.xtraTabPage1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.bindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.barManager)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gcFileName)).BeginInit();
            this.gcFileName.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.bindingSourceCnc)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewCnc)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox7)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox6)).BeginInit();
            this.pnlManual.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).BeginInit();
            this.groupControl4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
            this.groupControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.txtInput1.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gcAxisModify)).BeginInit();
            this.gcAxisModify.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.listBoxControl1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.spSetC.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.bindingSourceAxisSet)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.spSetB.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.spSetZ.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.spSetW.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.spSetY.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.spinEdit6.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.spSetX.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.bindingSourceParam)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl7)).BeginInit();
            this.groupControl7.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
            this.groupControl3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.picLogo)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnClose)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl6)).BeginInit();
            this.groupControl6.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.bindingSourceSet)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).BeginInit();
            this.groupControl5.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl8)).BeginInit();
            this.groupControl8.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.spSafeHeight.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chkUseWSafeHeight.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gcParam)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewParam)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMaikuan)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMainjian)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDianliu)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDianrong)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemXiuzhen)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSudu)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDianya)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemThrowMode)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnMin)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.digitalGauge73)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.digitalGauge74)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.digitalGauge10)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.digitalGauge9)).BeginInit();
            this.pnlProgram.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.tabE)).BeginInit();
            this.tabE.SuspendLayout();
            this.xpE1.SuspendLayout();
            this.xtraTabPage8.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.txtThrowLeft2.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.bindingSourceThrowSet)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtThrowStartHeight2.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cmbThrowResponse2.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtThrowLeft.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtThrowStartHeight.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rgThrowMode.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cmbThrowResponse.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.bindingSourceHistory)).BeginInit();
            this.SuspendLayout();
            // 
            // repositoryItemSpinEdit2
            // 
            this.repositoryItemSpinEdit2.AutoHeight = false;
            this.repositoryItemSpinEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", null, null, true)});
            this.repositoryItemSpinEdit2.DisplayFormat.FormatString = "0.000";
            this.repositoryItemSpinEdit2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
            this.repositoryItemSpinEdit2.EditFormat.FormatString = "0.000";
            this.repositoryItemSpinEdit2.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom;
            this.repositoryItemSpinEdit2.Name = "repositoryItemSpinEdit2";
            // 
            // grpContrl
            // 
            this.grpContrl.Controls.Add(this.tabShow);
            this.grpContrl.Location = new System.Drawing.Point(0, 119);
            this.grpContrl.Name = "grpContrl";
            this.grpContrl.Size = new System.Drawing.Size(252, 535);
            this.grpContrl.TabIndex = 11;
            this.grpContrl.Text = "坐标系";
            // 
            // tabShow
            // 
            this.tabShow.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.tabShow.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tabShow.Location = new System.Drawing.Point(2, 23);
            this.tabShow.Name = "tabShow";
            this.tabShow.SelectedTabPage = this.xtraTabPage1;
            this.tabShow.Size = new System.Drawing.Size(248, 510);
            this.tabShow.TabIndex = 1;
            this.tabShow.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
            this.xtraTabPage1,
            this.xtraTabPage2,
            this.xtraTabPage3,
            this.xtraTabPage4,
            this.xtraTabPage5,
            this.xtraTabPage6,
            this.xtraTabPage9,
            this.xtraTabPage10,
            this.xtraTabPage11,
            this.xtraTabPage12,
            this.xtraTabPage13,
            this.xtraTabPage14});
            this.tabShow.SelectedPageChanged += new DevExpress.XtraTab.TabPageChangedEventHandler(this.tabShow_SelectedPageChanged);
            // 
            // xtraTabPage1
            // 
            this.xtraTabPage1.Controls.Add(this.axisControl1);
            this.xtraTabPage1.Name = "xtraTabPage1";
            this.xtraTabPage1.Size = new System.Drawing.Size(240, 480);
            this.xtraTabPage1.Text = "G54";
            // 
            // axisControl1
            // 
            this.axisControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.axisControl1.ItemHeight = 68;
            this.axisControl1.Location = new System.Drawing.Point(0, 0);
            this.axisControl1.Name = "axisControl1";
            this.axisControl1.Size = new System.Drawing.Size(240, 480);
            this.axisControl1.TabIndex = 1;
            this.axisControl1.ActualDoubleClick += new System.EventHandler(this.axisControl1_ActualDoubleClick);
            // 
            // xtraTabPage2
            // 
            this.xtraTabPage2.Name = "xtraTabPage2";
            this.xtraTabPage2.Size = new System.Drawing.Size(240, 480);
            this.xtraTabPage2.Text = "G55";
            // 
            // xtraTabPage3
            // 
            this.xtraTabPage3.Name = "xtraTabPage3";
            this.xtraTabPage3.Size = new System.Drawing.Size(240, 480);
            this.xtraTabPage3.Text = "G56";
            // 
            // xtraTabPage4
            // 
            this.xtraTabPage4.Name = "xtraTabPage4";
            this.xtraTabPage4.Size = new System.Drawing.Size(240, 480);
            this.xtraTabPage4.Text = "G57";
            // 
            // xtraTabPage5
            // 
            this.xtraTabPage5.Name = "xtraTabPage5";
            this.xtraTabPage5.Size = new System.Drawing.Size(240, 480);
            this.xtraTabPage5.Text = "G58";
            // 
            // xtraTabPage6
            // 
            this.xtraTabPage6.Name = "xtraTabPage6";
            this.xtraTabPage6.Size = new System.Drawing.Size(240, 480);
            this.xtraTabPage6.Text = "G59";
            // 
            // xtraTabPage9
            // 
            this.xtraTabPage9.Name = "xtraTabPage9";
            this.xtraTabPage9.Size = new System.Drawing.Size(240, 480);
            this.xtraTabPage9.Text = "G60";
            // 
            // xtraTabPage10
            // 
            this.xtraTabPage10.Name = "xtraTabPage10";
            this.xtraTabPage10.Size = new System.Drawing.Size(240, 480);
            this.xtraTabPage10.Text = "G61";
            // 
            // xtraTabPage11
            // 
            this.xtraTabPage11.Name = "xtraTabPage11";
            this.xtraTabPage11.Size = new System.Drawing.Size(240, 480);
            this.xtraTabPage11.Text = "G62";
            // 
            // xtraTabPage12
            // 
            this.xtraTabPage12.Name = "xtraTabPage12";
            this.xtraTabPage12.Size = new System.Drawing.Size(240, 480);
            this.xtraTabPage12.Text = "G63";
            // 
            // xtraTabPage13
            // 
            this.xtraTabPage13.Name = "xtraTabPage13";
            this.xtraTabPage13.Size = new System.Drawing.Size(240, 480);
            this.xtraTabPage13.Text = "G64";
            // 
            // xtraTabPage14
            // 
            this.xtraTabPage14.Name = "xtraTabPage14";
            this.xtraTabPage14.Size = new System.Drawing.Size(240, 480);
            this.xtraTabPage14.Text = "G65";
            // 
            // btnSetC
            // 
            this.btnSetC.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnSetC.Appearance.Options.UseFont = true;
            this.btnSetC.Location = new System.Drawing.Point(252, 182);
            this.btnSetC.Name = "btnSetC";
            this.btnSetC.Size = new System.Drawing.Size(33, 34);
            this.btnSetC.TabIndex = 13;
            this.btnSetC.TabStop = false;
            this.btnSetC.Text = "↙";
            this.btnSetC.Click += new System.EventHandler(this.btnSetC_Click);
            // 
            // btnZeroC
            // 
            this.btnZeroC.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnZeroC.Appearance.Options.UseFont = true;
            this.btnZeroC.Location = new System.Drawing.Point(288, 182);
            this.btnZeroC.Name = "btnZeroC";
            this.btnZeroC.Size = new System.Drawing.Size(50, 34);
            this.btnZeroC.TabIndex = 18;
            this.btnZeroC.TabStop = false;
            this.btnZeroC.Text = "清零";
            this.btnZeroC.Click += new System.EventHandler(this.btnZeroC_Click);
            // 
            // btnSetB
            // 
            this.btnSetB.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnSetB.Appearance.Options.UseFont = true;
            this.btnSetB.Location = new System.Drawing.Point(252, 145);
            this.btnSetB.Name = "btnSetB";
            this.btnSetB.Size = new System.Drawing.Size(33, 34);
            this.btnSetB.TabIndex = 17;
            this.btnSetB.TabStop = false;
            this.btnSetB.Text = "↙";
            this.btnSetB.Click += new System.EventHandler(this.btnSetB_Click);
            // 
            // btnZeroB
            // 
            this.btnZeroB.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnZeroB.Appearance.Options.UseFont = true;
            this.btnZeroB.Location = new System.Drawing.Point(288, 145);
            this.btnZeroB.Name = "btnZeroB";
            this.btnZeroB.Size = new System.Drawing.Size(50, 34);
            this.btnZeroB.TabIndex = 14;
            this.btnZeroB.TabStop = false;
            this.btnZeroB.Text = "清零";
            this.btnZeroB.Click += new System.EventHandler(this.btnZeroB_Click);
            // 
            // btnSetZ
            // 
            this.btnSetZ.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnSetZ.Appearance.Options.UseFont = true;
            this.btnSetZ.Location = new System.Drawing.Point(252, 219);
            this.btnSetZ.Name = "btnSetZ";
            this.btnSetZ.Size = new System.Drawing.Size(33, 34);
            this.btnSetZ.TabIndex = 21;
            this.btnSetZ.TabStop = false;
            this.btnSetZ.Text = "↙";
            this.btnSetZ.Click += new System.EventHandler(this.btnSetZ_Click);
            // 
            // btnZeroZ
            // 
            this.btnZeroZ.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnZeroZ.Appearance.Options.UseFont = true;
            this.btnZeroZ.Location = new System.Drawing.Point(288, 219);
            this.btnZeroZ.Name = "btnZeroZ";
            this.btnZeroZ.Size = new System.Drawing.Size(50, 34);
            this.btnZeroZ.TabIndex = 22;
            this.btnZeroZ.TabStop = false;
            this.btnZeroZ.Text = "清零";
            this.btnZeroZ.Click += new System.EventHandler(this.btnZeroZ_Click);
            // 
            // btnSetW
            // 
            this.btnSetW.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnSetW.Appearance.Options.UseFont = true;
            this.btnSetW.Location = new System.Drawing.Point(252, 108);
            this.btnSetW.Name = "btnSetW";
            this.btnSetW.Size = new System.Drawing.Size(33, 34);
            this.btnSetW.TabIndex = 9;
            this.btnSetW.TabStop = false;
            this.btnSetW.Text = "↙";
            this.btnSetW.Click += new System.EventHandler(this.btnSetW_Click);
            // 
            // btnZeroW
            // 
            this.btnZeroW.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnZeroW.Appearance.Options.UseFont = true;
            this.btnZeroW.Location = new System.Drawing.Point(288, 108);
            this.btnZeroW.Name = "btnZeroW";
            this.btnZeroW.Size = new System.Drawing.Size(50, 34);
            this.btnZeroW.TabIndex = 10;
            this.btnZeroW.TabStop = false;
            this.btnZeroW.Text = "清零";
            this.btnZeroW.Click += new System.EventHandler(this.btnZeroW_Click);
            // 
            // btnSetY
            // 
            this.btnSetY.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnSetY.Appearance.Options.UseFont = true;
            this.btnSetY.Location = new System.Drawing.Point(252, 71);
            this.btnSetY.Name = "btnSetY";
            this.btnSetY.Size = new System.Drawing.Size(33, 34);
            this.btnSetY.TabIndex = 5;
            this.btnSetY.TabStop = false;
            this.btnSetY.Text = "↙";
            this.btnSetY.Click += new System.EventHandler(this.btnSetY_Click);
            // 
            // btnZeroY
            // 
            this.btnZeroY.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnZeroY.Appearance.Options.UseFont = true;
            this.btnZeroY.Location = new System.Drawing.Point(288, 71);
            this.btnZeroY.Name = "btnZeroY";
            this.btnZeroY.Size = new System.Drawing.Size(50, 34);
            this.btnZeroY.TabIndex = 6;
            this.btnZeroY.TabStop = false;
            this.btnZeroY.Text = "清零";
            this.btnZeroY.Click += new System.EventHandler(this.btnZeroY_Click);
            // 
            // btnSetX
            // 
            this.btnSetX.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnSetX.Appearance.Options.UseFont = true;
            this.btnSetX.Location = new System.Drawing.Point(252, 34);
            this.btnSetX.Name = "btnSetX";
            this.btnSetX.Size = new System.Drawing.Size(33, 34);
            this.btnSetX.TabIndex = 1;
            this.btnSetX.TabStop = false;
            this.btnSetX.Text = "↙";
            this.btnSetX.Click += new System.EventHandler(this.btnSetX_Click);
            // 
            // btnZeroX
            // 
            this.btnZeroX.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnZeroX.Appearance.Options.UseFont = true;
            this.btnZeroX.Location = new System.Drawing.Point(288, 34);
            this.btnZeroX.Name = "btnZeroX";
            this.btnZeroX.Size = new System.Drawing.Size(50, 34);
            this.btnZeroX.TabIndex = 2;
            this.btnZeroX.TabStop = false;
            this.btnZeroX.Text = "清零";
            this.btnZeroX.Click += new System.EventHandler(this.btnZeroX_Click);
            // 
            // barManager
            // 
            this.barManager.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
            this.bar1});
            this.barManager.DockControls.Add(this.barDockControlTop);
            this.barManager.DockControls.Add(this.barDockControlBottom);
            this.barManager.DockControls.Add(this.barDockControlLeft);
            this.barManager.DockControls.Add(this.barDockControlRight);
            this.barManager.Form = this;
            this.barManager.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.barStaticItem1,
            this.biFileName,
            this.biTime,
            this.barStaticItem2,
            this.barStaticItem3,
            this.biLastHole});
            this.barManager.MaxItemId = 26;
            this.barManager.StatusBar = this.bar1;
            // 
            // bar1
            // 
            this.bar1.BarName = "Custom 1";
            this.bar1.CanDockStyle = DevExpress.XtraBars.BarCanDockStyle.Bottom;
            this.bar1.DockCol = 0;
            this.bar1.DockRow = 0;
            this.bar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Bottom;
            this.bar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barStaticItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.biFileName),
            new DevExpress.XtraBars.LinkPersistInfo(this.biTime),
            new DevExpress.XtraBars.LinkPersistInfo(this.barStaticItem1),
            new DevExpress.XtraBars.LinkPersistInfo(this.barStaticItem2),
            new DevExpress.XtraBars.LinkPersistInfo(this.barStaticItem3),
            new DevExpress.XtraBars.LinkPersistInfo(this.biLastHole)});
            this.bar1.OptionsBar.AllowQuickCustomization = false;
            this.bar1.OptionsBar.DrawDragBorder = false;
            this.bar1.OptionsBar.UseWholeRow = true;
            this.bar1.Text = "Custom 1";
            // 
            // barStaticItem1
            // 
            this.barStaticItem1.Caption = "加工程序路径:";
            this.barStaticItem1.Id = 15;
            this.barStaticItem1.Name = "barStaticItem1";
            this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // biFileName
            // 
            this.biFileName.Id = 16;
            this.biFileName.Name = "biFileName";
            this.biFileName.TextAlignment = System.Drawing.StringAlignment.Near;
            this.biFileName.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
            // 
            // biTime
            // 
            this.biTime.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.biTime.Id = 19;
            this.biTime.Name = "biTime";
            this.biTime.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // barStaticItem2
            // 
            this.barStaticItem2.Id = 21;
            this.barStaticItem2.Name = "barStaticItem2";
            this.barStaticItem2.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // barStaticItem3
            // 
            this.barStaticItem3.Id = 23;
            this.barStaticItem3.Name = "barStaticItem3";
            this.barStaticItem3.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // biLastHole
            // 
            this.biLastHole.Id = 25;
            this.biLastHole.Name = "biLastHole";
            this.biLastHole.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // popupMenu1
            // 
            this.popupMenu1.Name = "popupMenu1";
            // 
            // barEditItem2
            // 
            this.barEditItem2.Edit = null;
            this.barEditItem2.Id = 47;
            this.barEditItem2.Name = "barEditItem2";
            superToolTip1.FixedTooltipWidth = true;
            toolTipTitleItem1.Text = "Font";
            toolTipItem1.LeftIndent = 6;
            toolTipItem1.Text = "Change the font face.";
            superToolTip1.Items.Add(toolTipTitleItem1);
            superToolTip1.Items.Add(toolTipItem1);
            superToolTip1.MaxWidth = 210;
            this.barEditItem2.SuperTip = superToolTip1;
            this.barEditItem2.Width = 140;
            // 
            // barEditItem3
            // 
            this.barEditItem3.Edit = null;
            this.barEditItem3.Id = 48;
            this.barEditItem3.Name = "barEditItem3";
            superToolTip2.FixedTooltipWidth = true;
            toolTipTitleItem2.Text = "Font Size";
            toolTipItem2.LeftIndent = 6;
            toolTipItem2.Text = "Change the font size.";
            superToolTip2.Items.Add(toolTipTitleItem2);
            superToolTip2.Items.Add(toolTipItem2);
            superToolTip2.MaxWidth = 210;
            this.barEditItem3.SuperTip = superToolTip2;
            // 
            // btnJiagong
            // 
            this.btnJiagong.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnJiagong.Appearance.Options.UseFont = true;
            this.btnJiagong.Appearance.Options.UseTextOptions = true;
            this.btnJiagong.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.btnJiagong.Image = ((System.Drawing.Image)(resources.GetObject("btnJiagong.Image")));
            this.btnJiagong.ImageIndex = 0;
            this.btnJiagong.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
            this.btnJiagong.Location = new System.Drawing.Point(637, 28);
            this.btnJiagong.Name = "btnJiagong";
            this.btnJiagong.Size = new System.Drawing.Size(122, 54);
            this.btnJiagong.TabIndex = 5;
            this.btnJiagong.Text = "加工";
            this.btnJiagong.CheckedChanged += new System.EventHandler(this.btnJiagong_CheckedChanged);
            this.btnJiagong.MouseDown += new System.Windows.Forms.MouseEventHandler(this.btnJiagong_MouseDown);
            this.btnJiagong.MouseUp += new System.Windows.Forms.MouseEventHandler(this.btnJiagong_MouseUp);
            // 
            // btnShuibang
            // 
            this.btnShuibang.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnShuibang.Appearance.Options.UseFont = true;
            this.btnShuibang.Appearance.Options.UseTextOptions = true;
            this.btnShuibang.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.btnShuibang.Image = ((System.Drawing.Image)(resources.GetObject("btnShuibang.Image")));
            this.btnShuibang.ImageIndex = 1;
            this.btnShuibang.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
            this.btnShuibang.Location = new System.Drawing.Point(512, 28);
            this.btnShuibang.Name = "btnShuibang";
            this.btnShuibang.Size = new System.Drawing.Size(122, 54);
            this.btnShuibang.TabIndex = 4;
            this.btnShuibang.Text = "水泵";
            this.btnShuibang.CheckedChanged += new System.EventHandler(this.btnShuibang_CheckedChanged);
            // 
            // btnFanjixing
            // 
            this.btnFanjixing.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnFanjixing.Appearance.Options.UseFont = true;
            this.btnFanjixing.Appearance.Options.UseTextOptions = true;
            this.btnFanjixing.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.btnFanjixing.Image = ((System.Drawing.Image)(resources.GetObject("btnFanjixing.Image")));
            this.btnFanjixing.ImageIndex = 0;
            this.btnFanjixing.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
            this.btnFanjixing.Location = new System.Drawing.Point(365, 26);
            this.btnFanjixing.Name = "btnFanjixing";
            this.btnFanjixing.Size = new System.Drawing.Size(68, 89);
            this.btnFanjixing.TabIndex = 3;
            this.btnFanjixing.Text = "反极性";
            this.btnFanjixing.CheckedChanged += new System.EventHandler(this.btnFanjixing_CheckedChanged);
            // 
            // btnShineng
            // 
            this.btnShineng.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnShineng.Appearance.Options.UseFont = true;
            this.btnShineng.Appearance.Options.UseTextOptions = true;
            this.btnShineng.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.btnShineng.Image = ((System.Drawing.Image)(resources.GetObject("btnShineng.Image")));
            this.btnShineng.ImageIndex = 0;
            this.btnShineng.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
            this.btnShineng.Location = new System.Drawing.Point(387, 28);
            this.btnShineng.Name = "btnShineng";
            this.btnShineng.Size = new System.Drawing.Size(122, 54);
            this.btnShineng.TabIndex = 3;
            this.btnShineng.Text = "加工使能";
            this.btnShineng.CheckedChanged += new System.EventHandler(this.btnShineng_CheckedChanged);
            // 
            // gcFileName
            // 
            this.gcFileName.Controls.Add(this.btnCheck);
            this.gcFileName.Controls.Add(this.cbEmptyRun);
            this.gcFileName.Controls.Add(this.btnNewHoles);
            this.gcFileName.Controls.Add(this.chkCheckAll);
            this.gcFileName.Controls.Add(this.btnSaveScript);
            this.gcFileName.Controls.Add(this.btnMoreOperate);
            this.gcFileName.Controls.Add(this.gridControl2);
            this.gcFileName.Controls.Add(this.btnLoadFile);
            this.gcFileName.Controls.Add(this.label1);
            this.gcFileName.Controls.Add(this.label2);
            this.gcFileName.Location = new System.Drawing.Point(0, 0);
            this.gcFileName.Name = "gcFileName";
            this.gcFileName.Size = new System.Drawing.Size(563, 338);
            this.gcFileName.TabIndex = 13;
            this.gcFileName.Text = "加工孔位列表";
            // 
            // btnCheck
            // 
            this.btnCheck.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.btnCheck.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnCheck.Appearance.Options.UseFont = true;
            this.btnCheck.Location = new System.Drawing.Point(343, 302);
            this.btnCheck.Name = "btnCheck";
            this.btnCheck.Size = new System.Drawing.Size(79, 30);
            this.btnCheck.TabIndex = 24;
            this.btnCheck.Text = "检测";
            this.btnCheck.Visible = false;
            this.btnCheck.Click += new System.EventHandler(this.btnCheck_Click);
            // 
            // cbEmptyRun
            // 
            this.cbEmptyRun.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cbEmptyRun.Appearance.Options.UseFont = true;
            this.cbEmptyRun.Appearance.Options.UseTextOptions = true;
            this.cbEmptyRun.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.cbEmptyRun.ImageIndex = 0;
            this.cbEmptyRun.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
            this.cbEmptyRun.Location = new System.Drawing.Point(438, 301);
            this.cbEmptyRun.Name = "cbEmptyRun";
            this.cbEmptyRun.Size = new System.Drawing.Size(118, 30);
            this.cbEmptyRun.TabIndex = 23;
            this.cbEmptyRun.Text = "加工空跑";
            // 
            // btnNewHoles
            // 
            this.btnNewHoles.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.btnNewHoles.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnNewHoles.Appearance.Options.UseFont = true;
            this.btnNewHoles.Location = new System.Drawing.Point(258, 302);
            this.btnNewHoles.Name = "btnNewHoles";
            this.btnNewHoles.Size = new System.Drawing.Size(79, 30);
            this.btnNewHoles.TabIndex = 22;
            this.btnNewHoles.Text = "新建";
            this.btnNewHoles.Click += new System.EventHandler(this.btnNewHoles_Click);
            // 
            // chkCheckAll
            // 
            this.chkCheckAll.AutoSize = true;
            this.chkCheckAll.Location = new System.Drawing.Point(70, 58);
            this.chkCheckAll.Name = "chkCheckAll";
            this.chkCheckAll.Size = new System.Drawing.Size(15, 14);
            this.chkCheckAll.TabIndex = 21;
            this.chkCheckAll.UseVisualStyleBackColor = true;
            this.chkCheckAll.CheckedChanged += new System.EventHandler(this.chkCheckAll_CheckedChanged);
            // 
            // btnSaveScript
            // 
            this.btnSaveScript.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.btnSaveScript.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnSaveScript.Appearance.Options.UseFont = true;
            this.btnSaveScript.Location = new System.Drawing.Point(89, 302);
            this.btnSaveScript.Name = "btnSaveScript";
            this.btnSaveScript.Size = new System.Drawing.Size(79, 30);
            this.btnSaveScript.TabIndex = 4;
            this.btnSaveScript.Text = "保存";
            this.btnSaveScript.Click += new System.EventHandler(this.btnSaveScript_Click);
            // 
            // btnMoreOperate
            // 
            this.btnMoreOperate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.btnMoreOperate.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnMoreOperate.Appearance.Options.UseFont = true;
            this.btnMoreOperate.Location = new System.Drawing.Point(174, 302);
            this.btnMoreOperate.Name = "btnMoreOperate";
            this.btnMoreOperate.Size = new System.Drawing.Size(79, 30);
            this.btnMoreOperate.TabIndex = 3;
            this.btnMoreOperate.Text = "编辑";
            this.btnMoreOperate.Click += new System.EventHandler(this.btnMoreOperate_Click);
            // 
            // gridControl2
            // 
            this.gridControl2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.gridControl2.DataSource = this.bindingSourceCnc;
            this.gridControl2.Location = new System.Drawing.Point(0, 23);
            this.gridControl2.MainView = this.gridViewCnc;
            this.gridControl2.Name = "gridControl2";
            this.gridControl2.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemComboBox6,
            this.repositoryItemComboBox7});
            this.gridControl2.Size = new System.Drawing.Size(563, 272);
            this.gridControl2.TabIndex = 16;
            this.gridControl2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridViewCnc});
            // 
            // gridViewCnc
            // 
            this.gridViewCnc.ColumnPanelRowHeight = 48;
            this.gridViewCnc.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.gridColumn12,
            this.gridColumn20,
            this.gridColumn13,
            this.gridColumn14,
            this.gridColumn15,
            this.gridColumn16,
            this.gridColumn17,
            this.gridColumn18});
            this.gridViewCnc.GridControl = this.gridControl2;
            this.gridViewCnc.IndicatorWidth = 50;
            this.gridViewCnc.Name = "gridViewCnc";
            this.gridViewCnc.OptionsBehavior.ReadOnly = true;
            this.gridViewCnc.OptionsView.ShowGroupPanel = false;
            this.gridViewCnc.CustomDrawRowIndicator += new DevExpress.XtraGrid.Views.Grid.RowIndicatorCustomDrawEventHandler(this.gridViewCnc_CustomDrawRowIndicator);
            this.gridViewCnc.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridViewCnc_FocusedRowChanged);
            this.gridViewCnc.CellValueChanging += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridViewCnc_CellValueChanging);
            // 
            // gridColumn12
            // 
            this.gridColumn12.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn12.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn12.AppearanceHeader.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
            this.gridColumn12.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.gridColumn12.Caption = "加工";
            this.gridColumn12.FieldName = "IsJiaGong";
            this.gridColumn12.Name = "gridColumn12";
            this.gridColumn12.OptionsColumn.AllowMove = false;
            this.gridColumn12.OptionsColumn.AllowSize = false;
            this.gridColumn12.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn12.OptionsFilter.AllowFilter = false;
            this.gridColumn12.Visible = true;
            this.gridColumn12.VisibleIndex = 0;
            this.gridColumn12.Width = 48;
            // 
            // gridColumn20
            // 
            this.gridColumn20.Caption = "坐标系";
            this.gridColumn20.ColumnEdit = this.repositoryItemComboBox7;
            this.gridColumn20.FieldName = "AxisType";
            this.gridColumn20.Name = "gridColumn20";
            this.gridColumn20.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn20.OptionsFilter.AllowFilter = false;
            this.gridColumn20.Visible = true;
            this.gridColumn20.VisibleIndex = 1;
            this.gridColumn20.Width = 63;
            // 
            // repositoryItemComboBox7
            // 
            this.repositoryItemComboBox7.AutoHeight = false;
            this.repositoryItemComboBox7.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemComboBox7.Items.AddRange(new object[] {
            "G54",
            "G55",
            "G56",
            "G57",
            "G58",
            "G59"});
            this.repositoryItemComboBox7.Name = "repositoryItemComboBox7";
            // 
            // gridColumn13
            // 
            this.gridColumn13.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn13.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn13.AppearanceHeader.TextOptions.Trimming = DevExpress.Utils.Trimming.None;
            this.gridColumn13.AppearanceHeader.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
            this.gridColumn13.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.gridColumn13.Caption = "X";
            this.gridColumn13.ColumnEdit = this.repositoryItemSpinEdit2;
            this.gridColumn13.FieldName = "X";
            this.gridColumn13.Name = "gridColumn13";
            this.gridColumn13.OptionsColumn.AllowMove = false;
            this.gridColumn13.OptionsColumn.AllowSize = false;
            this.gridColumn13.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn13.OptionsFilter.AllowFilter = false;
            this.gridColumn13.Visible = true;
            this.gridColumn13.VisibleIndex = 2;
            this.gridColumn13.Width = 70;
            // 
            // gridColumn14
            // 
            this.gridColumn14.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn14.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn14.AppearanceHeader.TextOptions.Trimming = DevExpress.Utils.Trimming.None;
            this.gridColumn14.AppearanceHeader.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
            this.gridColumn14.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.gridColumn14.Caption = "Y";
            this.gridColumn14.ColumnEdit = this.repositoryItemSpinEdit2;
            this.gridColumn14.FieldName = "Y";
            this.gridColumn14.Name = "gridColumn14";
            this.gridColumn14.OptionsColumn.AllowMove = false;
            this.gridColumn14.OptionsColumn.AllowSize = false;
            this.gridColumn14.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn14.OptionsFilter.AllowFilter = false;
            this.gridColumn14.Visible = true;
            this.gridColumn14.VisibleIndex = 3;
            this.gridColumn14.Width = 70;
            // 
            // gridColumn15
            // 
            this.gridColumn15.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn15.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn15.AppearanceHeader.TextOptions.Trimming = DevExpress.Utils.Trimming.None;
            this.gridColumn15.AppearanceHeader.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
            this.gridColumn15.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.gridColumn15.Caption = "W";
            this.gridColumn15.ColumnEdit = this.repositoryItemSpinEdit2;
            this.gridColumn15.FieldName = "W";
            this.gridColumn15.Name = "gridColumn15";
            this.gridColumn15.OptionsColumn.AllowMove = false;
            this.gridColumn15.OptionsColumn.AllowSize = false;
            this.gridColumn15.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn15.OptionsFilter.AllowFilter = false;
            this.gridColumn15.Visible = true;
            this.gridColumn15.VisibleIndex = 4;
            this.gridColumn15.Width = 70;
            // 
            // gridColumn16
            // 
            this.gridColumn16.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn16.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn16.AppearanceHeader.TextOptions.Trimming = DevExpress.Utils.Trimming.None;
            this.gridColumn16.AppearanceHeader.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
            this.gridColumn16.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.gridColumn16.Caption = "B";
            this.gridColumn16.ColumnEdit = this.repositoryItemSpinEdit2;
            this.gridColumn16.FieldName = "B";
            this.gridColumn16.Name = "gridColumn16";
            this.gridColumn16.OptionsColumn.AllowMove = false;
            this.gridColumn16.OptionsColumn.AllowSize = false;
            this.gridColumn16.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn16.OptionsFilter.AllowFilter = false;
            this.gridColumn16.Visible = true;
            this.gridColumn16.VisibleIndex = 5;
            this.gridColumn16.Width = 70;
            // 
            // gridColumn17
            // 
            this.gridColumn17.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn17.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn17.AppearanceHeader.TextOptions.Trimming = DevExpress.Utils.Trimming.None;
            this.gridColumn17.AppearanceHeader.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
            this.gridColumn17.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.gridColumn17.Caption = "C";
            this.gridColumn17.ColumnEdit = this.repositoryItemSpinEdit2;
            this.gridColumn17.FieldName = "C";
            this.gridColumn17.Name = "gridColumn17";
            this.gridColumn17.OptionsColumn.AllowMove = false;
            this.gridColumn17.OptionsColumn.AllowSize = false;
            this.gridColumn17.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn17.OptionsFilter.AllowFilter = false;
            this.gridColumn17.Visible = true;
            this.gridColumn17.VisibleIndex = 6;
            this.gridColumn17.Width = 70;
            // 
            // gridColumn18
            // 
            this.gridColumn18.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn18.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn18.AppearanceHeader.TextOptions.Trimming = DevExpress.Utils.Trimming.None;
            this.gridColumn18.AppearanceHeader.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
            this.gridColumn18.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.gridColumn18.Caption = "参数";
            this.gridColumn18.ColumnEdit = this.repositoryItemComboBox6;
            this.gridColumn18.FieldName = "Param";
            this.gridColumn18.Name = "gridColumn18";
            this.gridColumn18.OptionsColumn.AllowMove = false;
            this.gridColumn18.OptionsColumn.AllowSize = false;
            this.gridColumn18.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn18.OptionsFilter.AllowFilter = false;
            this.gridColumn18.Visible = true;
            this.gridColumn18.VisibleIndex = 7;
            this.gridColumn18.Width = 48;
            // 
            // repositoryItemComboBox6
            // 
            this.repositoryItemComboBox6.AutoHeight = false;
            this.repositoryItemComboBox6.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemComboBox6.DropDownRows = 10;
            this.repositoryItemComboBox6.Items.AddRange(new object[] {
            "E1",
            "E2",
            "E3",
            "E4",
            "E5",
            "E6",
            "E7",
            "E8",
            "E9",
            "E10",
            "E11",
            "E12",
            "E13",
            "E14",
            "E15",
            "E16",
            "E17",
            "E18",
            "E19",
            "E20",
            "E21",
            "E22",
            "E23",
            "E24",
            "E25",
            "E26",
            "E27",
            "E28",
            "E29",
            "E30"});
            this.repositoryItemComboBox6.Name = "repositoryItemComboBox6";
            // 
            // btnLoadFile
            // 
            this.btnLoadFile.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.btnLoadFile.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnLoadFile.Appearance.Options.UseFont = true;
            this.btnLoadFile.Location = new System.Drawing.Point(4, 302);
            this.btnLoadFile.Name = "btnLoadFile";
            this.btnLoadFile.Size = new System.Drawing.Size(79, 30);
            this.btnLoadFile.TabIndex = 0;
            this.btnLoadFile.Text = "加载";
            this.btnLoadFile.Click += new System.EventHandler(this.miLoadFile_ItemClick);
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bindingSource, "ActPosA", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.label1.Location = new System.Drawing.Point(72, 501);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(38, 14);
            this.label1.TabIndex = 20;
            this.label1.Text = "label1";
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bindingSource, "LogPosA", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.label2.Location = new System.Drawing.Point(186, 501);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(38, 14);
            this.label2.TabIndex = 5;
            this.label2.Text = "label2";
            // 
            // pnlManual
            // 
            this.pnlManual.Controls.Add(this.groupControl4);
            this.pnlManual.Controls.Add(this.groupControl1);
            this.pnlManual.Controls.Add(this.gcAxisModify);
            this.pnlManual.Location = new System.Drawing.Point(250, 122);
            this.pnlManual.Name = "pnlManual";
            this.pnlManual.Size = new System.Drawing.Size(773, 531);
            this.pnlManual.TabIndex = 26;
            // 
            // groupControl4
            // 
            this.groupControl4.Controls.Add(this.btnChangeDaoXiang);
            this.groupControl4.Controls.Add(this.btnStopCenter);
            this.groupControl4.Controls.Add(this.btnAutoCenter);
            this.groupControl4.Controls.Add(this.btnToZero);
            this.groupControl4.Controls.Add(this.btnZeroRestart);
            this.groupControl4.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.groupControl4.Location = new System.Drawing.Point(0, 441);
            this.groupControl4.Name = "groupControl4";
            this.groupControl4.Size = new System.Drawing.Size(773, 90);
            this.groupControl4.TabIndex = 78;
            this.groupControl4.Text = "其它";
            // 
            // btnChangeDaoXiang
            // 
            this.btnChangeDaoXiang.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnChangeDaoXiang.Appearance.Options.UseFont = true;
            this.btnChangeDaoXiang.Appearance.Options.UseTextOptions = true;
            this.btnChangeDaoXiang.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.btnChangeDaoXiang.ImageIndex = 1;
            this.btnChangeDaoXiang.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
            this.btnChangeDaoXiang.Location = new System.Drawing.Point(533, 26);
            this.btnChangeDaoXiang.Name = "btnChangeDaoXiang";
            this.btnChangeDaoXiang.Size = new System.Drawing.Size(166, 54);
            this.btnChangeDaoXiang.TabIndex = 9;
            this.btnChangeDaoXiang.Text = "换导向器";
            this.btnChangeDaoXiang.CheckedChanged += new System.EventHandler(this.btnChangeDaoXiang_CheckedChanged);
            // 
            // btnStopCenter
            // 
            this.btnStopCenter.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnStopCenter.Appearance.Options.UseFont = true;
            this.btnStopCenter.Image = global::Contra.Properties.Resources.btnStop_Image;
            this.btnStopCenter.Location = new System.Drawing.Point(361, 26);
            this.btnStopCenter.Name = "btnStopCenter";
            this.btnStopCenter.Size = new System.Drawing.Size(166, 54);
            this.btnStopCenter.TabIndex = 8;
            this.btnStopCenter.Text = "停止分中";
            this.btnStopCenter.Click += new System.EventHandler(this.btnStopCenter_Click);
            // 
            // btnAutoCenter
            // 
            this.btnAutoCenter.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnAutoCenter.Appearance.Options.UseFont = true;
            this.btnAutoCenter.Image = global::Contra.Properties.Resources.btnToZero_Image;
            this.btnAutoCenter.Location = new System.Drawing.Point(190, 26);
            this.btnAutoCenter.Name = "btnAutoCenter";
            this.btnAutoCenter.Size = new System.Drawing.Size(166, 54);
            this.btnAutoCenter.TabIndex = 7;
            this.btnAutoCenter.Text = "自动分中";
            this.btnAutoCenter.Click += new System.EventHandler(this.btnAutoCenter_Click);
            // 
            // btnToZero
            // 
            this.btnToZero.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnToZero.Appearance.Options.UseFont = true;
            this.btnToZero.Image = global::Contra.Properties.Resources.RibbonUserDesigner_HtmlHomeLarge;
            this.btnToZero.Location = new System.Drawing.Point(20, 26);
            this.btnToZero.Name = "btnToZero";
            this.btnToZero.Size = new System.Drawing.Size(166, 54);
            this.btnToZero.TabIndex = 6;
            this.btnToZero.Text = "机械回零";
            this.btnToZero.Click += new System.EventHandler(this.miToZero_ItemClick);
            // 
            // btnZeroRestart
            // 
            this.btnZeroRestart.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnZeroRestart.Appearance.Options.UseFont = true;
            this.btnZeroRestart.Image = ((System.Drawing.Image)(resources.GetObject("btnZeroRestart.Image")));
            this.btnZeroRestart.Location = new System.Drawing.Point(190, 26);
            this.btnZeroRestart.Name = "btnZeroRestart";
            this.btnZeroRestart.Size = new System.Drawing.Size(166, 54);
            this.btnZeroRestart.TabIndex = 6;
            this.btnZeroRestart.Text = "清零复位";
            this.btnZeroRestart.Visible = false;
            this.btnZeroRestart.Click += new System.EventHandler(this.btnZeroRestart_Click);
            // 
            // groupControl1
            // 
            this.groupControl1.Controls.Add(this.btnKeyboard);
            this.groupControl1.Controls.Add(this.btnInput1);
            this.groupControl1.Controls.Add(this.txtInput1);
            this.groupControl1.Controls.Add(this.labelControl92);
            this.groupControl1.Location = new System.Drawing.Point(0, -1);
            this.groupControl1.Name = "groupControl1";
            this.groupControl1.Size = new System.Drawing.Size(773, 77);
            this.groupControl1.TabIndex = 16;
            this.groupControl1.Text = "手动输入";
            // 
            // btnKeyboard
            // 
            this.btnKeyboard.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnKeyboard.Appearance.Options.UseFont = true;
            this.btnKeyboard.Image = ((System.Drawing.Image)(resources.GetObject("btnKeyboard.Image")));
            this.btnKeyboard.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
            this.btnKeyboard.Location = new System.Drawing.Point(348, 30);
            this.btnKeyboard.Name = "btnKeyboard";
            this.btnKeyboard.Size = new System.Drawing.Size(33, 34);
            this.btnKeyboard.TabIndex = 10;
            this.btnKeyboard.Click += new System.EventHandler(this.btnKeyboard_Click);
            // 
            // btnInput1
            // 
            this.btnInput1.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnInput1.Appearance.Options.UseFont = true;
            this.btnInput1.Location = new System.Drawing.Point(309, 30);
            this.btnInput1.Name = "btnInput1";
            this.btnInput1.Size = new System.Drawing.Size(33, 34);
            this.btnInput1.TabIndex = 6;
            this.btnInput1.Text = "↙";
            this.btnInput1.Click += new System.EventHandler(this.btnInput_ItemClick);
            // 
            // txtInput1
            // 
            this.txtInput1.EditValue = new decimal(new int[] {
            0,
            0,
            0,
            0});
            this.txtInput1.Location = new System.Drawing.Point(91, 30);
            this.txtInput1.Name = "txtInput1";
            this.txtInput1.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtInput1.Properties.Appearance.Options.UseFont = true;
            this.txtInput1.Size = new System.Drawing.Size(212, 35);
            this.txtInput1.TabIndex = 9;
            this.txtInput1.TabStop = false;
            this.txtInput1.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txtInput1_KeyUp);
            // 
            // labelControl92
            // 
            this.labelControl92.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelControl92.Appearance.Options.UseFont = true;
            this.labelControl92.Location = new System.Drawing.Point(9, 36);
            this.labelControl92.Name = "labelControl92";
            this.labelControl92.Size = new System.Drawing.Size(80, 24);
            this.labelControl92.TabIndex = 8;
            this.labelControl92.Text = "手动输入";
            // 
            // gcAxisModify
            // 
            this.gcAxisModify.Controls.Add(this.listBoxControl1);
            this.gcAxisModify.Controls.Add(this.spSetC);
            this.gcAxisModify.Controls.Add(this.btnHalfC);
            this.gcAxisModify.Controls.Add(this.btnHalfB);
            this.gcAxisModify.Controls.Add(this.btnHalfZ);
            this.gcAxisModify.Controls.Add(this.btnHalfW);
            this.gcAxisModify.Controls.Add(this.btnHalfY);
            this.gcAxisModify.Controls.Add(this.btnHalfX);
            this.gcAxisModify.Controls.Add(this.btnSetC);
            this.gcAxisModify.Controls.Add(this.labelControl31);
            this.gcAxisModify.Controls.Add(this.btnZeroC);
            this.gcAxisModify.Controls.Add(this.spSetB);
            this.gcAxisModify.Controls.Add(this.labelControl25);
            this.gcAxisModify.Controls.Add(this.btnSetB);
            this.gcAxisModify.Controls.Add(this.spSetZ);
            this.gcAxisModify.Controls.Add(this.btnZeroB);
            this.gcAxisModify.Controls.Add(this.labelControl20);
            this.gcAxisModify.Controls.Add(this.spSetW);
            this.gcAxisModify.Controls.Add(this.btnSetZ);
            this.gcAxisModify.Controls.Add(this.labelControl18);
            this.gcAxisModify.Controls.Add(this.btnZeroZ);
            this.gcAxisModify.Controls.Add(this.spSetY);
            this.gcAxisModify.Controls.Add(this.btnSetW);
            this.gcAxisModify.Controls.Add(this.labelControl12);
            this.gcAxisModify.Controls.Add(this.btnZeroW);
            this.gcAxisModify.Controls.Add(this.spinEdit6);
            this.gcAxisModify.Controls.Add(this.spSetX);
            this.gcAxisModify.Controls.Add(this.btnSetY);
            this.gcAxisModify.Controls.Add(this.labelControl3);
            this.gcAxisModify.Controls.Add(this.btnZeroY);
            this.gcAxisModify.Controls.Add(this.btnZeroX);
            this.gcAxisModify.Controls.Add(this.btnSetX);
            this.gcAxisModify.Location = new System.Drawing.Point(0, 75);
            this.gcAxisModify.Name = "gcAxisModify";
            this.gcAxisModify.Size = new System.Drawing.Size(773, 367);
            this.gcAxisModify.TabIndex = 17;
            this.gcAxisModify.Text = "坐标修改(G54)";
            // 
            // listBoxControl1
            // 
            this.listBoxControl1.Location = new System.Drawing.Point(425, 34);
            this.listBoxControl1.Name = "listBoxControl1";
            this.listBoxControl1.Size = new System.Drawing.Size(252, 219);
            this.listBoxControl1.TabIndex = 78;
            // 
            // spSetC
            // 
            this.spSetC.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSourceAxisSet, "SetC", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged, null, "0.000"));
            this.spSetC.EditValue = new decimal(new int[] {
            0,
            0,
            0,
            0});
            this.spSetC.Location = new System.Drawing.Point(90, 182);
            this.spSetC.Name = "spSetC";
            this.spSetC.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.spSetC.Properties.Appearance.Options.UseFont = true;
            this.spSetC.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject13, "", null, null, true)});
            this.spSetC.Properties.DisplayFormat.FormatString = "0.000";
            this.spSetC.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
            this.spSetC.Properties.EditFormat.FormatString = "0.000";
            this.spSetC.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom;
            this.spSetC.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Default;
            this.spSetC.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.None;
            this.spSetC.Size = new System.Drawing.Size(154, 35);
            this.spSetC.TabIndex = 4;
            this.spSetC.KeyUp += new System.Windows.Forms.KeyEventHandler(this.spSetC_KeyUp);
            // 
            // btnHalfC
            // 
            this.btnHalfC.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnHalfC.Appearance.Options.UseFont = true;
            this.btnHalfC.Location = new System.Drawing.Point(341, 182);
            this.btnHalfC.Name = "btnHalfC";
            this.btnHalfC.Size = new System.Drawing.Size(39, 34);
            this.btnHalfC.TabIndex = 19;
            this.btnHalfC.TabStop = false;
            this.btnHalfC.Text = "1/2";
            this.btnHalfC.Click += new System.EventHandler(this.btnHalfC_Click);
            // 
            // btnHalfB
            // 
            this.btnHalfB.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnHalfB.Appearance.Options.UseFont = true;
            this.btnHalfB.Location = new System.Drawing.Point(341, 145);
            this.btnHalfB.Name = "btnHalfB";
            this.btnHalfB.Size = new System.Drawing.Size(39, 34);
            this.btnHalfB.TabIndex = 15;
            this.btnHalfB.TabStop = false;
            this.btnHalfB.Text = "1/2";
            this.btnHalfB.Click += new System.EventHandler(this.btnHalfB_Click);
            // 
            // btnHalfZ
            // 
            this.btnHalfZ.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnHalfZ.Appearance.Options.UseFont = true;
            this.btnHalfZ.Location = new System.Drawing.Point(341, 219);
            this.btnHalfZ.Name = "btnHalfZ";
            this.btnHalfZ.Size = new System.Drawing.Size(39, 34);
            this.btnHalfZ.TabIndex = 23;
            this.btnHalfZ.TabStop = false;
            this.btnHalfZ.Text = "1/2";
            this.btnHalfZ.Click += new System.EventHandler(this.btnHalfZ_Click);
            // 
            // btnHalfW
            // 
            this.btnHalfW.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnHalfW.Appearance.Options.UseFont = true;
            this.btnHalfW.Location = new System.Drawing.Point(341, 108);
            this.btnHalfW.Name = "btnHalfW";
            this.btnHalfW.Size = new System.Drawing.Size(39, 34);
            this.btnHalfW.TabIndex = 11;
            this.btnHalfW.TabStop = false;
            this.btnHalfW.Text = "1/2";
            this.btnHalfW.Click += new System.EventHandler(this.btnHalfW_Click);
            // 
            // btnHalfY
            // 
            this.btnHalfY.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnHalfY.Appearance.Options.UseFont = true;
            this.btnHalfY.Location = new System.Drawing.Point(341, 71);
            this.btnHalfY.Name = "btnHalfY";
            this.btnHalfY.Size = new System.Drawing.Size(39, 34);
            this.btnHalfY.TabIndex = 7;
            this.btnHalfY.TabStop = false;
            this.btnHalfY.Text = "1/2";
            this.btnHalfY.Click += new System.EventHandler(this.btnHalfY_Click);
            // 
            // btnHalfX
            // 
            this.btnHalfX.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnHalfX.Appearance.Options.UseFont = true;
            this.btnHalfX.Location = new System.Drawing.Point(341, 34);
            this.btnHalfX.Name = "btnHalfX";
            this.btnHalfX.Size = new System.Drawing.Size(39, 34);
            this.btnHalfX.TabIndex = 3;
            this.btnHalfX.TabStop = false;
            this.btnHalfX.Text = "1/2";
            this.btnHalfX.Click += new System.EventHandler(this.btnHalfX_Click);
            // 
            // labelControl31
            // 
            this.labelControl31.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelControl31.Appearance.Options.UseFont = true;
            this.labelControl31.Location = new System.Drawing.Point(22, 185);
            this.labelControl31.Name = "labelControl31";
            this.labelControl31.Size = new System.Drawing.Size(12, 24);
            this.labelControl31.TabIndex = 8;
            this.labelControl31.Text = "C";
            // 
            // spSetB
            // 
            this.spSetB.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSourceAxisSet, "SetB", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged, null, "0.000"));
            this.spSetB.EditValue = new decimal(new int[] {
            0,
            0,
            0,
            0});
            this.spSetB.Location = new System.Drawing.Point(90, 145);
            this.spSetB.Name = "spSetB";
            this.spSetB.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.spSetB.Properties.Appearance.Options.UseFont = true;
            this.spSetB.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject14, "", null, null, true)});
            this.spSetB.Properties.DisplayFormat.FormatString = "0.000";
            this.spSetB.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
            this.spSetB.Properties.EditFormat.FormatString = "0.000";
            this.spSetB.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom;
            this.spSetB.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Default;
            this.spSetB.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.None;
            this.spSetB.Size = new System.Drawing.Size(154, 35);
            this.spSetB.TabIndex = 3;
            this.spSetB.KeyUp += new System.Windows.Forms.KeyEventHandler(this.spSetB_KeyUp);
            // 
            // labelControl25
            // 
            this.labelControl25.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelControl25.Appearance.Options.UseFont = true;
            this.labelControl25.Location = new System.Drawing.Point(22, 148);
            this.labelControl25.Name = "labelControl25";
            this.labelControl25.Size = new System.Drawing.Size(12, 24);
            this.labelControl25.TabIndex = 8;
            this.labelControl25.Text = "B";
            // 
            // spSetZ
            // 
            this.spSetZ.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSourceAxisSet, "SetZ", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged, null, "0.000"));
            this.spSetZ.EditValue = new decimal(new int[] {
            0,
            0,
            0,
            0});
            this.spSetZ.Location = new System.Drawing.Point(90, 219);
            this.spSetZ.Name = "spSetZ";
            this.spSetZ.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.spSetZ.Properties.Appearance.Options.UseFont = true;
            this.spSetZ.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject15, "", null, null, true)});
            this.spSetZ.Properties.DisplayFormat.FormatString = "0.000";
            this.spSetZ.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
            this.spSetZ.Properties.EditFormat.FormatString = "0.000";
            this.spSetZ.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom;
            this.spSetZ.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Default;
            this.spSetZ.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.None;
            this.spSetZ.Size = new System.Drawing.Size(154, 35);
            this.spSetZ.TabIndex = 5;
            this.spSetZ.KeyUp += new System.Windows.Forms.KeyEventHandler(this.spSetZ_KeyUp);
            // 
            // labelControl20
            // 
            this.labelControl20.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelControl20.Appearance.Options.UseFont = true;
            this.labelControl20.Location = new System.Drawing.Point(22, 222);
            this.labelControl20.Name = "labelControl20";
            this.labelControl20.Size = new System.Drawing.Size(11, 24);
            this.labelControl20.TabIndex = 8;
            this.labelControl20.Text = "Z";
            // 
            // spSetW
            // 
            this.spSetW.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSourceAxisSet, "SetW", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged, null, "0.000"));
            this.spSetW.EditValue = new decimal(new int[] {
            0,
            0,
            0,
            0});
            this.spSetW.Location = new System.Drawing.Point(90, 108);
            this.spSetW.Name = "spSetW";
            this.spSetW.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.spSetW.Properties.Appearance.Options.UseFont = true;
            this.spSetW.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject16, "", null, null, true)});
            this.spSetW.Properties.DisplayFormat.FormatString = "0.000";
            this.spSetW.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
            this.spSetW.Properties.EditFormat.FormatString = "0.000";
            this.spSetW.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom;
            this.spSetW.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Default;
            this.spSetW.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.None;
            this.spSetW.Size = new System.Drawing.Size(154, 35);
            this.spSetW.TabIndex = 2;
            this.spSetW.KeyUp += new System.Windows.Forms.KeyEventHandler(this.spSetW_KeyUp);
            // 
            // labelControl18
            // 
            this.labelControl18.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelControl18.Appearance.Options.UseFont = true;
            this.labelControl18.Location = new System.Drawing.Point(20, 111);
            this.labelControl18.Name = "labelControl18";
            this.labelControl18.Size = new System.Drawing.Size(18, 24);
            this.labelControl18.TabIndex = 8;
            this.labelControl18.Text = "W";
            // 
            // spSetY
            // 
            this.spSetY.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSourceAxisSet, "SetY", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged, null, "0.000"));
            this.spSetY.EditValue = new decimal(new int[] {
            0,
            0,
            0,
            0});
            this.spSetY.Location = new System.Drawing.Point(90, 71);
            this.spSetY.Name = "spSetY";
            this.spSetY.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.spSetY.Properties.Appearance.Options.UseFont = true;
            this.spSetY.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject17, "", null, null, true)});
            this.spSetY.Properties.DisplayFormat.FormatString = "0.000";
            this.spSetY.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
            this.spSetY.Properties.EditFormat.FormatString = "0.000";
            this.spSetY.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom;
            this.spSetY.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Default;
            this.spSetY.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.None;
            this.spSetY.Size = new System.Drawing.Size(154, 35);
            this.spSetY.TabIndex = 1;
            this.spSetY.KeyUp += new System.Windows.Forms.KeyEventHandler(this.spSetY_KeyUp);
            // 
            // labelControl12
            // 
            this.labelControl12.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelControl12.Appearance.Options.UseFont = true;
            this.labelControl12.Location = new System.Drawing.Point(22, 74);
            this.labelControl12.Name = "labelControl12";
            this.labelControl12.Size = new System.Drawing.Size(12, 24);
            this.labelControl12.TabIndex = 8;
            this.labelControl12.Text = "Y";
            // 
            // spinEdit6
            // 
            this.spinEdit6.EditValue = new decimal(new int[] {
            0,
            0,
            0,
            0});
            this.spinEdit6.Location = new System.Drawing.Point(90, 71);
            this.spinEdit6.Name = "spinEdit6";
            this.spinEdit6.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.spinEdit6.Properties.Appearance.Options.UseFont = true;
            this.spinEdit6.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject18, "", null, null, true)});
            this.spinEdit6.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Default;
            this.spinEdit6.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.None;
            this.spinEdit6.Properties.MaxValue = new decimal(new int[] {
            100,
            0,
            0,
            0});
            this.spinEdit6.Size = new System.Drawing.Size(154, 35);
            this.spinEdit6.TabIndex = 77;
            // 
            // spSetX
            // 
            this.spSetX.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSourceAxisSet, "SetX", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged, null, "0.000"));
            this.spSetX.EditValue = new decimal(new int[] {
            0,
            0,
            0,
            0});
            this.spSetX.Location = new System.Drawing.Point(90, 34);
            this.spSetX.Name = "spSetX";
            this.spSetX.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.spSetX.Properties.Appearance.Options.UseFont = true;
            this.spSetX.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject19, "", null, null, true)});
            this.spSetX.Properties.DisplayFormat.FormatString = "0.000";
            this.spSetX.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
            this.spSetX.Properties.EditFormat.FormatString = "0.000";
            this.spSetX.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom;
            this.spSetX.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Default;
            this.spSetX.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.None;
            this.spSetX.Size = new System.Drawing.Size(154, 35);
            this.spSetX.TabIndex = 0;
            this.spSetX.KeyUp += new System.Windows.Forms.KeyEventHandler(this.spSetX_KeyUp);
            // 
            // labelControl3
            // 
            this.labelControl3.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelControl3.Appearance.Options.UseFont = true;
            this.labelControl3.Location = new System.Drawing.Point(22, 37);
            this.labelControl3.Name = "labelControl3";
            this.labelControl3.Size = new System.Drawing.Size(12, 24);
            this.labelControl3.TabIndex = 8;
            this.labelControl3.Text = "X";
            // 
            // btnReset
            // 
            this.btnReset.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnReset.Appearance.Options.UseFont = true;
            this.btnReset.Image = ((System.Drawing.Image)(resources.GetObject("btnReset.Image")));
            this.btnReset.Location = new System.Drawing.Point(17, 130);
            this.btnReset.Name = "btnReset";
            this.btnReset.Size = new System.Drawing.Size(177, 49);
            this.btnReset.TabIndex = 3;
            this.btnReset.Text = "复位";
            this.btnReset.Click += new System.EventHandler(this.miRestart_ItemClick);
            // 
            // groupControl7
            // 
            this.groupControl7.Controls.Add(this.lbJiagongOvertime);
            this.groupControl7.Controls.Add(this.btnTimeSet);
            this.groupControl7.Controls.Add(this.btnJiagongHistory);
            this.groupControl7.Controls.Add(this.lbTotalTime);
            this.groupControl7.Controls.Add(this.btnClearTotalCount);
            this.groupControl7.Controls.Add(this.lbTotalCount);
            this.groupControl7.Controls.Add(this.lbLastTime);
            this.groupControl7.Controls.Add(this.lbCurrentTime);
            this.groupControl7.Location = new System.Drawing.Point(562, 60);
            this.groupControl7.Name = "groupControl7";
            this.groupControl7.Size = new System.Drawing.Size(210, 205);
            this.groupControl7.TabIndex = 15;
            this.groupControl7.Text = "统计";
            // 
            // lbJiagongOvertime
            // 
            this.lbJiagongOvertime.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lbJiagongOvertime.Appearance.Options.UseFont = true;
            this.lbJiagongOvertime.Location = new System.Drawing.Point(7, 111);
            this.lbJiagongOvertime.Name = "lbJiagongOvertime";
            this.lbJiagongOvertime.Size = new System.Drawing.Size(189, 24);
            this.lbJiagongOvertime.TabIndex = 19;
            this.lbJiagongOvertime.Text = "加工超时(S):    00:00";
            // 
            // btnTimeSet
            // 
            this.btnTimeSet.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnTimeSet.Appearance.Options.UseFont = true;
            this.btnTimeSet.Location = new System.Drawing.Point(7, 168);
            this.btnTimeSet.Name = "btnTimeSet";
            this.btnTimeSet.Size = new System.Drawing.Size(63, 30);
            this.btnTimeSet.TabIndex = 18;
            this.btnTimeSet.Text = "设定";
            this.btnTimeSet.Click += new System.EventHandler(this.btnTimeSet_Click);
            // 
            // btnJiagongHistory
            // 
            this.btnJiagongHistory.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnJiagongHistory.Appearance.Options.UseFont = true;
            this.btnJiagongHistory.Location = new System.Drawing.Point(73, 168);
            this.btnJiagongHistory.Name = "btnJiagongHistory";
            this.btnJiagongHistory.Size = new System.Drawing.Size(63, 30);
            this.btnJiagongHistory.TabIndex = 17;
            this.btnJiagongHistory.Text = "记录";
            this.btnJiagongHistory.Click += new System.EventHandler(this.btnJiagongHistory_Click);
            // 
            // lbTotalTime
            // 
            this.lbTotalTime.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lbTotalTime.Appearance.Options.UseFont = true;
            this.lbTotalTime.Location = new System.Drawing.Point(7, 24);
            this.lbTotalTime.Name = "lbTotalTime";
            this.lbTotalTime.Size = new System.Drawing.Size(113, 24);
            this.lbTotalTime.TabIndex = 16;
            this.lbTotalTime.Text = "运行总时间 :";
            // 
            // btnClearTotalCount
            // 
            this.btnClearTotalCount.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnClearTotalCount.Appearance.Options.UseFont = true;
            this.btnClearTotalCount.Location = new System.Drawing.Point(142, 168);
            this.btnClearTotalCount.Name = "btnClearTotalCount";
            this.btnClearTotalCount.Size = new System.Drawing.Size(63, 30);
            this.btnClearTotalCount.TabIndex = 15;
            this.btnClearTotalCount.Text = "清零";
            this.btnClearTotalCount.Click += new System.EventHandler(this.btnClearTotalCount_Click);
            // 
            // lbTotalCount
            // 
            this.lbTotalCount.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lbTotalCount.Appearance.Options.UseFont = true;
            this.lbTotalCount.Location = new System.Drawing.Point(7, 139);
            this.lbTotalCount.Name = "lbTotalCount";
            this.lbTotalCount.Size = new System.Drawing.Size(140, 24);
            this.lbTotalCount.TabIndex = 14;
            this.lbTotalCount.Text = "累计件数:       0";
            // 
            // lbLastTime
            // 
            this.lbLastTime.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lbLastTime.Appearance.Options.UseFont = true;
            this.lbLastTime.Location = new System.Drawing.Point(7, 51);
            this.lbLastTime.Name = "lbLastTime";
            this.lbLastTime.Size = new System.Drawing.Size(182, 24);
            this.lbLastTime.TabIndex = 12;
            this.lbLastTime.Text = "上一孔用时:    00:00";
            // 
            // lbCurrentTime
            // 
            this.lbCurrentTime.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lbCurrentTime.Appearance.Options.UseFont = true;
            this.lbCurrentTime.Location = new System.Drawing.Point(7, 82);
            this.lbCurrentTime.Name = "lbCurrentTime";
            this.lbCurrentTime.Size = new System.Drawing.Size(182, 24);
            this.lbCurrentTime.TabIndex = 13;
            this.lbCurrentTime.Text = "当前孔用时:    00:00";
            // 
            // timer
            // 
            this.timer.Interval = 50;
            this.timer.Tick += new System.EventHandler(this.timer_Tick);
            // 
            // groupControl3
            // 
            this.groupControl3.Controls.Add(this.btnWHitIgnore);
            this.groupControl3.Controls.Add(this.btnDaoKu);
            this.groupControl3.Controls.Add(this.btnSpeed);
            this.groupControl3.Controls.Add(this.btnMen);
            this.groupControl3.Controls.Add(this.btnDuidao);
            this.groupControl3.Controls.Add(this.btnFushi);
            this.groupControl3.Controls.Add(this.picLogo);
            this.groupControl3.Controls.Add(this.btnWarning);
            this.groupControl3.Controls.Add(this.btnClose);
            this.groupControl3.Controls.Add(this.btnWHit);
            this.groupControl3.Controls.Add(this.btnZThrow);
            this.groupControl3.Controls.Add(this.btnZZero);
            this.groupControl3.Controls.Add(this.btnWheel);
            this.groupControl3.Controls.Add(this.btnAxisR);
            this.groupControl3.Controls.Add(this.btnFanjixing);
            this.groupControl3.Controls.Add(this.btnBuzzing);
            this.groupControl3.Controls.Add(this.btnChongShui);
            this.groupControl3.Controls.Add(this.btnMovePanel);
            this.groupControl3.Controls.Add(this.btnLight);
            this.groupControl3.Location = new System.Drawing.Point(0, 0);
            this.groupControl3.Name = "groupControl3";
            this.groupControl3.Size = new System.Drawing.Size(1024, 120);
            this.groupControl3.TabIndex = 0;
            this.groupControl3.Text = "状态";
            // 
            // btnWHitIgnore
            // 
            this.btnWHitIgnore.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnWHitIgnore.Appearance.Options.UseFont = true;
            this.btnWHitIgnore.Appearance.Options.UseTextOptions = true;
            this.btnWHitIgnore.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.btnWHitIgnore.Image = ((System.Drawing.Image)(resources.GetObject("btnWHitIgnore.Image")));
            this.btnWHitIgnore.ImageIndex = 0;
            this.btnWHitIgnore.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
            this.btnWHitIgnore.Location = new System.Drawing.Point(492, 26);
            this.btnWHitIgnore.Name = "btnWHitIgnore";
            this.btnWHitIgnore.Size = new System.Drawing.Size(68, 89);
            this.btnWHitIgnore.TabIndex = 18;
            this.btnWHitIgnore.Text = "碰撞忽略";
            // 
            // btnDaoKu
            // 
            this.btnDaoKu.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnDaoKu.Appearance.Options.UseFont = true;
            this.btnDaoKu.Appearance.Options.UseTextOptions = true;
            this.btnDaoKu.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.btnDaoKu.ImageIndex = 0;
            this.btnDaoKu.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
            this.btnDaoKu.Location = new System.Drawing.Point(762, 24);
            this.btnDaoKu.Name = "btnDaoKu";
            this.btnDaoKu.Size = new System.Drawing.Size(68, 89);
            this.btnDaoKu.TabIndex = 16;
            this.btnDaoKu.Text = "刀库 控制";
            this.btnDaoKu.CheckedChanged += new System.EventHandler(this.btnDaoKu_CheckedChanged);
            // 
            // btnSpeed
            // 
            this.btnSpeed.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnSpeed.Appearance.Options.UseFont = true;
            this.btnSpeed.Appearance.Options.UseTextOptions = true;
            this.btnSpeed.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.btnSpeed.Image = global::Contra.Properties.Resources.off;
            this.btnSpeed.ImageIndex = 0;
            this.btnSpeed.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
            this.btnSpeed.Location = new System.Drawing.Point(635, 27);
            this.btnSpeed.Name = "btnSpeed";
            this.btnSpeed.Size = new System.Drawing.Size(68, 89);
            this.btnSpeed.TabIndex = 15;
            this.btnSpeed.Text = "低速";
            // 
            // btnMen
            // 
            this.btnMen.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnMen.Appearance.Options.UseFont = true;
            this.btnMen.Image = ((System.Drawing.Image)(resources.GetObject("btnMen.Image")));
            this.btnMen.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
            this.btnMen.Location = new System.Drawing.Point(316, 26);
            this.btnMen.Name = "btnMen";
            this.btnMen.Size = new System.Drawing.Size(68, 89);
            this.btnMen.TabIndex = 14;
            this.btnMen.Text = "防护门";
            this.btnMen.Value = 1;
            this.btnMen.Click += new System.EventHandler(this.btnMen_Click);
            // 
            // btnDuidao
            // 
            this.btnDuidao.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnDuidao.Appearance.Options.UseFont = true;
            this.btnDuidao.Appearance.Options.UseTextOptions = true;
            this.btnDuidao.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.btnDuidao.ImageIndex = 0;
            this.btnDuidao.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
            this.btnDuidao.Location = new System.Drawing.Point(709, 24);
            this.btnDuidao.Name = "btnDuidao";
            this.btnDuidao.Size = new System.Drawing.Size(68, 89);
            this.btnDuidao.TabIndex = 13;
            this.btnDuidao.Text = "对刀";
            this.btnDuidao.CheckedChanged += new System.EventHandler(this.btnDuidao_CheckedChanged);
            // 
            // btnFushi
            // 
            this.btnFushi.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnFushi.Appearance.Options.UseFont = true;
            this.btnFushi.Image = ((System.Drawing.Image)(resources.GetObject("btnFushi.Image")));
            this.btnFushi.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
            this.btnFushi.Location = new System.Drawing.Point(221, 26);
            this.btnFushi.Name = "btnFushi";
            this.btnFushi.Size = new System.Drawing.Size(68, 89);
            this.btnFushi.TabIndex = 12;
            this.btnFushi.Text = "扶丝器";
            this.btnFushi.Value = 1;
            this.btnFushi.Click += new System.EventHandler(this.btnFushi_Click);
            // 
            // picLogo
            // 
            this.picLogo.Image = global::Contra.Properties.Resources.苏州中谷新LOGO;
            this.picLogo.Location = new System.Drawing.Point(930, 26);
            this.picLogo.Name = "picLogo";
            this.picLogo.Size = new System.Drawing.Size(89, 89);
            this.picLogo.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.picLogo.TabIndex = 11;
            this.picLogo.TabStop = false;
            this.picLogo.DoubleClick += new System.EventHandler(this.picLogo_DoubleClick);
            // 
            // btnWarning
            // 
            this.btnWarning.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnWarning.Appearance.Options.UseFont = true;
            this.btnWarning.Appearance.Options.UseTextOptions = true;
            this.btnWarning.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.btnWarning.Image = ((System.Drawing.Image)(resources.GetObject("btnWarning.Image")));
            this.btnWarning.ImageIndex = 0;
            this.btnWarning.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
            this.btnWarning.Location = new System.Drawing.Point(653, 26);
            this.btnWarning.Name = "btnWarning";
            this.btnWarning.Size = new System.Drawing.Size(68, 89);
            this.btnWarning.TabIndex = 9;
            this.btnWarning.Text = "报警";
            this.btnWarning.CheckedChanged += new System.EventHandler(this.btnWarning_CheckedChanged);
            // 
            // btnClose
            // 
            this.btnClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.btnClose.BackColor = System.Drawing.Color.White;
            this.btnClose.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.btnClose.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.btnClose.Image = ((System.Drawing.Image)(resources.GetObject("btnClose.Image")));
            this.btnClose.Location = new System.Drawing.Point(974, 0);
            this.btnClose.Name = "btnClose";
            this.btnClose.Size = new System.Drawing.Size(46, 27);
            this.btnClose.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
            this.btnClose.TabIndex = 11;
            this.btnClose.TabStop = false;
            this.btnClose.Text = "closeButton1";
            this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
            // 
            // btnWHit
            // 
            this.btnWHit.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnWHit.Appearance.Options.UseFont = true;
            this.btnWHit.Appearance.Options.UseTextOptions = true;
            this.btnWHit.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.btnWHit.Image = ((System.Drawing.Image)(resources.GetObject("btnWHit.Image")));
            this.btnWHit.ImageIndex = 0;
            this.btnWHit.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
            this.btnWHit.Location = new System.Drawing.Point(566, 27);
            this.btnWHit.Name = "btnWHit";
            this.btnWHit.Size = new System.Drawing.Size(68, 89);
            this.btnWHit.TabIndex = 8;
            this.btnWHit.Text = "短路 碰撞";
            // 
            // btnZThrow
            // 
            this.btnZThrow.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnZThrow.Appearance.Options.UseFont = true;
            this.btnZThrow.Appearance.Options.UseTextOptions = true;
            this.btnZThrow.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.btnZThrow.Image = ((System.Drawing.Image)(resources.GetObject("btnZThrow.Image")));
            this.btnZThrow.ImageIndex = 0;
            this.btnZThrow.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
            this.btnZThrow.Location = new System.Drawing.Point(509, 26);
            this.btnZThrow.Name = "btnZThrow";
            this.btnZThrow.Size = new System.Drawing.Size(68, 89);
            this.btnZThrow.TabIndex = 6;
            this.btnZThrow.Text = "Z轴  穿透";
            // 
            // btnZZero
            // 
            this.btnZZero.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnZZero.Appearance.Options.UseFont = true;
            this.btnZZero.Appearance.Options.UseTextOptions = true;
            this.btnZZero.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.btnZZero.Image = ((System.Drawing.Image)(resources.GetObject("btnZZero.Image")));
            this.btnZZero.ImageIndex = 0;
            this.btnZZero.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
            this.btnZZero.Location = new System.Drawing.Point(437, 26);
            this.btnZZero.Name = "btnZZero";
            this.btnZZero.Size = new System.Drawing.Size(68, 89);
            this.btnZZero.TabIndex = 5;
            this.btnZZero.Text = "Z轴  清零";
            this.btnZZero.CheckedChanged += new System.EventHandler(this.btnZZero_CheckedChanged);
            // 
            // btnWheel
            // 
            this.btnWheel.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnWheel.Appearance.Options.UseFont = true;
            this.btnWheel.Appearance.Options.UseTextOptions = true;
            this.btnWheel.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.btnWheel.Image = ((System.Drawing.Image)(resources.GetObject("btnWheel.Image")));
            this.btnWheel.ImageIndex = 0;
            this.btnWheel.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
            this.btnWheel.Location = new System.Drawing.Point(783, 26);
            this.btnWheel.Name = "btnWheel";
            this.btnWheel.Size = new System.Drawing.Size(72, 89);
            this.btnWheel.TabIndex = 4;
            this.btnWheel.Text = "手轮 OFF";
            // 
            // btnAxisR
            // 
            this.btnAxisR.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnAxisR.Appearance.Options.UseFont = true;
            this.btnAxisR.Appearance.Options.UseTextOptions = true;
            this.btnAxisR.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.btnAxisR.Image = ((System.Drawing.Image)(resources.GetObject("btnAxisR.Image")));
            this.btnAxisR.ImageIndex = 0;
            this.btnAxisR.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
            this.btnAxisR.Location = new System.Drawing.Point(77, 26);
            this.btnAxisR.Name = "btnAxisR";
            this.btnAxisR.Size = new System.Drawing.Size(68, 89);
            this.btnAxisR.TabIndex = 1;
            this.btnAxisR.Text = "旋转头";
            this.btnAxisR.CheckedChanged += new System.EventHandler(this.btnAxisR_CheckedChanged);
            // 
            // btnBuzzing
            // 
            this.btnBuzzing.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnBuzzing.Appearance.Options.UseFont = true;
            this.btnBuzzing.Appearance.Options.UseTextOptions = true;
            this.btnBuzzing.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.btnBuzzing.Image = ((System.Drawing.Image)(resources.GetObject("btnBuzzing.Image")));
            this.btnBuzzing.ImageIndex = 0;
            this.btnBuzzing.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
            this.btnBuzzing.Location = new System.Drawing.Point(293, 26);
            this.btnBuzzing.Name = "btnBuzzing";
            this.btnBuzzing.Size = new System.Drawing.Size(68, 89);
            this.btnBuzzing.TabIndex = 2;
            this.btnBuzzing.Text = "蜂鸣器";
            this.btnBuzzing.CheckedChanged += new System.EventHandler(this.btnBuzzing_CheckedChanged);
            // 
            // btnChongShui
            // 
            this.btnChongShui.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnChongShui.Appearance.Options.UseFont = true;
            this.btnChongShui.Appearance.Options.UseTextOptions = true;
            this.btnChongShui.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.btnChongShui.Image = ((System.Drawing.Image)(resources.GetObject("btnChongShui.Image")));
            this.btnChongShui.ImageIndex = 0;
            this.btnChongShui.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
            this.btnChongShui.Location = new System.Drawing.Point(149, 26);
            this.btnChongShui.Name = "btnChongShui";
            this.btnChongShui.Size = new System.Drawing.Size(68, 89);
            this.btnChongShui.TabIndex = 2;
            this.btnChongShui.Text = "冲水";
            this.btnChongShui.CheckedChanged += new System.EventHandler(this.btnChongShui_CheckedChanged);
            // 
            // btnMovePanel
            // 
            this.btnMovePanel.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnMovePanel.Appearance.Options.UseFont = true;
            this.btnMovePanel.Appearance.Options.UseTextOptions = true;
            this.btnMovePanel.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.btnMovePanel.Image = ((System.Drawing.Image)(resources.GetObject("btnMovePanel.Image")));
            this.btnMovePanel.ImageIndex = 0;
            this.btnMovePanel.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
            this.btnMovePanel.Location = new System.Drawing.Point(859, 26);
            this.btnMovePanel.Name = "btnMovePanel";
            this.btnMovePanel.Size = new System.Drawing.Size(68, 89);
            this.btnMovePanel.TabIndex = 10;
            this.btnMovePanel.Text = "运动  面板";
            this.btnMovePanel.CheckedChanged += new System.EventHandler(this.btnMovePanel_CheckedChanged);
            // 
            // btnLight
            // 
            this.btnLight.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnLight.Appearance.Options.UseFont = true;
            this.btnLight.Appearance.Options.UseTextOptions = true;
            this.btnLight.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.btnLight.Image = ((System.Drawing.Image)(resources.GetObject("btnLight.Image")));
            this.btnLight.ImageIndex = 0;
            this.btnLight.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
            this.btnLight.Location = new System.Drawing.Point(5, 26);
            this.btnLight.Name = "btnLight";
            this.btnLight.Size = new System.Drawing.Size(68, 89);
            this.btnLight.TabIndex = 0;
            this.btnLight.Text = "工作灯";
            this.btnLight.CheckedChanged += new System.EventHandler(this.btnLight_CheckedChanged);
            // 
            // groupControl6
            // 
            this.groupControl6.Controls.Add(this.btnShutdown);
            this.groupControl6.Controls.Add(this.btnSet);
            this.groupControl6.Controls.Add(this.btnProgram);
            this.groupControl6.Controls.Add(this.btnManual);
            this.groupControl6.Controls.Add(this.btnHelper);
            this.groupControl6.Controls.Add(this.btnJiagong);
            this.groupControl6.Controls.Add(this.btnShuibang);
            this.groupControl6.Controls.Add(this.btnShineng);
            this.groupControl6.Location = new System.Drawing.Point(0, 653);
            this.groupControl6.Name = "groupControl6";
            this.groupControl6.Size = new System.Drawing.Size(1024, 92);
            this.groupControl6.TabIndex = 17;
            this.groupControl6.Text = "功能";
            // 
            // btnShutdown
            // 
            this.btnShutdown.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnShutdown.Appearance.Options.UseFont = true;
            this.btnShutdown.Appearance.Options.UseTextOptions = true;
            this.btnShutdown.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.btnShutdown.Image = ((System.Drawing.Image)(resources.GetObject("btnShutdown.Image")));
            this.btnShutdown.Location = new System.Drawing.Point(887, 28);
            this.btnShutdown.Name = "btnShutdown";
            this.btnShutdown.Size = new System.Drawing.Size(122, 54);
            this.btnShutdown.TabIndex = 7;
            this.btnShutdown.Text = "关机";
            this.btnShutdown.Click += new System.EventHandler(this.btnShutdown_Click);
            // 
            // btnSet
            // 
            this.btnSet.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnSet.Appearance.Options.UseFont = true;
            this.btnSet.Appearance.Options.UseTextOptions = true;
            this.btnSet.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.btnSet.Image = ((System.Drawing.Image)(resources.GetObject("btnSet.Image")));
            this.btnSet.Location = new System.Drawing.Point(762, 28);
            this.btnSet.Name = "btnSet";
            this.btnSet.Size = new System.Drawing.Size(122, 54);
            this.btnSet.TabIndex = 6;
            this.btnSet.Text = "设置";
            this.btnSet.Click += new System.EventHandler(this.btnSet_Click);
            // 
            // btnProgram
            // 
            this.btnProgram.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnProgram.Appearance.Options.UseFont = true;
            this.btnProgram.Appearance.Options.UseTextOptions = true;
            this.btnProgram.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.btnProgram.Image = ((System.Drawing.Image)(resources.GetObject("btnProgram.Image")));
            this.btnProgram.Location = new System.Drawing.Point(262, 28);
            this.btnProgram.Name = "btnProgram";
            this.btnProgram.Size = new System.Drawing.Size(122, 54);
            this.btnProgram.TabIndex = 2;
            this.btnProgram.Text = "程序";
            this.btnProgram.Click += new System.EventHandler(this.btnProgram_Click);
            // 
            // btnManual
            // 
            this.btnManual.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnManual.Appearance.Options.UseFont = true;
            this.btnManual.Appearance.Options.UseTextOptions = true;
            this.btnManual.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.btnManual.Image = ((System.Drawing.Image)(resources.GetObject("btnManual.Image")));
            this.btnManual.Location = new System.Drawing.Point(137, 28);
            this.btnManual.Name = "btnManual";
            this.btnManual.Size = new System.Drawing.Size(122, 54);
            this.btnManual.TabIndex = 1;
            this.btnManual.Text = "手动";
            this.btnManual.Click += new System.EventHandler(this.btnManual_Click);
            // 
            // btnHelper
            // 
            this.btnHelper.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnHelper.Appearance.Options.UseFont = true;
            this.btnHelper.Appearance.Options.UseTextOptions = true;
            this.btnHelper.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.btnHelper.Image = ((System.Drawing.Image)(resources.GetObject("btnHelper.Image")));
            this.btnHelper.Location = new System.Drawing.Point(12, 28);
            this.btnHelper.Name = "btnHelper";
            this.btnHelper.Size = new System.Drawing.Size(122, 54);
            this.btnHelper.TabIndex = 0;
            this.btnHelper.Text = "帮助";
            this.btnHelper.Click += new System.EventHandler(this.btnHelper_Click);
            // 
            // groupControl5
            // 
            this.groupControl5.Controls.Add(this.lbStopWarning);
            this.groupControl5.Controls.Add(this.btnNext);
            this.groupControl5.Controls.Add(this.btnStart);
            this.groupControl5.Controls.Add(this.btnReset);
            this.groupControl5.Controls.Add(this.btnStop);
            this.groupControl5.Location = new System.Drawing.Point(562, 264);
            this.groupControl5.Name = "groupControl5";
            this.groupControl5.Size = new System.Drawing.Size(210, 268);
            this.groupControl5.TabIndex = 16;
            this.groupControl5.Text = "运动控制";
            // 
            // lbStopWarning
            // 
            this.lbStopWarning.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lbStopWarning.Appearance.ForeColor = System.Drawing.Color.Red;
            this.lbStopWarning.Appearance.Options.UseFont = true;
            this.lbStopWarning.Appearance.Options.UseForeColor = true;
            this.lbStopWarning.Location = new System.Drawing.Point(16, 237);
            this.lbStopWarning.Name = "lbStopWarning";
            this.lbStopWarning.Size = new System.Drawing.Size(180, 24);
            this.lbStopWarning.TabIndex = 14;
            this.lbStopWarning.Text = "完成当前加工后暂停";
            this.lbStopWarning.Visible = false;
            // 
            // btnNext
            // 
            this.btnNext.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnNext.Appearance.Options.UseFont = true;
            this.btnNext.Appearance.Options.UseTextOptions = true;
            this.btnNext.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.btnNext.Image = ((System.Drawing.Image)(resources.GetObject("btnNext.Image")));
            this.btnNext.Location = new System.Drawing.Point(17, 183);
            this.btnNext.Name = "btnNext";
            this.btnNext.Size = new System.Drawing.Size(177, 49);
            this.btnNext.TabIndex = 1;
            this.btnNext.Text = "单步运行";
            this.btnNext.Click += new System.EventHandler(this.miNext_Click);
            // 
            // btnStart
            // 
            this.btnStart.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnStart.Appearance.Options.UseFont = true;
            this.btnStart.Image = ((System.Drawing.Image)(resources.GetObject("btnStart.Image")));
            this.btnStart.Location = new System.Drawing.Point(17, 26);
            this.btnStart.Name = "btnStart";
            this.btnStart.Size = new System.Drawing.Size(177, 49);
            this.btnStart.TabIndex = 0;
            this.btnStart.Text = "开始";
            this.btnStart.Click += new System.EventHandler(this.miStart_ItemClick);
            // 
            // btnStop
            // 
            this.btnStop.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnStop.Appearance.Options.UseFont = true;
            this.btnStop.Image = ((System.Drawing.Image)(resources.GetObject("btnStop.Image")));
            this.btnStop.Location = new System.Drawing.Point(17, 78);
            this.btnStop.Name = "btnStop";
            this.btnStop.Size = new System.Drawing.Size(177, 49);
            this.btnStop.TabIndex = 2;
            this.btnStop.Text = "暂停";
            this.btnStop.Click += new System.EventHandler(this.miStop_ItemClick);
            // 
            // groupControl8
            // 
            this.groupControl8.Controls.Add(this.spSafeHeight);
            this.groupControl8.Controls.Add(this.chkUseWSafeHeight);
            this.groupControl8.Location = new System.Drawing.Point(562, 2);
            this.groupControl8.Name = "groupControl8";
            this.groupControl8.Size = new System.Drawing.Size(210, 60);
            this.groupControl8.TabIndex = 16;
            this.groupControl8.Text = "安全高度";
            // 
            // spSafeHeight
            // 
            this.spSafeHeight.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource, "SafeHeight", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.spSafeHeight.EditValue = new decimal(new int[] {
            0,
            0,
            0,
            0});
            this.spSafeHeight.Location = new System.Drawing.Point(84, 26);
            this.spSafeHeight.Name = "spSafeHeight";
            this.spSafeHeight.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.spSafeHeight.Properties.Appearance.Options.UseFont = true;
            this.spSafeHeight.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject2, "", null, null, true)});
            this.spSafeHeight.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Default;
            this.spSafeHeight.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.None;
            this.spSafeHeight.Properties.MinValue = new decimal(new int[] {
            300,
            0,
            0,
            -2147483648});
            this.spSafeHeight.Size = new System.Drawing.Size(111, 26);
            this.spSafeHeight.TabIndex = 77;
            this.spSafeHeight.TabStop = false;
            // 
            // chkUseWSafeHeight
            // 
            this.chkUseWSafeHeight.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource, "UseSafeHeight", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.chkUseWSafeHeight.Location = new System.Drawing.Point(10, 28);
            this.chkUseWSafeHeight.Name = "chkUseWSafeHeight";
            this.chkUseWSafeHeight.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkUseWSafeHeight.Properties.Appearance.Options.UseFont = true;
            this.chkUseWSafeHeight.Properties.Caption = "W使用";
            this.chkUseWSafeHeight.Size = new System.Drawing.Size(68, 24);
            this.chkUseWSafeHeight.TabIndex = 11;
            // 
            // gcParam
            // 
            this.gcParam.DataSource = this.bindingSourceParam;
            this.gcParam.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gcParam.Location = new System.Drawing.Point(0, 0);
            this.gcParam.MainView = this.gridViewParam;
            this.gcParam.Name = "gcParam";
            this.gcParam.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemTextEdit1,
            this.repositoryItemXiuzhen,
            this.repositoryItemDianya,
            this.repositoryItemMaikuan,
            this.repositoryItemMainjian,
            this.repositoryItemDianliu,
            this.repositoryItemDianrong,
            this.repositoryItemSudu,
            this.repositoryItemThrowMode});
            this.gcParam.Size = new System.Drawing.Size(554, 119);
            this.gcParam.TabIndex = 2;
            this.gcParam.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridViewParam});
            // 
            // gridViewParam
            // 
            this.gridViewParam.ColumnPanelRowHeight = 30;
            this.gridViewParam.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.gridColumn1,
            this.gridColumn2,
            this.gridColumn3,
            this.gridColumn4,
            this.gridColumn7,
            this.gridColumn5,
            this.gridColumn6,
            this.gridColumn8,
            this.gridColumn9,
            this.gridColumn10,
            this.gridColumn11,
            this.gridColumn19,
            this.gridColumn21});
            this.gridViewParam.GridControl = this.gcParam;
            this.gridViewParam.Name = "gridViewParam";
            this.gridViewParam.OptionsView.ShowGroupPanel = false;
            this.gridViewParam.OptionsView.ShowIndicator = false;
            this.gridViewParam.CustomDrawCell += new DevExpress.XtraGrid.Views.Base.RowCellCustomDrawEventHandler(this.gridViewParam_CustomDrawCell);
            this.gridViewParam.CustomRowCellEditForEditing += new DevExpress.XtraGrid.Views.Grid.CustomRowCellEditEventHandler(this.gridViewParam_CustomRowCellEditForEditing);
            this.gridViewParam.CellValueChanging += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridViewParam_CellValueChanging);
            // 
            // gridColumn1
            // 
            this.gridColumn1.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn1.AppearanceHeader.TextOptions.Trimming = DevExpress.Utils.Trimming.None;
            this.gridColumn1.AppearanceHeader.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
            this.gridColumn1.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.gridColumn1.Caption = "#";
            this.gridColumn1.FieldName = "IsUse";
            this.gridColumn1.Name = "gridColumn1";
            this.gridColumn1.OptionsColumn.AllowMove = false;
            this.gridColumn1.OptionsColumn.AllowSize = false;
            this.gridColumn1.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn1.OptionsFilter.AllowFilter = false;
            this.gridColumn1.Width = 22;
            // 
            // gridColumn2
            // 
            this.gridColumn2.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn2.AppearanceHeader.TextOptions.Trimming = DevExpress.Utils.Trimming.None;
            this.gridColumn2.AppearanceHeader.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
            this.gridColumn2.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.gridColumn2.Caption = "脉宽";
            this.gridColumn2.ColumnEdit = this.repositoryItemMaikuan;
            this.gridColumn2.FieldName = "TOn";
            this.gridColumn2.Name = "gridColumn2";
            this.gridColumn2.OptionsColumn.AllowMove = false;
            this.gridColumn2.OptionsColumn.AllowSize = false;
            this.gridColumn2.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn2.OptionsFilter.AllowFilter = false;
            this.gridColumn2.Visible = true;
            this.gridColumn2.VisibleIndex = 2;
            this.gridColumn2.Width = 44;
            // 
            // repositoryItemMaikuan
            // 
            this.repositoryItemMaikuan.AutoHeight = false;
            this.repositoryItemMaikuan.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject3, "", null, null, true)});
            this.repositoryItemMaikuan.IsFloatValue = false;
            this.repositoryItemMaikuan.Mask.EditMask = "N00";
            this.repositoryItemMaikuan.MaxValue = new decimal(new int[] {
            9,
            0,
            0,
            0});
            this.repositoryItemMaikuan.Name = "repositoryItemMaikuan";
            this.repositoryItemMaikuan.Tag = "脉宽";
            this.repositoryItemMaikuan.DoubleClick += new System.EventHandler(this.repositoryItem_DoubleClick);
            // 
            // gridColumn3
            // 
            this.gridColumn3.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn3.AppearanceHeader.TextOptions.Trimming = DevExpress.Utils.Trimming.None;
            this.gridColumn3.AppearanceHeader.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
            this.gridColumn3.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.gridColumn3.Caption = "脉间";
            this.gridColumn3.ColumnEdit = this.repositoryItemMainjian;
            this.gridColumn3.FieldName = "TOff";
            this.gridColumn3.Name = "gridColumn3";
            this.gridColumn3.OptionsColumn.AllowMove = false;
            this.gridColumn3.OptionsColumn.AllowSize = false;
            this.gridColumn3.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn3.OptionsFilter.AllowFilter = false;
            this.gridColumn3.Visible = true;
            this.gridColumn3.VisibleIndex = 3;
            this.gridColumn3.Width = 42;
            // 
            // repositoryItemMainjian
            // 
            this.repositoryItemMainjian.AutoHeight = false;
            this.repositoryItemMainjian.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject4, "", null, null, true)});
            this.repositoryItemMainjian.IsFloatValue = false;
            this.repositoryItemMainjian.Mask.EditMask = "N00";
            this.repositoryItemMainjian.MaxValue = new decimal(new int[] {
            9,
            0,
            0,
            0});
            this.repositoryItemMainjian.Name = "repositoryItemMainjian";
            this.repositoryItemMainjian.Tag = "脉间";
            this.repositoryItemMainjian.DoubleClick += new System.EventHandler(this.repositoryItem_DoubleClick);
            // 
            // gridColumn4
            // 
            this.gridColumn4.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn4.AppearanceHeader.TextOptions.Trimming = DevExpress.Utils.Trimming.None;
            this.gridColumn4.AppearanceHeader.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
            this.gridColumn4.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.gridColumn4.Caption = "电流";
            this.gridColumn4.ColumnEdit = this.repositoryItemDianliu;
            this.gridColumn4.FieldName = "I";
            this.gridColumn4.Name = "gridColumn4";
            this.gridColumn4.OptionsColumn.AllowMove = false;
            this.gridColumn4.OptionsColumn.AllowSize = false;
            this.gridColumn4.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn4.OptionsFilter.AllowFilter = false;
            this.gridColumn4.Visible = true;
            this.gridColumn4.VisibleIndex = 4;
            this.gridColumn4.Width = 40;
            // 
            // repositoryItemDianliu
            // 
            this.repositoryItemDianliu.AutoHeight = false;
            this.repositoryItemDianliu.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject5, "", null, null, true)});
            this.repositoryItemDianliu.IsFloatValue = false;
            this.repositoryItemDianliu.Mask.EditMask = "N00";
            this.repositoryItemDianliu.MaxValue = new decimal(new int[] {
            9,
            0,
            0,
            0});
            this.repositoryItemDianliu.Name = "repositoryItemDianliu";
            this.repositoryItemDianliu.Tag = "电流";
            this.repositoryItemDianliu.DoubleClick += new System.EventHandler(this.repositoryItem_DoubleClick);
            // 
            // gridColumn7
            // 
            this.gridColumn7.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn7.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn7.AppearanceHeader.TextOptions.Trimming = DevExpress.Utils.Trimming.None;
            this.gridColumn7.AppearanceHeader.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
            this.gridColumn7.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.gridColumn7.Caption = "电容";
            this.gridColumn7.ColumnEdit = this.repositoryItemDianrong;
            this.gridColumn7.FieldName = "I2";
            this.gridColumn7.Name = "gridColumn7";
            this.gridColumn7.OptionsColumn.AllowMove = false;
            this.gridColumn7.OptionsColumn.AllowSize = false;
            this.gridColumn7.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn7.OptionsFilter.AllowFilter = false;
            this.gridColumn7.Visible = true;
            this.gridColumn7.VisibleIndex = 5;
            this.gridColumn7.Width = 42;
            // 
            // repositoryItemDianrong
            // 
            this.repositoryItemDianrong.AutoHeight = false;
            this.repositoryItemDianrong.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject6, "", null, null, true)});
            this.repositoryItemDianrong.IsFloatValue = false;
            this.repositoryItemDianrong.Mask.EditMask = "N00";
            this.repositoryItemDianrong.MaxValue = new decimal(new int[] {
            15,
            0,
            0,
            0});
            this.repositoryItemDianrong.Name = "repositoryItemDianrong";
            this.repositoryItemDianrong.Tag = "电容";
            this.repositoryItemDianrong.DoubleClick += new System.EventHandler(this.repositoryItem_DoubleClick);
            // 
            // gridColumn5
            // 
            this.gridColumn5.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn5.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn5.AppearanceHeader.TextOptions.Trimming = DevExpress.Utils.Trimming.None;
            this.gridColumn5.AppearanceHeader.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
            this.gridColumn5.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.gridColumn5.Caption = "深度A";
            this.gridColumn5.ColumnEdit = this.repositoryItemTextEdit1;
            this.gridColumn5.FieldName = "Depth";
            this.gridColumn5.Name = "gridColumn5";
            this.gridColumn5.OptionsColumn.AllowMove = false;
            this.gridColumn5.OptionsColumn.AllowSize = false;
            this.gridColumn5.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn5.OptionsFilter.AllowFilter = false;
            this.gridColumn5.Visible = true;
            this.gridColumn5.VisibleIndex = 0;
            this.gridColumn5.Width = 52;
            // 
            // repositoryItemTextEdit1
            // 
            this.repositoryItemTextEdit1.AutoHeight = false;
            this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
            // 
            // gridColumn6
            // 
            this.gridColumn6.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn6.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn6.AppearanceHeader.TextOptions.Trimming = DevExpress.Utils.Trimming.None;
            this.gridColumn6.AppearanceHeader.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
            this.gridColumn6.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.gridColumn6.Caption = "修整";
            this.gridColumn6.ColumnEdit = this.repositoryItemXiuzhen;
            this.gridColumn6.FieldName = "StopTime";
            this.gridColumn6.Name = "gridColumn6";
            this.gridColumn6.OptionsColumn.AllowMove = false;
            this.gridColumn6.OptionsColumn.AllowSize = false;
            this.gridColumn6.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn6.OptionsFilter.AllowFilter = false;
            this.gridColumn6.Visible = true;
            this.gridColumn6.VisibleIndex = 6;
            this.gridColumn6.Width = 45;
            // 
            // repositoryItemXiuzhen
            // 
            this.repositoryItemXiuzhen.AutoHeight = false;
            this.repositoryItemXiuzhen.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject7, "", null, null, true)});
            this.repositoryItemXiuzhen.IsFloatValue = false;
            this.repositoryItemXiuzhen.Mask.EditMask = "N00";
            this.repositoryItemXiuzhen.MaxValue = new decimal(new int[] {
            100,
            0,
            0,
            0});
            this.repositoryItemXiuzhen.Name = "repositoryItemXiuzhen";
            this.repositoryItemXiuzhen.Tag = "修整";
            this.repositoryItemXiuzhen.DoubleClick += new System.EventHandler(this.repositoryItem_DoubleClick);
            // 
            // gridColumn8
            // 
            this.gridColumn8.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn8.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn8.AppearanceHeader.TextOptions.Trimming = DevExpress.Utils.Trimming.None;
            this.gridColumn8.AppearanceHeader.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
            this.gridColumn8.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.gridColumn8.Caption = "旋转";
            this.gridColumn8.FieldName = "Rotate";
            this.gridColumn8.Name = "gridColumn8";
            this.gridColumn8.OptionsColumn.AllowMove = false;
            this.gridColumn8.OptionsColumn.AllowSize = false;
            this.gridColumn8.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn8.OptionsFilter.AllowFilter = false;
            this.gridColumn8.Visible = true;
            this.gridColumn8.VisibleIndex = 8;
            this.gridColumn8.Width = 46;
            // 
            // gridColumn9
            // 
            this.gridColumn9.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn9.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn9.AppearanceHeader.TextOptions.Trimming = DevExpress.Utils.Trimming.None;
            this.gridColumn9.AppearanceHeader.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
            this.gridColumn9.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.gridColumn9.Caption = "反极性";
            this.gridColumn9.FieldName = "Fanjixing";
            this.gridColumn9.Name = "gridColumn9";
            this.gridColumn9.OptionsColumn.AllowMove = false;
            this.gridColumn9.OptionsColumn.AllowSize = false;
            this.gridColumn9.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn9.OptionsFilter.AllowFilter = false;
            this.gridColumn9.Visible = true;
            this.gridColumn9.VisibleIndex = 9;
            this.gridColumn9.Width = 57;
            // 
            // gridColumn10
            // 
            this.gridColumn10.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn10.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn10.AppearanceHeader.TextOptions.Trimming = DevExpress.Utils.Trimming.None;
            this.gridColumn10.AppearanceHeader.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
            this.gridColumn10.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.gridColumn10.Caption = "速度";
            this.gridColumn10.ColumnEdit = this.repositoryItemSudu;
            this.gridColumn10.FieldName = "Speed";
            this.gridColumn10.Name = "gridColumn10";
            this.gridColumn10.OptionsColumn.AllowMove = false;
            this.gridColumn10.OptionsColumn.AllowSize = false;
            this.gridColumn10.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn10.OptionsFilter.AllowFilter = false;
            this.gridColumn10.Width = 49;
            // 
            // repositoryItemSudu
            // 
            this.repositoryItemSudu.AutoHeight = false;
            this.repositoryItemSudu.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.repositoryItemSudu.MaxValue = new decimal(new int[] {
            15,
            0,
            0,
            0});
            this.repositoryItemSudu.Name = "repositoryItemSudu";
            this.repositoryItemSudu.Tag = "速度";
            this.repositoryItemSudu.DoubleClick += new System.EventHandler(this.repositoryItem_DoubleClick);
            // 
            // gridColumn11
            // 
            this.gridColumn11.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn11.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn11.AppearanceHeader.TextOptions.Trimming = DevExpress.Utils.Trimming.None;
            this.gridColumn11.AppearanceHeader.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
            this.gridColumn11.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.gridColumn11.Caption = "深度B";
            this.gridColumn11.ColumnEdit = this.repositoryItemTextEdit1;
            this.gridColumn11.FieldName = "Depth2";
            this.gridColumn11.Name = "gridColumn11";
            this.gridColumn11.OptionsColumn.AllowMove = false;
            this.gridColumn11.OptionsColumn.AllowSize = false;
            this.gridColumn11.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn11.OptionsFilter.AllowFilter = false;
            this.gridColumn11.Visible = true;
            this.gridColumn11.VisibleIndex = 1;
            this.gridColumn11.Width = 57;
            // 
            // gridColumn19
            // 
            this.gridColumn19.Caption = "电压";
            this.gridColumn19.ColumnEdit = this.repositoryItemDianya;
            this.gridColumn19.FieldName = "V";
            this.gridColumn19.Name = "gridColumn19";
            this.gridColumn19.OptionsColumn.AllowMove = false;
            this.gridColumn19.OptionsColumn.AllowSize = false;
            this.gridColumn19.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn19.OptionsFilter.AllowFilter = false;
            this.gridColumn19.Visible = true;
            this.gridColumn19.VisibleIndex = 7;
            this.gridColumn19.Width = 47;
            // 
            // repositoryItemDianya
            // 
            this.repositoryItemDianya.AutoHeight = false;
            this.repositoryItemDianya.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject8, "", null, null, true)});
            this.repositoryItemDianya.IsFloatValue = false;
            this.repositoryItemDianya.Mask.EditMask = "N00";
            this.repositoryItemDianya.MaxValue = new decimal(new int[] {
            80,
            0,
            0,
            0});
            this.repositoryItemDianya.MinValue = new decimal(new int[] {
            5,
            0,
            0,
            0});
            this.repositoryItemDianya.Name = "repositoryItemDianya";
            this.repositoryItemDianya.Tag = "电压";
            this.repositoryItemDianya.DoubleClick += new System.EventHandler(this.repositoryItem_DoubleClick);
            // 
            // gridColumn21
            // 
            this.gridColumn21.Caption = "穿透模式";
            this.gridColumn21.ColumnEdit = this.repositoryItemThrowMode;
            this.gridColumn21.FieldName = "ThrowMode";
            this.gridColumn21.Name = "gridColumn21";
            this.gridColumn21.OptionsColumn.AllowMove = false;
            this.gridColumn21.OptionsColumn.AllowSize = false;
            this.gridColumn21.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn21.OptionsFilter.AllowFilter = false;
            this.gridColumn21.Visible = true;
            this.gridColumn21.VisibleIndex = 10;
            this.gridColumn21.Width = 60;
            // 
            // repositoryItemThrowMode
            // 
            this.repositoryItemThrowMode.AutoHeight = false;
            this.repositoryItemThrowMode.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemThrowMode.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
            new DevExpress.XtraEditors.Controls.LookUpColumnInfo("ID", "ID", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default),
            new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name", "值")});
            this.repositoryItemThrowMode.DisplayMember = "Name";
            this.repositoryItemThrowMode.Name = "repositoryItemThrowMode";
            this.repositoryItemThrowMode.ShowFooter = false;
            this.repositoryItemThrowMode.ShowHeader = false;
            this.repositoryItemThrowMode.ShowLines = false;
            this.repositoryItemThrowMode.ValueMember = "ID";
            // 
            // btnMin
            // 
            this.btnMin.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.btnMin.BackColor = System.Drawing.Color.White;
            this.btnMin.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.btnMin.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.btnMin.Image = ((System.Drawing.Image)(resources.GetObject("btnMin.Image")));
            this.btnMin.Location = new System.Drawing.Point(930, 0);
            this.btnMin.Name = "btnMin";
            this.btnMin.Size = new System.Drawing.Size(46, 27);
            this.btnMin.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
            this.btnMin.TabIndex = 13;
            this.btnMin.TabStop = false;
            this.btnMin.Text = "closeButton1";
            this.btnMin.Click += new System.EventHandler(this.btnMin_Click);
            // 
            // digitalGauge73
            // 
            this.digitalGauge73.AppearanceOff.ContentBrush = new DevExpress.XtraGauges.Core.Drawing.SolidBrushObject("Color:#00FFFFFF");
            this.digitalGauge73.AppearanceOn.ContentBrush = new DevExpress.XtraGauges.Core.Drawing.SolidBrushObject("Color:Black");
            this.digitalGauge73.Bounds = new System.Drawing.Rectangle(35, 407, 125, 34);
            this.digitalGauge73.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bindingSource, "LogPosZ", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged, null, "0.000"));
            this.digitalGauge73.DigitCount = 8;
            this.digitalGauge73.Name = "digitalGauge9";
            this.digitalGauge73.Text = "00.000";
            // 
            // digitalGauge74
            // 
            this.digitalGauge74.AppearanceOff.ContentBrush = new DevExpress.XtraGauges.Core.Drawing.SolidBrushObject("Color:#00FFFFFF");
            this.digitalGauge74.AppearanceOn.ContentBrush = new DevExpress.XtraGauges.Core.Drawing.SolidBrushObject("Color:Black");
            this.digitalGauge74.Bounds = new System.Drawing.Rectangle(38, 504, 125, 34);
            this.digitalGauge74.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bindingSource, "LogPosZ", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged, null, "0.000"));
            this.digitalGauge74.DigitCount = 8;
            this.digitalGauge74.Name = "digitalGauge9";
            this.digitalGauge74.Text = "00.000";
            // 
            // timerCurrent
            // 
            this.timerCurrent.Interval = 1000;
            this.timerCurrent.Tick += new System.EventHandler(this.timerCurrent_Tick);
            // 
            // timerTotal
            // 
            this.timerTotal.Enabled = true;
            this.timerTotal.Interval = 1000;
            this.timerTotal.Tick += new System.EventHandler(this.timerTotal_Tick);
            // 
            // digitalGauge10
            // 
            this.digitalGauge10.AppearanceOff.ContentBrush = new DevExpress.XtraGauges.Core.Drawing.SolidBrushObject("Color:#00FFFFFF");
            this.digitalGauge10.AppearanceOn.ContentBrush = new DevExpress.XtraGauges.Core.Drawing.SolidBrushObject("Color:Black");
            this.digitalGauge10.Bounds = new System.Drawing.Rectangle(-33, 515, 196, 50);
            this.digitalGauge10.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bindingSource, "ActPosZ", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged, null, "0.000"));
            this.digitalGauge10.DigitCount = 8;
            this.digitalGauge10.Name = "digitalGauge10";
            this.digitalGauge10.Text = "00.000";
            // 
            // digitalGauge9
            // 
            this.digitalGauge9.AppearanceOff.ContentBrush = new DevExpress.XtraGauges.Core.Drawing.SolidBrushObject("Color:#00FFFFFF");
            this.digitalGauge9.AppearanceOn.ContentBrush = new DevExpress.XtraGauges.Core.Drawing.SolidBrushObject("Color:Black");
            this.digitalGauge9.Bounds = new System.Drawing.Rectangle(33, 485, 125, 34);
            this.digitalGauge9.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bindingSource, "LogPosZ", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged, null, "0.000"));
            this.digitalGauge9.DigitCount = 8;
            this.digitalGauge9.Name = "digitalGauge9";
            this.digitalGauge9.Text = "00.000";
            // 
            // timerWheel
            // 
            this.timerWheel.Tick += new System.EventHandler(this.timerWheel_Tick);
            // 
            // pnlProgram
            // 
            this.pnlProgram.Controls.Add(this.groupControl8);
            this.pnlProgram.Controls.Add(this.lbJiagongWarning);
            this.pnlProgram.Controls.Add(this.tabE);
            this.pnlProgram.Controls.Add(this.btnAddParam);
            this.pnlProgram.Controls.Add(this.btnDeleteParam);
            this.pnlProgram.Controls.Add(this.groupControl5);
            this.pnlProgram.Controls.Add(this.gcFileName);
            this.pnlProgram.Controls.Add(this.groupControl7);
            this.pnlProgram.Controls.Add(this.btnLoadParam);
            this.pnlProgram.Location = new System.Drawing.Point(251, 119);
            this.pnlProgram.Name = "pnlProgram";
            this.pnlProgram.Size = new System.Drawing.Size(771, 532);
            this.pnlProgram.TabIndex = 25;
            // 
            // lbJiagongWarning
            // 
            this.lbJiagongWarning.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.lbJiagongWarning.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lbJiagongWarning.Appearance.ForeColor = System.Drawing.Color.Black;
            this.lbJiagongWarning.Appearance.Options.UseFont = true;
            this.lbJiagongWarning.Appearance.Options.UseForeColor = true;
            this.lbJiagongWarning.Location = new System.Drawing.Point(282, 499);
            this.lbJiagongWarning.Name = "lbJiagongWarning";
            this.lbJiagongWarning.Size = new System.Drawing.Size(135, 16);
            this.lbJiagongWarning.TabIndex = 20;
            this.lbJiagongWarning.Text = "当前使用加工参数:";
            // 
            // tabE
            // 
            this.tabE.Appearance.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.tabE.Appearance.Options.UseFont = true;
            this.tabE.Location = new System.Drawing.Point(0, 338);
            this.tabE.Name = "tabE";
            this.tabE.SelectedTabPage = this.xpE1;
            this.tabE.Size = new System.Drawing.Size(562, 160);
            this.tabE.TabIndex = 19;
            this.tabE.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
            this.xtraTabPage8,
            this.xtraTabPage7,
            this.xpE1,
            this.xpE2,
            this.xpE3,
            this.xpE4,
            this.xpE5,
            this.xpE6,
            this.xpE7,
            this.xpE8,
            this.xpE9,
            this.xpE10,
            this.xpE11,
            this.xpE12,
            this.xpE13,
            this.xpE14,
            this.xpE15,
            this.xpE16,
            this.xpE17,
            this.xpE18,
            this.xpE19,
            this.xpE20,
            this.xpE21,
            this.xpE22,
            this.xpE23,
            this.xpE24,
            this.xpE25,
            this.xpE26,
            this.xpE27,
            this.xpE28,
            this.xpE29,
            this.xpE30});
            this.tabE.SelectedPageChanged += new DevExpress.XtraTab.TabPageChangedEventHandler(this.tabE_SelectedPageChanged);
            // 
            // xpE1
            // 
            this.xpE1.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.xpE1.Appearance.Header.Options.UseFont = true;
            this.xpE1.Controls.Add(this.gcParam);
            this.xpE1.Name = "xpE1";
            this.xpE1.Size = new System.Drawing.Size(554, 119);
            this.xpE1.Tag = "E1";
            this.xpE1.Text = "E1";
            // 
            // xtraTabPage8
            // 
            this.xtraTabPage8.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.xtraTabPage8.Appearance.Header.Options.UseFont = true;
            this.xtraTabPage8.Controls.Add(this.labelControl82);
            this.xtraTabPage8.Controls.Add(this.txtThrowLeft2);
            this.xtraTabPage8.Controls.Add(this.labelControl83);
            this.xtraTabPage8.Controls.Add(this.txtThrowStartHeight2);
            this.xtraTabPage8.Controls.Add(this.labelControl84);
            this.xtraTabPage8.Controls.Add(this.cmbThrowResponse2);
            this.xtraTabPage8.Controls.Add(this.labelControl45);
            this.xtraTabPage8.Controls.Add(this.txtThrowLeft);
            this.xtraTabPage8.Controls.Add(this.labelControl44);
            this.xtraTabPage8.Controls.Add(this.txtThrowStartHeight);
            this.xtraTabPage8.Controls.Add(this.rgThrowMode);
            this.xtraTabPage8.Controls.Add(this.labelControl37);
            this.xtraTabPage8.Controls.Add(this.cmbThrowResponse);
            this.xtraTabPage8.Name = "xtraTabPage8";
            this.xtraTabPage8.Size = new System.Drawing.Size(554, 119);
            this.xtraTabPage8.Tag = "Throw";
            this.xtraTabPage8.Text = "穿透";
            // 
            // labelControl82
            // 
            this.labelControl82.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelControl82.Appearance.Options.UseFont = true;
            this.labelControl82.Location = new System.Drawing.Point(283, 84);
            this.labelControl82.Name = "labelControl82";
            this.labelControl82.Size = new System.Drawing.Size(97, 16);
            this.labelControl82.TabIndex = 87;
            this.labelControl82.Text = "穿透2灵敏度:";
            // 
            // txtThrowLeft2
            // 
            this.txtThrowLeft2.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSourceThrowSet, "ThrowLeft2", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.txtThrowLeft2.EditValue = new decimal(new int[] {
            0,
            0,
            0,
            0});
            this.txtThrowLeft2.Location = new System.Drawing.Point(386, 58);
            this.txtThrowLeft2.Name = "txtThrowLeft2";
            this.txtThrowLeft2.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtThrowLeft2.Properties.Appearance.Options.UseFont = true;
            this.txtThrowLeft2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject9, "", null, null, true)});
            this.txtThrowLeft2.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Default;
            this.txtThrowLeft2.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.None;
            this.txtThrowLeft2.Properties.MinValue = new decimal(new int[] {
            10,
            0,
            0,
            -2147483648});
            this.txtThrowLeft2.Size = new System.Drawing.Size(111, 22);
            this.txtThrowLeft2.TabIndex = 5;
            this.txtThrowLeft2.TabStop = false;
            this.txtThrowLeft2.EditValueChanged += new System.EventHandler(this.txtThrowLeft2_EditValueChanged);
            // 
            // labelControl83
            // 
            this.labelControl83.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelControl83.Appearance.Options.UseFont = true;
            this.labelControl83.Location = new System.Drawing.Point(283, 61);
            this.labelControl83.Name = "labelControl83";
            this.labelControl83.Size = new System.Drawing.Size(82, 16);
            this.labelControl83.TabIndex = 85;
            this.labelControl83.Text = "穿透2余量:";
            // 
            // txtThrowStartHeight2
            // 
            this.txtThrowStartHeight2.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSourceThrowSet, "ThrowStartHeight2", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.txtThrowStartHeight2.EditValue = new decimal(new int[] {
            0,
            0,
            0,
            0});
            this.txtThrowStartHeight2.Location = new System.Drawing.Point(386, 34);
            this.txtThrowStartHeight2.Name = "txtThrowStartHeight2";
            this.txtThrowStartHeight2.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtThrowStartHeight2.Properties.Appearance.Options.UseFont = true;
            this.txtThrowStartHeight2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject10, "", null, null, true)});
            this.txtThrowStartHeight2.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Default;
            this.txtThrowStartHeight2.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.None;
            this.txtThrowStartHeight2.Properties.MinValue = new decimal(new int[] {
            20,
            0,
            0,
            -2147483648});
            this.txtThrowStartHeight2.Size = new System.Drawing.Size(111, 22);
            this.txtThrowStartHeight2.TabIndex = 4;
            this.txtThrowStartHeight2.TabStop = false;
            this.txtThrowStartHeight2.EditValueChanged += new System.EventHandler(this.txtThrowStartHeight2_EditValueChanged);
            // 
            // labelControl84
            // 
            this.labelControl84.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelControl84.Appearance.Options.UseFont = true;
            this.labelControl84.Location = new System.Drawing.Point(281, 37);
            this.labelControl84.Name = "labelControl84";
            this.labelControl84.Size = new System.Drawing.Size(112, 16);
            this.labelControl84.TabIndex = 83;
            this.labelControl84.Text = "穿透2起始深度:";
            // 
            // cmbThrowResponse2
            // 
            this.cmbThrowResponse2.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSourceThrowSet, "ThrowResponse2", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.cmbThrowResponse2.EditValue = new decimal(new int[] {
            0,
            0,
            0,
            0});
            this.cmbThrowResponse2.Location = new System.Drawing.Point(386, 82);
            this.cmbThrowResponse2.Name = "cmbThrowResponse2";
            this.cmbThrowResponse2.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmbThrowResponse2.Properties.Appearance.Options.UseFont = true;
            this.cmbThrowResponse2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.cmbThrowResponse2.Properties.Items.AddRange(new object[] {
            "1",
            "2",
            "3",
            "4",
            "5",
            "6",
            "7",
            "8",
            "9"});
            this.cmbThrowResponse2.Size = new System.Drawing.Size(111, 22);
            this.cmbThrowResponse2.TabIndex = 6;
            this.cmbThrowResponse2.TabStop = false;
            this.cmbThrowResponse2.EditValueChanged += new System.EventHandler(this.cmbThrowResponse2_EditValueChanged);
            // 
            // labelControl45
            // 
            this.labelControl45.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelControl45.Appearance.Options.UseFont = true;
            this.labelControl45.Location = new System.Drawing.Point(11, 84);
            this.labelControl45.Name = "labelControl45";
            this.labelControl45.Size = new System.Drawing.Size(97, 16);
            this.labelControl45.TabIndex = 81;
            this.labelControl45.Text = "穿透1灵敏度:";
            // 
            // txtThrowLeft
            // 
            this.txtThrowLeft.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSourceThrowSet, "ThrowLeft", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.txtThrowLeft.EditValue = new decimal(new int[] {
            0,
            0,
            0,
            0});
            this.txtThrowLeft.Location = new System.Drawing.Point(114, 58);
            this.txtThrowLeft.Name = "txtThrowLeft";
            this.txtThrowLeft.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtThrowLeft.Properties.Appearance.Options.UseFont = true;
            this.txtThrowLeft.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject11, "", null, null, true)});
            this.txtThrowLeft.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Default;
            this.txtThrowLeft.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.None;
            this.txtThrowLeft.Properties.MinValue = new decimal(new int[] {
            10,
            0,
            0,
            -2147483648});
            this.txtThrowLeft.Size = new System.Drawing.Size(111, 22);
            this.txtThrowLeft.TabIndex = 2;
            this.txtThrowLeft.TabStop = false;
            this.txtThrowLeft.EditValueChanged += new System.EventHandler(this.txtThrowLeft_EditValueChanged);
            // 
            // labelControl44
            // 
            this.labelControl44.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelControl44.Appearance.Options.UseFont = true;
            this.labelControl44.Location = new System.Drawing.Point(11, 61);
            this.labelControl44.Name = "labelControl44";
            this.labelControl44.Size = new System.Drawing.Size(82, 16);
            this.labelControl44.TabIndex = 79;
            this.labelControl44.Text = "穿透1余量:";
            // 
            // txtThrowStartHeight
            // 
            this.txtThrowStartHeight.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSourceThrowSet, "ThrowStartHeight", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.txtThrowStartHeight.EditValue = new decimal(new int[] {
            0,
            0,
            0,
            0});
            this.txtThrowStartHeight.Location = new System.Drawing.Point(114, 34);
            this.txtThrowStartHeight.Name = "txtThrowStartHeight";
            this.txtThrowStartHeight.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtThrowStartHeight.Properties.Appearance.Options.UseFont = true;
            this.txtThrowStartHeight.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject12, "", null, null, true)});
            this.txtThrowStartHeight.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Default;
            this.txtThrowStartHeight.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.None;
            this.txtThrowStartHeight.Properties.MinValue = new decimal(new int[] {
            20,
            0,
            0,
            -2147483648});
            this.txtThrowStartHeight.Size = new System.Drawing.Size(111, 22);
            this.txtThrowStartHeight.TabIndex = 1;
            this.txtThrowStartHeight.TabStop = false;
            this.txtThrowStartHeight.EditValueChanged += new System.EventHandler(this.txtThrowStartHeight_EditValueChanged);
            // 
            // rgThrowMode
            // 
            this.rgThrowMode.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSourceThrowSet, "ThrowMode", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.rgThrowMode.Location = new System.Drawing.Point(7, 4);
            this.rgThrowMode.MenuManager = this.barManager;
            this.rgThrowMode.Name = "rgThrowMode";
            this.rgThrowMode.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
            this.rgThrowMode.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.rgThrowMode.Properties.Appearance.Options.UseBackColor = true;
            this.rgThrowMode.Properties.Appearance.Options.UseFont = true;
            this.rgThrowMode.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.rgThrowMode.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
            new DevExpress.XtraEditors.Controls.RadioGroupItem("0", "不使用穿透"),
            new DevExpress.XtraEditors.Controls.RadioGroupItem("1", "穿透模式1"),
            new DevExpress.XtraEditors.Controls.RadioGroupItem("2", "穿透模式2")});
            this.rgThrowMode.Size = new System.Drawing.Size(542, 27);
            this.rgThrowMode.TabIndex = 0;
            this.rgThrowMode.Visible = false;
            this.rgThrowMode.EditValueChanged += new System.EventHandler(this.rgThrowMode_EditValueChanged);
            // 
            // labelControl37
            // 
            this.labelControl37.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelControl37.Appearance.Options.UseFont = true;
            this.labelControl37.Location = new System.Drawing.Point(9, 37);
            this.labelControl37.Name = "labelControl37";
            this.labelControl37.Size = new System.Drawing.Size(112, 16);
            this.labelControl37.TabIndex = 16;
            this.labelControl37.Text = "穿透1起始深度:";
            // 
            // cmbThrowResponse
            // 
            this.cmbThrowResponse.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSourceThrowSet, "ThrowResponse", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.cmbThrowResponse.EditValue = new decimal(new int[] {
            0,
            0,
            0,
            0});
            this.cmbThrowResponse.Location = new System.Drawing.Point(114, 82);
            this.cmbThrowResponse.Name = "cmbThrowResponse";
            this.cmbThrowResponse.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmbThrowResponse.Properties.Appearance.Options.UseFont = true;
            this.cmbThrowResponse.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.cmbThrowResponse.Properties.Items.AddRange(new object[] {
            "1",
            "2",
            "3",
            "4",
            "5",
            "6",
            "7",
            "8",
            "9"});
            this.cmbThrowResponse.Size = new System.Drawing.Size(111, 22);
            this.cmbThrowResponse.TabIndex = 3;
            this.cmbThrowResponse.TabStop = false;
            this.cmbThrowResponse.EditValueChanged += new System.EventHandler(this.cmbThrowResponse_EditValueChanged);
            // 
            // xtraTabPage7
            // 
            this.xtraTabPage7.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.xtraTabPage7.Appearance.Header.Options.UseFont = true;
            this.xtraTabPage7.Name = "xtraTabPage7";
            this.xtraTabPage7.Size = new System.Drawing.Size(554, 119);
            this.xtraTabPage7.Tag = "手动";
            this.xtraTabPage7.Text = "手动";
            // 
            // xpE2
            // 
            this.xpE2.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.xpE2.Appearance.Header.Options.UseFont = true;
            this.xpE2.Name = "xpE2";
            this.xpE2.Size = new System.Drawing.Size(554, 119);
            this.xpE2.Tag = "E2";
            this.xpE2.Text = "E2";
            // 
            // xpE3
            // 
            this.xpE3.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.xpE3.Appearance.Header.Options.UseFont = true;
            this.xpE3.Name = "xpE3";
            this.xpE3.Size = new System.Drawing.Size(554, 119);
            this.xpE3.Tag = "E3";
            this.xpE3.Text = "E3";
            // 
            // xpE4
            // 
            this.xpE4.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.xpE4.Appearance.Header.Options.UseFont = true;
            this.xpE4.Name = "xpE4";
            this.xpE4.Size = new System.Drawing.Size(554, 119);
            this.xpE4.Tag = "E4";
            this.xpE4.Text = "E4";
            // 
            // xpE5
            // 
            this.xpE5.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.xpE5.Appearance.Header.Options.UseFont = true;
            this.xpE5.Name = "xpE5";
            this.xpE5.Size = new System.Drawing.Size(554, 119);
            this.xpE5.Tag = "E5";
            this.xpE5.Text = "E5";
            // 
            // xpE6
            // 
            this.xpE6.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.xpE6.Appearance.Header.Options.UseFont = true;
            this.xpE6.Name = "xpE6";
            this.xpE6.Size = new System.Drawing.Size(554, 119);
            this.xpE6.Tag = "E6";
            this.xpE6.Text = "E6";
            // 
            // xpE7
            // 
            this.xpE7.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.xpE7.Appearance.Header.Options.UseFont = true;
            this.xpE7.Name = "xpE7";
            this.xpE7.Size = new System.Drawing.Size(554, 119);
            this.xpE7.Tag = "E7";
            this.xpE7.Text = "E7";
            // 
            // xpE8
            // 
            this.xpE8.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.xpE8.Appearance.Header.Options.UseFont = true;
            this.xpE8.Name = "xpE8";
            this.xpE8.Size = new System.Drawing.Size(554, 119);
            this.xpE8.Tag = "E8";
            this.xpE8.Text = "E8";
            // 
            // xpE9
            // 
            this.xpE9.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.xpE9.Appearance.Header.Options.UseFont = true;
            this.xpE9.Name = "xpE9";
            this.xpE9.Size = new System.Drawing.Size(554, 119);
            this.xpE9.Tag = "E9";
            this.xpE9.Text = "E9";
            // 
            // xpE10
            // 
            this.xpE10.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.xpE10.Appearance.Header.Options.UseFont = true;
            this.xpE10.Name = "xpE10";
            this.xpE10.Size = new System.Drawing.Size(554, 119);
            this.xpE10.Tag = "E10";
            this.xpE10.Text = "E10";
            // 
            // xpE11
            // 
            this.xpE11.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.xpE11.Appearance.Header.Options.UseFont = true;
            this.xpE11.Name = "xpE11";
            this.xpE11.Size = new System.Drawing.Size(554, 119);
            this.xpE11.Tag = "E11";
            this.xpE11.Text = "E11";
            // 
            // xpE12
            // 
            this.xpE12.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.xpE12.Appearance.Header.Options.UseFont = true;
            this.xpE12.Name = "xpE12";
            this.xpE12.Size = new System.Drawing.Size(554, 119);
            this.xpE12.Tag = "E12";
            this.xpE12.Text = "E12";
            // 
            // xpE13
            // 
            this.xpE13.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.xpE13.Appearance.Header.Options.UseFont = true;
            this.xpE13.Name = "xpE13";
            this.xpE13.Size = new System.Drawing.Size(554, 119);
            this.xpE13.Tag = "E13";
            this.xpE13.Text = "E13";
            // 
            // xpE14
            // 
            this.xpE14.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.xpE14.Appearance.Header.Options.UseFont = true;
            this.xpE14.Name = "xpE14";
            this.xpE14.Size = new System.Drawing.Size(554, 119);
            this.xpE14.Tag = "E14";
            this.xpE14.Text = "E14";
            // 
            // xpE15
            // 
            this.xpE15.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.xpE15.Appearance.Header.Options.UseFont = true;
            this.xpE15.Name = "xpE15";
            this.xpE15.Size = new System.Drawing.Size(554, 119);
            this.xpE15.Tag = "E15";
            this.xpE15.Text = "E15";
            // 
            // xpE16
            // 
            this.xpE16.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.xpE16.Appearance.Header.Options.UseFont = true;
            this.xpE16.Name = "xpE16";
            this.xpE16.Size = new System.Drawing.Size(554, 119);
            this.xpE16.Tag = "E16";
            this.xpE16.Text = "E16";
            // 
            // xpE17
            // 
            this.xpE17.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.xpE17.Appearance.Header.Options.UseFont = true;
            this.xpE17.Name = "xpE17";
            this.xpE17.Size = new System.Drawing.Size(554, 119);
            this.xpE17.Tag = "E17";
            this.xpE17.Text = "E17";
            // 
            // xpE18
            // 
            this.xpE18.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.xpE18.Appearance.Header.Options.UseFont = true;
            this.xpE18.Name = "xpE18";
            this.xpE18.Size = new System.Drawing.Size(554, 119);
            this.xpE18.Tag = "E18";
            this.xpE18.Text = "E18";
            // 
            // xpE19
            // 
            this.xpE19.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.xpE19.Appearance.Header.Options.UseFont = true;
            this.xpE19.Name = "xpE19";
            this.xpE19.Size = new System.Drawing.Size(554, 119);
            this.xpE19.Tag = "E19";
            this.xpE19.Text = "E19";
            // 
            // xpE20
            // 
            this.xpE20.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.xpE20.Appearance.Header.Options.UseFont = true;
            this.xpE20.Name = "xpE20";
            this.xpE20.Size = new System.Drawing.Size(554, 119);
            this.xpE20.Tag = "E20";
            this.xpE20.Text = "E20";
            // 
            // xpE21
            // 
            this.xpE21.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.xpE21.Appearance.Header.Options.UseFont = true;
            this.xpE21.Name = "xpE21";
            this.xpE21.Size = new System.Drawing.Size(554, 119);
            this.xpE21.Tag = "E21";
            this.xpE21.Text = "E21";
            // 
            // xpE22
            // 
            this.xpE22.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.xpE22.Appearance.Header.Options.UseFont = true;
            this.xpE22.Name = "xpE22";
            this.xpE22.Size = new System.Drawing.Size(554, 119);
            this.xpE22.Tag = "E22";
            this.xpE22.Text = "E22";
            // 
            // xpE23
            // 
            this.xpE23.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.xpE23.Appearance.Header.Options.UseFont = true;
            this.xpE23.Name = "xpE23";
            this.xpE23.Size = new System.Drawing.Size(554, 119);
            this.xpE23.Tag = "E23";
            this.xpE23.Text = "E23";
            // 
            // xpE24
            // 
            this.xpE24.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.xpE24.Appearance.Header.Options.UseFont = true;
            this.xpE24.Name = "xpE24";
            this.xpE24.Size = new System.Drawing.Size(554, 119);
            this.xpE24.Tag = "E24";
            this.xpE24.Text = "E24";
            // 
            // xpE25
            // 
            this.xpE25.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.xpE25.Appearance.Header.Options.UseFont = true;
            this.xpE25.Name = "xpE25";
            this.xpE25.Size = new System.Drawing.Size(554, 119);
            this.xpE25.Tag = "E25";
            this.xpE25.Text = "E25";
            // 
            // xpE26
            // 
            this.xpE26.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.xpE26.Appearance.Header.Options.UseFont = true;
            this.xpE26.Name = "xpE26";
            this.xpE26.Size = new System.Drawing.Size(554, 119);
            this.xpE26.Tag = "E26";
            this.xpE26.Text = "E26";
            // 
            // xpE27
            // 
            this.xpE27.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.xpE27.Appearance.Header.Options.UseFont = true;
            this.xpE27.Name = "xpE27";
            this.xpE27.Size = new System.Drawing.Size(554, 119);
            this.xpE27.Tag = "E27";
            this.xpE27.Text = "E27";
            // 
            // xpE28
            // 
            this.xpE28.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.xpE28.Appearance.Header.Options.UseFont = true;
            this.xpE28.Name = "xpE28";
            this.xpE28.Size = new System.Drawing.Size(554, 119);
            this.xpE28.Tag = "E28";
            this.xpE28.Text = "E28";
            // 
            // xpE29
            // 
            this.xpE29.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.xpE29.Appearance.Header.Options.UseFont = true;
            this.xpE29.Name = "xpE29";
            this.xpE29.Size = new System.Drawing.Size(554, 119);
            this.xpE29.Tag = "E29";
            this.xpE29.Text = "E29";
            // 
            // xpE30
            // 
            this.xpE30.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.xpE30.Appearance.Header.Options.UseFont = true;
            this.xpE30.Name = "xpE30";
            this.xpE30.Size = new System.Drawing.Size(554, 119);
            this.xpE30.Tag = "E30";
            this.xpE30.Text = "E30";
            // 
            // btnAddParam
            // 
            this.btnAddParam.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.btnAddParam.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnAddParam.Appearance.Options.UseFont = true;
            this.btnAddParam.Location = new System.Drawing.Point(7, 499);
            this.btnAddParam.Name = "btnAddParam";
            this.btnAddParam.Size = new System.Drawing.Size(134, 30);
            this.btnAddParam.TabIndex = 0;
            this.btnAddParam.Text = "添加参数";
            this.btnAddParam.Click += new System.EventHandler(this.btnAddParam_Click);
            // 
            // btnDeleteParam
            // 
            this.btnDeleteParam.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.btnDeleteParam.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnDeleteParam.Appearance.Options.UseFont = true;
            this.btnDeleteParam.Location = new System.Drawing.Point(145, 498);
            this.btnDeleteParam.Name = "btnDeleteParam";
            this.btnDeleteParam.Size = new System.Drawing.Size(134, 30);
            this.btnDeleteParam.TabIndex = 2;
            this.btnDeleteParam.Text = "删除参数";
            this.btnDeleteParam.Click += new System.EventHandler(this.btnDeleteParam_Click);
            // 
            // btnLoadParam
            // 
            this.btnLoadParam.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.btnLoadParam.Appearance.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnLoadParam.Appearance.Options.UseFont = true;
            this.btnLoadParam.Location = new System.Drawing.Point(145, 499);
            this.btnLoadParam.Name = "btnLoadParam";
            this.btnLoadParam.Size = new System.Drawing.Size(134, 30);
            this.btnLoadParam.TabIndex = 1;
            this.btnLoadParam.Text = "加载参数";
            this.btnLoadParam.Visible = false;
            // 
            // timerTime
            // 
            this.timerTime.Interval = 1000;
            this.timerTime.Tick += new System.EventHandler(this.timerTime_Tick);
            // 
            // timerPlcCheck
            // 
            this.timerPlcCheck.Interval = 1000;
            this.timerPlcCheck.Tick += new System.EventHandler(this.timerPlcCheck_Tick);
            // 
            // timerPlcCheck2
            // 
            this.timerPlcCheck2.Interval = 1000;
            this.timerPlcCheck2.Tick += new System.EventHandler(this.timerPlcCheck2_Tick);
            // 
            // timerReg
            // 
            this.timerReg.Enabled = true;
            this.timerReg.Interval = 30000;
            this.timerReg.Tick += new System.EventHandler(this.timerReg_Tick);
            // 
            // timerCOrigin
            // 
            this.timerCOrigin.Interval = 10;
            this.timerCOrigin.Tick += new System.EventHandler(this.timerCOrigin_Tick);
            // 
            // FormMain
            // 
            this.ClientSize = new System.Drawing.Size(1024, 742);
            this.Controls.Add(this.groupControl6);
            this.Controls.Add(this.grpContrl);
            this.Controls.Add(this.btnMin);
            this.Controls.Add(this.groupControl3);
            this.Controls.Add(this.pnlProgram);
            this.Controls.Add(this.pnlManual);
            this.Controls.Add(this.barDockControlLeft);
            this.Controls.Add(this.barDockControlRight);
            this.Controls.Add(this.barDockControlBottom);
            this.Controls.Add(this.barDockControlTop);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
            this.MaximumSize = new System.Drawing.Size(1024, 768);
            this.Name = "FormMain";
            this.Text = "数控高速穿孔火花机";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.grpContrl)).EndInit();
            this.grpContrl.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.tabShow)).EndInit();
            this.tabShow.ResumeLayout(false);
            this.xtraTabPage1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.bindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.barManager)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gcFileName)).EndInit();
            this.gcFileName.ResumeLayout(false);
            this.gcFileName.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.bindingSourceCnc)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewCnc)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox7)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox6)).EndInit();
            this.pnlManual.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).EndInit();
            this.groupControl4.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
            this.groupControl1.ResumeLayout(false);
            this.groupControl1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.txtInput1.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gcAxisModify)).EndInit();
            this.gcAxisModify.ResumeLayout(false);
            this.gcAxisModify.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.listBoxControl1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.spSetC.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.bindingSourceAxisSet)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.spSetB.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.spSetZ.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.spSetW.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.spSetY.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.spinEdit6.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.spSetX.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.bindingSourceParam)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl7)).EndInit();
            this.groupControl7.ResumeLayout(false);
            this.groupControl7.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
            this.groupControl3.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.picLogo)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnClose)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl6)).EndInit();
            this.groupControl6.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.bindingSourceSet)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).EndInit();
            this.groupControl5.ResumeLayout(false);
            this.groupControl5.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl8)).EndInit();
            this.groupControl8.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.spSafeHeight.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chkUseWSafeHeight.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gcParam)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewParam)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMaikuan)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMainjian)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDianliu)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDianrong)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemXiuzhen)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSudu)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDianya)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemThrowMode)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnMin)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.digitalGauge73)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.digitalGauge74)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.digitalGauge10)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.digitalGauge9)).EndInit();
            this.pnlProgram.ResumeLayout(false);
            this.pnlProgram.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.tabE)).EndInit();
            this.tabE.ResumeLayout(false);
            this.xpE1.ResumeLayout(false);
            this.xtraTabPage8.ResumeLayout(false);
            this.xtraTabPage8.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.txtThrowLeft2.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.bindingSourceThrowSet)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtThrowStartHeight2.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cmbThrowResponse2.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtThrowLeft.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtThrowStartHeight.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rgThrowMode.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cmbThrowResponse.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.bindingSourceHistory)).EndInit();
            this.ResumeLayout(false);

        }
Пример #44
0
 /// <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(MessageDetailsUC));
     DevExpress.Utils.SuperToolTip superToolTip3 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem  toolTipItem3  = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip4 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem  toolTipItem4  = new DevExpress.Utils.ToolTipItem();
     this.btnNext               = new DevExpress.XtraEditors.SimpleButton();
     this.btnPrev               = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton1         = new DevExpress.XtraEditors.SimpleButton();
     this.txtbDateValue         = new DevExpress.XtraEditors.TextEdit();
     this.labelControl1         = new DevExpress.XtraEditors.LabelControl();
     this.txtbDataSource        = new DevExpress.XtraEditors.TextEdit();
     this.labelControl2         = new DevExpress.XtraEditors.LabelControl();
     this.txtSourceValue        = new DevExpress.XtraEditors.TextEdit();
     this.lblSource             = new DevExpress.XtraEditors.LabelControl();
     this.txtbProcessModuleName = new DevExpress.XtraEditors.TextEdit();
     this.lblProcess            = new DevExpress.XtraEditors.LabelControl();
     this.txtbLevelValue        = new DevExpress.XtraEditors.TextEdit();
     this.txtbMethod            = new DevExpress.XtraEditors.TextEdit();
     this.lblLevel              = new DevExpress.XtraEditors.LabelControl();
     this.lblMethod             = new DevExpress.XtraEditors.LabelControl();
     this.txtbFileName          = new DevExpress.XtraEditors.TextEdit();
     this.lblSourceCodeFileName = new DevExpress.XtraEditors.LabelControl();
     this.txtbLineNumber        = new DevExpress.XtraEditors.TextEdit();
     this.lblLineNumber         = new DevExpress.XtraEditors.LabelControl();
     this.txtbUser              = new DevExpress.XtraEditors.TextEdit();
     this.lblUser               = new DevExpress.XtraEditors.LabelControl();
     this.txtID                            = new DevExpress.XtraEditors.TextEdit();
     this.labelControl3                    = new DevExpress.XtraEditors.LabelControl();
     this.labelControl4                    = new DevExpress.XtraEditors.LabelControl();
     this.txtbIndex                        = new DevExpress.XtraEditors.TextEdit();
     this.memoText                         = new DevExpress.XtraEditors.MemoEdit();
     this.lblMachineName                   = new DevExpress.XtraEditors.LabelControl();
     this.txtbMachineName                  = new DevExpress.XtraEditors.TextEdit();
     this.labelControl5                    = new DevExpress.XtraEditors.LabelControl();
     this.txtbProcessId                    = new DevExpress.XtraEditors.TextEdit();
     this.lblThreadId                      = new DevExpress.XtraEditors.LabelControl();
     this.txtbThreadId                     = new DevExpress.XtraEditors.TextEdit();
     this.xtraTabControlMessageInfo        = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPageText                  = new DevExpress.XtraTab.XtraTabPage();
     this.xtraTabPageRenderedText          = new DevExpress.XtraTab.XtraTabPage();
     this.recMessageDetails                = new DevExpress.XtraRichEdit.RichEditControl();
     this.xtraTabPageAdditionalInformation = new DevExpress.XtraTab.XtraTabPage();
     this.memoAdditionalInformation        = new DevExpress.XtraEditors.MemoEdit();
     this.splitContainerControl1           = new DevExpress.XtraEditors.SplitContainerControl();
     this.splitContainerControl2           = new DevExpress.XtraEditors.SplitContainerControl();
     this.meSelected                       = new DevExpress.XtraEditors.MemoEdit();
     ((System.ComponentModel.ISupportInitialize)(this.txtbDateValue.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtbDataSource.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSourceValue.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtbProcessModuleName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtbLevelValue.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtbMethod.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtbFileName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtbLineNumber.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtbUser.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtbIndex.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.memoText.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtbMachineName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtbProcessId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtbThreadId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlMessageInfo)).BeginInit();
     this.xtraTabControlMessageInfo.SuspendLayout();
     this.xtraTabPageText.SuspendLayout();
     this.xtraTabPageRenderedText.SuspendLayout();
     this.xtraTabPageAdditionalInformation.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.memoAdditionalInformation.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1.Panel1)).BeginInit();
     this.splitContainerControl1.Panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1.Panel2)).BeginInit();
     this.splitContainerControl1.Panel2.SuspendLayout();
     this.splitContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2.Panel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2.Panel2)).BeginInit();
     this.splitContainerControl2.Panel2.SuspendLayout();
     this.splitContainerControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.meSelected.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // btnNext
     //
     this.btnNext.Anchor             = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnNext.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("btnNext.ImageOptions.Image")));
     this.btnNext.Location           = new System.Drawing.Point(555, 1);
     this.btnNext.Name = "btnNext";
     this.btnNext.Size = new System.Drawing.Size(24, 26);
     toolTipItem3.Text = "Press right arrow to load next message";
     superToolTip3.Items.Add(toolTipItem3);
     this.btnNext.SuperTip = superToolTip3;
     this.btnNext.TabIndex = 38;
     this.btnNext.Click   += new System.EventHandler(this.btnNext_Click);
     //
     // btnPrev
     //
     this.btnPrev.Anchor             = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnPrev.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("btnPrev.ImageOptions.Image")));
     this.btnPrev.Location           = new System.Drawing.Point(525, 1);
     this.btnPrev.Name = "btnPrev";
     this.btnPrev.Size = new System.Drawing.Size(24, 26);
     toolTipItem4.Text = "Press Left arrow to load previous message";
     superToolTip4.Items.Add(toolTipItem4);
     this.btnPrev.SuperTip = superToolTip4;
     this.btnPrev.TabIndex = 39;
     this.btnPrev.Click   += new System.EventHandler(this.btnPrev_Click);
     //
     // simpleButton1
     //
     this.simpleButton1.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton1.ImageOptions.Image")));
     this.simpleButton1.Location           = new System.Drawing.Point(195, 50);
     this.simpleButton1.Name     = "simpleButton1";
     this.simpleButton1.Size     = new System.Drawing.Size(24, 26);
     this.simpleButton1.TabIndex = 44;
     //
     // txtbDateValue
     //
     this.txtbDateValue.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.txtbDateValue.Location = new System.Drawing.Point(179, 325);
     this.txtbDateValue.Name     = "txtbDateValue";
     this.txtbDateValue.Size     = new System.Drawing.Size(398, 22);
     this.txtbDateValue.TabIndex = 47;
     //
     // labelControl1
     //
     this.labelControl1.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.labelControl1.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl1.BorderStyle  = DevExpress.XtraEditors.Controls.BorderStyles.Flat;
     this.labelControl1.Location     = new System.Drawing.Point(3, 325);
     this.labelControl1.Name         = "labelControl1";
     this.labelControl1.Size         = new System.Drawing.Size(170, 22);
     this.labelControl1.TabIndex     = 48;
     this.labelControl1.Text         = "Date:";
     //
     // txtbDataSource
     //
     this.txtbDataSource.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                        | System.Windows.Forms.AnchorStyles.Right)));
     this.txtbDataSource.Location = new System.Drawing.Point(178, 297);
     this.txtbDataSource.Name     = "txtbDataSource";
     this.txtbDataSource.Size     = new System.Drawing.Size(398, 22);
     this.txtbDataSource.TabIndex = 47;
     //
     // labelControl2
     //
     this.labelControl2.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.labelControl2.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl2.BorderStyle  = DevExpress.XtraEditors.Controls.BorderStyles.Flat;
     this.labelControl2.Location     = new System.Drawing.Point(3, 297);
     this.labelControl2.Name         = "labelControl2";
     this.labelControl2.Size         = new System.Drawing.Size(170, 22);
     this.labelControl2.TabIndex     = 48;
     this.labelControl2.Text         = "Log file / Data source:";
     //
     // txtSourceValue
     //
     this.txtSourceValue.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                        | System.Windows.Forms.AnchorStyles.Right)));
     this.txtSourceValue.Location = new System.Drawing.Point(179, 353);
     this.txtSourceValue.Name     = "txtSourceValue";
     this.txtSourceValue.Size     = new System.Drawing.Size(398, 22);
     this.txtSourceValue.TabIndex = 47;
     //
     // lblSource
     //
     this.lblSource.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.lblSource.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.lblSource.BorderStyle  = DevExpress.XtraEditors.Controls.BorderStyles.Flat;
     this.lblSource.Location     = new System.Drawing.Point(3, 353);
     this.lblSource.Name         = "lblSource";
     this.lblSource.Size         = new System.Drawing.Size(170, 22);
     this.lblSource.TabIndex     = 48;
     this.lblSource.Text         = "Source:";
     //
     // txtbProcessModuleName
     //
     this.txtbProcessModuleName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                               | System.Windows.Forms.AnchorStyles.Right)));
     this.txtbProcessModuleName.Location = new System.Drawing.Point(179, 381);
     this.txtbProcessModuleName.Name     = "txtbProcessModuleName";
     this.txtbProcessModuleName.Size     = new System.Drawing.Size(398, 22);
     this.txtbProcessModuleName.TabIndex = 47;
     //
     // lblProcess
     //
     this.lblProcess.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.lblProcess.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.lblProcess.BorderStyle  = DevExpress.XtraEditors.Controls.BorderStyles.Flat;
     this.lblProcess.Location     = new System.Drawing.Point(3, 381);
     this.lblProcess.Name         = "lblProcess";
     this.lblProcess.Size         = new System.Drawing.Size(170, 22);
     this.lblProcess.TabIndex     = 48;
     this.lblProcess.Text         = "Process /Module:";
     //
     // txtbLevelValue
     //
     this.txtbLevelValue.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                        | System.Windows.Forms.AnchorStyles.Right)));
     this.txtbLevelValue.Location = new System.Drawing.Point(179, 466);
     this.txtbLevelValue.Name     = "txtbLevelValue";
     this.txtbLevelValue.Size     = new System.Drawing.Size(398, 22);
     this.txtbLevelValue.TabIndex = 47;
     //
     // txtbMethod
     //
     this.txtbMethod.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                    | System.Windows.Forms.AnchorStyles.Right)));
     this.txtbMethod.Location = new System.Drawing.Point(179, 494);
     this.txtbMethod.Name     = "txtbMethod";
     this.txtbMethod.Size     = new System.Drawing.Size(398, 22);
     this.txtbMethod.TabIndex = 47;
     //
     // lblLevel
     //
     this.lblLevel.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.lblLevel.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.lblLevel.BorderStyle  = DevExpress.XtraEditors.Controls.BorderStyles.Flat;
     this.lblLevel.Location     = new System.Drawing.Point(3, 466);
     this.lblLevel.Name         = "lblLevel";
     this.lblLevel.Size         = new System.Drawing.Size(170, 22);
     this.lblLevel.TabIndex     = 48;
     this.lblLevel.Text         = "Source:";
     //
     // lblMethod
     //
     this.lblMethod.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.lblMethod.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.lblMethod.BorderStyle  = DevExpress.XtraEditors.Controls.BorderStyles.Flat;
     this.lblMethod.Location     = new System.Drawing.Point(3, 494);
     this.lblMethod.Name         = "lblMethod";
     this.lblMethod.Size         = new System.Drawing.Size(170, 22);
     this.lblMethod.TabIndex     = 48;
     this.lblMethod.Text         = "Method:";
     //
     // txtbFileName
     //
     this.txtbFileName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                      | System.Windows.Forms.AnchorStyles.Right)));
     this.txtbFileName.Location = new System.Drawing.Point(177, 522);
     this.txtbFileName.Name     = "txtbFileName";
     this.txtbFileName.Size     = new System.Drawing.Size(398, 22);
     this.txtbFileName.TabIndex = 47;
     //
     // lblSourceCodeFileName
     //
     this.lblSourceCodeFileName.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.lblSourceCodeFileName.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.lblSourceCodeFileName.BorderStyle  = DevExpress.XtraEditors.Controls.BorderStyles.Flat;
     this.lblSourceCodeFileName.Location     = new System.Drawing.Point(1, 522);
     this.lblSourceCodeFileName.Name         = "lblSourceCodeFileName";
     this.lblSourceCodeFileName.Size         = new System.Drawing.Size(170, 22);
     this.lblSourceCodeFileName.TabIndex     = 48;
     this.lblSourceCodeFileName.Text         = "Source Code FileName:";
     //
     // txtbLineNumber
     //
     this.txtbLineNumber.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                        | System.Windows.Forms.AnchorStyles.Right)));
     this.txtbLineNumber.Location = new System.Drawing.Point(177, 550);
     this.txtbLineNumber.Name     = "txtbLineNumber";
     this.txtbLineNumber.Size     = new System.Drawing.Size(398, 22);
     this.txtbLineNumber.TabIndex = 47;
     //
     // lblLineNumber
     //
     this.lblLineNumber.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.lblLineNumber.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.lblLineNumber.BorderStyle  = DevExpress.XtraEditors.Controls.BorderStyles.Flat;
     this.lblLineNumber.Location     = new System.Drawing.Point(1, 550);
     this.lblLineNumber.Name         = "lblLineNumber";
     this.lblLineNumber.Size         = new System.Drawing.Size(170, 22);
     this.lblLineNumber.TabIndex     = 48;
     this.lblLineNumber.Text         = "Line Number:";
     //
     // txtbUser
     //
     this.txtbUser.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     this.txtbUser.Location = new System.Drawing.Point(177, 578);
     this.txtbUser.Name     = "txtbUser";
     this.txtbUser.Size     = new System.Drawing.Size(398, 22);
     this.txtbUser.TabIndex = 47;
     //
     // lblUser
     //
     this.lblUser.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.lblUser.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.lblUser.BorderStyle  = DevExpress.XtraEditors.Controls.BorderStyles.Flat;
     this.lblUser.Location     = new System.Drawing.Point(1, 578);
     this.lblUser.Name         = "lblUser";
     this.lblUser.Size         = new System.Drawing.Size(170, 22);
     this.lblUser.TabIndex     = 48;
     this.lblUser.Text         = "User:"******"txtID";
     this.txtID.Size     = new System.Drawing.Size(354, 22);
     this.txtID.TabIndex = 49;
     //
     // labelControl3
     //
     this.labelControl3.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl3.BorderStyle  = DevExpress.XtraEditors.Controls.BorderStyles.Flat;
     this.labelControl3.Location     = new System.Drawing.Point(3, 31);
     this.labelControl3.Name         = "labelControl3";
     this.labelControl3.Size         = new System.Drawing.Size(216, 22);
     this.labelControl3.TabIndex     = 48;
     this.labelControl3.Text         = "Message ID:";
     //
     // labelControl4
     //
     this.labelControl4.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl4.BorderStyle  = DevExpress.XtraEditors.Controls.BorderStyles.Flat;
     this.labelControl4.Location     = new System.Drawing.Point(3, 3);
     this.labelControl4.Name         = "labelControl4";
     this.labelControl4.Size         = new System.Drawing.Size(216, 22);
     this.labelControl4.TabIndex     = 48;
     this.labelControl4.Text         = "Index";
     //
     // txtbIndex
     //
     this.txtbIndex.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.txtbIndex.Location = new System.Drawing.Point(225, 3);
     this.txtbIndex.Name     = "txtbIndex";
     this.txtbIndex.Size     = new System.Drawing.Size(294, 22);
     this.txtbIndex.TabIndex = 49;
     //
     // memoText
     //
     this.memoText.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.memoText.Location = new System.Drawing.Point(0, 0);
     this.memoText.Name     = "memoText";
     this.memoText.Size     = new System.Drawing.Size(574, 172);
     this.memoText.TabIndex = 50;
     //
     // lblMachineName
     //
     this.lblMachineName.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.lblMachineName.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.lblMachineName.BorderStyle  = DevExpress.XtraEditors.Controls.BorderStyles.Flat;
     this.lblMachineName.Location     = new System.Drawing.Point(4, 267);
     this.lblMachineName.Name         = "lblMachineName";
     this.lblMachineName.Size         = new System.Drawing.Size(170, 22);
     this.lblMachineName.TabIndex     = 52;
     this.lblMachineName.Text         = "Machine Name:";
     //
     // txtbMachineName
     //
     this.txtbMachineName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                         | System.Windows.Forms.AnchorStyles.Right)));
     this.txtbMachineName.Location = new System.Drawing.Point(179, 267);
     this.txtbMachineName.Name     = "txtbMachineName";
     this.txtbMachineName.Size     = new System.Drawing.Size(398, 22);
     this.txtbMachineName.TabIndex = 51;
     //
     // labelControl5
     //
     this.labelControl5.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.labelControl5.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl5.BorderStyle  = DevExpress.XtraEditors.Controls.BorderStyles.Flat;
     this.labelControl5.Location     = new System.Drawing.Point(3, 409);
     this.labelControl5.Name         = "labelControl5";
     this.labelControl5.Size         = new System.Drawing.Size(170, 22);
     this.labelControl5.TabIndex     = 54;
     this.labelControl5.Text         = "Process Id:";
     //
     // txtbProcessId
     //
     this.txtbProcessId.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.txtbProcessId.Location = new System.Drawing.Point(179, 409);
     this.txtbProcessId.Name     = "txtbProcessId";
     this.txtbProcessId.Size     = new System.Drawing.Size(398, 22);
     this.txtbProcessId.TabIndex = 53;
     //
     // lblThreadId
     //
     this.lblThreadId.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.lblThreadId.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.lblThreadId.BorderStyle  = DevExpress.XtraEditors.Controls.BorderStyles.Flat;
     this.lblThreadId.Location     = new System.Drawing.Point(3, 437);
     this.lblThreadId.Name         = "lblThreadId";
     this.lblThreadId.Size         = new System.Drawing.Size(170, 22);
     this.lblThreadId.TabIndex     = 56;
     this.lblThreadId.Text         = "Thread Id:";
     //
     // txtbThreadId
     //
     this.txtbThreadId.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                      | System.Windows.Forms.AnchorStyles.Right)));
     this.txtbThreadId.Location = new System.Drawing.Point(179, 437);
     this.txtbThreadId.Name     = "txtbThreadId";
     this.txtbThreadId.Size     = new System.Drawing.Size(398, 22);
     this.txtbThreadId.TabIndex = 55;
     //
     // xtraTabControlMessageInfo
     //
     this.xtraTabControlMessageInfo.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                                    | System.Windows.Forms.AnchorStyles.Left)
                                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.xtraTabControlMessageInfo.Location        = new System.Drawing.Point(3, 59);
     this.xtraTabControlMessageInfo.Name            = "xtraTabControlMessageInfo";
     this.xtraTabControlMessageInfo.SelectedTabPage = this.xtraTabPageText;
     this.xtraTabControlMessageInfo.Size            = new System.Drawing.Size(576, 202);
     this.xtraTabControlMessageInfo.TabIndex        = 57;
     this.xtraTabControlMessageInfo.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
         this.xtraTabPageRenderedText,
         this.xtraTabPageText,
         this.xtraTabPageAdditionalInformation
     });
     //
     // xtraTabPageText
     //
     this.xtraTabPageText.Controls.Add(this.memoText);
     this.xtraTabPageText.Name = "xtraTabPageText";
     this.xtraTabPageText.Size = new System.Drawing.Size(574, 172);
     this.xtraTabPageText.Text = "Message Text";
     //
     // xtraTabPageRenderedText
     //
     this.xtraTabPageRenderedText.Controls.Add(this.recMessageDetails);
     this.xtraTabPageRenderedText.Name = "xtraTabPageRenderedText";
     this.xtraTabPageRenderedText.Size = new System.Drawing.Size(574, 172);
     this.xtraTabPageRenderedText.Text = "Formatted Text";
     //
     // recMessageDetails
     //
     this.recMessageDetails.ActiveViewType = DevExpress.XtraRichEdit.RichEditViewType.Simple;
     this.recMessageDetails.Dock           = System.Windows.Forms.DockStyle.Fill;
     this.recMessageDetails.LayoutUnit     = DevExpress.XtraRichEdit.DocumentLayoutUnit.Pixel;
     this.recMessageDetails.Location       = new System.Drawing.Point(0, 0);
     this.recMessageDetails.Name           = "recMessageDetails";
     this.recMessageDetails.Size           = new System.Drawing.Size(574, 172);
     this.recMessageDetails.TabIndex       = 5;
     //
     // xtraTabPageAdditionalInformation
     //
     this.xtraTabPageAdditionalInformation.Controls.Add(this.memoAdditionalInformation);
     this.xtraTabPageAdditionalInformation.Name = "xtraTabPageAdditionalInformation";
     this.xtraTabPageAdditionalInformation.Size = new System.Drawing.Size(574, 172);
     this.xtraTabPageAdditionalInformation.Text = "Message\'s Additional Information";
     //
     // memoAdditionalInformation
     //
     this.memoAdditionalInformation.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.memoAdditionalInformation.Location = new System.Drawing.Point(0, 0);
     this.memoAdditionalInformation.Name     = "memoAdditionalInformation";
     this.memoAdditionalInformation.Size     = new System.Drawing.Size(574, 172);
     this.memoAdditionalInformation.TabIndex = 51;
     //
     // splitContainerControl1
     //
     this.splitContainerControl1.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl1.FixedPanel = DevExpress.XtraEditors.SplitFixedPanel.Panel2;
     this.splitContainerControl1.Location   = new System.Drawing.Point(0, 0);
     this.splitContainerControl1.Name       = "splitContainerControl1";
     //
     // splitContainerControl1.Panel1
     //
     this.splitContainerControl1.Panel1.Controls.Add(this.lblThreadId);
     this.splitContainerControl1.Panel1.Controls.Add(this.xtraTabControlMessageInfo);
     this.splitContainerControl1.Panel1.Controls.Add(this.txtbThreadId);
     this.splitContainerControl1.Panel1.Controls.Add(this.labelControl4);
     this.splitContainerControl1.Panel1.Controls.Add(this.labelControl5);
     this.splitContainerControl1.Panel1.Controls.Add(this.txtbIndex);
     this.splitContainerControl1.Panel1.Controls.Add(this.txtbProcessId);
     this.splitContainerControl1.Panel1.Controls.Add(this.btnNext);
     this.splitContainerControl1.Panel1.Controls.Add(this.lblMachineName);
     this.splitContainerControl1.Panel1.Controls.Add(this.txtbMachineName);
     this.splitContainerControl1.Panel1.Controls.Add(this.btnPrev);
     this.splitContainerControl1.Panel1.Controls.Add(this.labelControl2);
     this.splitContainerControl1.Panel1.Controls.Add(this.labelControl3);
     this.splitContainerControl1.Panel1.Controls.Add(this.lblUser);
     this.splitContainerControl1.Panel1.Controls.Add(this.txtID);
     this.splitContainerControl1.Panel1.Controls.Add(this.lblLineNumber);
     this.splitContainerControl1.Panel1.Controls.Add(this.txtbDateValue);
     this.splitContainerControl1.Panel1.Controls.Add(this.lblSourceCodeFileName);
     this.splitContainerControl1.Panel1.Controls.Add(this.txtbDataSource);
     this.splitContainerControl1.Panel1.Controls.Add(this.lblMethod);
     this.splitContainerControl1.Panel1.Controls.Add(this.txtSourceValue);
     this.splitContainerControl1.Panel1.Controls.Add(this.txtbUser);
     this.splitContainerControl1.Panel1.Controls.Add(this.labelControl1);
     this.splitContainerControl1.Panel1.Controls.Add(this.lblLevel);
     this.splitContainerControl1.Panel1.Controls.Add(this.txtbLevelValue);
     this.splitContainerControl1.Panel1.Controls.Add(this.txtbLineNumber);
     this.splitContainerControl1.Panel1.Controls.Add(this.txtbProcessModuleName);
     this.splitContainerControl1.Panel1.Controls.Add(this.txtbFileName);
     this.splitContainerControl1.Panel1.Controls.Add(this.lblSource);
     this.splitContainerControl1.Panel1.Controls.Add(this.lblProcess);
     this.splitContainerControl1.Panel1.Controls.Add(this.txtbMethod);
     this.splitContainerControl1.Panel1.Text = "Panel1";
     //
     // splitContainerControl1.Panel2
     //
     this.splitContainerControl1.Panel2.AutoScroll = true;
     this.splitContainerControl1.Panel2.Controls.Add(this.splitContainerControl2);
     this.splitContainerControl1.Panel2.Text      = "Panel2";
     this.splitContainerControl1.Size             = new System.Drawing.Size(975, 604);
     this.splitContainerControl1.SplitterPosition = 386;
     this.splitContainerControl1.TabIndex         = 3;
     //
     // splitContainerControl2
     //
     this.splitContainerControl2.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl2.FixedPanel = DevExpress.XtraEditors.SplitFixedPanel.Panel2;
     this.splitContainerControl2.Horizontal = false;
     this.splitContainerControl2.Location   = new System.Drawing.Point(0, 0);
     this.splitContainerControl2.Name       = "splitContainerControl2";
     //
     // splitContainerControl2.Panel1
     //
     this.splitContainerControl2.Panel1.Text = "Panel1";
     //
     // splitContainerControl2.Panel2
     //
     this.splitContainerControl2.Panel2.Controls.Add(this.meSelected);
     this.splitContainerControl2.Panel2.Text = "Panel2";
     this.splitContainerControl2.Size        = new System.Drawing.Size(386, 604);
     this.splitContainerControl2.TabIndex    = 0;
     //
     // meSelected
     //
     this.meSelected.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.meSelected.EditValue = "You can double click the selected node to copy the text";
     this.meSelected.Location  = new System.Drawing.Point(0, 0);
     this.meSelected.Name      = "meSelected";
     this.meSelected.Size      = new System.Drawing.Size(386, 100);
     this.meSelected.TabIndex  = 2;
     //
     // MessageDetailsUC
     //
     this.Appearance.Font            = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(177)));
     this.Appearance.Options.UseFont = true;
     this.AutoScaleDimensions        = new System.Drawing.SizeF(11F, 22F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoScroll    = true;
     this.Controls.Add(this.splitContainerControl1);
     this.Margin = new System.Windows.Forms.Padding(4);
     this.Name   = "MessageDetailsUC";
     this.Size   = new System.Drawing.Size(975, 604);
     this.Load  += new System.EventHandler(this.UCMessageDetails_Load);
     ((System.ComponentModel.ISupportInitialize)(this.txtbDateValue.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtbDataSource.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSourceValue.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtbProcessModuleName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtbLevelValue.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtbMethod.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtbFileName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtbLineNumber.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtbUser.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtbIndex.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.memoText.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtbMachineName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtbProcessId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtbThreadId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlMessageInfo)).EndInit();
     this.xtraTabControlMessageInfo.ResumeLayout(false);
     this.xtraTabPageText.ResumeLayout(false);
     this.xtraTabPageRenderedText.ResumeLayout(false);
     this.xtraTabPageAdditionalInformation.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.memoAdditionalInformation.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1.Panel1)).EndInit();
     this.splitContainerControl1.Panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1.Panel2)).EndInit();
     this.splitContainerControl1.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
     this.splitContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2.Panel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2.Panel2)).EndInit();
     this.splitContainerControl2.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).EndInit();
     this.splitContainerControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.meSelected.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Пример #45
0
        /// <summary> 
        /// Required method for Designer support - do not modify 
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem1 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip2 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem2 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip3 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem3 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem3 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip4 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem4 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem4 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip5 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem5 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem5 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip6 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem6 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem6 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip7 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem7 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem7 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip8 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem8 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem8 = new DevExpress.Utils.ToolTipItem();
            this.ribbonControl = new DevExpress.XtraBars.Ribbon.RibbonControl();
            this.barButtonAdd = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonEdit = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonDelete = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonRefresh = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonUp = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonDown = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonPrint = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonExport = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonPdf = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonXls = new DevExpress.XtraBars.BarButtonItem();
            this.chkGridView = new DevExpress.XtraBars.BarCheckItem();
            this.chkCardView = new DevExpress.XtraBars.BarCheckItem();
            this.barButtonXlsx = new DevExpress.XtraBars.BarButtonItem();
            this.ribbonPage = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.ribbonPageManage = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageNav = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPagePrint = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.gridControlListaRecetas = new DevExpress.XtraGrid.GridControl();
            this.gridViewListaRecetas = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.gridColumnId = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumnNombre = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumnCostoReceta = new DevExpress.XtraGrid.Columns.GridColumn();
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControlListaRecetas)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewListaRecetas)).BeginInit();
            this.SuspendLayout();
            // 
            // ribbonControl
            // 
            this.ribbonControl.ApplicationButtonText = null;
            this.ribbonControl.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(236)))), ((int)(((byte)(239)))));
            this.ribbonControl.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.barButtonAdd,
            this.barButtonEdit,
            this.barButtonDelete,
            this.barButtonRefresh,
            this.barButtonUp,
            this.barButtonDown,
            this.barButtonPrint,
            this.barButtonExport,
            this.barButtonPdf,
            this.barButtonXls,
            this.chkGridView,
            this.chkCardView,
            this.barButtonXlsx});
            this.ribbonControl.Location = new System.Drawing.Point(0, 0);
            this.ribbonControl.MaxItemId = 134;
            this.ribbonControl.Name = "ribbonControl";
            this.ribbonControl.PageCategoryAlignment = DevExpress.XtraBars.Ribbon.RibbonPageCategoryAlignment.Right;
            this.ribbonControl.PageHeaderMinWidth = 50;
            this.ribbonControl.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.ribbonPage});
            this.ribbonControl.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonControlStyle.Office2010;
            this.ribbonControl.SelectedPage = this.ribbonPage;
            this.ribbonControl.ShowExpandCollapseButton = DevExpress.Utils.DefaultBoolean.True;
            this.ribbonControl.Size = new System.Drawing.Size(1014, 141);
            this.ribbonControl.TransparentEditors = true;
            // 
            // barButtonAdd
            // 
            this.barButtonAdd.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            this.barButtonAdd.Caption = "Nuevo";
            this.barButtonAdd.Glyph = global::UIRenderers.Properties.Resources.add;
            this.barButtonAdd.Id = 0;
            this.barButtonAdd.Name = "barButtonAdd";
            this.barButtonAdd.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            toolTipTitleItem1.Text = "Nuevo";
            toolTipItem1.LeftIndent = 6;
            toolTipItem1.Text = "Agrega un nuevo producto.";
            superToolTip1.Items.Add(toolTipTitleItem1);
            superToolTip1.Items.Add(toolTipItem1);
            this.barButtonAdd.SuperTip = superToolTip1;
            this.barButtonAdd.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonAdd_ItemClick);
            // 
            // barButtonEdit
            // 
            this.barButtonEdit.Caption = "Editar";
            this.barButtonEdit.Glyph = global::UIRenderers.Properties.Resources.edit;
            this.barButtonEdit.Id = 1;
            this.barButtonEdit.Name = "barButtonEdit";
            this.barButtonEdit.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            toolTipTitleItem2.Text = "Editar";
            toolTipItem2.LeftIndent = 6;
            toolTipItem2.Text = "Edita el registro seleccionado.";
            superToolTip2.Items.Add(toolTipTitleItem2);
            superToolTip2.Items.Add(toolTipItem2);
            this.barButtonEdit.SuperTip = superToolTip2;
            this.barButtonEdit.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonEdit_ItemClick);
            // 
            // barButtonDelete
            // 
            this.barButtonDelete.Caption = "Borrar";
            this.barButtonDelete.Glyph = global::UIRenderers.Properties.Resources.delete;
            this.barButtonDelete.Id = 2;
            this.barButtonDelete.Name = "barButtonDelete";
            this.barButtonDelete.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            toolTipTitleItem3.Text = "Borrar";
            toolTipItem3.LeftIndent = 6;
            toolTipItem3.Text = "Elimina el registro seleccionado.";
            superToolTip3.Items.Add(toolTipTitleItem3);
            superToolTip3.Items.Add(toolTipItem3);
            this.barButtonDelete.SuperTip = superToolTip3;
            this.barButtonDelete.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonDelete_ItemClick);
            // 
            // barButtonRefresh
            // 
            this.barButtonRefresh.Caption = "Actualizar";
            this.barButtonRefresh.Glyph = global::UIRenderers.Properties.Resources.refresh;
            this.barButtonRefresh.Id = 3;
            this.barButtonRefresh.Name = "barButtonRefresh";
            this.barButtonRefresh.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            toolTipTitleItem4.Text = "Actualizar";
            toolTipItem4.LeftIndent = 6;
            toolTipItem4.Text = "Actualiza la vista actual.";
            superToolTip4.Items.Add(toolTipTitleItem4);
            superToolTip4.Items.Add(toolTipItem4);
            this.barButtonRefresh.SuperTip = superToolTip4;
            this.barButtonRefresh.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonRefresh_ItemClick);
            // 
            // barButtonUp
            // 
            this.barButtonUp.Caption = "Arriba";
            this.barButtonUp.Enabled = false;
            this.barButtonUp.Glyph = global::UIRenderers.Properties.Resources.up;
            this.barButtonUp.Id = 6;
            this.barButtonUp.Name = "barButtonUp";
            toolTipTitleItem5.Text = "Arriba";
            toolTipItem5.LeftIndent = 6;
            toolTipItem5.Text = "Registro anterior.";
            superToolTip5.Items.Add(toolTipTitleItem5);
            superToolTip5.Items.Add(toolTipItem5);
            this.barButtonUp.SuperTip = superToolTip5;
            this.barButtonUp.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonUp_ItemClick);
            // 
            // barButtonDown
            // 
            this.barButtonDown.Caption = "Abajo";
            this.barButtonDown.Glyph = global::UIRenderers.Properties.Resources.down;
            this.barButtonDown.Id = 7;
            this.barButtonDown.Name = "barButtonDown";
            toolTipTitleItem6.Text = "Abajo";
            toolTipItem6.LeftIndent = 6;
            toolTipItem6.Text = "Siguiente registro.";
            superToolTip6.Items.Add(toolTipTitleItem6);
            superToolTip6.Items.Add(toolTipItem6);
            this.barButtonDown.SuperTip = superToolTip6;
            this.barButtonDown.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonDown_ItemClick);
            // 
            // barButtonPrint
            // 
            this.barButtonPrint.Caption = "Vista previa";
            this.barButtonPrint.Glyph = global::UIRenderers.Properties.Resources.printpreview;
            this.barButtonPrint.Id = 8;
            this.barButtonPrint.Name = "barButtonPrint";
            this.barButtonPrint.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            toolTipTitleItem7.Text = "Vista previa";
            toolTipItem7.LeftIndent = 6;
            toolTipItem7.Text = "Genera una vista de impresión previa.";
            superToolTip7.Items.Add(toolTipTitleItem7);
            superToolTip7.Items.Add(toolTipItem7);
            this.barButtonPrint.SuperTip = superToolTip7;
            this.barButtonPrint.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonPrint_ItemClick);
            // 
            // barButtonExport
            // 
            this.barButtonExport.ActAsDropDown = true;
            this.barButtonExport.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.barButtonExport.Caption = "Exportar";
            this.barButtonExport.Glyph = global::UIRenderers.Properties.Resources.export;
            this.barButtonExport.Id = 10;
            this.barButtonExport.Name = "barButtonExport";
            this.barButtonExport.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            toolTipTitleItem8.Text = "Exportar";
            toolTipItem8.LeftIndent = 6;
            toolTipItem8.Text = "Genera un reporte en diferentes formatos.";
            superToolTip8.Items.Add(toolTipTitleItem8);
            superToolTip8.Items.Add(toolTipItem8);
            this.barButtonExport.SuperTip = superToolTip8;
            // 
            // barButtonPdf
            // 
            this.barButtonPdf.Caption = "Exportar a PDF";
            this.barButtonPdf.Glyph = global::UIRenderers.Properties.Resources.pdf;
            this.barButtonPdf.Id = 15;
            this.barButtonPdf.Name = "barButtonPdf";
            // 
            // barButtonXls
            // 
            this.barButtonXls.Caption = "Exportar a XLS";
            this.barButtonXls.Glyph = global::UIRenderers.Properties.Resources.xls;
            this.barButtonXls.Id = 16;
            this.barButtonXls.Name = "barButtonXls";
            // 
            // chkGridView
            // 
            this.chkGridView.Caption = "Grid";
            this.chkGridView.Checked = true;
            this.chkGridView.Id = 23;
            this.chkGridView.Name = "chkGridView";
            // 
            // chkCardView
            // 
            this.chkCardView.Caption = "Card";
            this.chkCardView.Id = 24;
            this.chkCardView.Name = "chkCardView";
            // 
            // barButtonXlsx
            // 
            this.barButtonXlsx.Caption = "Exportar a XLSX";
            this.barButtonXlsx.Glyph = global::UIRenderers.Properties.Resources.xls;
            this.barButtonXlsx.Id = 133;
            this.barButtonXlsx.Name = "barButtonXlsx";
            // 
            // ribbonPage
            // 
            this.ribbonPage.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonPageManage,
            this.ribbonPageNav,
            this.ribbonPagePrint});
            this.ribbonPage.Name = "ribbonPage";
            this.ribbonPage.Text = "Inicio";
            // 
            // ribbonPageManage
            // 
            this.ribbonPageManage.ItemLinks.Add(this.barButtonAdd);
            this.ribbonPageManage.ItemLinks.Add(this.barButtonEdit);
            this.ribbonPageManage.ItemLinks.Add(this.barButtonDelete);
            this.ribbonPageManage.ItemLinks.Add(this.barButtonRefresh);
            this.ribbonPageManage.Name = "ribbonPageManage";
            this.ribbonPageManage.Text = "Administración de registros";
            // 
            // ribbonPageNav
            // 
            this.ribbonPageNav.AllowTextClipping = false;
            this.ribbonPageNav.ItemLinks.Add(this.barButtonUp);
            this.ribbonPageNav.ItemLinks.Add(this.barButtonDown);
            this.ribbonPageNav.Name = "ribbonPageNav";
            this.ribbonPageNav.Text = "Navegación";
            // 
            // ribbonPagePrint
            // 
            this.ribbonPagePrint.AllowTextClipping = false;
            this.ribbonPagePrint.ItemLinks.Add(this.barButtonPrint);
            this.ribbonPagePrint.ItemLinks.Add(this.barButtonExport);
            this.ribbonPagePrint.Name = "ribbonPagePrint";
            this.ribbonPagePrint.Text = "Exportar e Imprimir";
            // 
            // gridControlListaRecetas
            // 
            this.gridControlListaRecetas.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridControlListaRecetas.Location = new System.Drawing.Point(0, 141);
            this.gridControlListaRecetas.MainView = this.gridViewListaRecetas;
            this.gridControlListaRecetas.MenuManager = this.ribbonControl;
            this.gridControlListaRecetas.Name = "gridControlListaRecetas";
            this.gridControlListaRecetas.Size = new System.Drawing.Size(1014, 561);
            this.gridControlListaRecetas.TabIndex = 2;
            this.gridControlListaRecetas.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridViewListaRecetas});
            // 
            // gridViewListaRecetas
            // 
            this.gridViewListaRecetas.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.gridColumnId,
            this.gridColumnNombre,
            this.gridColumnCostoReceta});
            this.gridViewListaRecetas.GridControl = this.gridControlListaRecetas;
            this.gridViewListaRecetas.Name = "gridViewListaRecetas";
            this.gridViewListaRecetas.OptionsView.ShowAutoFilterRow = true;
            // 
            // gridColumnId
            // 
            this.gridColumnId.Caption = "Id";
            this.gridColumnId.Name = "gridColumnId";
            this.gridColumnId.OptionsColumn.AllowEdit = false;
            this.gridColumnId.Visible = true;
            this.gridColumnId.VisibleIndex = 0;
            this.gridColumnId.Width = 155;
            // 
            // gridColumnNombre
            // 
            this.gridColumnNombre.Caption = "Nombre";
            this.gridColumnNombre.Name = "gridColumnNombre";
            this.gridColumnNombre.OptionsColumn.AllowEdit = false;
            this.gridColumnNombre.Visible = true;
            this.gridColumnNombre.VisibleIndex = 1;
            this.gridColumnNombre.Width = 439;
            // 
            // gridColumnCostoReceta
            // 
            this.gridColumnCostoReceta.Caption = "Costo de la Receta";
            this.gridColumnCostoReceta.Name = "gridColumnCostoReceta";
            this.gridColumnCostoReceta.OptionsColumn.AllowEdit = false;
            this.gridColumnCostoReceta.Visible = true;
            this.gridColumnCostoReceta.VisibleIndex = 2;
            this.gridColumnCostoReceta.Width = 399;
            // 
            // PnlListaRecetas
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.gridControlListaRecetas);
            this.Controls.Add(this.ribbonControl);
            this.Name = "PnlListaRecetas";
            this.Size = new System.Drawing.Size(1014, 702);
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControlListaRecetas)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewListaRecetas)).EndInit();
            this.ResumeLayout(false);

        }
Пример #46
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DeptManageView));
     DevExpress.Utils.SerializableAppearanceObject  serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem  toolTipItem1  = new DevExpress.Utils.ToolTipItem();
     this.cJiaLabel1    = new CJia.Controls.CJiaLabel();
     this.gridColumn2   = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn1   = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridView1     = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn3   = new DevExpress.XtraGrid.Columns.GridColumn();
     this.DeptGrid      = new CJia.Controls.CJiaGrid();
     this.TxtDeptPinyin = new CJia.Controls.CJiaTextBox();
     this.cJiaLabel4    = new CJia.Controls.CJiaLabel();
     this.DeptSearch    = new CJia.Controls.CJiaTextSearch();
     this.cJiaLabel5    = new CJia.Controls.CJiaLabel();
     this.TxtDeptName   = new CJia.Controls.CJiaTextBox();
     this.cJiaLabel3    = new CJia.Controls.CJiaLabel();
     this.TxtDeptNo     = new CJia.Controls.CJiaTextBox();
     this.cJiaLabel2    = new CJia.Controls.CJiaLabel();
     this.BtnAddDept    = new CJia.Controls.BtnAdd();
     this.BtnDeptDelete = new CJia.Controls.BtnDelete();
     this.BtnUpdateDept = new CJia.Controls.CJiaButton();
     this.cJiaPanel2    = new CJia.Controls.CJiaPanel();
     this.pnlDept       = new CJia.Controls.CJiaPanel();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DeptGrid)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtDeptPinyin.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DeptSearch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtDeptName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtDeptNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cJiaPanel2)).BeginInit();
     this.cJiaPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pnlDept)).BeginInit();
     this.pnlDept.SuspendLayout();
     this.SuspendLayout();
     //
     // cJiaLabel1
     //
     this.cJiaLabel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                    | System.Windows.Forms.AnchorStyles.Right)));
     this.cJiaLabel1.Appearance.Font = new System.Drawing.Font("Tahoma", 18F);
     this.cJiaLabel1.Location        = new System.Drawing.Point(398, 5);
     this.cJiaLabel1.Name            = "cJiaLabel1";
     this.cJiaLabel1.Size            = new System.Drawing.Size(96, 29);
     this.cJiaLabel1.TabIndex        = 3;
     this.cJiaLabel1.Text            = "科室字典";
     //
     // gridColumn2
     //
     this.gridColumn2.Caption      = "科室名称";
     this.gridColumn2.FieldName    = "DEPT_NAME";
     this.gridColumn2.Name         = "gridColumn2";
     this.gridColumn2.Visible      = true;
     this.gridColumn2.VisibleIndex = 1;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption      = "科室编号";
     this.gridColumn1.FieldName    = "DEPT_NO";
     this.gridColumn1.Name         = "gridColumn1";
     this.gridColumn1.Visible      = true;
     this.gridColumn1.VisibleIndex = 0;
     //
     // gridView1
     //
     this.gridView1.Appearance.ColumnFilterButton.BackColor                    = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(184)))), ((int)(((byte)(251)))));
     this.gridView1.Appearance.ColumnFilterButton.BorderColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(184)))), ((int)(((byte)(251)))));
     this.gridView1.Appearance.ColumnFilterButton.ForeColor                    = System.Drawing.Color.White;
     this.gridView1.Appearance.ColumnFilterButton.Options.UseBackColor         = true;
     this.gridView1.Appearance.ColumnFilterButton.Options.UseBorderColor       = true;
     this.gridView1.Appearance.ColumnFilterButton.Options.UseForeColor         = true;
     this.gridView1.Appearance.ColumnFilterButtonActive.BackColor              = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(216)))), ((int)(((byte)(254)))));
     this.gridView1.Appearance.ColumnFilterButtonActive.BorderColor            = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(216)))), ((int)(((byte)(254)))));
     this.gridView1.Appearance.ColumnFilterButtonActive.ForeColor              = System.Drawing.Color.Black;
     this.gridView1.Appearance.ColumnFilterButtonActive.Options.UseBackColor   = true;
     this.gridView1.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gridView1.Appearance.ColumnFilterButtonActive.Options.UseForeColor   = true;
     this.gridView1.Appearance.Empty.BackColor                          = System.Drawing.Color.FromArgb(((int)(((byte)(236)))), ((int)(((byte)(246)))), ((int)(((byte)(255)))));
     this.gridView1.Appearance.Empty.BackColor2                         = System.Drawing.Color.White;
     this.gridView1.Appearance.Empty.Options.UseBackColor               = true;
     this.gridView1.Appearance.EvenRow.BackColor                        = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gridView1.Appearance.EvenRow.BorderColor                      = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gridView1.Appearance.EvenRow.ForeColor                        = System.Drawing.Color.Black;
     this.gridView1.Appearance.EvenRow.Options.UseBackColor             = true;
     this.gridView1.Appearance.EvenRow.Options.UseBorderColor           = true;
     this.gridView1.Appearance.EvenRow.Options.UseForeColor             = true;
     this.gridView1.Appearance.FilterCloseButton.BackColor              = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(184)))), ((int)(((byte)(251)))));
     this.gridView1.Appearance.FilterCloseButton.BorderColor            = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(184)))), ((int)(((byte)(251)))));
     this.gridView1.Appearance.FilterCloseButton.ForeColor              = System.Drawing.Color.White;
     this.gridView1.Appearance.FilterCloseButton.Options.UseBackColor   = true;
     this.gridView1.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gridView1.Appearance.FilterCloseButton.Options.UseForeColor   = true;
     this.gridView1.Appearance.FilterPanel.BackColor                    = System.Drawing.Color.FromArgb(((int)(((byte)(236)))), ((int)(((byte)(246)))), ((int)(((byte)(255)))));
     this.gridView1.Appearance.FilterPanel.BackColor2                   = System.Drawing.Color.White;
     this.gridView1.Appearance.FilterPanel.ForeColor                    = System.Drawing.Color.Black;
     this.gridView1.Appearance.FilterPanel.Options.UseBackColor         = true;
     this.gridView1.Appearance.FilterPanel.Options.UseForeColor         = true;
     this.gridView1.Appearance.FixedLine.BackColor                      = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(216)))), ((int)(((byte)(254)))));
     this.gridView1.Appearance.FixedLine.BorderColor                    = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(216)))), ((int)(((byte)(254)))));
     this.gridView1.Appearance.FixedLine.Options.UseBackColor           = true;
     this.gridView1.Appearance.FixedLine.Options.UseBorderColor         = true;
     this.gridView1.Appearance.FocusedCell.BackColor                    = System.Drawing.Color.White;
     this.gridView1.Appearance.FocusedCell.ForeColor                    = System.Drawing.Color.Black;
     this.gridView1.Appearance.FocusedCell.Options.UseBackColor         = true;
     this.gridView1.Appearance.FocusedCell.Options.UseForeColor         = true;
     this.gridView1.Appearance.FocusedRow.BackColor                     = System.Drawing.Color.FromArgb(((int)(((byte)(93)))), ((int)(((byte)(175)))), ((int)(((byte)(223)))));
     this.gridView1.Appearance.FocusedRow.BorderColor                   = System.Drawing.Color.FromArgb(((int)(((byte)(93)))), ((int)(((byte)(175)))), ((int)(((byte)(223)))));
     this.gridView1.Appearance.FocusedRow.ForeColor                     = System.Drawing.Color.White;
     this.gridView1.Appearance.FocusedRow.Options.UseBackColor          = true;
     this.gridView1.Appearance.FocusedRow.Options.UseBorderColor        = true;
     this.gridView1.Appearance.FocusedRow.Options.UseFont               = true;
     this.gridView1.Appearance.FocusedRow.Options.UseForeColor          = true;
     this.gridView1.Appearance.FooterPanel.BackColor                    = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(184)))), ((int)(((byte)(251)))));
     this.gridView1.Appearance.FooterPanel.BorderColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(184)))), ((int)(((byte)(251)))));
     this.gridView1.Appearance.FooterPanel.ForeColor                    = System.Drawing.Color.Black;
     this.gridView1.Appearance.FooterPanel.Options.UseBackColor         = true;
     this.gridView1.Appearance.FooterPanel.Options.UseBorderColor       = true;
     this.gridView1.Appearance.FooterPanel.Options.UseForeColor         = true;
     this.gridView1.Appearance.GroupButton.BackColor                    = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(184)))), ((int)(((byte)(251)))));
     this.gridView1.Appearance.GroupButton.BorderColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(184)))), ((int)(((byte)(251)))));
     this.gridView1.Appearance.GroupButton.Options.UseBackColor         = true;
     this.gridView1.Appearance.GroupButton.Options.UseBorderColor       = true;
     this.gridView1.Appearance.GroupFooter.BackColor                    = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(216)))), ((int)(((byte)(254)))));
     this.gridView1.Appearance.GroupFooter.BorderColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(216)))), ((int)(((byte)(254)))));
     this.gridView1.Appearance.GroupFooter.ForeColor                    = System.Drawing.Color.Black;
     this.gridView1.Appearance.GroupFooter.Options.UseBackColor         = true;
     this.gridView1.Appearance.GroupFooter.Options.UseBorderColor       = true;
     this.gridView1.Appearance.GroupFooter.Options.UseForeColor         = true;
     this.gridView1.Appearance.GroupPanel.BackColor                     = System.Drawing.Color.FromArgb(((int)(((byte)(236)))), ((int)(((byte)(246)))), ((int)(((byte)(255)))));
     this.gridView1.Appearance.GroupPanel.BackColor2                    = System.Drawing.Color.White;
     this.gridView1.Appearance.GroupPanel.ForeColor                     = System.Drawing.Color.Black;
     this.gridView1.Appearance.GroupPanel.Options.UseBackColor          = true;
     this.gridView1.Appearance.GroupPanel.Options.UseForeColor          = true;
     this.gridView1.Appearance.GroupRow.BackColor                       = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(216)))), ((int)(((byte)(254)))));
     this.gridView1.Appearance.GroupRow.BorderColor                     = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(216)))), ((int)(((byte)(254)))));
     this.gridView1.Appearance.GroupRow.ForeColor                       = System.Drawing.Color.Black;
     this.gridView1.Appearance.GroupRow.Options.UseBackColor            = true;
     this.gridView1.Appearance.GroupRow.Options.UseBorderColor          = true;
     this.gridView1.Appearance.GroupRow.Options.UseForeColor            = true;
     this.gridView1.Appearance.HeaderPanel.BackColor                    = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(216)))), ((int)(((byte)(254)))));
     this.gridView1.Appearance.HeaderPanel.BorderColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(216)))), ((int)(((byte)(254)))));
     this.gridView1.Appearance.HeaderPanel.Options.UseBackColor         = true;
     this.gridView1.Appearance.HeaderPanel.Options.UseBorderColor       = true;
     this.gridView1.Appearance.HideSelectionRow.BackColor               = System.Drawing.Color.FromArgb(((int)(((byte)(105)))), ((int)(((byte)(170)))), ((int)(((byte)(225)))));
     this.gridView1.Appearance.HideSelectionRow.BorderColor             = System.Drawing.Color.FromArgb(((int)(((byte)(83)))), ((int)(((byte)(155)))), ((int)(((byte)(215)))));
     this.gridView1.Appearance.HideSelectionRow.ForeColor               = System.Drawing.Color.FromArgb(((int)(((byte)(236)))), ((int)(((byte)(246)))), ((int)(((byte)(255)))));
     this.gridView1.Appearance.HideSelectionRow.Options.UseBackColor    = true;
     this.gridView1.Appearance.HideSelectionRow.Options.UseBorderColor  = true;
     this.gridView1.Appearance.HideSelectionRow.Options.UseForeColor    = true;
     this.gridView1.Appearance.HorzLine.BackColor                       = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(184)))), ((int)(((byte)(251)))));
     this.gridView1.Appearance.HorzLine.Options.UseBackColor            = true;
     this.gridView1.Appearance.OddRow.BackColor                         = System.Drawing.Color.FromArgb(((int)(((byte)(236)))), ((int)(((byte)(246)))), ((int)(((byte)(255)))));
     this.gridView1.Appearance.OddRow.BorderColor                       = System.Drawing.Color.FromArgb(((int)(((byte)(236)))), ((int)(((byte)(246)))), ((int)(((byte)(255)))));
     this.gridView1.Appearance.OddRow.ForeColor                         = System.Drawing.Color.Black;
     this.gridView1.Appearance.OddRow.Options.UseBackColor              = true;
     this.gridView1.Appearance.OddRow.Options.UseBorderColor            = true;
     this.gridView1.Appearance.OddRow.Options.UseForeColor              = true;
     this.gridView1.Appearance.Preview.Font                      = new System.Drawing.Font("Verdana", 7.5F);
     this.gridView1.Appearance.Preview.ForeColor                 = System.Drawing.Color.FromArgb(((int)(((byte)(83)))), ((int)(((byte)(155)))), ((int)(((byte)(215)))));
     this.gridView1.Appearance.Preview.Options.UseFont           = true;
     this.gridView1.Appearance.Preview.Options.UseForeColor      = true;
     this.gridView1.Appearance.Row.BackColor                     = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gridView1.Appearance.Row.ForeColor                     = System.Drawing.Color.Black;
     this.gridView1.Appearance.Row.Options.UseBackColor          = true;
     this.gridView1.Appearance.Row.Options.UseForeColor          = true;
     this.gridView1.Appearance.RowSeparator.BackColor            = System.Drawing.Color.FromArgb(((int)(((byte)(236)))), ((int)(((byte)(246)))), ((int)(((byte)(255)))));
     this.gridView1.Appearance.RowSeparator.BackColor2           = System.Drawing.Color.White;
     this.gridView1.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gridView1.Appearance.SelectedRow.BackColor             = System.Drawing.Color.FromArgb(((int)(((byte)(83)))), ((int)(((byte)(155)))), ((int)(((byte)(215)))));
     this.gridView1.Appearance.SelectedRow.ForeColor             = System.Drawing.Color.White;
     this.gridView1.Appearance.SelectedRow.Options.UseBackColor  = true;
     this.gridView1.Appearance.SelectedRow.Options.UseForeColor  = true;
     this.gridView1.Appearance.TopNewRow.BackColor               = System.Drawing.Color.White;
     this.gridView1.Appearance.TopNewRow.Options.UseBackColor    = true;
     this.gridView1.Appearance.VertLine.BackColor                = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(184)))), ((int)(((byte)(251)))));
     this.gridView1.Appearance.VertLine.Options.UseBackColor     = true;
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.gridColumn1,
         this.gridColumn2,
         this.gridColumn3
     });
     this.gridView1.FocusRectStyle                               = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.None;
     this.gridView1.GridControl                                  = this.DeptGrid;
     this.gridView1.IndicatorWidth                               = 30;
     this.gridView1.Name                                         = "gridView1";
     this.gridView1.OptionsBehavior.Editable                     = false;
     this.gridView1.OptionsCustomization.AllowFilter             = false;
     this.gridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView1.OptionsView.EnableAppearanceEvenRow          = true;
     this.gridView1.OptionsView.EnableAppearanceOddRow           = true;
     this.gridView1.OptionsView.ShowGroupPanel                   = false;
     this.gridView1.RowHeight                                    = 25;
     this.gridView1.FocusedRowChanged                           += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridView1_FocusedRowChanged);
     //
     // gridColumn3
     //
     this.gridColumn3.Caption      = "拼音编码";
     this.gridColumn3.FieldName    = "FIRST_PINYIN";
     this.gridColumn3.Name         = "gridColumn3";
     this.gridColumn3.Visible      = true;
     this.gridColumn3.VisibleIndex = 2;
     //
     // DeptGrid
     //
     this.DeptGrid.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     this.DeptGrid.Font                 = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.DeptGrid.IndicatorWidth       = 30;
     this.DeptGrid.Location             = new System.Drawing.Point(5, 93);
     this.DeptGrid.LookAndFeel.SkinName = "Office 2010 Blue";
     this.DeptGrid.LookAndFeel.UseDefaultLookAndFeel = false;
     this.DeptGrid.MainView      = this.gridView1;
     this.DeptGrid.Margin        = new System.Windows.Forms.Padding(23);
     this.DeptGrid.Name          = "DeptGrid";
     this.DeptGrid.ShowRowNumber = true;
     this.DeptGrid.Size          = new System.Drawing.Size(882, 439);
     this.DeptGrid.TabIndex      = 4;
     this.DeptGrid.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridView1
     });
     //
     // TxtDeptPinyin
     //
     this.TxtDeptPinyin.Location = new System.Drawing.Point(519, 12);
     this.TxtDeptPinyin.Name     = "TxtDeptPinyin";
     this.TxtDeptPinyin.Properties.Appearance.BackColor              = System.Drawing.Color.White;
     this.TxtDeptPinyin.Properties.Appearance.Font                   = new System.Drawing.Font("Tahoma", 10F);
     this.TxtDeptPinyin.Properties.Appearance.Options.UseBackColor   = true;
     this.TxtDeptPinyin.Properties.Appearance.Options.UseFont        = true;
     this.TxtDeptPinyin.Properties.LookAndFeel.SkinName              = "Office 2010 Blue";
     this.TxtDeptPinyin.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.TxtDeptPinyin.Properties.ReadOnly = true;
     this.TxtDeptPinyin.Size     = new System.Drawing.Size(135, 22);
     this.TxtDeptPinyin.TabIndex = 4;
     //
     // cJiaLabel4
     //
     this.cJiaLabel4.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.cJiaLabel4.Location        = new System.Drawing.Point(453, 16);
     this.cJiaLabel4.Name            = "cJiaLabel4";
     this.cJiaLabel4.Size            = new System.Drawing.Size(60, 16);
     this.cJiaLabel4.TabIndex        = 4;
     this.cJiaLabel4.Text            = "拼音编码";
     //
     // DeptSearch
     //
     this.DeptSearch.EditValue = "";
     this.DeptSearch.Location  = new System.Drawing.Point(67, 543);
     this.DeptSearch.Name      = "DeptSearch";
     this.DeptSearch.PointText = "";
     this.DeptSearch.Properties.Appearance.BorderColor            = System.Drawing.Color.Salmon;
     this.DeptSearch.Properties.Appearance.Font                   = new System.Drawing.Font("Tahoma", 14F);
     this.DeptSearch.Properties.Appearance.ForeColor              = System.Drawing.Color.Black;
     this.DeptSearch.Properties.Appearance.Options.UseBorderColor = true;
     this.DeptSearch.Properties.Appearance.Options.UseFont        = true;
     this.DeptSearch.Properties.Appearance.Options.UseForeColor   = true;
     toolTipItem1.Text = "查询";
     superToolTip1.Items.Add(toolTipItem1);
     this.DeptSearch.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, ((System.Drawing.Image)(resources.GetObject("DeptSearch.Properties.Buttons"))), new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", null, superToolTip1, true)
     });
     this.DeptSearch.Properties.LookAndFeel.SkinName = "Office 2010 Blue";
     this.DeptSearch.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.DeptSearch.Size         = new System.Drawing.Size(300, 32);
     this.DeptSearch.TabIndex     = 1;
     this.DeptSearch.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.DeptSearch_ButtonClick);
     //
     // cJiaLabel5
     //
     this.cJiaLabel5.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.cJiaLabel5.Location        = new System.Drawing.Point(9, 550);
     this.cJiaLabel5.Name            = "cJiaLabel5";
     this.cJiaLabel5.Size            = new System.Drawing.Size(45, 16);
     this.cJiaLabel5.TabIndex        = 1;
     this.cJiaLabel5.Text            = "关键字";
     //
     // TxtDeptName
     //
     this.TxtDeptName.Location = new System.Drawing.Point(295, 13);
     this.TxtDeptName.Name     = "TxtDeptName";
     this.TxtDeptName.Properties.Appearance.BackColor              = System.Drawing.Color.White;
     this.TxtDeptName.Properties.Appearance.Font                   = new System.Drawing.Font("Tahoma", 10F);
     this.TxtDeptName.Properties.Appearance.Options.UseBackColor   = true;
     this.TxtDeptName.Properties.Appearance.Options.UseFont        = true;
     this.TxtDeptName.Properties.LookAndFeel.SkinName              = "Office 2010 Blue";
     this.TxtDeptName.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.TxtDeptName.Size     = new System.Drawing.Size(135, 22);
     this.TxtDeptName.TabIndex = 3;
     //
     // cJiaLabel3
     //
     this.cJiaLabel3.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.cJiaLabel3.Location        = new System.Drawing.Point(229, 15);
     this.cJiaLabel3.Name            = "cJiaLabel3";
     this.cJiaLabel3.Size            = new System.Drawing.Size(60, 16);
     this.cJiaLabel3.TabIndex        = 2;
     this.cJiaLabel3.Text            = "科室名称";
     //
     // TxtDeptNo
     //
     this.TxtDeptNo.Location = new System.Drawing.Point(77, 12);
     this.TxtDeptNo.Name     = "TxtDeptNo";
     this.TxtDeptNo.Properties.Appearance.BackColor              = System.Drawing.Color.White;
     this.TxtDeptNo.Properties.Appearance.Font                   = new System.Drawing.Font("Tahoma", 10F);
     this.TxtDeptNo.Properties.Appearance.Options.UseBackColor   = true;
     this.TxtDeptNo.Properties.Appearance.Options.UseFont        = true;
     this.TxtDeptNo.Properties.LookAndFeel.SkinName              = "Office 2010 Blue";
     this.TxtDeptNo.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.TxtDeptNo.Size     = new System.Drawing.Size(135, 22);
     this.TxtDeptNo.TabIndex = 2;
     //
     // cJiaLabel2
     //
     this.cJiaLabel2.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.cJiaLabel2.Location        = new System.Drawing.Point(11, 14);
     this.cJiaLabel2.Name            = "cJiaLabel2";
     this.cJiaLabel2.Size            = new System.Drawing.Size(60, 16);
     this.cJiaLabel2.TabIndex        = 0;
     this.cJiaLabel2.Text            = "科室编号";
     //
     // BtnAddDept
     //
     this.BtnAddDept.Appearance.Font                 = new System.Drawing.Font("微软雅黑", 10F);
     this.BtnAddDept.Appearance.ForeColor            = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(57)))), ((int)(((byte)(91)))));
     this.BtnAddDept.Appearance.Options.UseFont      = true;
     this.BtnAddDept.Appearance.Options.UseForeColor = true;
     this.BtnAddDept.CustomText           = "添加(F1)";
     this.BtnAddDept.Image                = ((System.Drawing.Image)(resources.GetObject("BtnAddDept.Image")));
     this.BtnAddDept.Location             = new System.Drawing.Point(635, 547);
     this.BtnAddDept.LookAndFeel.SkinName = "Office 2010 Blue";
     this.BtnAddDept.LookAndFeel.UseDefaultLookAndFeel = false;
     this.BtnAddDept.Name       = "BtnAddDept";
     this.BtnAddDept.Selectable = false;
     this.BtnAddDept.Size       = new System.Drawing.Size(80, 28);
     this.BtnAddDept.TabIndex   = 5;
     this.BtnAddDept.Text       = "添加(F1)";
     this.BtnAddDept.Click     += new System.EventHandler(this.BtnAddDept_Click);
     //
     // BtnDeptDelete
     //
     this.BtnDeptDelete.Appearance.Font                 = new System.Drawing.Font("微软雅黑", 10F);
     this.BtnDeptDelete.Appearance.ForeColor            = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(57)))), ((int)(((byte)(91)))));
     this.BtnDeptDelete.Appearance.Options.UseFont      = true;
     this.BtnDeptDelete.Appearance.Options.UseForeColor = true;
     this.BtnDeptDelete.CustomText           = "删除(F3)";
     this.BtnDeptDelete.Image                = ((System.Drawing.Image)(resources.GetObject("BtnDeptDelete.Image")));
     this.BtnDeptDelete.Location             = new System.Drawing.Point(807, 547);
     this.BtnDeptDelete.LookAndFeel.SkinName = "Office 2010 Blue";
     this.BtnDeptDelete.LookAndFeel.UseDefaultLookAndFeel = false;
     this.BtnDeptDelete.Name       = "BtnDeptDelete";
     this.BtnDeptDelete.Selectable = false;
     this.BtnDeptDelete.Size       = new System.Drawing.Size(80, 28);
     this.BtnDeptDelete.TabIndex   = 7;
     this.BtnDeptDelete.Text       = "删除(F3)";
     this.BtnDeptDelete.Click     += new System.EventHandler(this.BtnDeptDelete_Click);
     //
     // BtnUpdateDept
     //
     this.BtnUpdateDept.Appearance.Font                 = new System.Drawing.Font("微软雅黑", 10F);
     this.BtnUpdateDept.Appearance.ForeColor            = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(57)))), ((int)(((byte)(91)))));
     this.BtnUpdateDept.Appearance.Options.UseFont      = true;
     this.BtnUpdateDept.Appearance.Options.UseForeColor = true;
     this.BtnUpdateDept.CustomText           = "修改(F2)";
     this.BtnUpdateDept.Image                = ((System.Drawing.Image)(resources.GetObject("BtnUpdateDept.Image")));
     this.BtnUpdateDept.Location             = new System.Drawing.Point(721, 547);
     this.BtnUpdateDept.LookAndFeel.SkinName = "Office 2010 Blue";
     this.BtnUpdateDept.LookAndFeel.UseDefaultLookAndFeel = false;
     this.BtnUpdateDept.Name       = "BtnUpdateDept";
     this.BtnUpdateDept.Selectable = false;
     this.BtnUpdateDept.Size       = new System.Drawing.Size(80, 28);
     this.BtnUpdateDept.TabIndex   = 6;
     this.BtnUpdateDept.Text       = "修改(F2)";
     this.BtnUpdateDept.Click     += new System.EventHandler(this.BtnUpdateDept_Click);
     //
     // cJiaPanel2
     //
     this.cJiaPanel2.Controls.Add(this.TxtDeptPinyin);
     this.cJiaPanel2.Controls.Add(this.cJiaLabel4);
     this.cJiaPanel2.Controls.Add(this.TxtDeptName);
     this.cJiaPanel2.Controls.Add(this.cJiaLabel3);
     this.cJiaPanel2.Controls.Add(this.TxtDeptNo);
     this.cJiaPanel2.Controls.Add(this.cJiaLabel2);
     this.cJiaPanel2.Location             = new System.Drawing.Point(5, 43);
     this.cJiaPanel2.LookAndFeel.SkinName = "Office 2010 Silver";
     this.cJiaPanel2.LookAndFeel.UseDefaultLookAndFeel = false;
     this.cJiaPanel2.Name     = "cJiaPanel2";
     this.cJiaPanel2.Size     = new System.Drawing.Size(882, 45);
     this.cJiaPanel2.TabIndex = 5;
     //
     // pnlDept
     //
     this.pnlDept.Controls.Add(this.BtnAddDept);
     this.pnlDept.Controls.Add(this.BtnDeptDelete);
     this.pnlDept.Controls.Add(this.BtnUpdateDept);
     this.pnlDept.Controls.Add(this.cJiaPanel2);
     this.pnlDept.Controls.Add(this.DeptSearch);
     this.pnlDept.Controls.Add(this.DeptGrid);
     this.pnlDept.Controls.Add(this.cJiaLabel5);
     this.pnlDept.Controls.Add(this.cJiaLabel1);
     this.pnlDept.Location             = new System.Drawing.Point(250, 12);
     this.pnlDept.LookAndFeel.SkinName = "Office 2010 Silver";
     this.pnlDept.LookAndFeel.UseDefaultLookAndFeel = false;
     this.pnlDept.Name     = "pnlDept";
     this.pnlDept.Size     = new System.Drawing.Size(892, 580);
     this.pnlDept.TabIndex = 10;
     //
     // DeptManageView
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoScroll          = true;
     this.Controls.Add(this.pnlDept);
     this.Name         = "DeptManageView";
     this.Size         = new System.Drawing.Size(1400, 600);
     this.SizeChanged += new System.EventHandler(this.DeptManageView_SizeChanged);
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DeptGrid)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtDeptPinyin.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DeptSearch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtDeptName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtDeptNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cJiaPanel2)).EndInit();
     this.cJiaPanel2.ResumeLayout(false);
     this.cJiaPanel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pnlDept)).EndInit();
     this.pnlDept.ResumeLayout(false);
     this.pnlDept.PerformLayout();
     this.ResumeLayout(false);
 }
Пример #47
0
 /// <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(CommentStaff));
     DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem  toolTipItem1  = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip2 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem  toolTipItem2  = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip3 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem  toolTipItem3  = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip4 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem  toolTipItem4  = new DevExpress.Utils.ToolTipItem();
     this.ribbon               = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.btnDeleteCmt         = new DevExpress.XtraBars.BarButtonItem();
     this.btnRestoreCmt        = new DevExpress.XtraBars.BarButtonItem();
     this.btnRefreshCmt        = new DevExpress.XtraBars.BarButtonItem();
     this.btnViewCmtd          = new DevExpress.XtraBars.BarButtonItem();
     this.ribbonPage1          = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup1     = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup2     = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.layoutControl1       = new DevExpress.XtraLayout.LayoutControl();
     this.gcComment            = new DevExpress.XtraGrid.GridControl();
     this.gvComment            = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.Root                 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem1   = new DevExpress.XtraLayout.LayoutControlItem();
     this.bindingSourceComment = new System.Windows.Forms.BindingSource(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcComment)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvComment)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Root)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSourceComment)).BeginInit();
     this.SuspendLayout();
     //
     // ribbon
     //
     this.ribbon.ExpandCollapseItem.Id = 0;
     this.ribbon.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
         this.ribbon.ExpandCollapseItem,
         this.ribbon.SearchEditItem,
         this.btnDeleteCmt,
         this.btnRestoreCmt,
         this.btnRefreshCmt,
         this.btnViewCmtd
     });
     this.ribbon.Location  = new System.Drawing.Point(0, 0);
     this.ribbon.MaxItemId = 5;
     this.ribbon.Name      = "ribbon";
     this.ribbon.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
         this.ribbonPage1
     });
     this.ribbon.Size = new System.Drawing.Size(1084, 178);
     //
     // btnDeleteCmt
     //
     this.btnDeleteCmt.Caption                 = "Delete comment";
     this.btnDeleteCmt.Id                      = 1;
     this.btnDeleteCmt.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("btnDeleteCmt.ImageOptions.Image")));
     this.btnDeleteCmt.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("btnDeleteCmt.ImageOptions.LargeImage")));
     this.btnDeleteCmt.LargeWidth              = 60;
     this.btnDeleteCmt.Name                    = "btnDeleteCmt";
     toolTipItem1.Text = "Delete comment of user";
     superToolTip1.Items.Add(toolTipItem1);
     this.btnDeleteCmt.SuperTip   = superToolTip1;
     this.btnDeleteCmt.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnDeleteCmt_ItemClick);
     //
     // btnRestoreCmt
     //
     this.btnRestoreCmt.Caption                 = "Restore comment";
     this.btnRestoreCmt.Id                      = 2;
     this.btnRestoreCmt.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("btnRestoreCmt.ImageOptions.Image")));
     this.btnRestoreCmt.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("btnRestoreCmt.ImageOptions.LargeImage")));
     this.btnRestoreCmt.LargeWidth              = 60;
     this.btnRestoreCmt.Name                    = "btnRestoreCmt";
     toolTipItem2.Text = "Restore comment of user";
     superToolTip2.Items.Add(toolTipItem2);
     this.btnRestoreCmt.SuperTip   = superToolTip2;
     this.btnRestoreCmt.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnRestoreCmt_ItemClick);
     //
     // btnRefreshCmt
     //
     this.btnRefreshCmt.Caption                 = "Refresh comment";
     this.btnRefreshCmt.Id                      = 3;
     this.btnRefreshCmt.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("btnRefreshCmt.ImageOptions.Image")));
     this.btnRefreshCmt.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("btnRefreshCmt.ImageOptions.LargeImage")));
     this.btnRefreshCmt.LargeWidth              = 70;
     this.btnRefreshCmt.Name                    = "btnRefreshCmt";
     toolTipItem3.Text = "Refresh comment";
     superToolTip3.Items.Add(toolTipItem3);
     this.btnRefreshCmt.SuperTip   = superToolTip3;
     this.btnRefreshCmt.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnRefreshCmt_ItemClick);
     //
     // btnViewCmtd
     //
     this.btnViewCmtd.Caption            = "View comment detail";
     this.btnViewCmtd.Id                 = 4;
     this.btnViewCmtd.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("btnViewCmtd.ImageOptions.Image")));
     this.btnViewCmtd.LargeWidth         = 105;
     this.btnViewCmtd.Name               = "btnViewCmtd";
     this.btnViewCmtd.RibbonStyle        = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
     toolTipItem4.Text = "Open comment reply list management ";
     superToolTip4.Items.Add(toolTipItem4);
     this.btnViewCmtd.SuperTip   = superToolTip4;
     this.btnViewCmtd.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnViewCmtd_ItemClick);
     //
     // ribbonPage1
     //
     this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
         this.ribbonPageGroup1,
         this.ribbonPageGroup2
     });
     this.ribbonPage1.Name = "ribbonPage1";
     this.ribbonPage1.Text = "Tool";
     //
     // ribbonPageGroup1
     //
     this.ribbonPageGroup1.ItemLinks.Add(this.btnDeleteCmt);
     this.ribbonPageGroup1.ItemLinks.Add(this.btnRestoreCmt);
     this.ribbonPageGroup1.ItemLinks.Add(this.btnRefreshCmt);
     this.ribbonPageGroup1.Name = "ribbonPageGroup1";
     this.ribbonPageGroup1.Text = "Comment Management";
     //
     // ribbonPageGroup2
     //
     this.ribbonPageGroup2.ItemLinks.Add(this.btnViewCmtd);
     this.ribbonPageGroup2.Name = "ribbonPageGroup2";
     this.ribbonPageGroup2.Text = "Comment Detail";
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.gcComment);
     this.layoutControl1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.layoutControl1.Location = new System.Drawing.Point(0, 178);
     this.layoutControl1.Name     = "layoutControl1";
     this.layoutControl1.Root     = this.Root;
     this.layoutControl1.Size     = new System.Drawing.Size(1084, 578);
     this.layoutControl1.TabIndex = 2;
     this.layoutControl1.Text     = "layoutControl1";
     //
     // gcComment
     //
     this.gcComment.Location    = new System.Drawing.Point(12, 12);
     this.gcComment.MainView    = this.gvComment;
     this.gcComment.MenuManager = this.ribbon;
     this.gcComment.Name        = "gcComment";
     this.gcComment.Size        = new System.Drawing.Size(1060, 554);
     this.gcComment.TabIndex    = 4;
     this.gcComment.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gvComment
     });
     //
     // gvComment
     //
     this.gvComment.GridControl = this.gcComment;
     this.gvComment.Name        = "gvComment";
     this.gvComment.OptionsBehavior.Editable = false;
     this.gvComment.RowClick += new DevExpress.XtraGrid.Views.Grid.RowClickEventHandler(this.gvComment_RowClick);
     //
     // Root
     //
     this.Root.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.Root.GroupBordersVisible         = false;
     this.Root.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
         this.layoutControlItem1
     });
     this.Root.Name        = "Root";
     this.Root.Size        = new System.Drawing.Size(1084, 578);
     this.Root.TextVisible = false;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control     = this.gcComment;
     this.layoutControlItem1.Location    = new System.Drawing.Point(0, 0);
     this.layoutControlItem1.Name        = "layoutControlItem1";
     this.layoutControlItem1.Size        = new System.Drawing.Size(1064, 558);
     this.layoutControlItem1.TextSize    = new System.Drawing.Size(0, 0);
     this.layoutControlItem1.TextVisible = false;
     //
     // CommentStaff
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 16F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1084, 755);
     this.Controls.Add(this.layoutControl1);
     this.Controls.Add(this.ribbon);
     this.Name   = "CommentStaff";
     this.Ribbon = this.ribbon;
     this.Text   = "CommentStaff";
     this.Load  += new System.EventHandler(this.CommentStaff_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcComment)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvComment)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Root)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSourceComment)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Пример #48
0
 /// <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(TfmMain));
     DevExpress.Utils.SuperToolTip     superToolTip1          = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1      = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem      toolTipItem1           = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2      = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip     superToolTip2          = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem3      = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem      toolTipItem2           = new DevExpress.Utils.ToolTipItem();
     this.ribbon                     = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.btnAbout                   = new DevExpress.XtraBars.BarButtonItem();
     this.btnHelp                    = new DevExpress.XtraBars.BarButtonItem();
     this.btnSettings                = new DevExpress.XtraBars.BarButtonItem();
     this.btnLibraryNew              = new DevExpress.XtraBars.BarButtonItem();
     this.btnLibraryOpen             = new DevExpress.XtraBars.BarButtonItem();
     this.btnClearMemory             = new DevExpress.XtraBars.BarButtonItem();
     this.btnLibraryConvert          = new DevExpress.XtraBars.BarButtonItem();
     this.btnPreviewFolder           = new DevExpress.XtraBars.BarButtonItem();
     this.lbMemoryUsage              = new DevExpress.XtraBars.BarStaticItem();
     this.btnDiagnosticInfo          = new DevExpress.XtraBars.BarButtonItem();
     this.btnShowStartPage           = new DevExpress.XtraBars.BarButtonItem();
     this.btnPreviewArmours          = new DevExpress.XtraBars.BarButtonItem();
     this.btnWeapons                 = new DevExpress.XtraBars.BarButtonItem();
     this.btnConvertImage            = new DevExpress.XtraBars.BarButtonItem();
     this.barStaticItem1             = new DevExpress.XtraBars.BarStaticItem();
     this.tabMain                    = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup1           = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup2           = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPage1                = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup3           = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup4           = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.repositoryItemProgressBar1 = new DevExpress.XtraEditors.Repository.RepositoryItemProgressBar();
     this.ribbonStatusBar            = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.dockManager1               = new DevExpress.XtraBars.Docking.DockManager(this.components);
     this.UsageTimer                 = new System.Windows.Forms.Timer(this.components);
     this.defaultLookAndFeel1        = new DevExpress.LookAndFeel.DefaultLookAndFeel(this.components);
     this.taskbarAssistant1          = new DevExpress.Utils.Taskbar.TaskbarAssistant();
     this.jumpListItemTask1          = new DevExpress.Utils.Taskbar.JumpListItemTask();
     this.ribbonPageGroup5           = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.btnOpenMap                 = new DevExpress.XtraBars.BarButtonItem();
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemProgressBar1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).BeginInit();
     this.SuspendLayout();
     //
     // ribbon
     //
     this.ribbon.ExpandCollapseItem.Id = 0;
     this.ribbon.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
         this.ribbon.ExpandCollapseItem,
         this.btnAbout,
         this.btnHelp,
         this.btnSettings,
         this.btnLibraryNew,
         this.btnLibraryOpen,
         this.btnClearMemory,
         this.btnLibraryConvert,
         this.btnPreviewFolder,
         this.lbMemoryUsage,
         this.btnDiagnosticInfo,
         this.btnShowStartPage,
         this.btnPreviewArmours,
         this.btnWeapons,
         this.btnConvertImage,
         this.barStaticItem1,
         this.btnOpenMap
     });
     this.ribbon.Location  = new System.Drawing.Point(0, 0);
     this.ribbon.MaxItemId = 29;
     this.ribbon.Name      = "ribbon";
     this.ribbon.PageHeaderItemLinks.Add(this.btnHelp);
     this.ribbon.PageHeaderItemLinks.Add(this.btnAbout);
     this.ribbon.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
         this.tabMain,
         this.ribbonPage1
     });
     this.ribbon.QuickToolbarItemLinks.Add(this.btnShowStartPage);
     this.ribbon.QuickToolbarItemLinks.Add(this.btnSettings);
     this.ribbon.QuickToolbarItemLinks.Add(this.btnDiagnosticInfo);
     this.ribbon.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.repositoryItemProgressBar1
     });
     this.ribbon.Size      = new System.Drawing.Size(1206, 147);
     this.ribbon.StatusBar = this.ribbonStatusBar;
     //
     // btnAbout
     //
     this.btnAbout.Caption                 = "About";
     this.btnAbout.Id                      = 1;
     this.btnAbout.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("btnAbout.ImageOptions.Image")));
     this.btnAbout.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("btnAbout.ImageOptions.LargeImage")));
     this.btnAbout.Name                    = "btnAbout";
     //
     // btnHelp
     //
     this.btnHelp.Caption                 = "Help";
     this.btnHelp.Id                      = 2;
     this.btnHelp.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("btnHelp.ImageOptions.Image")));
     this.btnHelp.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("btnHelp.ImageOptions.LargeImage")));
     this.btnHelp.Name                    = "btnHelp";
     //
     // btnSettings
     //
     this.btnSettings.Caption = "Settings";
     this.btnSettings.Id      = 3;
     this.btnSettings.ImageOptions.AllowGlyphSkinning = DevExpress.Utils.DefaultBoolean.True;
     this.btnSettings.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("btnSettings.ImageOptions.Image")));
     this.btnSettings.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("btnSettings.ImageOptions.LargeImage")));
     this.btnSettings.Name = "btnSettings";
     //
     // btnLibraryNew
     //
     this.btnLibraryNew.Caption                 = "New";
     this.btnLibraryNew.Id                      = 15;
     this.btnLibraryNew.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("btnLibraryNew.ImageOptions.Image")));
     this.btnLibraryNew.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("btnLibraryNew.ImageOptions.LargeImage")));
     this.btnLibraryNew.Name                    = "btnLibraryNew";
     this.btnLibraryNew.ItemClick              += new DevExpress.XtraBars.ItemClickEventHandler(this.btnLibraryNew_ItemClick);
     //
     // btnLibraryOpen
     //
     this.btnLibraryOpen.Caption                 = "Open";
     this.btnLibraryOpen.Id                      = 16;
     this.btnLibraryOpen.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("btnLibraryOpen.ImageOptions.Image")));
     this.btnLibraryOpen.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("btnLibraryOpen.ImageOptions.LargeImage")));
     this.btnLibraryOpen.Name                    = "btnLibraryOpen";
     this.btnLibraryOpen.ItemClick              += new DevExpress.XtraBars.ItemClickEventHandler(this.btnLibraryOpen_ItemClick);
     //
     // btnClearMemory
     //
     this.btnClearMemory.Caption                 = "Clear Memory";
     this.btnClearMemory.Id                      = 17;
     this.btnClearMemory.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("btnClearMemory.ImageOptions.Image")));
     this.btnClearMemory.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("btnClearMemory.ImageOptions.LargeImage")));
     this.btnClearMemory.Name                    = "btnClearMemory";
     toolTipTitleItem1.Text                      = "Clear Memory";
     toolTipItem1.LeftIndent                     = 6;
     toolTipItem1.Text = "Clear out unused RAM that hasn\'t been taken care of automatically.\r\nOnly use this" +
                         " if you are working with a high data load.";
     toolTipTitleItem2.LeftIndent = 6;
     toolTipTitleItem2.Text       = "Garbage Collection";
     superToolTip1.Items.Add(toolTipTitleItem1);
     superToolTip1.Items.Add(toolTipItem1);
     superToolTip1.Items.Add(toolTipTitleItem2);
     this.btnClearMemory.SuperTip   = superToolTip1;
     this.btnClearMemory.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnClearMemory_ItemClick);
     //
     // btnLibraryConvert
     //
     this.btnLibraryConvert.Caption                 = "Convert";
     this.btnLibraryConvert.Id                      = 18;
     this.btnLibraryConvert.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("btnLibraryConvert.ImageOptions.Image")));
     this.btnLibraryConvert.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("btnLibraryConvert.ImageOptions.LargeImage")));
     this.btnLibraryConvert.Name                    = "btnLibraryConvert";
     toolTipTitleItem3.Text  = "Convert Library";
     toolTipItem2.LeftIndent = 6;
     toolTipItem2.Text       = "Convert libraries between all known library configurations.";
     superToolTip2.Items.Add(toolTipTitleItem3);
     superToolTip2.Items.Add(toolTipItem2);
     this.btnLibraryConvert.SuperTip   = superToolTip2;
     this.btnLibraryConvert.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnLibraryConvert_ItemClick);
     //
     // btnPreviewFolder
     //
     this.btnPreviewFolder.Caption                 = "Folder";
     this.btnPreviewFolder.Id                      = 20;
     this.btnPreviewFolder.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("btnPreviewFolder.ImageOptions.Image")));
     this.btnPreviewFolder.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("btnPreviewFolder.ImageOptions.LargeImage")));
     this.btnPreviewFolder.Name                    = "btnPreviewFolder";
     this.btnPreviewFolder.ItemClick              += new DevExpress.XtraBars.ItemClickEventHandler(this.btnPreviewFolder_ItemClick);
     //
     // lbMemoryUsage
     //
     this.lbMemoryUsage.Caption = "RAM Usage";
     this.lbMemoryUsage.Id      = 21;
     this.lbMemoryUsage.Name    = "lbMemoryUsage";
     //
     // btnDiagnosticInfo
     //
     this.btnDiagnosticInfo.Caption = "Diagnostic Information";
     this.btnDiagnosticInfo.Id      = 22;
     this.btnDiagnosticInfo.ImageOptions.AllowGlyphSkinning = DevExpress.Utils.DefaultBoolean.True;
     this.btnDiagnosticInfo.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("btnDiagnosticInfo.ImageOptions.Image")));
     this.btnDiagnosticInfo.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("btnDiagnosticInfo.ImageOptions.LargeImage")));
     this.btnDiagnosticInfo.Name       = "btnDiagnosticInfo";
     this.btnDiagnosticInfo.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnDiagnosticInfo_ItemClick);
     //
     // btnShowStartPage
     //
     this.btnShowStartPage.Caption = "Start Page";
     this.btnShowStartPage.Id      = 23;
     this.btnShowStartPage.ImageOptions.AllowGlyphSkinning = DevExpress.Utils.DefaultBoolean.True;
     this.btnShowStartPage.ImageOptions.Image = global::MirTools.Properties.Resources.menu;
     this.btnShowStartPage.Name = "btnShowStartPage";
     //
     // btnPreviewArmours
     //
     this.btnPreviewArmours.Caption                 = "Armours";
     this.btnPreviewArmours.Id                      = 24;
     this.btnPreviewArmours.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("btnPreviewArmours.ImageOptions.Image")));
     this.btnPreviewArmours.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("btnPreviewArmours.ImageOptions.LargeImage")));
     this.btnPreviewArmours.Name                    = "btnPreviewArmours";
     this.btnPreviewArmours.ItemClick              += new DevExpress.XtraBars.ItemClickEventHandler(this.btnPreviewArmours_ItemClick);
     //
     // btnWeapons
     //
     this.btnWeapons.Caption                 = "Weapons";
     this.btnWeapons.Id                      = 25;
     this.btnWeapons.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("btnWeapons.ImageOptions.Image")));
     this.btnWeapons.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("btnWeapons.ImageOptions.LargeImage")));
     this.btnWeapons.Name                    = "btnWeapons";
     this.btnWeapons.ItemClick              += new DevExpress.XtraBars.ItemClickEventHandler(this.btnWeapons_ItemClick);
     //
     // btnConvertImage
     //
     this.btnConvertImage.Caption                 = "Convert Image";
     this.btnConvertImage.Id                      = 26;
     this.btnConvertImage.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("btnConvertImage.ImageOptions.Image")));
     this.btnConvertImage.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("btnConvertImage.ImageOptions.LargeImage")));
     this.btnConvertImage.Name                    = "btnConvertImage";
     this.btnConvertImage.ItemClick              += new DevExpress.XtraBars.ItemClickEventHandler(this.btnConvertImage_ItemClick);
     //
     // barStaticItem1
     //
     this.barStaticItem1.Alignment     = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barStaticItem1.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     this.barStaticItem1.Caption       = "Created by <color=skyblue>Tikky</color> for <b>Fables Of Mir</b> (LoMCN: <color=s" +
                                         "kyblue>paulkerr</color>)";
     this.barStaticItem1.Id   = 27;
     this.barStaticItem1.Name = "barStaticItem1";
     //
     // tabMain
     //
     this.tabMain.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
         this.ribbonPageGroup1,
         this.ribbonPageGroup5,
         this.ribbonPageGroup2
     });
     this.tabMain.Name = "tabMain";
     this.tabMain.Text = "Main";
     //
     // ribbonPageGroup1
     //
     this.ribbonPageGroup1.ItemLinks.Add(this.btnLibraryOpen);
     this.ribbonPageGroup1.ItemLinks.Add(this.btnLibraryNew);
     this.ribbonPageGroup1.ItemLinks.Add(this.btnLibraryConvert, true);
     this.ribbonPageGroup1.Name = "ribbonPageGroup1";
     this.ribbonPageGroup1.Text = "Library";
     //
     // ribbonPageGroup2
     //
     this.ribbonPageGroup2.ItemLinks.Add(this.btnConvertImage);
     this.ribbonPageGroup2.ItemLinks.Add(this.btnClearMemory);
     this.ribbonPageGroup2.Name = "ribbonPageGroup2";
     this.ribbonPageGroup2.Text = "Misc";
     //
     // ribbonPage1
     //
     this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
         this.ribbonPageGroup3,
         this.ribbonPageGroup4
     });
     this.ribbonPage1.Name = "ribbonPage1";
     this.ribbonPage1.Text = "Preview";
     //
     // ribbonPageGroup3
     //
     this.ribbonPageGroup3.ItemLinks.Add(this.btnPreviewFolder);
     this.ribbonPageGroup3.Name = "ribbonPageGroup3";
     this.ribbonPageGroup3.Text = "Crystal Libraries";
     //
     // ribbonPageGroup4
     //
     this.ribbonPageGroup4.ItemLinks.Add(this.btnPreviewArmours);
     this.ribbonPageGroup4.ItemLinks.Add(this.btnWeapons);
     this.ribbonPageGroup4.Name = "ribbonPageGroup4";
     this.ribbonPageGroup4.Text = "Official";
     //
     // repositoryItemProgressBar1
     //
     this.repositoryItemProgressBar1.Name = "repositoryItemProgressBar1";
     this.repositoryItemProgressBar1.Step = 1;
     //
     // ribbonStatusBar
     //
     this.ribbonStatusBar.ItemLinks.Add(this.lbMemoryUsage);
     this.ribbonStatusBar.ItemLinks.Add(this.barStaticItem1);
     this.ribbonStatusBar.Location = new System.Drawing.Point(0, 697);
     this.ribbonStatusBar.Name     = "ribbonStatusBar";
     this.ribbonStatusBar.Ribbon   = this.ribbon;
     this.ribbonStatusBar.Size     = new System.Drawing.Size(1206, 23);
     //
     // dockManager1
     //
     this.dockManager1.Form = this;
     this.dockManager1.TopZIndexControls.AddRange(new string[] {
         "DevExpress.XtraBars.BarDockControl",
         "DevExpress.XtraBars.StandaloneBarDockControl",
         "System.Windows.Forms.StatusBar",
         "System.Windows.Forms.MenuStrip",
         "System.Windows.Forms.StatusStrip",
         "DevExpress.XtraBars.Ribbon.RibbonStatusBar",
         "DevExpress.XtraBars.Ribbon.RibbonControl",
         "DevExpress.XtraBars.Navigation.OfficeNavigationBar",
         "DevExpress.XtraBars.Navigation.TileNavPane",
         "DevExpress.XtraBars.TabFormControl"
     });
     //
     // UsageTimer
     //
     this.UsageTimer.Enabled  = true;
     this.UsageTimer.Interval = 1000;
     this.UsageTimer.Tick    += new System.EventHandler(this.UsageTimer_Tick);
     //
     // defaultLookAndFeel1
     //
     this.defaultLookAndFeel1.LookAndFeel.SkinName = "Office 2013 Dark Gray";
     //
     // taskbarAssistant1
     //
     this.taskbarAssistant1.ParentControl = this;
     //
     // jumpListItemTask1
     //
     this.jumpListItemTask1.Caption  = "test";
     this.jumpListItemTask1.IconPath = null;
     //
     // ribbonPageGroup5
     //
     this.ribbonPageGroup5.ItemLinks.Add(this.btnOpenMap);
     this.ribbonPageGroup5.Name = "ribbonPageGroup5";
     this.ribbonPageGroup5.Text = "Map";
     //
     // btnOpenMap
     //
     this.btnOpenMap.Caption                 = "Open";
     this.btnOpenMap.Id                      = 28;
     this.btnOpenMap.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("btnOpenMap.ImageOptions.Image")));
     this.btnOpenMap.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("btnOpenMap.ImageOptions.LargeImage")));
     this.btnOpenMap.Name                    = "btnOpenMap";
     this.btnOpenMap.ItemClick              += new DevExpress.XtraBars.ItemClickEventHandler(this.btnOpenMap_ItemClick);
     //
     // TfmMain
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1206, 720);
     this.Controls.Add(this.ribbonStatusBar);
     this.Controls.Add(this.ribbon);
     this.FormBorderEffect = DevExpress.XtraEditors.FormBorderEffect.Glow;
     this.IsMdiContainer   = true;
     this.Name             = "TfmMain";
     this.Ribbon           = this.ribbon;
     this.StatusBar        = this.ribbonStatusBar;
     this.Text             = "Mir Tools";
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemProgressBar1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Пример #49
0
		/// <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(MainForm));
            DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem1 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip2 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem2 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip3 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem3 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem3 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip4 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem4 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem4 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip5 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem5 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem5 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip6 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem6 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem6 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip7 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem7 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem7 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip8 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem8 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem8 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip9 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem9 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem9 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip10 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem10 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem10 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip11 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem11 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem11 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip12 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem12 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem12 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip13 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem13 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem13 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip14 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem14 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem14 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip15 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem15 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem15 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip16 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem16 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem16 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip17 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem17 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem17 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip18 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem18 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem18 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip19 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem19 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem19 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip20 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem20 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem20 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip21 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem21 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem21 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip22 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem22 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem22 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip23 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem23 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem23 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip24 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem24 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem24 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip25 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem25 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem25 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip26 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem26 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem26 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip27 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem27 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem27 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip28 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem28 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem28 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip29 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem29 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem29 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip30 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem30 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem30 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip31 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem31 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem31 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip32 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem32 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem32 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip33 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem33 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem33 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip34 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem34 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem34 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip35 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem35 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem35 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip36 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem36 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem36 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip37 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem37 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem37 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip38 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem38 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem38 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip39 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem39 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem39 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip40 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem40 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem40 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip41 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem41 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem41 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip42 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem42 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem42 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip43 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem43 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem43 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip44 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem44 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem44 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip45 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem45 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem45 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip46 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem46 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem46 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip47 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem47 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem47 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip48 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem48 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem48 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip49 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem49 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem49 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip50 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem50 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem50 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip51 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem51 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem51 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip52 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem52 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem52 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip53 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem53 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem53 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip54 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem54 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem54 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip55 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem55 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem55 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip56 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem56 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem56 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip57 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem57 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem57 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip58 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem58 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem58 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip59 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem59 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem59 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip60 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem60 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem60 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip61 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem61 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem61 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip62 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem62 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem62 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip63 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem63 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem63 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip64 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem64 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem64 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip65 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem65 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem65 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip66 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem66 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem66 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip67 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem67 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem67 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip68 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem68 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem68 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip69 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem69 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem69 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip70 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem70 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem70 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip71 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem71 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem71 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip72 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem72 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem72 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip73 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem73 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem73 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip74 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem74 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem74 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip75 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem75 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem75 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip76 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem76 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem76 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip77 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem77 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem77 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip78 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem78 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem78 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip79 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem79 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem79 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip80 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem80 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem80 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
            System.Windows.Forms.TreeNode treeNode1 = new System.Windows.Forms.TreeNode("常用收件人");
            System.Windows.Forms.TreeNode treeNode2 = new System.Windows.Forms.TreeNode("常用用户名", 2, 2);
            System.Windows.Forms.TreeNode treeNode3 = new System.Windows.Forms.TreeNode("发信日志", 1, 1);
            DevExpress.Utils.SuperToolTip superToolTip81 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem81 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem81 = new DevExpress.Utils.ToolTipItem();
            this.recentlyUsedItemsComboBox1 = new DevExpress.XtraReports.UserDesigner.RecentlyUsedItemsComboBox();
            this.designRepositoryItemComboBox1 = new DevExpress.XtraReports.UserDesigner.DesignRepositoryItemComboBox();
            this.MainRibbonControl = new DevExpress.XtraBars.Ribbon.RibbonControl();
            this.applicationMenu1 = new DevExpress.XtraBars.Ribbon.ApplicationMenu(this.components);
            this.ClearStatusButton = new DevExpress.XtraBars.BarButtonItem();
            this.ExitButton = new DevExpress.XtraBars.BarButtonItem();
            this.barAndDockingController1 = new DevExpress.XtraBars.BarAndDockingController(this.components);
            this.ribbonGallerySkins = new DevExpress.XtraBars.RibbonGalleryBarItem();
            this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
            this.commandBarItem1 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
            this.commandBarItem2 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
            this.commandBarItem3 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
            this.commandBarItem4 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
            this.commandBarItem5 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
            this.commandBarItem6 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
            this.commandBarItem7 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
            this.commandBarItem8 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
            this.commandBarItem9 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
            this.commandBarItem10 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
            this.commandBarItem11 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
            this.commandBarItem12 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
            this.commandBarItem13 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
            this.commandBarItem14 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
            this.commandBarItem15 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
            this.commandBarItem16 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
            this.commandBarItem17 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
            this.commandBarItem18 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
            this.commandBarItem19 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
            this.commandBarItem20 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
            this.commandBarItem21 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
            this.commandBarItem22 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
            this.commandBarItem23 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
            this.commandBarItem24 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
            this.commandBarItem25 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
            this.commandBarItem26 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
            this.commandColorBarItem1 = new DevExpress.XtraReports.UserDesigner.CommandColorBarItem();
            this.commandColorBarItem2 = new DevExpress.XtraReports.UserDesigner.CommandColorBarItem();
            this.commandBarItem27 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
            this.commandBarItem28 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
            this.commandBarItem29 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
            this.commandBarItem30 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
            this.commandBarItem33 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
            this.commandBarItem34 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
            this.commandBarItem36 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
            this.commandBarItem43 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
            this.commandBarItem44 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
            this.commandBarItem45 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
            this.barEditItem1 = new DevExpress.XtraBars.BarEditItem();
            this.barEditItem2 = new DevExpress.XtraBars.BarEditItem();
            this.commandBarItem46 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
            this.commandBarItem47 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
            this.commandBarItem48 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
            this.commandBarItem49 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
            this.commandBarItem50 = new DevExpress.XtraReports.UserDesigner.CommandBarItem();
            this.xrDesignBarButtonGroup1 = new DevExpress.XtraReports.UserDesigner.XRDesignBarButtonGroup();
            this.xrDesignBarButtonGroup2 = new DevExpress.XtraReports.UserDesigner.XRDesignBarButtonGroup();
            this.xrDesignBarButtonGroup3 = new DevExpress.XtraReports.UserDesigner.XRDesignBarButtonGroup();
            this.xrDesignBarButtonGroup4 = new DevExpress.XtraReports.UserDesigner.XRDesignBarButtonGroup();
            this.xrDesignBarButtonGroup5 = new DevExpress.XtraReports.UserDesigner.XRDesignBarButtonGroup();
            this.xrDesignBarButtonGroup6 = new DevExpress.XtraReports.UserDesigner.XRDesignBarButtonGroup();
            this.xrDesignBarButtonGroup7 = new DevExpress.XtraReports.UserDesigner.XRDesignBarButtonGroup();
            this.xrDesignBarButtonGroup8 = new DevExpress.XtraReports.UserDesigner.XRDesignBarButtonGroup();
            this.xrDesignBarButtonGroup9 = new DevExpress.XtraReports.UserDesigner.XRDesignBarButtonGroup();
            this.printPreviewBarItem2 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem4 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem5 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem6 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem8 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem9 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem10 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem11 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem12 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem13 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem14 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem15 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem16 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem17 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem18 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem19 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem20 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem21 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.DeleteAccessory = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem25 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem26 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem27 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem28 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem29 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem30 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem31 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem32 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem33 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem34 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem36 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem37 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem38 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem39 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem40 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem41 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.printPreviewBarItem42 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.barStaticItem2 = new DevExpress.XtraBars.BarStaticItem();
            this.printPreviewStaticItem2 = new DevExpress.XtraPrinting.Preview.PrintPreviewStaticItem();
            this.printPreviewBarItem1 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.xrDesignRibbonController1 = new DevExpress.XtraReports.UserDesigner.XRDesignRibbonController();
            this.xrDesignDockManager1 = new DevExpress.XtraReports.UserDesigner.XRDesignDockManager();
            this.MailEditorPanel = new DevExpress.XtraReports.UserDesigner.XRDesignPanel();
            this.NickNameEdit = new DevExpress.XtraBars.BarEditItem();
            this.repositoryItemTextEdit9 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
            this.SendMailNameEdit = new DevExpress.XtraBars.BarEditItem();
            this.repositoryItemTextEdit10 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
            this.SubjectEdit = new DevExpress.XtraBars.BarEditItem();
            this.repositoryItemTextEdit11 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
            this.UserNameEdit = new DevExpress.XtraBars.BarEditItem();
            this.repositoryItemTextEdit13 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
            this.PasswordEdit = new DevExpress.XtraBars.BarEditItem();
            this.repositoryItemTextEdit14 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
            this.ServerNameEdit = new DevExpress.XtraBars.BarEditItem();
            this.MailServerComboBox = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
            this.ReceiveNameEdit = new DevExpress.XtraBars.BarEditItem();
            this.ButtonEdit = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
            this.barEditItem4 = new DevExpress.XtraBars.BarEditItem();
            this.repositoryItemRadioGroup1 = new DevExpress.XtraEditors.Repository.RepositoryItemRadioGroup();
            this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonGroup1 = new DevExpress.XtraBars.BarButtonGroup();
            this.barButtonGroup2 = new DevExpress.XtraBars.BarButtonGroup();
            this.barButtonGroup3 = new DevExpress.XtraBars.BarButtonGroup();
            this.Accessory = new DevExpress.XtraBars.BarStaticItem();
            this.AccStatic = new DevExpress.XtraBars.BarStaticItem();
            this.barEditItem3 = new DevExpress.XtraBars.BarEditItem();
            this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
            this.AddSendMailLog = new DevExpress.XtraBars.BarEditItem();
            this.AutoAddSendRecordCheckEdit = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
            this.AddCommuRecord = new DevExpress.XtraBars.BarEditItem();
            this.AutoAddCommuRecordCheckEdit = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
            this.MailCollectionType = new DevExpress.XtraBars.BarEditItem();
            this.CollectionItemRadioGroup = new DevExpress.XtraEditors.Repository.RepositoryItemRadioGroup();
            this.DeleteRepeatInfo = new DevExpress.XtraBars.BarButtonItem();
            this.ParamOptionSetting = new DevExpress.XtraBars.BarButtonItem();
            this.FishCookieSetting = new DevExpress.XtraBars.BarButtonItem();
            this.ImportCookieTxt = new DevExpress.XtraBars.BarButtonItem();
            this.AddUserBarButton = new DevExpress.XtraBars.BarButtonItem();
            this.UserEditBarButton = new DevExpress.XtraBars.BarButtonItem();
            this.DeleteUserBarButton = new DevExpress.XtraBars.BarButtonItem();
            this.ExportUserBarButton = new DevExpress.XtraBars.BarButtonItem();
            this.ImportUserBarButton = new DevExpress.XtraBars.BarButtonItem();
            this.ParamSettingBarButton = new DevExpress.XtraBars.BarButtonItem();
            this.FliterUsersComboBox = new DevExpress.XtraBars.BarEditItem();
            this.repositoryItemComboBox = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
            this.ConvertBase64BarButton = new DevExpress.XtraBars.BarButtonItem();
            this.MailXssPage = new DevExpress.XtraReports.UserDesigner.XRDesignRibbonPage();
            this.xrDesignRibbonPageGroup1 = new DevExpress.XtraReports.UserDesigner.XRDesignRibbonPageGroup();
            this.xrDesignRibbonPageGroup2 = new DevExpress.XtraReports.UserDesigner.XRDesignRibbonPageGroup();
            this.xrDesignRibbonPageGroup7 = new DevExpress.XtraReports.UserDesigner.XRDesignRibbonPageGroup();
            this.xrDesignRibbonPageGroup9 = new DevExpress.XtraReports.UserDesigner.XRDesignRibbonPageGroup();
            this.CookieMail = new DevExpress.XtraPrinting.Preview.PrintPreviewRibbonPage();
            this.printPreviewRibbonPageGroup7 = new DevExpress.XtraPrinting.Preview.PrintPreviewRibbonPageGroup();
            this.printPreviewRibbonPageGroup6 = new DevExpress.XtraPrinting.Preview.PrintPreviewRibbonPageGroup();
            this.ribbonPageGroup4 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.CommonReceiveMailPage = new DevExpress.XtraReports.UserDesigner.XRHtmlRibbonPage();
            this.ribbonPageGroup1 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup2 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup3 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
            this.repositoryItemTextEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
            this.repositoryItemTextEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
            this.repositoryItemTextEdit4 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
            this.repositoryItemTextEdit5 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
            this.repositoryItemTextEdit6 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
            this.repositoryItemTextEdit7 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
            this.repositoryItemTextEdit8 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
            this.repositoryItemZoomTrackBar1 = new DevExpress.XtraEditors.Repository.RepositoryItemZoomTrackBar();
            this.repositoryItemTextEdit12 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
            this.ServerDateEdit = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
            this.repositoryItemRadioGroup3 = new DevExpress.XtraEditors.Repository.RepositoryItemRadioGroup();
            this.defaultLookAndFeel1 = new DevExpress.LookAndFeel.DefaultLookAndFeel(this.components);
            this.xrDesignRibbonPageGroup8 = new DevExpress.XtraReports.UserDesigner.XRDesignRibbonPageGroup();
            this.dockManager1 = new DevExpress.XtraBars.Docking.DockManager(this.components);
            this.hideContainerLeft = new DevExpress.XtraBars.Docking.AutoHideContainer();
            this.MailToolBox = new DevExpress.XtraBars.Docking.DockPanel();
            this.dockPanel1_Container = new DevExpress.XtraBars.Docking.ControlContainer();
            this.navBarControl1 = new DevExpress.XtraNavBar.NavBarControl();
            this.UserFunc = new DevExpress.XtraNavBar.NavBarGroup();
            this.SendMail = new DevExpress.XtraNavBar.NavBarItem();
            this.AddAccessory = new DevExpress.XtraNavBar.NavBarItem();
            this.LogRecord = new DevExpress.XtraNavBar.NavBarItem();
            this.TimeSend = new DevExpress.XtraNavBar.NavBarItem();
            this.ConfigFunc = new DevExpress.XtraNavBar.NavBarGroup();
            this.AddSMTPServer = new DevExpress.XtraNavBar.NavBarItem();
            this.AddDNS = new DevExpress.XtraNavBar.NavBarItem();
            this.hideContainerRight = new DevExpress.XtraBars.Docking.AutoHideContainer();
            this.InfoRecord = new DevExpress.XtraBars.Docking.DockPanel();
            this.controlContainer2 = new DevExpress.XtraBars.Docking.ControlContainer();
            this.trvListInfo = new System.Windows.Forms.TreeView();
            this.TreeControlMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.tlsDelAddreess = new System.Windows.Forms.ToolStripMenuItem();
            this.tlsAllDelAddreess = new System.Windows.Forms.ToolStripMenuItem();
            this.imageList1 = new System.Windows.Forms.ImageList(this.components);
            this.SendMailRecord = new DevExpress.XtraBars.Docking.DockPanel();
            this.controlContainer3 = new DevExpress.XtraBars.Docking.ControlContainer();
            this.trvLogList = new System.Windows.Forms.TreeView();
            this.StatusInfo = new DevExpress.XtraBars.Docking.DockPanel();
            this.controlContainer1 = new DevExpress.XtraBars.Docking.ControlContainer();
            this.MailInfoOutput = new DevExpress.XtraEditors.MemoEdit();
            this.printPreviewBarItem3 = new DevExpress.XtraPrinting.Preview.PrintPreviewBarItem();
            this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
            this.bar1 = new DevExpress.XtraBars.Bar();
            this.bar3 = new DevExpress.XtraBars.Bar();
            this.SenMailProgress = new DevExpress.XtraBars.BarEditItem();
            this.ItemProgressBar1 = new DevExpress.XtraEditors.Repository.RepositoryItemProgressBar();
            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.importFileDlg = new System.Windows.Forms.OpenFileDialog();
            this.CollectionType = new DevExpress.XtraBars.BarEditItem();
            this.CookieMailPanel = new System.Windows.Forms.Panel();
            ((System.ComponentModel.ISupportInitialize)(this.recentlyUsedItemsComboBox1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.designRepositoryItemComboBox1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.MainRibbonControl)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.applicationMenu1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.barAndDockingController1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrDesignRibbonController1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrDesignDockManager1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.MailEditorPanel)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit9)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit10)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit11)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit13)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit14)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.MailServerComboBox)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ButtonEdit)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.AutoAddSendRecordCheckEdit)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.AutoAddCommuRecordCheckEdit)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.CollectionItemRadioGroup)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit6)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit7)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit8)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemZoomTrackBar1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit12)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ServerDateEdit)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ServerDateEdit.VistaTimeProperties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).BeginInit();
            this.hideContainerLeft.SuspendLayout();
            this.MailToolBox.SuspendLayout();
            this.dockPanel1_Container.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.navBarControl1)).BeginInit();
            this.hideContainerRight.SuspendLayout();
            this.InfoRecord.SuspendLayout();
            this.controlContainer2.SuspendLayout();
            this.TreeControlMenu.SuspendLayout();
            this.SendMailRecord.SuspendLayout();
            this.controlContainer3.SuspendLayout();
            this.StatusInfo.SuspendLayout();
            this.controlContainer1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.MailInfoOutput.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemProgressBar1)).BeginInit();
            this.SuspendLayout();
            // 
            // recentlyUsedItemsComboBox1
            // 
            this.recentlyUsedItemsComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.recentlyUsedItemsComboBox1.Name = "recentlyUsedItemsComboBox1";
            this.recentlyUsedItemsComboBox1.UseParentBackground = true;
            // 
            // designRepositoryItemComboBox1
            // 
            this.designRepositoryItemComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.designRepositoryItemComboBox1.Name = "designRepositoryItemComboBox1";
            this.designRepositoryItemComboBox1.UseParentBackground = true;
            // 
            // MainRibbonControl
            // 
            this.MainRibbonControl.ApplicationButtonDropDownControl = this.applicationMenu1;
            this.MainRibbonControl.ApplicationButtonText = null;
            this.MainRibbonControl.Controller = this.barAndDockingController1;
            this.MainRibbonControl.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.ribbonGallerySkins,
            this.barStaticItem1,
            this.commandBarItem1,
            this.commandBarItem2,
            this.commandBarItem3,
            this.commandBarItem4,
            this.commandBarItem5,
            this.commandBarItem6,
            this.commandBarItem7,
            this.commandBarItem8,
            this.commandBarItem9,
            this.commandBarItem10,
            this.commandBarItem11,
            this.commandBarItem12,
            this.commandBarItem13,
            this.commandBarItem14,
            this.commandBarItem15,
            this.commandBarItem16,
            this.commandBarItem17,
            this.commandBarItem18,
            this.commandBarItem19,
            this.commandBarItem20,
            this.commandBarItem21,
            this.commandBarItem22,
            this.commandBarItem23,
            this.commandBarItem24,
            this.commandBarItem25,
            this.commandBarItem26,
            this.commandColorBarItem1,
            this.commandColorBarItem2,
            this.commandBarItem27,
            this.commandBarItem28,
            this.commandBarItem29,
            this.commandBarItem30,
            this.commandBarItem33,
            this.commandBarItem34,
            this.commandBarItem36,
            this.commandBarItem43,
            this.commandBarItem44,
            this.commandBarItem45,
            this.barEditItem1,
            this.barEditItem2,
            this.commandBarItem46,
            this.commandBarItem47,
            this.commandBarItem48,
            this.commandBarItem49,
            this.commandBarItem50,
            this.xrDesignBarButtonGroup1,
            this.xrDesignBarButtonGroup2,
            this.xrDesignBarButtonGroup3,
            this.xrDesignBarButtonGroup4,
            this.xrDesignBarButtonGroup5,
            this.xrDesignBarButtonGroup6,
            this.xrDesignBarButtonGroup7,
            this.xrDesignBarButtonGroup8,
            this.xrDesignBarButtonGroup9,
            this.printPreviewBarItem2,
            this.printPreviewBarItem4,
            this.printPreviewBarItem5,
            this.printPreviewBarItem6,
            this.printPreviewBarItem8,
            this.printPreviewBarItem9,
            this.printPreviewBarItem10,
            this.printPreviewBarItem11,
            this.printPreviewBarItem12,
            this.printPreviewBarItem13,
            this.printPreviewBarItem14,
            this.printPreviewBarItem15,
            this.printPreviewBarItem16,
            this.printPreviewBarItem17,
            this.printPreviewBarItem18,
            this.printPreviewBarItem19,
            this.printPreviewBarItem20,
            this.printPreviewBarItem21,
            this.DeleteAccessory,
            this.printPreviewBarItem25,
            this.printPreviewBarItem26,
            this.printPreviewBarItem27,
            this.printPreviewBarItem28,
            this.printPreviewBarItem29,
            this.printPreviewBarItem30,
            this.printPreviewBarItem31,
            this.printPreviewBarItem32,
            this.printPreviewBarItem33,
            this.printPreviewBarItem34,
            this.printPreviewBarItem36,
            this.printPreviewBarItem37,
            this.printPreviewBarItem38,
            this.printPreviewBarItem39,
            this.printPreviewBarItem40,
            this.printPreviewBarItem41,
            this.printPreviewBarItem42,
            this.ExitButton,
            this.barStaticItem2,
            this.printPreviewStaticItem2,
            this.printPreviewBarItem1,
            this.NickNameEdit,
            this.SendMailNameEdit,
            this.SubjectEdit,
            this.UserNameEdit,
            this.PasswordEdit,
            this.ServerNameEdit,
            this.ReceiveNameEdit,
            this.barEditItem4,
            this.barButtonItem2,
            this.barButtonGroup1,
            this.barButtonGroup2,
            this.barButtonGroup3,
            this.Accessory,
            this.AccStatic,
            this.barEditItem3,
            this.AddSendMailLog,
            this.AddCommuRecord,
            this.MailCollectionType,
            this.ClearStatusButton,
            this.DeleteRepeatInfo,
            this.ParamOptionSetting,
            this.FishCookieSetting,
            this.ImportCookieTxt,
            this.AddUserBarButton,
            this.UserEditBarButton,
            this.DeleteUserBarButton,
            this.ExportUserBarButton,
            this.ImportUserBarButton,
            this.ParamSettingBarButton,
            this.FliterUsersComboBox,
            this.ConvertBase64BarButton});
            this.MainRibbonControl.Location = new System.Drawing.Point(0, 0);
            this.MainRibbonControl.MaxItemId = 78;
            this.MainRibbonControl.Name = "MainRibbonControl";
            this.MainRibbonControl.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.MailXssPage,
            this.CookieMail,
            this.CommonReceiveMailPage});
            this.MainRibbonControl.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemTextEdit1,
            this.repositoryItemTextEdit2,
            this.repositoryItemTextEdit3,
            this.repositoryItemTextEdit4,
            this.repositoryItemTextEdit5,
            this.repositoryItemTextEdit6,
            this.repositoryItemTextEdit7,
            this.repositoryItemTextEdit8,
            this.repositoryItemZoomTrackBar1,
            this.repositoryItemTextEdit9,
            this.repositoryItemTextEdit10,
            this.repositoryItemTextEdit11,
            this.repositoryItemTextEdit12,
            this.repositoryItemTextEdit13,
            this.repositoryItemTextEdit14,
            this.MailServerComboBox,
            this.ButtonEdit,
            this.repositoryItemRadioGroup1,
            this.CollectionItemRadioGroup,
            this.repositoryItemCheckEdit1,
            this.AutoAddSendRecordCheckEdit,
            this.AutoAddCommuRecordCheckEdit,
            this.ServerDateEdit,
            this.repositoryItemRadioGroup3,
            this.repositoryItemComboBox});
            this.MainRibbonControl.SelectedPage = this.MailXssPage;
            this.MainRibbonControl.ShowPageHeadersMode = DevExpress.XtraBars.Ribbon.ShowPageHeadersMode.ShowOnMultiplePages;
            this.MainRibbonControl.Size = new System.Drawing.Size(1471, 148);
            this.MainRibbonControl.TransparentEditors = true;
            this.MainRibbonControl.SelectedPageChanged += new System.EventHandler(this.MainRibbonControl_SelectedPageChanged);
            // 
            // applicationMenu1
            // 
            this.applicationMenu1.BottomPaneControlContainer = null;
            this.applicationMenu1.ItemLinks.Add(this.ClearStatusButton, true);
            this.applicationMenu1.ItemLinks.Add(this.ExitButton);
            this.applicationMenu1.Name = "applicationMenu1";
            this.applicationMenu1.Ribbon = this.MainRibbonControl;
            this.applicationMenu1.RightPaneControlContainer = null;
            this.applicationMenu1.ShowRightPane = true;
            // 
            // ClearStatusButton
            // 
            this.ClearStatusButton.Caption = "清空状态记录";
            this.ClearStatusButton.Glyph = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_HtmlRefreshLarge;
            this.ClearStatusButton.Id = 64;
            this.ClearStatusButton.Name = "ClearStatusButton";
            this.ClearStatusButton.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.ClearStatusButton_ItemClick);
            // 
            // ExitButton
            // 
            this.ExitButton.Caption = "退出";
            this.ExitButton.Description = "Closes this program after prompting you to save unsaved report.";
            this.ExitButton.Glyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_ClosePreview;
            this.ExitButton.Hint = "Closes this program after prompting you to save unsaved report.";
            this.ExitButton.Id = 27;
            this.ExitButton.LargeGlyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_ClosePreviewLarge;
            this.ExitButton.Name = "ExitButton";
            this.ExitButton.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.ExitButton_ItemClick);
            // 
            // barAndDockingController1
            // 
            this.barAndDockingController1.PropertiesBar.AllowLinkLighting = false;
            // 
            // ribbonGallerySkins
            // 
            this.ribbonGallerySkins.Caption = "Skins";
            this.ribbonGallerySkins.Id = 5;
            this.ribbonGallerySkins.Name = "ribbonGallerySkins";
            // 
            // barStaticItem1
            // 
            this.barStaticItem1.Caption = resources.GetString("barStaticItem1.Caption");
            this.barStaticItem1.Id = 6;
            this.barStaticItem1.Name = "barStaticItem1";
            this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // commandBarItem1
            // 
            this.commandBarItem1.Caption = "Align to Grid";
            this.commandBarItem1.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.AlignToGrid;
            this.commandBarItem1.Enabled = false;
            this.commandBarItem1.Glyph = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_AlignToGrid;
            this.commandBarItem1.Id = 0;
            this.commandBarItem1.Name = "commandBarItem1";
            superToolTip1.FixedTooltipWidth = true;
            toolTipTitleItem1.Text = "Align to Grid";
            toolTipItem1.LeftIndent = 6;
            toolTipItem1.Text = "Align the positions of the selected controls to the grid.";
            superToolTip1.Items.Add(toolTipTitleItem1);
            superToolTip1.Items.Add(toolTipItem1);
            superToolTip1.MaxWidth = 210;
            this.commandBarItem1.SuperTip = superToolTip1;
            // 
            // commandBarItem2
            // 
            this.commandBarItem2.Caption = "Align Lefts";
            this.commandBarItem2.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.AlignLeft;
            this.commandBarItem2.Enabled = false;
            this.commandBarItem2.Glyph = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_AlignLeft;
            this.commandBarItem2.Id = 1;
            this.commandBarItem2.Name = "commandBarItem2";
            superToolTip2.FixedTooltipWidth = true;
            toolTipTitleItem2.Text = "Align Lefts";
            toolTipItem2.LeftIndent = 6;
            toolTipItem2.Text = "Left align the selected controls.";
            superToolTip2.Items.Add(toolTipTitleItem2);
            superToolTip2.Items.Add(toolTipItem2);
            superToolTip2.MaxWidth = 210;
            this.commandBarItem2.SuperTip = superToolTip2;
            // 
            // commandBarItem3
            // 
            this.commandBarItem3.Caption = "Align Centers";
            this.commandBarItem3.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.AlignVerticalCenters;
            this.commandBarItem3.Enabled = false;
            this.commandBarItem3.Glyph = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_AlignVerticalCenters;
            this.commandBarItem3.Id = 2;
            this.commandBarItem3.Name = "commandBarItem3";
            superToolTip3.FixedTooltipWidth = true;
            toolTipTitleItem3.Text = "Align Centers";
            toolTipItem3.LeftIndent = 6;
            toolTipItem3.Text = "Align the centers of the selected controls vertically.";
            superToolTip3.Items.Add(toolTipTitleItem3);
            superToolTip3.Items.Add(toolTipItem3);
            superToolTip3.MaxWidth = 210;
            this.commandBarItem3.SuperTip = superToolTip3;
            // 
            // commandBarItem4
            // 
            this.commandBarItem4.Caption = "Align Rights";
            this.commandBarItem4.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.AlignRight;
            this.commandBarItem4.Enabled = false;
            this.commandBarItem4.Glyph = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_AlignRight;
            this.commandBarItem4.Id = 3;
            this.commandBarItem4.Name = "commandBarItem4";
            superToolTip4.FixedTooltipWidth = true;
            toolTipTitleItem4.Text = "Align Rights";
            toolTipItem4.LeftIndent = 6;
            toolTipItem4.Text = "Right align the selected controls.";
            superToolTip4.Items.Add(toolTipTitleItem4);
            superToolTip4.Items.Add(toolTipItem4);
            superToolTip4.MaxWidth = 210;
            this.commandBarItem4.SuperTip = superToolTip4;
            // 
            // commandBarItem5
            // 
            this.commandBarItem5.Caption = "Align Tops";
            this.commandBarItem5.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.AlignTop;
            this.commandBarItem5.Enabled = false;
            this.commandBarItem5.Glyph = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_AlignTop;
            this.commandBarItem5.Id = 4;
            this.commandBarItem5.Name = "commandBarItem5";
            superToolTip5.FixedTooltipWidth = true;
            toolTipTitleItem5.Text = "Align Tops";
            toolTipItem5.LeftIndent = 6;
            toolTipItem5.Text = "Align the tops of the selected controls.";
            superToolTip5.Items.Add(toolTipTitleItem5);
            superToolTip5.Items.Add(toolTipItem5);
            superToolTip5.MaxWidth = 210;
            this.commandBarItem5.SuperTip = superToolTip5;
            // 
            // commandBarItem6
            // 
            this.commandBarItem6.Caption = "Align Middles";
            this.commandBarItem6.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.AlignHorizontalCenters;
            this.commandBarItem6.Enabled = false;
            this.commandBarItem6.Glyph = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_AlignHorizontalCenters;
            this.commandBarItem6.Id = 5;
            this.commandBarItem6.Name = "commandBarItem6";
            superToolTip6.FixedTooltipWidth = true;
            toolTipTitleItem6.Text = "Align Middles";
            toolTipItem6.LeftIndent = 6;
            toolTipItem6.Text = "Align the centers of the selected controls horizontally.";
            superToolTip6.Items.Add(toolTipTitleItem6);
            superToolTip6.Items.Add(toolTipItem6);
            superToolTip6.MaxWidth = 210;
            this.commandBarItem6.SuperTip = superToolTip6;
            // 
            // commandBarItem7
            // 
            this.commandBarItem7.Caption = "Align Bottoms";
            this.commandBarItem7.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.AlignBottom;
            this.commandBarItem7.Enabled = false;
            this.commandBarItem7.Glyph = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_AlignBottom;
            this.commandBarItem7.Id = 6;
            this.commandBarItem7.Name = "commandBarItem7";
            superToolTip7.FixedTooltipWidth = true;
            toolTipTitleItem7.Text = "Align Bottoms";
            toolTipItem7.LeftIndent = 6;
            toolTipItem7.Text = "Align the bottoms of the selected controls.";
            superToolTip7.Items.Add(toolTipTitleItem7);
            superToolTip7.Items.Add(toolTipItem7);
            superToolTip7.MaxWidth = 210;
            this.commandBarItem7.SuperTip = superToolTip7;
            // 
            // commandBarItem8
            // 
            this.commandBarItem8.Caption = "Make Same Width";
            this.commandBarItem8.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.SizeToControlWidth;
            this.commandBarItem8.Enabled = false;
            this.commandBarItem8.Glyph = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_SizeToControlWidth;
            this.commandBarItem8.Id = 7;
            this.commandBarItem8.Name = "commandBarItem8";
            superToolTip8.FixedTooltipWidth = true;
            toolTipTitleItem8.Text = "Make Same Width";
            toolTipItem8.LeftIndent = 6;
            toolTipItem8.Text = "Make the selected controls have the same width.";
            superToolTip8.Items.Add(toolTipTitleItem8);
            superToolTip8.Items.Add(toolTipItem8);
            superToolTip8.MaxWidth = 210;
            this.commandBarItem8.SuperTip = superToolTip8;
            // 
            // commandBarItem9
            // 
            this.commandBarItem9.Caption = "Size to Grid";
            this.commandBarItem9.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.SizeToGrid;
            this.commandBarItem9.Enabled = false;
            this.commandBarItem9.Glyph = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_SizeToGrid;
            this.commandBarItem9.Id = 8;
            this.commandBarItem9.Name = "commandBarItem9";
            superToolTip9.FixedTooltipWidth = true;
            toolTipTitleItem9.Text = "Size to Grid";
            toolTipItem9.LeftIndent = 6;
            toolTipItem9.Text = "Size the selected controls to the grid.";
            superToolTip9.Items.Add(toolTipTitleItem9);
            superToolTip9.Items.Add(toolTipItem9);
            superToolTip9.MaxWidth = 210;
            this.commandBarItem9.SuperTip = superToolTip9;
            // 
            // commandBarItem10
            // 
            this.commandBarItem10.Caption = "Make Same Height";
            this.commandBarItem10.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.SizeToControlHeight;
            this.commandBarItem10.Enabled = false;
            this.commandBarItem10.Glyph = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_SizeToControlHeight;
            this.commandBarItem10.Id = 9;
            this.commandBarItem10.Name = "commandBarItem10";
            superToolTip10.FixedTooltipWidth = true;
            toolTipTitleItem10.Text = "Make Same Height";
            toolTipItem10.LeftIndent = 6;
            toolTipItem10.Text = "Make the selected controls have the same height.";
            superToolTip10.Items.Add(toolTipTitleItem10);
            superToolTip10.Items.Add(toolTipItem10);
            superToolTip10.MaxWidth = 210;
            this.commandBarItem10.SuperTip = superToolTip10;
            // 
            // commandBarItem11
            // 
            this.commandBarItem11.Caption = "Make Same Size";
            this.commandBarItem11.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.SizeToControl;
            this.commandBarItem11.Enabled = false;
            this.commandBarItem11.Glyph = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_SizeToControl;
            this.commandBarItem11.Id = 10;
            this.commandBarItem11.Name = "commandBarItem11";
            superToolTip11.FixedTooltipWidth = true;
            toolTipTitleItem11.Text = "Make Same Size";
            toolTipItem11.LeftIndent = 6;
            toolTipItem11.Text = "Make the selected controls have the same size.";
            superToolTip11.Items.Add(toolTipTitleItem11);
            superToolTip11.Items.Add(toolTipItem11);
            superToolTip11.MaxWidth = 210;
            this.commandBarItem11.SuperTip = superToolTip11;
            // 
            // commandBarItem12
            // 
            this.commandBarItem12.Caption = "Make Horizontal Spacing Equal";
            this.commandBarItem12.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.HorizSpaceMakeEqual;
            this.commandBarItem12.Enabled = false;
            this.commandBarItem12.Glyph = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_HorizSpaceMakeEqual;
            this.commandBarItem12.Id = 11;
            this.commandBarItem12.Name = "commandBarItem12";
            superToolTip12.FixedTooltipWidth = true;
            toolTipTitleItem12.Text = "Make Horizontal Spacing Equal";
            toolTipItem12.LeftIndent = 6;
            toolTipItem12.Text = "Make the horizontal spacing between the selected controls equal.";
            superToolTip12.Items.Add(toolTipTitleItem12);
            superToolTip12.Items.Add(toolTipItem12);
            superToolTip12.MaxWidth = 210;
            this.commandBarItem12.SuperTip = superToolTip12;
            // 
            // commandBarItem13
            // 
            this.commandBarItem13.Caption = "Increase Horizontal Spacing";
            this.commandBarItem13.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.HorizSpaceIncrease;
            this.commandBarItem13.Enabled = false;
            this.commandBarItem13.Glyph = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_HorizSpaceIncrease;
            this.commandBarItem13.Id = 12;
            this.commandBarItem13.Name = "commandBarItem13";
            superToolTip13.FixedTooltipWidth = true;
            toolTipTitleItem13.Text = "Increase Horizontal Spacing";
            toolTipItem13.LeftIndent = 6;
            toolTipItem13.Text = "Increase the horizontal spacing between the selected controls.";
            superToolTip13.Items.Add(toolTipTitleItem13);
            superToolTip13.Items.Add(toolTipItem13);
            superToolTip13.MaxWidth = 210;
            this.commandBarItem13.SuperTip = superToolTip13;
            // 
            // commandBarItem14
            // 
            this.commandBarItem14.Caption = "Decrease Horizontal Spacing";
            this.commandBarItem14.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.HorizSpaceDecrease;
            this.commandBarItem14.Enabled = false;
            this.commandBarItem14.Glyph = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_HorizSpaceDecrease;
            this.commandBarItem14.Id = 13;
            this.commandBarItem14.Name = "commandBarItem14";
            superToolTip14.FixedTooltipWidth = true;
            toolTipTitleItem14.Text = "Decrease Horizontal Spacing";
            toolTipItem14.LeftIndent = 6;
            toolTipItem14.Text = "Decrease the horizontal spacing between the selected controls.";
            superToolTip14.Items.Add(toolTipTitleItem14);
            superToolTip14.Items.Add(toolTipItem14);
            superToolTip14.MaxWidth = 210;
            this.commandBarItem14.SuperTip = superToolTip14;
            // 
            // commandBarItem15
            // 
            this.commandBarItem15.Caption = "Remove Horizontal Spacing";
            this.commandBarItem15.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.HorizSpaceConcatenate;
            this.commandBarItem15.Enabled = false;
            this.commandBarItem15.Glyph = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_HorizSpaceConcatenate;
            this.commandBarItem15.Id = 14;
            this.commandBarItem15.Name = "commandBarItem15";
            superToolTip15.FixedTooltipWidth = true;
            toolTipTitleItem15.Text = "Remove Horizontal Spacing";
            toolTipItem15.LeftIndent = 6;
            toolTipItem15.Text = "Remove the horizontal spacing between the selected controls.";
            superToolTip15.Items.Add(toolTipTitleItem15);
            superToolTip15.Items.Add(toolTipItem15);
            superToolTip15.MaxWidth = 210;
            this.commandBarItem15.SuperTip = superToolTip15;
            // 
            // commandBarItem16
            // 
            this.commandBarItem16.Caption = "Make Vertical Spacing Equal";
            this.commandBarItem16.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.VertSpaceMakeEqual;
            this.commandBarItem16.Enabled = false;
            this.commandBarItem16.Glyph = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_VertSpaceMakeEqual;
            this.commandBarItem16.Id = 15;
            this.commandBarItem16.Name = "commandBarItem16";
            superToolTip16.FixedTooltipWidth = true;
            toolTipTitleItem16.Text = "Make Vertical Spacing Equal";
            toolTipItem16.LeftIndent = 6;
            toolTipItem16.Text = "Make the vertical spacing between the selected controls equal.";
            superToolTip16.Items.Add(toolTipTitleItem16);
            superToolTip16.Items.Add(toolTipItem16);
            superToolTip16.MaxWidth = 210;
            this.commandBarItem16.SuperTip = superToolTip16;
            // 
            // commandBarItem17
            // 
            this.commandBarItem17.Caption = "Increase Vertical Spacing";
            this.commandBarItem17.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.VertSpaceIncrease;
            this.commandBarItem17.Enabled = false;
            this.commandBarItem17.Glyph = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_VertSpaceIncrease;
            this.commandBarItem17.Id = 16;
            this.commandBarItem17.Name = "commandBarItem17";
            superToolTip17.FixedTooltipWidth = true;
            toolTipTitleItem17.Text = "Increase Vertical Spacing";
            toolTipItem17.LeftIndent = 6;
            toolTipItem17.Text = "Increase the vertical spacing between the selected controls.";
            superToolTip17.Items.Add(toolTipTitleItem17);
            superToolTip17.Items.Add(toolTipItem17);
            superToolTip17.MaxWidth = 210;
            this.commandBarItem17.SuperTip = superToolTip17;
            // 
            // commandBarItem18
            // 
            this.commandBarItem18.Caption = "Decrease Vertical Spacing";
            this.commandBarItem18.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.VertSpaceDecrease;
            this.commandBarItem18.Enabled = false;
            this.commandBarItem18.Glyph = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_VertSpaceDecrease;
            this.commandBarItem18.Id = 17;
            this.commandBarItem18.Name = "commandBarItem18";
            superToolTip18.FixedTooltipWidth = true;
            toolTipTitleItem18.Text = "Decrease Vertical Spacing";
            toolTipItem18.LeftIndent = 6;
            toolTipItem18.Text = "Decrease the vertical spacing between the selected controls.";
            superToolTip18.Items.Add(toolTipTitleItem18);
            superToolTip18.Items.Add(toolTipItem18);
            superToolTip18.MaxWidth = 210;
            this.commandBarItem18.SuperTip = superToolTip18;
            // 
            // commandBarItem19
            // 
            this.commandBarItem19.Caption = "Remove Vertical Spacing";
            this.commandBarItem19.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.VertSpaceConcatenate;
            this.commandBarItem19.Enabled = false;
            this.commandBarItem19.Glyph = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_VertSpaceConcatenate;
            this.commandBarItem19.Id = 18;
            this.commandBarItem19.Name = "commandBarItem19";
            superToolTip19.FixedTooltipWidth = true;
            toolTipTitleItem19.Text = "Remove Vertical Spacing";
            toolTipItem19.LeftIndent = 6;
            toolTipItem19.Text = "Remove the vertical spacing between the selected controls.";
            superToolTip19.Items.Add(toolTipTitleItem19);
            superToolTip19.Items.Add(toolTipItem19);
            superToolTip19.MaxWidth = 210;
            this.commandBarItem19.SuperTip = superToolTip19;
            // 
            // commandBarItem20
            // 
            this.commandBarItem20.Caption = "Center Horizontally";
            this.commandBarItem20.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.CenterHorizontally;
            this.commandBarItem20.Enabled = false;
            this.commandBarItem20.Glyph = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_CenterHorizontally;
            this.commandBarItem20.Id = 19;
            this.commandBarItem20.Name = "commandBarItem20";
            superToolTip20.FixedTooltipWidth = true;
            toolTipTitleItem20.Text = "Center Horizontally";
            toolTipItem20.LeftIndent = 6;
            toolTipItem20.Text = "Horizontally center the selected controls within a band.";
            superToolTip20.Items.Add(toolTipTitleItem20);
            superToolTip20.Items.Add(toolTipItem20);
            superToolTip20.MaxWidth = 210;
            this.commandBarItem20.SuperTip = superToolTip20;
            // 
            // commandBarItem21
            // 
            this.commandBarItem21.Caption = "Center Vetically";
            this.commandBarItem21.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.CenterVertically;
            this.commandBarItem21.Enabled = false;
            this.commandBarItem21.Glyph = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_CenterVertically;
            this.commandBarItem21.Id = 20;
            this.commandBarItem21.Name = "commandBarItem21";
            superToolTip21.FixedTooltipWidth = true;
            toolTipTitleItem21.Text = "Center Vetically";
            toolTipItem21.LeftIndent = 6;
            toolTipItem21.Text = "Vertically center the selected controls within a band.";
            superToolTip21.Items.Add(toolTipTitleItem21);
            superToolTip21.Items.Add(toolTipItem21);
            superToolTip21.MaxWidth = 210;
            this.commandBarItem21.SuperTip = superToolTip21;
            // 
            // commandBarItem22
            // 
            this.commandBarItem22.Caption = "Bring to Front";
            this.commandBarItem22.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.BringToFront;
            this.commandBarItem22.Enabled = false;
            this.commandBarItem22.Glyph = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_BringToFront;
            this.commandBarItem22.Id = 21;
            this.commandBarItem22.Name = "commandBarItem22";
            superToolTip22.FixedTooltipWidth = true;
            toolTipTitleItem22.Text = "Bring to Front";
            toolTipItem22.LeftIndent = 6;
            toolTipItem22.Text = "Bring the selected controls to the front.";
            superToolTip22.Items.Add(toolTipTitleItem22);
            superToolTip22.Items.Add(toolTipItem22);
            superToolTip22.MaxWidth = 210;
            this.commandBarItem22.SuperTip = superToolTip22;
            // 
            // commandBarItem23
            // 
            this.commandBarItem23.Caption = "Send to Back";
            this.commandBarItem23.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.SendToBack;
            this.commandBarItem23.Enabled = false;
            this.commandBarItem23.Glyph = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_SendToBack;
            this.commandBarItem23.Id = 22;
            this.commandBarItem23.Name = "commandBarItem23";
            superToolTip23.FixedTooltipWidth = true;
            toolTipTitleItem23.Text = "Send to Back";
            toolTipItem23.LeftIndent = 6;
            toolTipItem23.Text = "Move the selected controls to the back.";
            superToolTip23.Items.Add(toolTipTitleItem23);
            superToolTip23.Items.Add(toolTipItem23);
            superToolTip23.MaxWidth = 210;
            this.commandBarItem23.SuperTip = superToolTip23;
            // 
            // commandBarItem24
            // 
            this.commandBarItem24.Caption = "Bold";
            this.commandBarItem24.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.FontBold;
            this.commandBarItem24.Enabled = false;
            this.commandBarItem24.Glyph = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_FontBold;
            this.commandBarItem24.Id = 23;
            this.commandBarItem24.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.B));
            this.commandBarItem24.Name = "commandBarItem24";
            superToolTip24.FixedTooltipWidth = true;
            toolTipTitleItem24.Text = "Bold (Ctrl+B)";
            toolTipItem24.LeftIndent = 6;
            toolTipItem24.Text = "Make the selected text bold.";
            superToolTip24.Items.Add(toolTipTitleItem24);
            superToolTip24.Items.Add(toolTipItem24);
            superToolTip24.MaxWidth = 210;
            this.commandBarItem24.SuperTip = superToolTip24;
            // 
            // commandBarItem25
            // 
            this.commandBarItem25.Caption = "Italic";
            this.commandBarItem25.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.FontItalic;
            this.commandBarItem25.Enabled = false;
            this.commandBarItem25.Glyph = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_FontItalic;
            this.commandBarItem25.Id = 24;
            this.commandBarItem25.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.I));
            this.commandBarItem25.Name = "commandBarItem25";
            superToolTip25.FixedTooltipWidth = true;
            toolTipTitleItem25.Text = "Italic (Ctrl+I)";
            toolTipItem25.LeftIndent = 6;
            toolTipItem25.Text = "Italicize the text.";
            superToolTip25.Items.Add(toolTipTitleItem25);
            superToolTip25.Items.Add(toolTipItem25);
            superToolTip25.MaxWidth = 210;
            this.commandBarItem25.SuperTip = superToolTip25;
            // 
            // commandBarItem26
            // 
            this.commandBarItem26.Caption = "Underline";
            this.commandBarItem26.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.FontUnderline;
            this.commandBarItem26.Enabled = false;
            this.commandBarItem26.Glyph = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_FontUnderline;
            this.commandBarItem26.Id = 25;
            this.commandBarItem26.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.U));
            this.commandBarItem26.Name = "commandBarItem26";
            superToolTip26.FixedTooltipWidth = true;
            toolTipTitleItem26.Text = "Underline (Ctrl+U)";
            toolTipItem26.LeftIndent = 6;
            toolTipItem26.Text = "Underline hte selected text.";
            superToolTip26.Items.Add(toolTipTitleItem26);
            superToolTip26.Items.Add(toolTipItem26);
            superToolTip26.MaxWidth = 210;
            this.commandBarItem26.SuperTip = superToolTip26;
            // 
            // commandColorBarItem1
            // 
            this.commandColorBarItem1.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.commandColorBarItem1.Caption = "Foreground Color";
            this.commandColorBarItem1.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.ForeColor;
            this.commandColorBarItem1.Enabled = false;
            this.commandColorBarItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("commandColorBarItem1.Glyph")));
            this.commandColorBarItem1.Id = 26;
            this.commandColorBarItem1.Name = "commandColorBarItem1";
            superToolTip27.FixedTooltipWidth = true;
            toolTipTitleItem27.Text = "Foreground Color";
            toolTipItem27.LeftIndent = 6;
            toolTipItem27.Text = "Change the text foreground color.";
            superToolTip27.Items.Add(toolTipTitleItem27);
            superToolTip27.Items.Add(toolTipItem27);
            superToolTip27.MaxWidth = 210;
            this.commandColorBarItem1.SuperTip = superToolTip27;
            // 
            // commandColorBarItem2
            // 
            this.commandColorBarItem2.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.commandColorBarItem2.Caption = "Background Color";
            this.commandColorBarItem2.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.BackColor;
            this.commandColorBarItem2.Enabled = false;
            this.commandColorBarItem2.Glyph = ((System.Drawing.Image)(resources.GetObject("commandColorBarItem2.Glyph")));
            this.commandColorBarItem2.Id = 27;
            this.commandColorBarItem2.Name = "commandColorBarItem2";
            superToolTip28.FixedTooltipWidth = true;
            toolTipTitleItem28.Text = "Background Color";
            toolTipItem28.LeftIndent = 6;
            toolTipItem28.Text = "Change the text background color.";
            superToolTip28.Items.Add(toolTipTitleItem28);
            superToolTip28.Items.Add(toolTipItem28);
            superToolTip28.MaxWidth = 210;
            this.commandColorBarItem2.SuperTip = superToolTip28;
            // 
            // commandBarItem27
            // 
            this.commandBarItem27.Caption = "Align Text Left";
            this.commandBarItem27.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.JustifyLeft;
            this.commandBarItem27.Enabled = false;
            this.commandBarItem27.Glyph = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_JustifyLeft;
            this.commandBarItem27.Id = 28;
            this.commandBarItem27.Name = "commandBarItem27";
            superToolTip29.FixedTooltipWidth = true;
            toolTipTitleItem29.Text = "Align Text Left";
            toolTipItem29.LeftIndent = 6;
            toolTipItem29.Text = "Align text to the left.";
            superToolTip29.Items.Add(toolTipTitleItem29);
            superToolTip29.Items.Add(toolTipItem29);
            superToolTip29.MaxWidth = 210;
            this.commandBarItem27.SuperTip = superToolTip29;
            // 
            // commandBarItem28
            // 
            this.commandBarItem28.Caption = "Center Text";
            this.commandBarItem28.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.JustifyCenter;
            this.commandBarItem28.Enabled = false;
            this.commandBarItem28.Glyph = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_JustifyCenter;
            this.commandBarItem28.Id = 29;
            this.commandBarItem28.Name = "commandBarItem28";
            superToolTip30.FixedTooltipWidth = true;
            toolTipTitleItem30.Text = "Center Text";
            toolTipItem30.LeftIndent = 6;
            toolTipItem30.Text = "Center text.";
            superToolTip30.Items.Add(toolTipTitleItem30);
            superToolTip30.Items.Add(toolTipItem30);
            superToolTip30.MaxWidth = 210;
            this.commandBarItem28.SuperTip = superToolTip30;
            // 
            // commandBarItem29
            // 
            this.commandBarItem29.Caption = "Align Text Right";
            this.commandBarItem29.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.JustifyRight;
            this.commandBarItem29.Enabled = false;
            this.commandBarItem29.Glyph = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_JustifyRight;
            this.commandBarItem29.Id = 30;
            this.commandBarItem29.Name = "commandBarItem29";
            superToolTip31.FixedTooltipWidth = true;
            toolTipTitleItem31.Text = "Align Text Right";
            toolTipItem31.LeftIndent = 6;
            toolTipItem31.Text = "Align text to the right.";
            superToolTip31.Items.Add(toolTipTitleItem31);
            superToolTip31.Items.Add(toolTipItem31);
            superToolTip31.MaxWidth = 210;
            this.commandBarItem29.SuperTip = superToolTip31;
            // 
            // commandBarItem30
            // 
            this.commandBarItem30.Caption = "Justify";
            this.commandBarItem30.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.JustifyJustify;
            this.commandBarItem30.Enabled = false;
            this.commandBarItem30.Glyph = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_JustifyJustify;
            this.commandBarItem30.Id = 31;
            this.commandBarItem30.Name = "commandBarItem30";
            superToolTip32.FixedTooltipWidth = true;
            toolTipTitleItem32.Text = "Justify";
            toolTipItem32.LeftIndent = 6;
            toolTipItem32.Text = "Align text to both the left and right sides, adding extra space between words as " +
                "necessary.";
            superToolTip32.Items.Add(toolTipTitleItem32);
            superToolTip32.Items.Add(toolTipItem32);
            superToolTip32.MaxWidth = 210;
            this.commandBarItem30.SuperTip = superToolTip32;
            // 
            // commandBarItem33
            // 
            this.commandBarItem33.Caption = "New Report";
            this.commandBarItem33.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.NewReport;
            this.commandBarItem33.Description = "Create a new blank report so that you can insert fields and controls and design a" +
                " report.";
            this.commandBarItem33.Glyph = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_NewReport;
            this.commandBarItem33.Id = 34;
            this.commandBarItem33.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N));
            this.commandBarItem33.LargeGlyph = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_NewReportLarge;
            this.commandBarItem33.Name = "commandBarItem33";
            superToolTip33.FixedTooltipWidth = true;
            toolTipTitleItem33.Text = "New Blank Report (Ctrl+N)";
            toolTipItem33.LeftIndent = 6;
            toolTipItem33.Text = "Create a new blank report so that you can insert fields and controls and design a" +
                " report.";
            superToolTip33.Items.Add(toolTipTitleItem33);
            superToolTip33.Items.Add(toolTipItem33);
            superToolTip33.MaxWidth = 210;
            this.commandBarItem33.SuperTip = superToolTip33;
            // 
            // commandBarItem34
            // 
            this.commandBarItem34.Caption = "New via Wizard...";
            this.commandBarItem34.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.NewReportWizard;
            this.commandBarItem34.Description = "Launch the report wizard which helps you to create simple, customized reports.";
            this.commandBarItem34.Glyph = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_NewReportWizard;
            this.commandBarItem34.Id = 35;
            this.commandBarItem34.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.W));
            this.commandBarItem34.LargeGlyph = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_NewReportWizardLarge;
            this.commandBarItem34.Name = "commandBarItem34";
            superToolTip34.FixedTooltipWidth = true;
            toolTipTitleItem34.Text = "New Report via Wizard (Ctrl+W)";
            toolTipItem34.LeftIndent = 6;
            toolTipItem34.Text = "Launch the report wizard which helps you to create simple, customized reports.";
            superToolTip34.Items.Add(toolTipTitleItem34);
            superToolTip34.Items.Add(toolTipItem34);
            superToolTip34.MaxWidth = 210;
            this.commandBarItem34.SuperTip = superToolTip34;
            // 
            // commandBarItem36
            // 
            this.commandBarItem36.Caption = "Save";
            this.commandBarItem36.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.SaveFile;
            this.commandBarItem36.Description = "Save a report.";
            this.commandBarItem36.Enabled = false;
            this.commandBarItem36.Glyph = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_SaveFile;
            this.commandBarItem36.Id = 37;
            this.commandBarItem36.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S));
            this.commandBarItem36.LargeGlyph = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_SaveFileLarge;
            this.commandBarItem36.Name = "commandBarItem36";
            superToolTip35.FixedTooltipWidth = true;
            toolTipTitleItem35.Text = "Save Report (Ctrl+S)";
            toolTipItem35.LeftIndent = 6;
            toolTipItem35.Text = "Save a report.";
            superToolTip35.Items.Add(toolTipTitleItem35);
            superToolTip35.Items.Add(toolTipItem35);
            superToolTip35.MaxWidth = 210;
            this.commandBarItem36.SuperTip = superToolTip35;
            // 
            // commandBarItem43
            // 
            this.commandBarItem43.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.commandBarItem43.Caption = "Zoom";
            this.commandBarItem43.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.Zoom;
            this.commandBarItem43.Enabled = false;
            this.commandBarItem43.Glyph = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_Zoom;
            this.commandBarItem43.Id = 44;
            this.commandBarItem43.LargeGlyph = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_ZoomLarge;
            this.commandBarItem43.Name = "commandBarItem43";
            superToolTip36.FixedTooltipWidth = true;
            toolTipTitleItem36.Text = "Zoom";
            toolTipItem36.LeftIndent = 6;
            toolTipItem36.Text = "Change the zoom level of the document designer.";
            superToolTip36.Items.Add(toolTipTitleItem36);
            superToolTip36.Items.Add(toolTipItem36);
            superToolTip36.MaxWidth = 210;
            this.commandBarItem43.SuperTip = superToolTip36;
            // 
            // commandBarItem44
            // 
            this.commandBarItem44.Caption = "Zoom In";
            this.commandBarItem44.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.ZoomIn;
            this.commandBarItem44.Enabled = false;
            this.commandBarItem44.Glyph = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_ZoomIn;
            this.commandBarItem44.Id = 45;
            this.commandBarItem44.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Add));
            this.commandBarItem44.LargeGlyph = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_ZoomInLarge;
            this.commandBarItem44.Name = "commandBarItem44";
            superToolTip37.FixedTooltipWidth = true;
            toolTipTitleItem37.Text = "Zoom In (Ctrl+Add)";
            toolTipItem37.LeftIndent = 6;
            toolTipItem37.Text = "Zoom in to get a close-up view of the report.";
            superToolTip37.Items.Add(toolTipTitleItem37);
            superToolTip37.Items.Add(toolTipItem37);
            superToolTip37.MaxWidth = 210;
            this.commandBarItem44.SuperTip = superToolTip37;
            // 
            // commandBarItem45
            // 
            this.commandBarItem45.Caption = "Zoom Out";
            this.commandBarItem45.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.ZoomOut;
            this.commandBarItem45.Enabled = false;
            this.commandBarItem45.Glyph = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_ZoomOut;
            this.commandBarItem45.Id = 46;
            this.commandBarItem45.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Subtract));
            this.commandBarItem45.LargeGlyph = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_ZoomOutLarge;
            this.commandBarItem45.Name = "commandBarItem45";
            superToolTip38.FixedTooltipWidth = true;
            toolTipTitleItem38.Text = "Zoom Out (Ctrl+Subtract)";
            toolTipItem38.LeftIndent = 6;
            toolTipItem38.Text = "Zoom out to see more of the report at a reduced size.";
            superToolTip38.Items.Add(toolTipTitleItem38);
            superToolTip38.Items.Add(toolTipItem38);
            superToolTip38.MaxWidth = 210;
            this.commandBarItem45.SuperTip = superToolTip38;
            // 
            // barEditItem1
            // 
            this.barEditItem1.Edit = this.recentlyUsedItemsComboBox1;
            this.barEditItem1.Id = 47;
            this.barEditItem1.Name = "barEditItem1";
            superToolTip39.FixedTooltipWidth = true;
            toolTipTitleItem39.Text = "Font";
            toolTipItem39.LeftIndent = 6;
            toolTipItem39.Text = "Change the font face.";
            superToolTip39.Items.Add(toolTipTitleItem39);
            superToolTip39.Items.Add(toolTipItem39);
            superToolTip39.MaxWidth = 210;
            this.barEditItem1.SuperTip = superToolTip39;
            this.barEditItem1.Width = 140;
            // 
            // barEditItem2
            // 
            this.barEditItem2.Edit = this.designRepositoryItemComboBox1;
            this.barEditItem2.Id = 48;
            this.barEditItem2.Name = "barEditItem2";
            superToolTip40.FixedTooltipWidth = true;
            toolTipTitleItem40.Text = "Font Size";
            toolTipItem40.LeftIndent = 6;
            toolTipItem40.Text = "Change the font size.";
            superToolTip40.Items.Add(toolTipTitleItem40);
            superToolTip40.Items.Add(toolTipItem40);
            superToolTip40.MaxWidth = 210;
            this.barEditItem2.SuperTip = superToolTip40;
            // 
            // commandBarItem46
            // 
            this.commandBarItem46.Caption = "Back";
            this.commandBarItem46.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.HtmlBackward;
            this.commandBarItem46.Enabled = false;
            this.commandBarItem46.Glyph = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_HtmlBackward;
            this.commandBarItem46.Id = 50;
            this.commandBarItem46.LargeGlyph = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_HtmlBackwardLarge;
            this.commandBarItem46.Name = "commandBarItem46";
            superToolTip41.FixedTooltipWidth = true;
            toolTipTitleItem41.Text = "Back";
            toolTipItem41.LeftIndent = 6;
            toolTipItem41.Text = "Move back to the previous page.";
            superToolTip41.Items.Add(toolTipTitleItem41);
            superToolTip41.Items.Add(toolTipItem41);
            superToolTip41.MaxWidth = 210;
            this.commandBarItem46.SuperTip = superToolTip41;
            // 
            // commandBarItem47
            // 
            this.commandBarItem47.Caption = "Forward";
            this.commandBarItem47.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.HtmlForward;
            this.commandBarItem47.Enabled = false;
            this.commandBarItem47.Glyph = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_HtmlForward;
            this.commandBarItem47.Id = 51;
            this.commandBarItem47.LargeGlyph = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_HtmlForwardLarge;
            this.commandBarItem47.Name = "commandBarItem47";
            superToolTip42.FixedTooltipWidth = true;
            toolTipTitleItem42.Text = "Forward";
            toolTipItem42.LeftIndent = 6;
            toolTipItem42.Text = "Move forward to the next page.";
            superToolTip42.Items.Add(toolTipTitleItem42);
            superToolTip42.Items.Add(toolTipItem42);
            superToolTip42.MaxWidth = 210;
            this.commandBarItem47.SuperTip = superToolTip42;
            // 
            // commandBarItem48
            // 
            this.commandBarItem48.Caption = "Home";
            this.commandBarItem48.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.HtmlHome;
            this.commandBarItem48.Enabled = false;
            this.commandBarItem48.Glyph = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_HtmlHome;
            this.commandBarItem48.Id = 52;
            this.commandBarItem48.LargeGlyph = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_HtmlHomeLarge;
            this.commandBarItem48.Name = "commandBarItem48";
            superToolTip43.FixedTooltipWidth = true;
            toolTipTitleItem43.Text = "Home";
            toolTipItem43.LeftIndent = 6;
            toolTipItem43.Text = "Display the home page.";
            superToolTip43.Items.Add(toolTipTitleItem43);
            superToolTip43.Items.Add(toolTipItem43);
            superToolTip43.MaxWidth = 210;
            this.commandBarItem48.SuperTip = superToolTip43;
            // 
            // commandBarItem49
            // 
            this.commandBarItem49.Caption = "Refresh";
            this.commandBarItem49.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.HtmlRefresh;
            this.commandBarItem49.Enabled = false;
            this.commandBarItem49.Glyph = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_HtmlRefresh;
            this.commandBarItem49.Id = 53;
            this.commandBarItem49.LargeGlyph = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_HtmlRefreshLarge;
            this.commandBarItem49.Name = "commandBarItem49";
            superToolTip44.FixedTooltipWidth = true;
            toolTipTitleItem44.Text = "Refresh";
            toolTipItem44.LeftIndent = 6;
            toolTipItem44.Text = "Refresh this page.";
            superToolTip44.Items.Add(toolTipTitleItem44);
            superToolTip44.Items.Add(toolTipItem44);
            superToolTip44.MaxWidth = 210;
            this.commandBarItem49.SuperTip = superToolTip44;
            // 
            // commandBarItem50
            // 
            this.commandBarItem50.Caption = "Find";
            this.commandBarItem50.Command = DevExpress.XtraReports.UserDesigner.ReportCommand.HtmlFind;
            this.commandBarItem50.Enabled = false;
            this.commandBarItem50.Glyph = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_HtmlFind;
            this.commandBarItem50.Id = 54;
            this.commandBarItem50.LargeGlyph = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_HtmlFindLarge;
            this.commandBarItem50.Name = "commandBarItem50";
            superToolTip45.FixedTooltipWidth = true;
            toolTipTitleItem45.Text = "Find";
            toolTipItem45.LeftIndent = 6;
            toolTipItem45.Text = "Find the text on this page.";
            superToolTip45.Items.Add(toolTipTitleItem45);
            superToolTip45.Items.Add(toolTipItem45);
            superToolTip45.MaxWidth = 210;
            this.commandBarItem50.SuperTip = superToolTip45;
            // 
            // xrDesignBarButtonGroup1
            // 
            this.xrDesignBarButtonGroup1.Id = 55;
            this.xrDesignBarButtonGroup1.ItemLinks.Add(this.commandColorBarItem2);
            this.xrDesignBarButtonGroup1.ItemLinks.Add(this.commandColorBarItem1);
            this.xrDesignBarButtonGroup1.Name = "xrDesignBarButtonGroup1";
            // 
            // xrDesignBarButtonGroup2
            // 
            this.xrDesignBarButtonGroup2.Id = 56;
            this.xrDesignBarButtonGroup2.ItemLinks.Add(this.commandBarItem24);
            this.xrDesignBarButtonGroup2.ItemLinks.Add(this.commandBarItem25);
            this.xrDesignBarButtonGroup2.ItemLinks.Add(this.commandBarItem26);
            this.xrDesignBarButtonGroup2.Name = "xrDesignBarButtonGroup2";
            // 
            // xrDesignBarButtonGroup3
            // 
            this.xrDesignBarButtonGroup3.Id = 57;
            this.xrDesignBarButtonGroup3.ItemLinks.Add(this.commandBarItem27);
            this.xrDesignBarButtonGroup3.ItemLinks.Add(this.commandBarItem28);
            this.xrDesignBarButtonGroup3.ItemLinks.Add(this.commandBarItem29);
            this.xrDesignBarButtonGroup3.ItemLinks.Add(this.commandBarItem30);
            this.xrDesignBarButtonGroup3.Name = "xrDesignBarButtonGroup3";
            // 
            // xrDesignBarButtonGroup4
            // 
            this.xrDesignBarButtonGroup4.Id = 58;
            this.xrDesignBarButtonGroup4.ItemLinks.Add(this.commandBarItem1);
            this.xrDesignBarButtonGroup4.ItemLinks.Add(this.commandBarItem2);
            this.xrDesignBarButtonGroup4.ItemLinks.Add(this.commandBarItem3);
            this.xrDesignBarButtonGroup4.ItemLinks.Add(this.commandBarItem4);
            this.xrDesignBarButtonGroup4.Name = "xrDesignBarButtonGroup4";
            // 
            // xrDesignBarButtonGroup5
            // 
            this.xrDesignBarButtonGroup5.Id = 59;
            this.xrDesignBarButtonGroup5.ItemLinks.Add(this.commandBarItem5);
            this.xrDesignBarButtonGroup5.ItemLinks.Add(this.commandBarItem6);
            this.xrDesignBarButtonGroup5.ItemLinks.Add(this.commandBarItem7);
            this.xrDesignBarButtonGroup5.Name = "xrDesignBarButtonGroup5";
            // 
            // xrDesignBarButtonGroup6
            // 
            this.xrDesignBarButtonGroup6.Id = 60;
            this.xrDesignBarButtonGroup6.ItemLinks.Add(this.commandBarItem9);
            this.xrDesignBarButtonGroup6.ItemLinks.Add(this.commandBarItem8);
            this.xrDesignBarButtonGroup6.ItemLinks.Add(this.commandBarItem10);
            this.xrDesignBarButtonGroup6.ItemLinks.Add(this.commandBarItem11);
            this.xrDesignBarButtonGroup6.Name = "xrDesignBarButtonGroup6";
            // 
            // xrDesignBarButtonGroup7
            // 
            this.xrDesignBarButtonGroup7.Id = 61;
            this.xrDesignBarButtonGroup7.ItemLinks.Add(this.commandBarItem12);
            this.xrDesignBarButtonGroup7.ItemLinks.Add(this.commandBarItem13);
            this.xrDesignBarButtonGroup7.ItemLinks.Add(this.commandBarItem14);
            this.xrDesignBarButtonGroup7.ItemLinks.Add(this.commandBarItem15);
            this.xrDesignBarButtonGroup7.Name = "xrDesignBarButtonGroup7";
            // 
            // xrDesignBarButtonGroup8
            // 
            this.xrDesignBarButtonGroup8.Id = 62;
            this.xrDesignBarButtonGroup8.ItemLinks.Add(this.commandBarItem16);
            this.xrDesignBarButtonGroup8.ItemLinks.Add(this.commandBarItem17);
            this.xrDesignBarButtonGroup8.ItemLinks.Add(this.commandBarItem18);
            this.xrDesignBarButtonGroup8.ItemLinks.Add(this.commandBarItem19);
            this.xrDesignBarButtonGroup8.Name = "xrDesignBarButtonGroup8";
            // 
            // xrDesignBarButtonGroup9
            // 
            this.xrDesignBarButtonGroup9.Id = 63;
            this.xrDesignBarButtonGroup9.ItemLinks.Add(this.commandBarItem20);
            this.xrDesignBarButtonGroup9.ItemLinks.Add(this.commandBarItem21);
            this.xrDesignBarButtonGroup9.ItemLinks.Add(this.commandBarItem22);
            this.xrDesignBarButtonGroup9.ItemLinks.Add(this.commandBarItem23);
            this.xrDesignBarButtonGroup9.Name = "xrDesignBarButtonGroup9";
            // 
            // printPreviewBarItem2
            // 
            this.printPreviewBarItem2.Caption = "Find";
            this.printPreviewBarItem2.Command = DevExpress.XtraPrinting.PrintingSystemCommand.Find;
            this.printPreviewBarItem2.Enabled = false;
            this.printPreviewBarItem2.Glyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_Find;
            this.printPreviewBarItem2.Id = 1;
            this.printPreviewBarItem2.LargeGlyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_FindLarge;
            this.printPreviewBarItem2.Name = "printPreviewBarItem2";
            superToolTip46.FixedTooltipWidth = true;
            toolTipTitleItem46.Text = "Find";
            toolTipItem46.LeftIndent = 6;
            toolTipItem46.Text = "Show the Find dialog to find text in the document.";
            superToolTip46.Items.Add(toolTipTitleItem46);
            superToolTip46.Items.Add(toolTipItem46);
            superToolTip46.MaxWidth = 210;
            this.printPreviewBarItem2.SuperTip = superToolTip46;
            // 
            // printPreviewBarItem4
            // 
            this.printPreviewBarItem4.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            this.printPreviewBarItem4.Caption = "Print";
            this.printPreviewBarItem4.Command = DevExpress.XtraPrinting.PrintingSystemCommand.Print;
            this.printPreviewBarItem4.Enabled = false;
            this.printPreviewBarItem4.Glyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_Print;
            this.printPreviewBarItem4.Id = 3;
            this.printPreviewBarItem4.LargeGlyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_PrintLarge;
            this.printPreviewBarItem4.Name = "printPreviewBarItem4";
            superToolTip47.FixedTooltipWidth = true;
            toolTipTitleItem47.Text = "Page Setup";
            toolTipItem47.LeftIndent = 6;
            toolTipItem47.Text = "Show the Page Setup dialog.";
            superToolTip47.Items.Add(toolTipTitleItem47);
            superToolTip47.Items.Add(toolTipItem47);
            superToolTip47.MaxWidth = 210;
            this.printPreviewBarItem4.SuperTip = superToolTip47;
            // 
            // printPreviewBarItem5
            // 
            this.printPreviewBarItem5.Caption = "Quick Print";
            this.printPreviewBarItem5.Command = DevExpress.XtraPrinting.PrintingSystemCommand.PrintDirect;
            this.printPreviewBarItem5.Enabled = false;
            this.printPreviewBarItem5.Glyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_PrintDirect;
            this.printPreviewBarItem5.Id = 4;
            this.printPreviewBarItem5.LargeGlyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_PrintDirectLarge;
            this.printPreviewBarItem5.Name = "printPreviewBarItem5";
            superToolTip48.FixedTooltipWidth = true;
            toolTipTitleItem48.Text = "Header and Footer";
            toolTipItem48.LeftIndent = 6;
            toolTipItem48.Text = "Edit the header and footer of the document.";
            superToolTip48.Items.Add(toolTipTitleItem48);
            superToolTip48.Items.Add(toolTipItem48);
            superToolTip48.MaxWidth = 210;
            this.printPreviewBarItem5.SuperTip = superToolTip48;
            // 
            // printPreviewBarItem6
            // 
            this.printPreviewBarItem6.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            this.printPreviewBarItem6.Caption = "Custom Margins...";
            this.printPreviewBarItem6.Command = DevExpress.XtraPrinting.PrintingSystemCommand.PageSetup;
            this.printPreviewBarItem6.Enabled = false;
            this.printPreviewBarItem6.Id = 5;
            this.printPreviewBarItem6.Name = "printPreviewBarItem6";
            // 
            // printPreviewBarItem8
            // 
            this.printPreviewBarItem8.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.printPreviewBarItem8.Caption = "Scale";
            this.printPreviewBarItem8.Command = DevExpress.XtraPrinting.PrintingSystemCommand.Scale;
            this.printPreviewBarItem8.Enabled = false;
            this.printPreviewBarItem8.Glyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_Scale;
            this.printPreviewBarItem8.Id = 7;
            this.printPreviewBarItem8.LargeGlyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_ScaleLarge;
            this.printPreviewBarItem8.Name = "printPreviewBarItem8";
            superToolTip49.FixedTooltipWidth = true;
            toolTipTitleItem49.Text = "Scale";
            toolTipItem49.LeftIndent = 6;
            toolTipItem49.Text = "Stretch or shrink the printed output to a percentage of its actual size.";
            superToolTip49.Items.Add(toolTipTitleItem49);
            superToolTip49.Items.Add(toolTipItem49);
            superToolTip49.MaxWidth = 210;
            this.printPreviewBarItem8.SuperTip = superToolTip49;
            // 
            // printPreviewBarItem9
            // 
            this.printPreviewBarItem9.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            this.printPreviewBarItem9.Caption = "Pointer";
            this.printPreviewBarItem9.Command = DevExpress.XtraPrinting.PrintingSystemCommand.Pointer;
            this.printPreviewBarItem9.Enabled = false;
            this.printPreviewBarItem9.Glyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_Pointer;
            this.printPreviewBarItem9.GroupIndex = 1;
            this.printPreviewBarItem9.Id = 8;
            this.printPreviewBarItem9.Name = "printPreviewBarItem9";
            this.printPreviewBarItem9.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            superToolTip50.FixedTooltipWidth = true;
            toolTipTitleItem50.Text = "Mouse Pointer";
            toolTipItem50.LeftIndent = 6;
            toolTipItem50.Text = "Show the mouse pointer.";
            superToolTip50.Items.Add(toolTipTitleItem50);
            superToolTip50.Items.Add(toolTipItem50);
            superToolTip50.MaxWidth = 210;
            this.printPreviewBarItem9.SuperTip = superToolTip50;
            // 
            // printPreviewBarItem10
            // 
            this.printPreviewBarItem10.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            this.printPreviewBarItem10.Caption = "Hand Tool";
            this.printPreviewBarItem10.Command = DevExpress.XtraPrinting.PrintingSystemCommand.HandTool;
            this.printPreviewBarItem10.Enabled = false;
            this.printPreviewBarItem10.Glyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_HandTool;
            this.printPreviewBarItem10.GroupIndex = 1;
            this.printPreviewBarItem10.Id = 9;
            this.printPreviewBarItem10.Name = "printPreviewBarItem10";
            this.printPreviewBarItem10.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            superToolTip51.FixedTooltipWidth = true;
            toolTipTitleItem51.Text = "Hand Tool";
            toolTipItem51.LeftIndent = 6;
            toolTipItem51.Text = "Invoke the Hand tool to manually scroll through pages.";
            superToolTip51.Items.Add(toolTipTitleItem51);
            superToolTip51.Items.Add(toolTipItem51);
            superToolTip51.MaxWidth = 210;
            this.printPreviewBarItem10.SuperTip = superToolTip51;
            // 
            // printPreviewBarItem11
            // 
            this.printPreviewBarItem11.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            this.printPreviewBarItem11.Caption = "Magnifier";
            this.printPreviewBarItem11.Command = DevExpress.XtraPrinting.PrintingSystemCommand.Magnifier;
            this.printPreviewBarItem11.Enabled = false;
            this.printPreviewBarItem11.Glyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_Magnifier;
            this.printPreviewBarItem11.GroupIndex = 1;
            this.printPreviewBarItem11.Id = 10;
            this.printPreviewBarItem11.Name = "printPreviewBarItem11";
            this.printPreviewBarItem11.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            superToolTip52.FixedTooltipWidth = true;
            toolTipTitleItem52.Text = "Magnifier";
            toolTipItem52.LeftIndent = 6;
            toolTipItem52.Text = "Invoke the Magnifier tool.\r\n\r\nClicking once on a document zooms it so that a sing" +
                "le page becomes entirely visible, while clicking another time zooms it to 100% o" +
                "f the normal size.";
            superToolTip52.Items.Add(toolTipTitleItem52);
            superToolTip52.Items.Add(toolTipItem52);
            superToolTip52.MaxWidth = 210;
            this.printPreviewBarItem11.SuperTip = superToolTip52;
            // 
            // printPreviewBarItem12
            // 
            this.printPreviewBarItem12.Caption = "Zoom Out";
            this.printPreviewBarItem12.Command = DevExpress.XtraPrinting.PrintingSystemCommand.ZoomOut;
            this.printPreviewBarItem12.Enabled = false;
            this.printPreviewBarItem12.Glyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_ZoomOut;
            this.printPreviewBarItem12.Id = 11;
            this.printPreviewBarItem12.LargeGlyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_ZoomOutLarge;
            this.printPreviewBarItem12.Name = "printPreviewBarItem12";
            superToolTip53.FixedTooltipWidth = true;
            toolTipTitleItem53.Text = "Zoom Out";
            toolTipItem53.LeftIndent = 6;
            toolTipItem53.Text = "Zoom out to see more of the page at a reduced size.";
            superToolTip53.Items.Add(toolTipTitleItem53);
            superToolTip53.Items.Add(toolTipItem53);
            superToolTip53.MaxWidth = 210;
            this.printPreviewBarItem12.SuperTip = superToolTip53;
            // 
            // printPreviewBarItem13
            // 
            this.printPreviewBarItem13.Caption = "Zoom In";
            this.printPreviewBarItem13.Command = DevExpress.XtraPrinting.PrintingSystemCommand.ZoomIn;
            this.printPreviewBarItem13.Enabled = false;
            this.printPreviewBarItem13.Glyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_ZoomIn;
            this.printPreviewBarItem13.Id = 12;
            this.printPreviewBarItem13.LargeGlyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_ZoomInLarge;
            this.printPreviewBarItem13.Name = "printPreviewBarItem13";
            superToolTip54.FixedTooltipWidth = true;
            toolTipTitleItem54.Text = "Zoom In";
            toolTipItem54.LeftIndent = 6;
            toolTipItem54.Text = "Zoom in to get a close-up view of the document.";
            superToolTip54.Items.Add(toolTipTitleItem54);
            superToolTip54.Items.Add(toolTipItem54);
            superToolTip54.MaxWidth = 210;
            this.printPreviewBarItem13.SuperTip = superToolTip54;
            // 
            // printPreviewBarItem14
            // 
            this.printPreviewBarItem14.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.printPreviewBarItem14.Caption = "Zoom";
            this.printPreviewBarItem14.Command = DevExpress.XtraPrinting.PrintingSystemCommand.Zoom;
            this.printPreviewBarItem14.Enabled = false;
            this.printPreviewBarItem14.Glyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_Zoom;
            this.printPreviewBarItem14.Id = 13;
            this.printPreviewBarItem14.LargeGlyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_ZoomLarge;
            this.printPreviewBarItem14.Name = "printPreviewBarItem14";
            superToolTip55.FixedTooltipWidth = true;
            toolTipTitleItem55.Text = "Zoom";
            toolTipItem55.LeftIndent = 6;
            toolTipItem55.Text = "Change the zoom level of the document preview.";
            superToolTip55.Items.Add(toolTipTitleItem55);
            superToolTip55.Items.Add(toolTipItem55);
            superToolTip55.MaxWidth = 210;
            this.printPreviewBarItem14.SuperTip = superToolTip55;
            // 
            // printPreviewBarItem15
            // 
            this.printPreviewBarItem15.Caption = "First Page";
            this.printPreviewBarItem15.Command = DevExpress.XtraPrinting.PrintingSystemCommand.ShowFirstPage;
            this.printPreviewBarItem15.Enabled = false;
            this.printPreviewBarItem15.Glyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_ShowFirstPage;
            this.printPreviewBarItem15.Id = 14;
            this.printPreviewBarItem15.LargeGlyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_ShowFirstPageLarge;
            this.printPreviewBarItem15.Name = "printPreviewBarItem15";
            superToolTip56.FixedTooltipWidth = true;
            toolTipTitleItem56.Text = "First Page (Ctrl+Home)";
            toolTipItem56.LeftIndent = 6;
            toolTipItem56.Text = "Navigate to the first page of the document.";
            superToolTip56.Items.Add(toolTipTitleItem56);
            superToolTip56.Items.Add(toolTipItem56);
            superToolTip56.MaxWidth = 210;
            this.printPreviewBarItem15.SuperTip = superToolTip56;
            // 
            // printPreviewBarItem16
            // 
            this.printPreviewBarItem16.Caption = "Previous Page";
            this.printPreviewBarItem16.Command = DevExpress.XtraPrinting.PrintingSystemCommand.ShowPrevPage;
            this.printPreviewBarItem16.Enabled = false;
            this.printPreviewBarItem16.Glyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_ShowPrevPage;
            this.printPreviewBarItem16.Id = 15;
            this.printPreviewBarItem16.LargeGlyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_ShowPrevPageLarge;
            this.printPreviewBarItem16.Name = "printPreviewBarItem16";
            superToolTip57.FixedTooltipWidth = true;
            toolTipTitleItem57.Text = "Previous Page (PageUp)";
            toolTipItem57.LeftIndent = 6;
            toolTipItem57.Text = "Navigate to the previous page of the document.";
            superToolTip57.Items.Add(toolTipTitleItem57);
            superToolTip57.Items.Add(toolTipItem57);
            superToolTip57.MaxWidth = 210;
            this.printPreviewBarItem16.SuperTip = superToolTip57;
            // 
            // printPreviewBarItem17
            // 
            this.printPreviewBarItem17.Caption = "Next  Page ";
            this.printPreviewBarItem17.Command = DevExpress.XtraPrinting.PrintingSystemCommand.ShowNextPage;
            this.printPreviewBarItem17.Enabled = false;
            this.printPreviewBarItem17.Glyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_ShowNextPage;
            this.printPreviewBarItem17.Id = 16;
            this.printPreviewBarItem17.LargeGlyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_ShowNextPageLarge;
            this.printPreviewBarItem17.Name = "printPreviewBarItem17";
            superToolTip58.FixedTooltipWidth = true;
            toolTipTitleItem58.Text = "Next Page (PageDown)";
            toolTipItem58.LeftIndent = 6;
            toolTipItem58.Text = "Navigate to the next page of the document.";
            superToolTip58.Items.Add(toolTipTitleItem58);
            superToolTip58.Items.Add(toolTipItem58);
            superToolTip58.MaxWidth = 210;
            this.printPreviewBarItem17.SuperTip = superToolTip58;
            // 
            // printPreviewBarItem18
            // 
            this.printPreviewBarItem18.Caption = "Last  Page ";
            this.printPreviewBarItem18.Command = DevExpress.XtraPrinting.PrintingSystemCommand.ShowLastPage;
            this.printPreviewBarItem18.Enabled = false;
            this.printPreviewBarItem18.Glyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_ShowLastPage;
            this.printPreviewBarItem18.Id = 17;
            this.printPreviewBarItem18.LargeGlyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_ShowLastPageLarge;
            this.printPreviewBarItem18.Name = "printPreviewBarItem18";
            superToolTip59.FixedTooltipWidth = true;
            toolTipTitleItem59.Text = "Last Page (Ctrl+End)";
            toolTipItem59.LeftIndent = 6;
            toolTipItem59.Text = "Navigate to the last page of the document.";
            superToolTip59.Items.Add(toolTipTitleItem59);
            superToolTip59.Items.Add(toolTipItem59);
            superToolTip59.MaxWidth = 210;
            this.printPreviewBarItem18.SuperTip = superToolTip59;
            // 
            // printPreviewBarItem19
            // 
            this.printPreviewBarItem19.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.printPreviewBarItem19.Caption = "Many Pages";
            this.printPreviewBarItem19.Command = DevExpress.XtraPrinting.PrintingSystemCommand.MultiplePages;
            this.printPreviewBarItem19.Enabled = false;
            this.printPreviewBarItem19.Glyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_MultiplePages;
            this.printPreviewBarItem19.Id = 18;
            this.printPreviewBarItem19.LargeGlyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_MultiplePagesLarge;
            this.printPreviewBarItem19.Name = "printPreviewBarItem19";
            superToolTip60.FixedTooltipWidth = true;
            toolTipTitleItem60.Text = "View Many Pages";
            toolTipItem60.LeftIndent = 6;
            toolTipItem60.Text = "Choose the page layout to arrange the document pages in preview.";
            superToolTip60.Items.Add(toolTipTitleItem60);
            superToolTip60.Items.Add(toolTipItem60);
            superToolTip60.MaxWidth = 210;
            this.printPreviewBarItem19.SuperTip = superToolTip60;
            // 
            // printPreviewBarItem20
            // 
            this.printPreviewBarItem20.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.printPreviewBarItem20.Caption = "Page Color";
            this.printPreviewBarItem20.Command = DevExpress.XtraPrinting.PrintingSystemCommand.FillBackground;
            this.printPreviewBarItem20.Enabled = false;
            this.printPreviewBarItem20.Glyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_FillBackground;
            this.printPreviewBarItem20.Id = 19;
            this.printPreviewBarItem20.LargeGlyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_FillBackgroundLarge;
            this.printPreviewBarItem20.Name = "printPreviewBarItem20";
            superToolTip61.FixedTooltipWidth = true;
            toolTipTitleItem61.Text = "Background Color";
            toolTipItem61.LeftIndent = 6;
            toolTipItem61.Text = "Choose a color for the background of the document pages.";
            superToolTip61.Items.Add(toolTipTitleItem61);
            superToolTip61.Items.Add(toolTipItem61);
            superToolTip61.MaxWidth = 210;
            this.printPreviewBarItem20.SuperTip = superToolTip61;
            // 
            // printPreviewBarItem21
            // 
            this.printPreviewBarItem21.Caption = "Watermark";
            this.printPreviewBarItem21.Command = DevExpress.XtraPrinting.PrintingSystemCommand.Watermark;
            this.printPreviewBarItem21.Enabled = false;
            this.printPreviewBarItem21.Glyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_Watermark;
            this.printPreviewBarItem21.Id = 20;
            this.printPreviewBarItem21.LargeGlyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_WatermarkLarge;
            this.printPreviewBarItem21.Name = "printPreviewBarItem21";
            superToolTip62.FixedTooltipWidth = true;
            toolTipTitleItem62.Text = "Watermark";
            toolTipItem62.LeftIndent = 6;
            toolTipItem62.Text = "Insert ghosted text or image behind the content of a page.\r\n\r\nThis is often used " +
                "to indicate that a document is to be treated specially.";
            superToolTip62.Items.Add(toolTipTitleItem62);
            superToolTip62.Items.Add(toolTipItem62);
            superToolTip62.MaxWidth = 210;
            this.printPreviewBarItem21.SuperTip = superToolTip62;
            // 
            // DeleteAccessory
            // 
            this.DeleteAccessory.Caption = "清除附件";
            this.DeleteAccessory.Enabled = false;
            this.DeleteAccessory.Glyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_ClosePreview;
            this.DeleteAccessory.Id = 23;
            this.DeleteAccessory.LargeGlyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_ClosePreviewLarge;
            this.DeleteAccessory.Name = "DeleteAccessory";
            this.DeleteAccessory.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.DeleteAccessory_ItemClick);
            // 
            // printPreviewBarItem25
            // 
            this.printPreviewBarItem25.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.printPreviewBarItem25.Caption = "Orientation";
            this.printPreviewBarItem25.Command = DevExpress.XtraPrinting.PrintingSystemCommand.PageOrientation;
            this.printPreviewBarItem25.Enabled = false;
            this.printPreviewBarItem25.Glyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_PageOrientation;
            this.printPreviewBarItem25.Id = 24;
            this.printPreviewBarItem25.LargeGlyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_PageOrientationLarge;
            this.printPreviewBarItem25.Name = "printPreviewBarItem25";
            superToolTip63.FixedTooltipWidth = true;
            toolTipTitleItem63.Text = "Page Orientation";
            toolTipItem63.LeftIndent = 6;
            toolTipItem63.Text = "Switch the pages between portrait and landscape layouts.";
            superToolTip63.Items.Add(toolTipTitleItem63);
            superToolTip63.Items.Add(toolTipItem63);
            superToolTip63.MaxWidth = 210;
            this.printPreviewBarItem25.SuperTip = superToolTip63;
            // 
            // printPreviewBarItem26
            // 
            this.printPreviewBarItem26.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.printPreviewBarItem26.Caption = "Size";
            this.printPreviewBarItem26.Command = DevExpress.XtraPrinting.PrintingSystemCommand.PaperSize;
            this.printPreviewBarItem26.Enabled = false;
            this.printPreviewBarItem26.Glyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_PaperSize;
            this.printPreviewBarItem26.Id = 25;
            this.printPreviewBarItem26.LargeGlyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_PaperSizeLarge;
            this.printPreviewBarItem26.Name = "printPreviewBarItem26";
            superToolTip64.FixedTooltipWidth = true;
            toolTipTitleItem64.Text = "Page Size";
            toolTipItem64.LeftIndent = 6;
            toolTipItem64.Text = "Choose the paper size of the document.";
            superToolTip64.Items.Add(toolTipTitleItem64);
            superToolTip64.Items.Add(toolTipItem64);
            superToolTip64.MaxWidth = 210;
            this.printPreviewBarItem26.SuperTip = superToolTip64;
            // 
            // printPreviewBarItem27
            // 
            this.printPreviewBarItem27.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.printPreviewBarItem27.Caption = "Margins";
            this.printPreviewBarItem27.Command = DevExpress.XtraPrinting.PrintingSystemCommand.PageMargins;
            this.printPreviewBarItem27.Enabled = false;
            this.printPreviewBarItem27.Glyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_PageMargins;
            this.printPreviewBarItem27.Id = 26;
            this.printPreviewBarItem27.LargeGlyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_PageMarginsLarge;
            this.printPreviewBarItem27.Name = "printPreviewBarItem27";
            superToolTip65.FixedTooltipWidth = true;
            toolTipTitleItem65.Text = "Page Margins";
            toolTipItem65.LeftIndent = 6;
            toolTipItem65.Text = "Select the margin sizes for the entire document.\r\n\r\nTo apply specific margin size" +
                "s to the document, click Custom Margins.";
            superToolTip65.Items.Add(toolTipTitleItem65);
            superToolTip65.Items.Add(toolTipItem65);
            superToolTip65.MaxWidth = 210;
            this.printPreviewBarItem27.SuperTip = superToolTip65;
            // 
            // printPreviewBarItem28
            // 
            this.printPreviewBarItem28.Caption = "PDF File";
            this.printPreviewBarItem28.Command = DevExpress.XtraPrinting.PrintingSystemCommand.SendPdf;
            this.printPreviewBarItem28.Description = "Adobe Portable Document Format";
            this.printPreviewBarItem28.Enabled = false;
            this.printPreviewBarItem28.Glyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_SendPdf;
            this.printPreviewBarItem28.Id = 27;
            this.printPreviewBarItem28.LargeGlyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_SendPdfLarge;
            this.printPreviewBarItem28.Name = "printPreviewBarItem28";
            superToolTip66.FixedTooltipWidth = true;
            toolTipTitleItem66.Text = "E-Mail As PDF";
            toolTipItem66.LeftIndent = 6;
            toolTipItem66.Text = "Export the document to PDF and attach it to the e-mail.";
            superToolTip66.Items.Add(toolTipTitleItem66);
            superToolTip66.Items.Add(toolTipItem66);
            superToolTip66.MaxWidth = 210;
            this.printPreviewBarItem28.SuperTip = superToolTip66;
            // 
            // printPreviewBarItem29
            // 
            this.printPreviewBarItem29.Caption = "Text File";
            this.printPreviewBarItem29.Command = DevExpress.XtraPrinting.PrintingSystemCommand.SendTxt;
            this.printPreviewBarItem29.Description = "Plain Text";
            this.printPreviewBarItem29.Enabled = false;
            this.printPreviewBarItem29.Glyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_SendTxt;
            this.printPreviewBarItem29.Id = 28;
            this.printPreviewBarItem29.LargeGlyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_SendTxtLarge;
            this.printPreviewBarItem29.Name = "printPreviewBarItem29";
            superToolTip67.FixedTooltipWidth = true;
            toolTipTitleItem67.Text = "E-Mail As Text";
            toolTipItem67.LeftIndent = 6;
            toolTipItem67.Text = "Export the document to Text and attach it to the e-mail.";
            superToolTip67.Items.Add(toolTipTitleItem67);
            superToolTip67.Items.Add(toolTipItem67);
            superToolTip67.MaxWidth = 210;
            this.printPreviewBarItem29.SuperTip = superToolTip67;
            // 
            // printPreviewBarItem30
            // 
            this.printPreviewBarItem30.Caption = "CSV File";
            this.printPreviewBarItem30.Command = DevExpress.XtraPrinting.PrintingSystemCommand.SendCsv;
            this.printPreviewBarItem30.Description = "Comma-Separated Values Text";
            this.printPreviewBarItem30.Enabled = false;
            this.printPreviewBarItem30.Glyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_SendCsv;
            this.printPreviewBarItem30.Id = 29;
            this.printPreviewBarItem30.LargeGlyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_SendCsvLarge;
            this.printPreviewBarItem30.Name = "printPreviewBarItem30";
            superToolTip68.FixedTooltipWidth = true;
            toolTipTitleItem68.Text = "E-Mail As CSV";
            toolTipItem68.LeftIndent = 6;
            toolTipItem68.Text = "Export the document to CSV and attach it to the e-mail.";
            superToolTip68.Items.Add(toolTipTitleItem68);
            superToolTip68.Items.Add(toolTipItem68);
            superToolTip68.MaxWidth = 210;
            this.printPreviewBarItem30.SuperTip = superToolTip68;
            // 
            // printPreviewBarItem31
            // 
            this.printPreviewBarItem31.Caption = "MHT File";
            this.printPreviewBarItem31.Command = DevExpress.XtraPrinting.PrintingSystemCommand.SendMht;
            this.printPreviewBarItem31.Description = "Single File Web Page";
            this.printPreviewBarItem31.Enabled = false;
            this.printPreviewBarItem31.Glyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_SendMht;
            this.printPreviewBarItem31.Id = 30;
            this.printPreviewBarItem31.LargeGlyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_SendMhtLarge;
            this.printPreviewBarItem31.Name = "printPreviewBarItem31";
            superToolTip69.FixedTooltipWidth = true;
            toolTipTitleItem69.Text = "E-Mail As MHT";
            toolTipItem69.LeftIndent = 6;
            toolTipItem69.Text = "Export the document to MHT and attach it to the e-mail.";
            superToolTip69.Items.Add(toolTipTitleItem69);
            superToolTip69.Items.Add(toolTipItem69);
            superToolTip69.MaxWidth = 210;
            this.printPreviewBarItem31.SuperTip = superToolTip69;
            // 
            // printPreviewBarItem32
            // 
            this.printPreviewBarItem32.Caption = "Excel File";
            this.printPreviewBarItem32.Command = DevExpress.XtraPrinting.PrintingSystemCommand.SendXls;
            this.printPreviewBarItem32.Description = "Microsoft Excel Workbook";
            this.printPreviewBarItem32.Enabled = false;
            this.printPreviewBarItem32.Glyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_SendXls;
            this.printPreviewBarItem32.Id = 31;
            this.printPreviewBarItem32.LargeGlyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_SendXlsLarge;
            this.printPreviewBarItem32.Name = "printPreviewBarItem32";
            superToolTip70.FixedTooltipWidth = true;
            toolTipTitleItem70.Text = "E-Mail As XLS";
            toolTipItem70.LeftIndent = 6;
            toolTipItem70.Text = "Export the document to XLS and attach it to the e-mail.";
            superToolTip70.Items.Add(toolTipTitleItem70);
            superToolTip70.Items.Add(toolTipItem70);
            superToolTip70.MaxWidth = 210;
            this.printPreviewBarItem32.SuperTip = superToolTip70;
            // 
            // printPreviewBarItem33
            // 
            this.printPreviewBarItem33.Caption = "RTF File";
            this.printPreviewBarItem33.Command = DevExpress.XtraPrinting.PrintingSystemCommand.SendRtf;
            this.printPreviewBarItem33.Description = "Rich Text Format";
            this.printPreviewBarItem33.Enabled = false;
            this.printPreviewBarItem33.Glyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_SendRtf;
            this.printPreviewBarItem33.Id = 32;
            this.printPreviewBarItem33.LargeGlyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_SendRtfLarge;
            this.printPreviewBarItem33.Name = "printPreviewBarItem33";
            superToolTip71.FixedTooltipWidth = true;
            toolTipTitleItem71.Text = "E-Mail As RTF";
            toolTipItem71.LeftIndent = 6;
            toolTipItem71.Text = "Export the document to RTF and attach it to the e-mail.";
            superToolTip71.Items.Add(toolTipTitleItem71);
            superToolTip71.Items.Add(toolTipItem71);
            superToolTip71.MaxWidth = 210;
            this.printPreviewBarItem33.SuperTip = superToolTip71;
            // 
            // printPreviewBarItem34
            // 
            this.printPreviewBarItem34.Caption = "Image File";
            this.printPreviewBarItem34.Command = DevExpress.XtraPrinting.PrintingSystemCommand.SendGraphic;
            this.printPreviewBarItem34.Description = "BMP, GIF, JPEG, PNG, TIFF, EMF, WMF";
            this.printPreviewBarItem34.Enabled = false;
            this.printPreviewBarItem34.Glyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_SendGraphic;
            this.printPreviewBarItem34.Id = 33;
            this.printPreviewBarItem34.LargeGlyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_SendGraphicLarge;
            this.printPreviewBarItem34.Name = "printPreviewBarItem34";
            superToolTip72.FixedTooltipWidth = true;
            toolTipTitleItem72.Text = "E-Mail As Image";
            toolTipItem72.LeftIndent = 6;
            toolTipItem72.Text = "Export the document to Image and attach it to the e-mail.";
            superToolTip72.Items.Add(toolTipTitleItem72);
            superToolTip72.Items.Add(toolTipItem72);
            superToolTip72.MaxWidth = 210;
            this.printPreviewBarItem34.SuperTip = superToolTip72;
            // 
            // printPreviewBarItem36
            // 
            this.printPreviewBarItem36.Caption = "HTML File";
            this.printPreviewBarItem36.Command = DevExpress.XtraPrinting.PrintingSystemCommand.ExportHtm;
            this.printPreviewBarItem36.Description = "Web Page";
            this.printPreviewBarItem36.Enabled = false;
            this.printPreviewBarItem36.Glyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_ExportHtm;
            this.printPreviewBarItem36.Id = 35;
            this.printPreviewBarItem36.LargeGlyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_ExportHtmLarge;
            this.printPreviewBarItem36.Name = "printPreviewBarItem36";
            superToolTip73.FixedTooltipWidth = true;
            toolTipTitleItem73.Text = "Export to HTML";
            toolTipItem73.LeftIndent = 6;
            toolTipItem73.Text = "Export the document to HTML and save it to the file on a disk.";
            superToolTip73.Items.Add(toolTipTitleItem73);
            superToolTip73.Items.Add(toolTipItem73);
            superToolTip73.MaxWidth = 210;
            this.printPreviewBarItem36.SuperTip = superToolTip73;
            // 
            // printPreviewBarItem37
            // 
            this.printPreviewBarItem37.Caption = "Text File";
            this.printPreviewBarItem37.Command = DevExpress.XtraPrinting.PrintingSystemCommand.ExportTxt;
            this.printPreviewBarItem37.Description = "Plain Text";
            this.printPreviewBarItem37.Enabled = false;
            this.printPreviewBarItem37.Glyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_ExportTxt;
            this.printPreviewBarItem37.Id = 36;
            this.printPreviewBarItem37.LargeGlyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_ExportTxtLarge;
            this.printPreviewBarItem37.Name = "printPreviewBarItem37";
            superToolTip74.FixedTooltipWidth = true;
            toolTipTitleItem74.Text = "Export to Text";
            toolTipItem74.LeftIndent = 6;
            toolTipItem74.Text = "Export the document to Text and save it to the file on a disk.";
            superToolTip74.Items.Add(toolTipTitleItem74);
            superToolTip74.Items.Add(toolTipItem74);
            superToolTip74.MaxWidth = 210;
            this.printPreviewBarItem37.SuperTip = superToolTip74;
            // 
            // printPreviewBarItem38
            // 
            this.printPreviewBarItem38.Caption = "CSV File";
            this.printPreviewBarItem38.Command = DevExpress.XtraPrinting.PrintingSystemCommand.ExportCsv;
            this.printPreviewBarItem38.Description = "Comma-Separated Values Text";
            this.printPreviewBarItem38.Enabled = false;
            this.printPreviewBarItem38.Glyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_ExportCsv;
            this.printPreviewBarItem38.Id = 37;
            this.printPreviewBarItem38.LargeGlyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_ExportCsvLarge;
            this.printPreviewBarItem38.Name = "printPreviewBarItem38";
            superToolTip75.FixedTooltipWidth = true;
            toolTipTitleItem75.Text = "Export to CSV";
            toolTipItem75.LeftIndent = 6;
            toolTipItem75.Text = "Export the document to CSV and save it to the file on a disk.";
            superToolTip75.Items.Add(toolTipTitleItem75);
            superToolTip75.Items.Add(toolTipItem75);
            superToolTip75.MaxWidth = 210;
            this.printPreviewBarItem38.SuperTip = superToolTip75;
            // 
            // printPreviewBarItem39
            // 
            this.printPreviewBarItem39.Caption = "MHT File";
            this.printPreviewBarItem39.Command = DevExpress.XtraPrinting.PrintingSystemCommand.ExportMht;
            this.printPreviewBarItem39.Description = "Single File Web Page";
            this.printPreviewBarItem39.Enabled = false;
            this.printPreviewBarItem39.Glyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_ExportMht;
            this.printPreviewBarItem39.Id = 38;
            this.printPreviewBarItem39.LargeGlyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_ExportMhtLarge;
            this.printPreviewBarItem39.Name = "printPreviewBarItem39";
            superToolTip76.FixedTooltipWidth = true;
            toolTipTitleItem76.Text = "Export to MHT";
            toolTipItem76.LeftIndent = 6;
            toolTipItem76.Text = "Export the document to MHT and save it to the file on a disk.";
            superToolTip76.Items.Add(toolTipTitleItem76);
            superToolTip76.Items.Add(toolTipItem76);
            superToolTip76.MaxWidth = 210;
            this.printPreviewBarItem39.SuperTip = superToolTip76;
            // 
            // printPreviewBarItem40
            // 
            this.printPreviewBarItem40.Caption = "Excel File";
            this.printPreviewBarItem40.Command = DevExpress.XtraPrinting.PrintingSystemCommand.ExportXls;
            this.printPreviewBarItem40.Description = "Microsoft Excel Workbook";
            this.printPreviewBarItem40.Enabled = false;
            this.printPreviewBarItem40.Glyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_ExportXls;
            this.printPreviewBarItem40.Id = 39;
            this.printPreviewBarItem40.LargeGlyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_ExportXlsLarge;
            this.printPreviewBarItem40.Name = "printPreviewBarItem40";
            superToolTip77.FixedTooltipWidth = true;
            toolTipTitleItem77.Text = "Export to XLS";
            toolTipItem77.LeftIndent = 6;
            toolTipItem77.Text = "Export the document to XLS and save it to the file on a disk.";
            superToolTip77.Items.Add(toolTipTitleItem77);
            superToolTip77.Items.Add(toolTipItem77);
            superToolTip77.MaxWidth = 210;
            this.printPreviewBarItem40.SuperTip = superToolTip77;
            // 
            // printPreviewBarItem41
            // 
            this.printPreviewBarItem41.Caption = "RTF File";
            this.printPreviewBarItem41.Command = DevExpress.XtraPrinting.PrintingSystemCommand.ExportRtf;
            this.printPreviewBarItem41.Description = "Rich Text Format";
            this.printPreviewBarItem41.Enabled = false;
            this.printPreviewBarItem41.Glyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_ExportRtf;
            this.printPreviewBarItem41.Id = 40;
            this.printPreviewBarItem41.LargeGlyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_ExportRtfLarge;
            this.printPreviewBarItem41.Name = "printPreviewBarItem41";
            superToolTip78.FixedTooltipWidth = true;
            toolTipTitleItem78.Text = "Export to RTF";
            toolTipItem78.LeftIndent = 6;
            toolTipItem78.Text = "Export the document to RTF and save it to the file on a disk.";
            superToolTip78.Items.Add(toolTipTitleItem78);
            superToolTip78.Items.Add(toolTipItem78);
            superToolTip78.MaxWidth = 210;
            this.printPreviewBarItem41.SuperTip = superToolTip78;
            // 
            // printPreviewBarItem42
            // 
            this.printPreviewBarItem42.Caption = "Image File";
            this.printPreviewBarItem42.Command = DevExpress.XtraPrinting.PrintingSystemCommand.ExportGraphic;
            this.printPreviewBarItem42.Description = "BMP, GIF, JPEG, PNG, TIFF, EMF, WMF";
            this.printPreviewBarItem42.Enabled = false;
            this.printPreviewBarItem42.Glyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_ExportGraphic;
            this.printPreviewBarItem42.Id = 41;
            this.printPreviewBarItem42.LargeGlyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_ExportGraphicLarge;
            this.printPreviewBarItem42.Name = "printPreviewBarItem42";
            superToolTip79.FixedTooltipWidth = true;
            toolTipTitleItem79.Text = "Export to Image";
            toolTipItem79.LeftIndent = 6;
            toolTipItem79.Text = "Export the document to Image and save it to the file on a disk.";
            superToolTip79.Items.Add(toolTipTitleItem79);
            superToolTip79.Items.Add(toolTipItem79);
            superToolTip79.MaxWidth = 210;
            this.printPreviewBarItem42.SuperTip = superToolTip79;
            // 
            // barStaticItem2
            // 
            this.barStaticItem2.Id = 34;
            this.barStaticItem2.Name = "barStaticItem2";
            this.barStaticItem2.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // printPreviewStaticItem2
            // 
            this.printPreviewStaticItem2.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.printPreviewStaticItem2.Caption = "100%";
            this.printPreviewStaticItem2.Id = 35;
            this.printPreviewStaticItem2.Name = "printPreviewStaticItem2";
            this.printPreviewStaticItem2.TextAlignment = System.Drawing.StringAlignment.Near;
            this.printPreviewStaticItem2.Type = "ZoomFactorText";
            this.printPreviewStaticItem2.Width = 40;
            // 
            // printPreviewBarItem1
            // 
            this.printPreviewBarItem1.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            this.printPreviewBarItem1.Caption = "Parameters";
            this.printPreviewBarItem1.Command = DevExpress.XtraPrinting.PrintingSystemCommand.Parameters;
            this.printPreviewBarItem1.ContextSpecifier = this.xrDesignRibbonController1;
            this.printPreviewBarItem1.Enabled = false;
            this.printPreviewBarItem1.Glyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_Parameters;
            this.printPreviewBarItem1.Id = 37;
            this.printPreviewBarItem1.LargeGlyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_ParametersLarge;
            this.printPreviewBarItem1.Name = "printPreviewBarItem1";
            superToolTip80.FixedTooltipWidth = true;
            toolTipTitleItem80.Text = "Parameters";
            toolTipItem80.LeftIndent = 6;
            toolTipItem80.Text = "Open the Parameters pane, which allows you to enter values for report parameters." +
                "";
            superToolTip80.Items.Add(toolTipTitleItem80);
            superToolTip80.Items.Add(toolTipItem80);
            superToolTip80.MaxWidth = 210;
            this.printPreviewBarItem1.SuperTip = superToolTip80;
            // 
            // xrDesignRibbonController1
            // 
            this.xrDesignRibbonController1.RibbonControl = this.MainRibbonControl;
            this.xrDesignRibbonController1.RibbonStatusBar = null;
            this.xrDesignRibbonController1.XRDesignDockManager = this.xrDesignDockManager1;
            this.xrDesignRibbonController1.XRDesignPanel = this.MailEditorPanel;
            // 
            // xrDesignDockManager1
            // 
            this.xrDesignDockManager1.Form = this;
            this.xrDesignDockManager1.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("xrDesignDockManager1.ImageStream")));
            this.xrDesignDockManager1.TopZIndexControls.AddRange(new string[] {
            "DevExpress.XtraBars.BarDockControl",
            "System.Windows.Forms.StatusBar",
            "DevExpress.XtraBars.Ribbon.RibbonStatusBar",
            "DevExpress.XtraBars.Ribbon.RibbonControl"});
            this.xrDesignDockManager1.XRDesignPanel = this.MailEditorPanel;
            // 
            // MailEditorPanel
            // 
            this.MailEditorPanel.Dock = System.Windows.Forms.DockStyle.Fill;
            this.MailEditorPanel.Location = new System.Drawing.Point(20, 148);
            this.MailEditorPanel.Name = "MailEditorPanel";
            this.MailEditorPanel.Padding = new System.Windows.Forms.Padding(2, 2, 2, 2);
            this.MailEditorPanel.Size = new System.Drawing.Size(1431, 274);
            this.MailEditorPanel.TabIndex = 23;
            // 
            // NickNameEdit
            // 
            this.NickNameEdit.Caption = "昵   称:";
            this.NickNameEdit.Edit = this.repositoryItemTextEdit9;
            this.NickNameEdit.EditValue = "";
            this.NickNameEdit.Id = 39;
            this.NickNameEdit.Name = "NickNameEdit";
            this.NickNameEdit.Width = 200;
            // 
            // repositoryItemTextEdit9
            // 
            this.repositoryItemTextEdit9.AutoHeight = false;
            this.repositoryItemTextEdit9.Name = "repositoryItemTextEdit9";
            this.repositoryItemTextEdit9.UseParentBackground = true;
            // 
            // SendMailNameEdit
            // 
            this.SendMailNameEdit.Caption = "发件人:";
            this.SendMailNameEdit.Edit = this.repositoryItemTextEdit10;
            this.SendMailNameEdit.EditValue = "";
            this.SendMailNameEdit.Id = 40;
            this.SendMailNameEdit.Name = "SendMailNameEdit";
            this.SendMailNameEdit.Width = 200;
            // 
            // repositoryItemTextEdit10
            // 
            this.repositoryItemTextEdit10.AutoHeight = false;
            this.repositoryItemTextEdit10.Name = "repositoryItemTextEdit10";
            this.repositoryItemTextEdit10.UseParentBackground = true;
            // 
            // SubjectEdit
            // 
            this.SubjectEdit.Caption = "主   题:";
            this.SubjectEdit.Edit = this.repositoryItemTextEdit11;
            this.SubjectEdit.EditValue = "";
            this.SubjectEdit.Id = 41;
            this.SubjectEdit.Name = "SubjectEdit";
            this.SubjectEdit.Width = 200;
            // 
            // repositoryItemTextEdit11
            // 
            this.repositoryItemTextEdit11.AutoHeight = false;
            this.repositoryItemTextEdit11.Name = "repositoryItemTextEdit11";
            this.repositoryItemTextEdit11.UseParentBackground = true;
            // 
            // UserNameEdit
            // 
            this.UserNameEdit.Caption = "用户名:";
            this.UserNameEdit.Edit = this.repositoryItemTextEdit13;
            this.UserNameEdit.EditValue = "";
            this.UserNameEdit.Id = 43;
            this.UserNameEdit.Name = "UserNameEdit";
            this.UserNameEdit.Width = 160;
            // 
            // repositoryItemTextEdit13
            // 
            this.repositoryItemTextEdit13.AutoHeight = false;
            this.repositoryItemTextEdit13.Name = "repositoryItemTextEdit13";
            this.repositoryItemTextEdit13.UseParentBackground = true;
            // 
            // PasswordEdit
            // 
            this.PasswordEdit.Caption = "密   码:";
            this.PasswordEdit.Edit = this.repositoryItemTextEdit14;
            this.PasswordEdit.EditValue = "";
            this.PasswordEdit.Id = 44;
            this.PasswordEdit.Name = "PasswordEdit";
            this.PasswordEdit.Width = 160;
            // 
            // repositoryItemTextEdit14
            // 
            this.repositoryItemTextEdit14.AutoHeight = false;
            this.repositoryItemTextEdit14.Name = "repositoryItemTextEdit14";
            this.repositoryItemTextEdit14.PasswordChar = '*';
            this.repositoryItemTextEdit14.UseParentBackground = true;
            // 
            // ServerNameEdit
            // 
            this.ServerNameEdit.Caption = "服务器:";
            this.ServerNameEdit.Edit = this.MailServerComboBox;
            this.ServerNameEdit.Id = 45;
            this.ServerNameEdit.Name = "ServerNameEdit";
            this.ServerNameEdit.Width = 160;
            // 
            // MailServerComboBox
            // 
            this.MailServerComboBox.AutoHeight = false;
            this.MailServerComboBox.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.MailServerComboBox.CycleOnDblClick = false;
            this.MailServerComboBox.Items.AddRange(new object[] {
            "stmp.qq.com",
            "smtp.ru.com",
            "smtp.126.com",
            "smtp.163.com",
            "smtp.aol.com",
            "smtp.tom.com",
            "smtp.gmail.com",
            "smtp.yahoo.com",
            "smtp.yahoo.com.cn",
            "smtp.hotmail.com",
            "smtp.hotmail.com.cn",
            "smtp.mail.yahoo.com.cn",
            "smtp.mail.yahoo.com",
            "smtp.mail.yahoo.cn"});
            this.MailServerComboBox.Name = "MailServerComboBox";
            this.MailServerComboBox.PopupBorderStyle = DevExpress.XtraEditors.Controls.PopupBorderStyles.Style3D;
            this.MailServerComboBox.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.MailServerComboBox.UseParentBackground = true;
            // 
            // ReceiveNameEdit
            // 
            this.ReceiveNameEdit.Caption = "收  件 人:";
            this.ReceiveNameEdit.Edit = this.ButtonEdit;
            this.ReceiveNameEdit.EditValue = "";
            this.ReceiveNameEdit.Id = 46;
            this.ReceiveNameEdit.Name = "ReceiveNameEdit";
            this.ReceiveNameEdit.Width = 360;
            this.ReceiveNameEdit.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.ImportNameButtonItem1_ItemClick);
            // 
            // ButtonEdit
            // 
            this.ButtonEdit.AutoHeight = false;
            serializableAppearanceObject1.BackColor = System.Drawing.Color.Gray;
            serializableAppearanceObject1.Options.UseBackColor = true;
            this.ButtonEdit.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "导入", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "导入收件人地址", null, null, true)});
            this.ButtonEdit.ButtonsStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
            this.ButtonEdit.Name = "ButtonEdit";
            this.ButtonEdit.UseParentBackground = true;
            // 
            // barEditItem4
            // 
            this.barEditItem4.Caption = "barEditItem4";
            this.barEditItem4.Edit = this.repositoryItemRadioGroup1;
            this.barEditItem4.Id = 48;
            this.barEditItem4.Name = "barEditItem4";
            // 
            // repositoryItemRadioGroup1
            // 
            this.repositoryItemRadioGroup1.Name = "repositoryItemRadioGroup1";
            this.repositoryItemRadioGroup1.UseParentBackground = true;
            // 
            // barButtonItem2
            // 
            this.barButtonItem2.Caption = "barButtonItem2";
            this.barButtonItem2.Id = 49;
            this.barButtonItem2.Name = "barButtonItem2";
            // 
            // barButtonGroup1
            // 
            this.barButtonGroup1.Caption = "barButtonGroup1";
            this.barButtonGroup1.Id = 50;
            this.barButtonGroup1.Name = "barButtonGroup1";
            // 
            // barButtonGroup2
            // 
            this.barButtonGroup2.Caption = "barButtonGroup2";
            this.barButtonGroup2.Id = 51;
            this.barButtonGroup2.Name = "barButtonGroup2";
            // 
            // barButtonGroup3
            // 
            this.barButtonGroup3.Caption = "barButtonGroup3";
            this.barButtonGroup3.Id = 52;
            this.barButtonGroup3.Name = "barButtonGroup3";
            // 
            // Accessory
            // 
            this.Accessory.Caption = "附件状态:";
            this.Accessory.Id = 55;
            this.Accessory.Name = "Accessory";
            this.Accessory.TextAlignment = System.Drawing.StringAlignment.Center;
            this.Accessory.Width = 260;
            // 
            // AccStatic
            // 
            this.AccStatic.Caption = "无附件";
            this.AccStatic.Id = 57;
            this.AccStatic.Name = "AccStatic";
            this.AccStatic.TextAlignment = System.Drawing.StringAlignment.Center;
            this.AccStatic.Width = 280;
            // 
            // barEditItem3
            // 
            this.barEditItem3.Caption = "barEditItem3";
            this.barEditItem3.Edit = this.repositoryItemCheckEdit1;
            this.barEditItem3.Id = 59;
            this.barEditItem3.Name = "barEditItem3";
            // 
            // repositoryItemCheckEdit1
            // 
            this.repositoryItemCheckEdit1.AutoHeight = false;
            this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
            this.repositoryItemCheckEdit1.UseParentBackground = true;
            // 
            // AddSendMailLog
            // 
            this.AddSendMailLog.Caption = "自动添加发信日志";
            this.AddSendMailLog.Edit = this.AutoAddSendRecordCheckEdit;
            this.AddSendMailLog.Id = 60;
            this.AddSendMailLog.Name = "AddSendMailLog";
            // 
            // AutoAddSendRecordCheckEdit
            // 
            this.AutoAddSendRecordCheckEdit.AutoHeight = false;
            this.AutoAddSendRecordCheckEdit.CheckStyle = DevExpress.XtraEditors.Controls.CheckStyles.Style1;
            this.AutoAddSendRecordCheckEdit.Name = "AutoAddSendRecordCheckEdit";
            this.AutoAddSendRecordCheckEdit.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
            this.AutoAddSendRecordCheckEdit.UseParentBackground = true;
            // 
            // AddCommuRecord
            // 
            this.AddCommuRecord.Caption = "自动添加通信记录";
            this.AddCommuRecord.Edit = this.AutoAddCommuRecordCheckEdit;
            this.AddCommuRecord.Id = 61;
            this.AddCommuRecord.Name = "AddCommuRecord";
            // 
            // AutoAddCommuRecordCheckEdit
            // 
            this.AutoAddCommuRecordCheckEdit.AutoHeight = false;
            this.AutoAddCommuRecordCheckEdit.CheckStyle = DevExpress.XtraEditors.Controls.CheckStyles.Style1;
            this.AutoAddCommuRecordCheckEdit.Name = "AutoAddCommuRecordCheckEdit";
            this.AutoAddCommuRecordCheckEdit.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
            this.AutoAddCommuRecordCheckEdit.UseParentBackground = true;
            // 
            // MailCollectionType
            // 
            this.MailCollectionType.Caption = "取证方式:";
            this.MailCollectionType.Edit = this.CollectionItemRadioGroup;
            this.MailCollectionType.Id = 63;
            this.MailCollectionType.Name = "MailCollectionType";
            this.MailCollectionType.Width = 360;
            // 
            // CollectionItemRadioGroup
            // 
            this.CollectionItemRadioGroup.EnableFocusRect = true;
            this.CollectionItemRadioGroup.GlyphAlignment = DevExpress.Utils.HorzAlignment.Default;
            this.CollectionItemRadioGroup.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
            new DevExpress.XtraEditors.Controls.RadioGroupItem(new decimal(new int[] {
                            1,
                            0,
                            0,
                            0}), "Password"),
            new DevExpress.XtraEditors.Controls.RadioGroupItem(new decimal(new int[] {
                            2,
                            0,
                            0,
                            0}), "Cookie"),
            new DevExpress.XtraEditors.Controls.RadioGroupItem(new decimal(new int[] {
                            3,
                            0,
                            0,
                            0}), "Mail"),
            new DevExpress.XtraEditors.Controls.RadioGroupItem(new decimal(new int[] {
                            4,
                            0,
                            0,
                            0}), "C+P"),
            new DevExpress.XtraEditors.Controls.RadioGroupItem(new decimal(new int[] {
                            5,
                            0,
                            0,
                            0}), "无")});
            this.CollectionItemRadioGroup.Name = "CollectionItemRadioGroup";
            this.CollectionItemRadioGroup.UseParentBackground = true;
            // 
            // DeleteRepeatInfo
            // 
            this.DeleteRepeatInfo.Caption = "Cookie去重";
            this.DeleteRepeatInfo.Glyph = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_CutLarge;
            this.DeleteRepeatInfo.Id = 65;
            this.DeleteRepeatInfo.Name = "DeleteRepeatInfo";
            this.DeleteRepeatInfo.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            this.DeleteRepeatInfo.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.DeleteRepeatInfo_ItemClick);
            // 
            // ParamOptionSetting
            // 
            this.ParamOptionSetting.Caption = "参数设置";
            this.ParamOptionSetting.Glyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_PrintSetupLarge;
            this.ParamOptionSetting.Id = 67;
            this.ParamOptionSetting.Name = "ParamOptionSetting";
            this.ParamOptionSetting.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            this.ParamOptionSetting.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.ParamOptionSetting_ItemClick);
            // 
            // FishCookieSetting
            // 
            this.FishCookieSetting.Caption = "Cookie钓鱼设置";
            this.FishCookieSetting.Glyph = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_HtmlFindLarge;
            this.FishCookieSetting.Id = 68;
            this.FishCookieSetting.Name = "FishCookieSetting";
            this.FishCookieSetting.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            this.FishCookieSetting.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.FishCookieSetting_ItemClick);
            // 
            // ImportCookieTxt
            // 
            this.ImportCookieTxt.Caption = "导入Cookie";
            this.ImportCookieTxt.Glyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_OpenLarge;
            this.ImportCookieTxt.Id = 69;
            this.ImportCookieTxt.Name = "ImportCookieTxt";
            this.ImportCookieTxt.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
            this.ImportCookieTxt.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.ImportCookieTxt_ItemClick);
            // 
            // AddUserBarButton
            // 
            this.AddUserBarButton.Caption = "添加用户";
            this.AddUserBarButton.Id = 70;
            this.AddUserBarButton.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("AddUserBarButton.LargeGlyph")));
            this.AddUserBarButton.Name = "AddUserBarButton";
            this.AddUserBarButton.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.AddUserBarButton_ItemClick);
            // 
            // UserEditBarButton
            // 
            this.UserEditBarButton.Caption = "编辑用户";
            this.UserEditBarButton.Id = 71;
            this.UserEditBarButton.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("UserEditBarButton.LargeGlyph")));
            this.UserEditBarButton.Name = "UserEditBarButton";
            this.UserEditBarButton.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.UserEditBarButton_ItemClick);
            // 
            // DeleteUserBarButton
            // 
            this.DeleteUserBarButton.Caption = "删除用户";
            this.DeleteUserBarButton.Id = 72;
            this.DeleteUserBarButton.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("DeleteUserBarButton.LargeGlyph")));
            this.DeleteUserBarButton.Name = "DeleteUserBarButton";
            this.DeleteUserBarButton.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.DeleteUserBarButton_ItemClick);
            // 
            // ExportUserBarButton
            // 
            this.ExportUserBarButton.Caption = "导出账号";
            this.ExportUserBarButton.Id = 73;
            this.ExportUserBarButton.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("ExportUserBarButton.LargeGlyph")));
            this.ExportUserBarButton.Name = "ExportUserBarButton";
            this.ExportUserBarButton.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.ExportUserBarButton_ItemClick);
            // 
            // ImportUserBarButton
            // 
            this.ImportUserBarButton.Caption = "导入账号";
            this.ImportUserBarButton.Id = 74;
            this.ImportUserBarButton.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("ImportUserBarButton.LargeGlyph")));
            this.ImportUserBarButton.Name = "ImportUserBarButton";
            this.ImportUserBarButton.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.ImportUserBarButton_ItemClick);
            // 
            // ParamSettingBarButton
            // 
            this.ParamSettingBarButton.Caption = "参数设置";
            this.ParamSettingBarButton.Id = 75;
            this.ParamSettingBarButton.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("ParamSettingBarButton.LargeGlyph")));
            this.ParamSettingBarButton.Name = "ParamSettingBarButton";
            this.ParamSettingBarButton.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.ParamSettingBarButton_ItemClick);
            // 
            // FliterUsersComboBox
            // 
            this.FliterUsersComboBox.Caption = "用户过滤";
            this.FliterUsersComboBox.Edit = this.repositoryItemComboBox;
            this.FliterUsersComboBox.Id = 76;
            this.FliterUsersComboBox.Name = "FliterUsersComboBox";
            this.FliterUsersComboBox.Width = 150;
            // 
            // repositoryItemComboBox
            // 
            this.repositoryItemComboBox.AutoHeight = false;
            this.repositoryItemComboBox.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemComboBox.Items.AddRange(new object[] {
            "YahooMail用户",
            "HotMail用户",
            "GMail用户",
            "PopMail用户",
            "RuMail用户",
            "显示全部用户"});
            this.repositoryItemComboBox.Name = "repositoryItemComboBox";
            this.repositoryItemComboBox.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.repositoryItemComboBox.UseParentBackground = true;
            // 
            // ConvertBase64BarButton
            // 
            this.ConvertBase64BarButton.Caption = "BASE64转换";
            this.ConvertBase64BarButton.Id = 77;
            this.ConvertBase64BarButton.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("ConvertBase64BarButton.LargeGlyph")));
            this.ConvertBase64BarButton.Name = "ConvertBase64BarButton";
            this.ConvertBase64BarButton.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.ConvertBase64BarButton_ItemClick);
            // 
            // MailXssPage
            // 
            this.MailXssPage.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.xrDesignRibbonPageGroup1,
            this.xrDesignRibbonPageGroup2,
            this.xrDesignRibbonPageGroup7,
            this.xrDesignRibbonPageGroup9});
            this.MailXssPage.Name = "MailXssPage";
            this.MailXssPage.Text = "邮件监控";
            // 
            // xrDesignRibbonPageGroup1
            // 
            this.xrDesignRibbonPageGroup1.Glyph = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_Report;
            this.xrDesignRibbonPageGroup1.ItemLinks.Add(this.NickNameEdit);
            this.xrDesignRibbonPageGroup1.ItemLinks.Add(this.SendMailNameEdit);
            this.xrDesignRibbonPageGroup1.ItemLinks.Add(this.SubjectEdit);
            this.xrDesignRibbonPageGroup1.Kind = DevExpress.XtraReports.UserDesigner.XRDesignRibbonPageGroupKind.Report;
            this.xrDesignRibbonPageGroup1.Name = "xrDesignRibbonPageGroup1";
            this.xrDesignRibbonPageGroup1.ShowCaptionButton = false;
            this.xrDesignRibbonPageGroup1.Text = "邮件信息";
            // 
            // xrDesignRibbonPageGroup2
            // 
            this.xrDesignRibbonPageGroup2.Glyph = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_Edit;
            this.xrDesignRibbonPageGroup2.ItemLinks.Add(this.ServerNameEdit);
            this.xrDesignRibbonPageGroup2.ItemLinks.Add(this.UserNameEdit);
            this.xrDesignRibbonPageGroup2.ItemLinks.Add(this.PasswordEdit);
            this.xrDesignRibbonPageGroup2.Kind = DevExpress.XtraReports.UserDesigner.XRDesignRibbonPageGroupKind.Edit;
            this.xrDesignRibbonPageGroup2.Name = "xrDesignRibbonPageGroup2";
            this.xrDesignRibbonPageGroup2.ShowCaptionButton = false;
            this.xrDesignRibbonPageGroup2.Text = "服务器信息";
            // 
            // xrDesignRibbonPageGroup7
            // 
            this.xrDesignRibbonPageGroup7.Glyph = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_Windows;
            this.xrDesignRibbonPageGroup7.ItemLinks.Add(this.ReceiveNameEdit);
            this.xrDesignRibbonPageGroup7.ItemLinks.Add(this.MailCollectionType);
            this.xrDesignRibbonPageGroup7.Kind = DevExpress.XtraReports.UserDesigner.XRDesignRibbonPageGroupKind.View;
            this.xrDesignRibbonPageGroup7.Name = "xrDesignRibbonPageGroup7";
            this.xrDesignRibbonPageGroup7.ShowCaptionButton = false;
            this.xrDesignRibbonPageGroup7.Text = "取证目标";
            // 
            // xrDesignRibbonPageGroup9
            // 
            this.xrDesignRibbonPageGroup9.Glyph = ((System.Drawing.Image)(resources.GetObject("xrDesignRibbonPageGroup9.Glyph")));
            this.xrDesignRibbonPageGroup9.ItemLinks.Add(this.AddCommuRecord);
            this.xrDesignRibbonPageGroup9.ItemLinks.Add(this.AddSendMailLog);
            this.xrDesignRibbonPageGroup9.ItemLinks.Add(this.DeleteAccessory, true);
            this.xrDesignRibbonPageGroup9.ItemLinks.Add(this.Accessory);
            this.xrDesignRibbonPageGroup9.ItemLinks.Add(this.AccStatic);
            this.xrDesignRibbonPageGroup9.Kind = DevExpress.XtraReports.UserDesigner.XRDesignRibbonPageGroupKind.Scripts;
            this.xrDesignRibbonPageGroup9.Name = "xrDesignRibbonPageGroup9";
            this.xrDesignRibbonPageGroup9.ShowCaptionButton = false;
            this.xrDesignRibbonPageGroup9.Text = "附件信息";
            // 
            // CookieMail
            // 
            this.CookieMail.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.printPreviewRibbonPageGroup7,
            this.printPreviewRibbonPageGroup6,
            this.ribbonPageGroup4});
            this.CookieMail.Name = "CookieMail";
            this.CookieMail.Text = "Cookie秘密收邮";
            // 
            // printPreviewRibbonPageGroup7
            // 
            this.printPreviewRibbonPageGroup7.ItemLinks.Add(this.ImportCookieTxt);
            this.printPreviewRibbonPageGroup7.ItemLinks.Add(this.DeleteRepeatInfo);
            this.printPreviewRibbonPageGroup7.Kind = DevExpress.XtraPrinting.Preview.PrintPreviewRibbonPageGroupKind.Document;
            this.printPreviewRibbonPageGroup7.Name = "printPreviewRibbonPageGroup7";
            this.printPreviewRibbonPageGroup7.ShowCaptionButton = false;
            this.printPreviewRibbonPageGroup7.Text = "Cookie操作";
            // 
            // printPreviewRibbonPageGroup6
            // 
            this.printPreviewRibbonPageGroup6.Glyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_ExportFile;
            this.printPreviewRibbonPageGroup6.ItemLinks.Add(this.ParamOptionSetting);
            this.printPreviewRibbonPageGroup6.ItemLinks.Add(this.FishCookieSetting);
            this.printPreviewRibbonPageGroup6.Kind = DevExpress.XtraPrinting.Preview.PrintPreviewRibbonPageGroupKind.Export;
            this.printPreviewRibbonPageGroup6.Name = "printPreviewRibbonPageGroup6";
            this.printPreviewRibbonPageGroup6.ShowCaptionButton = false;
            this.printPreviewRibbonPageGroup6.Text = "设置";
            // 
            // ribbonPageGroup4
            // 
            this.ribbonPageGroup4.ItemLinks.Add(this.ConvertBase64BarButton);
            this.ribbonPageGroup4.Name = "ribbonPageGroup4";
            this.ribbonPageGroup4.ShowCaptionButton = false;
            this.ribbonPageGroup4.Text = "文本转换";
            // 
            // CommonReceiveMailPage
            // 
            this.CommonReceiveMailPage.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonPageGroup1,
            this.ribbonPageGroup2,
            this.ribbonPageGroup3});
            this.CommonReceiveMailPage.Name = "CommonReceiveMailPage";
            this.CommonReceiveMailPage.Text = "POP/IMAP秘密收邮";
            // 
            // ribbonPageGroup1
            // 
            this.ribbonPageGroup1.ItemLinks.Add(this.AddUserBarButton);
            this.ribbonPageGroup1.ItemLinks.Add(this.UserEditBarButton);
            this.ribbonPageGroup1.ItemLinks.Add(this.DeleteUserBarButton);
            this.ribbonPageGroup1.ItemLinks.Add(this.ExportUserBarButton, true);
            this.ribbonPageGroup1.ItemLinks.Add(this.ImportUserBarButton);
            this.ribbonPageGroup1.Name = "ribbonPageGroup1";
            this.ribbonPageGroup1.ShowCaptionButton = false;
            this.ribbonPageGroup1.Text = "用户管理";
            // 
            // ribbonPageGroup2
            // 
            this.ribbonPageGroup2.ItemLinks.Add(this.ParamSettingBarButton);
            this.ribbonPageGroup2.Name = "ribbonPageGroup2";
            this.ribbonPageGroup2.ShowCaptionButton = false;
            this.ribbonPageGroup2.Text = "设置";
            // 
            // ribbonPageGroup3
            // 
            this.ribbonPageGroup3.ItemLinks.Add(this.FliterUsersComboBox);
            this.ribbonPageGroup3.Name = "ribbonPageGroup3";
            this.ribbonPageGroup3.ShowCaptionButton = false;
            this.ribbonPageGroup3.Text = "过滤";
            // 
            // repositoryItemTextEdit1
            // 
            this.repositoryItemTextEdit1.AutoHeight = false;
            this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
            // 
            // repositoryItemTextEdit2
            // 
            this.repositoryItemTextEdit2.Name = "repositoryItemTextEdit2";
            // 
            // repositoryItemTextEdit3
            // 
            this.repositoryItemTextEdit3.Name = "repositoryItemTextEdit3";
            // 
            // repositoryItemTextEdit4
            // 
            this.repositoryItemTextEdit4.Name = "repositoryItemTextEdit4";
            // 
            // repositoryItemTextEdit5
            // 
            this.repositoryItemTextEdit5.Name = "repositoryItemTextEdit5";
            // 
            // repositoryItemTextEdit6
            // 
            this.repositoryItemTextEdit6.Name = "repositoryItemTextEdit6";
            // 
            // repositoryItemTextEdit7
            // 
            this.repositoryItemTextEdit7.Name = "repositoryItemTextEdit7";
            // 
            // repositoryItemTextEdit8
            // 
            this.repositoryItemTextEdit8.Name = "repositoryItemTextEdit8";
            // 
            // repositoryItemZoomTrackBar1
            // 
            this.repositoryItemZoomTrackBar1.AllowFocused = false;
            this.repositoryItemZoomTrackBar1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.repositoryItemZoomTrackBar1.Maximum = 180;
            this.repositoryItemZoomTrackBar1.Name = "repositoryItemZoomTrackBar1";
            this.repositoryItemZoomTrackBar1.ScrollThumbStyle = DevExpress.XtraEditors.Repository.ScrollThumbStyle.ArrowDownRight;
            this.repositoryItemZoomTrackBar1.UseParentBackground = true;
            // 
            // repositoryItemTextEdit12
            // 
            this.repositoryItemTextEdit12.AutoHeight = false;
            this.repositoryItemTextEdit12.Name = "repositoryItemTextEdit12";
            this.repositoryItemTextEdit12.UseParentBackground = true;
            // 
            // ServerDateEdit
            // 
            this.ServerDateEdit.AutoHeight = false;
            this.ServerDateEdit.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.ServerDateEdit.Name = "ServerDateEdit";
            this.ServerDateEdit.UseParentBackground = true;
            this.ServerDateEdit.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            // 
            // repositoryItemRadioGroup3
            // 
            this.repositoryItemRadioGroup3.Name = "repositoryItemRadioGroup3";
            this.repositoryItemRadioGroup3.UseParentBackground = true;
            // 
            // defaultLookAndFeel1
            // 
            this.defaultLookAndFeel1.LookAndFeel.SkinName = "Office 2010 Black";
            // 
            // xrDesignRibbonPageGroup8
            // 
            this.xrDesignRibbonPageGroup8.ItemLinks.Add(this.commandBarItem46);
            this.xrDesignRibbonPageGroup8.ItemLinks.Add(this.commandBarItem48, true);
            this.xrDesignRibbonPageGroup8.ItemLinks.Add(this.commandBarItem49);
            this.xrDesignRibbonPageGroup8.ItemLinks.Add(this.commandBarItem50, true);
            this.xrDesignRibbonPageGroup8.Kind = DevExpress.XtraReports.UserDesigner.XRDesignRibbonPageGroupKind.HtmlNavigation;
            this.xrDesignRibbonPageGroup8.Name = "xrDesignRibbonPageGroup8";
            this.xrDesignRibbonPageGroup8.ShowCaptionButton = false;
            this.xrDesignRibbonPageGroup8.Text = "Navigation";
            // 
            // dockManager1
            // 
            this.dockManager1.AutoHideContainers.AddRange(new DevExpress.XtraBars.Docking.AutoHideContainer[] {
            this.hideContainerLeft,
            this.hideContainerRight});
            this.dockManager1.Controller = this.barAndDockingController1;
            this.dockManager1.Form = this;
            this.dockManager1.RootPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
            this.StatusInfo});
            this.dockManager1.TopZIndexControls.AddRange(new string[] {
            "DevExpress.XtraBars.BarDockControl",
            "DevExpress.XtraBars.StandaloneBarDockControl",
            "System.Windows.Forms.StatusBar",
            "DevExpress.XtraBars.Ribbon.RibbonStatusBar",
            "DevExpress.XtraBars.Ribbon.RibbonControl"});
            // 
            // hideContainerLeft
            // 
            this.hideContainerLeft.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
            this.hideContainerLeft.Controls.Add(this.MailToolBox);
            this.hideContainerLeft.Dock = System.Windows.Forms.DockStyle.Left;
            this.hideContainerLeft.Location = new System.Drawing.Point(0, 148);
            this.hideContainerLeft.Name = "hideContainerLeft";
            this.hideContainerLeft.Size = new System.Drawing.Size(20, 474);
            // 
            // MailToolBox
            // 
            this.MailToolBox.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
            this.MailToolBox.Appearance.Options.UseBackColor = true;
            this.MailToolBox.Controls.Add(this.dockPanel1_Container);
            this.MailToolBox.Dock = DevExpress.XtraBars.Docking.DockingStyle.Left;
            this.MailToolBox.FloatSize = new System.Drawing.Size(200, 468);
            this.MailToolBox.Font = new System.Drawing.Font("Microsoft YaHei", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.MailToolBox.ID = new System.Guid("3fd1547d-83d1-4f9b-98f4-a13f31320359");
            this.MailToolBox.Location = new System.Drawing.Point(0, 0);
            this.MailToolBox.Name = "MailToolBox";
            this.MailToolBox.OriginalSize = new System.Drawing.Size(200, 200);
            this.MailToolBox.SavedDock = DevExpress.XtraBars.Docking.DockingStyle.Left;
            this.MailToolBox.SavedIndex = 0;
            this.MailToolBox.Size = new System.Drawing.Size(171, 398);
            this.MailToolBox.Text = "功能";
            this.MailToolBox.Visibility = DevExpress.XtraBars.Docking.DockVisibility.AutoHide;
            // 
            // dockPanel1_Container
            // 
            this.dockPanel1_Container.Controls.Add(this.navBarControl1);
            this.dockPanel1_Container.Location = new System.Drawing.Point(3, 21);
            this.dockPanel1_Container.Name = "dockPanel1_Container";
            this.dockPanel1_Container.Size = new System.Drawing.Size(165, 373);
            this.dockPanel1_Container.TabIndex = 0;
            // 
            // navBarControl1
            // 
            this.navBarControl1.ActiveGroup = this.UserFunc;
            this.navBarControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.navBarControl1.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
            this.UserFunc,
            this.ConfigFunc});
            this.navBarControl1.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
            this.SendMail,
            this.AddAccessory,
            this.LogRecord,
            this.TimeSend,
            this.AddSMTPServer,
            this.AddDNS});
            this.navBarControl1.Location = new System.Drawing.Point(0, 0);
            this.navBarControl1.LookAndFeel.SkinName = "Blue";
            this.navBarControl1.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Style3D;
            this.navBarControl1.Name = "navBarControl1";
            this.navBarControl1.OptionsNavPane.ExpandedWidth = 194;
            this.navBarControl1.Size = new System.Drawing.Size(165, 373);
            this.navBarControl1.TabIndex = 0;
            this.navBarControl1.Text = "navBarControl1";
            // 
            // UserFunc
            // 
            this.UserFunc.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
            this.UserFunc.Appearance.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            this.UserFunc.Appearance.Options.UseBackColor = true;
            this.UserFunc.AppearancePressed.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
            this.UserFunc.AppearancePressed.BackColor2 = System.Drawing.Color.Cyan;
            this.UserFunc.AppearancePressed.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
            this.UserFunc.AppearancePressed.Options.UseBackColor = true;
            this.UserFunc.AppearancePressed.Options.UseBorderColor = true;
            this.UserFunc.Caption = "使用";
            this.UserFunc.Expanded = true;
            this.UserFunc.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
            new DevExpress.XtraNavBar.NavBarItemLink(this.SendMail),
            new DevExpress.XtraNavBar.NavBarItemLink(this.AddAccessory),
            new DevExpress.XtraNavBar.NavBarItemLink(this.LogRecord),
            new DevExpress.XtraNavBar.NavBarItemLink(this.TimeSend)});
            this.UserFunc.Name = "UserFunc";
            // 
            // SendMail
            // 
            this.SendMail.Caption = "发送邮件";
            this.SendMail.Name = "SendMail";
            this.SendMail.SmallImage = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_SendFileLarge;
            this.SendMail.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.SendMail_LinkClicked);
            // 
            // AddAccessory
            // 
            this.AddAccessory.Caption = "添加附件";
            this.AddAccessory.LargeImage = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_SaveFileAsLarge;
            this.AddAccessory.Name = "AddAccessory";
            this.AddAccessory.SmallImage = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_SaveFileAsLarge;
            this.AddAccessory.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.AddAccessory_LinkClicked);
            // 
            // LogRecord
            // 
            this.LogRecord.Caption = "日志查看";
            this.LogRecord.Name = "LogRecord";
            this.LogRecord.SmallImage = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_PasteLarge;
            this.LogRecord.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.LogRecord_LinkClicked);
            // 
            // TimeSend
            // 
            this.TimeSend.Caption = "定时发送";
            this.TimeSend.Name = "TimeSend";
            this.TimeSend.SmallImage = global::MailExposure.XRDesignRibbonControllerResources.RibbonUserDesigner_NewReportWizardLarge;
            this.TimeSend.Visible = false;
            this.TimeSend.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.TimeSend_LinkClicked);
            // 
            // ConfigFunc
            // 
            this.ConfigFunc.Appearance.BackColor = System.Drawing.Color.Teal;
            this.ConfigFunc.Appearance.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
            this.ConfigFunc.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))));
            this.ConfigFunc.Appearance.Options.UseBackColor = true;
            this.ConfigFunc.Appearance.Options.UseForeColor = true;
            this.ConfigFunc.Caption = "配置";
            this.ConfigFunc.Expanded = true;
            this.ConfigFunc.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
            new DevExpress.XtraNavBar.NavBarItemLink(this.AddSMTPServer),
            new DevExpress.XtraNavBar.NavBarItemLink(this.AddDNS)});
            this.ConfigFunc.Name = "ConfigFunc";
            // 
            // AddSMTPServer
            // 
            this.AddSMTPServer.Caption = "添加SMTP";
            this.AddSMTPServer.Name = "AddSMTPServer";
            this.AddSMTPServer.SmallImage = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_CustomizeLarge;
            this.AddSMTPServer.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.AddSMTPServer_LinkClicked);
            // 
            // AddDNS
            // 
            this.AddDNS.Caption = "自定义DNS";
            this.AddDNS.Name = "AddDNS";
            this.AddDNS.SmallImage = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_DocumentMapLarge;
            this.AddDNS.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.AddDNS_LinkClicked);
            // 
            // hideContainerRight
            // 
            this.hideContainerRight.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
            this.hideContainerRight.Controls.Add(this.InfoRecord);
            this.hideContainerRight.Controls.Add(this.SendMailRecord);
            this.hideContainerRight.Dock = System.Windows.Forms.DockStyle.Right;
            this.hideContainerRight.Location = new System.Drawing.Point(1451, 148);
            this.hideContainerRight.Name = "hideContainerRight";
            this.hideContainerRight.Size = new System.Drawing.Size(20, 474);
            // 
            // InfoRecord
            // 
            this.InfoRecord.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
            this.InfoRecord.Appearance.Options.UseBackColor = true;
            this.InfoRecord.Controls.Add(this.controlContainer2);
            this.InfoRecord.Dock = DevExpress.XtraBars.Docking.DockingStyle.Right;
            this.InfoRecord.ID = new System.Guid("289fefe8-d51c-4173-b8da-e09e35932ae8");
            this.InfoRecord.Location = new System.Drawing.Point(0, 0);
            this.InfoRecord.Name = "InfoRecord";
            this.InfoRecord.OriginalSize = new System.Drawing.Size(200, 200);
            this.InfoRecord.SavedDock = DevExpress.XtraBars.Docking.DockingStyle.Right;
            this.InfoRecord.SavedIndex = 0;
            this.InfoRecord.Size = new System.Drawing.Size(200, 474);
            this.InfoRecord.TabsPosition = DevExpress.XtraBars.Docking.TabsPosition.Left;
            this.InfoRecord.Text = "通讯记录";
            this.InfoRecord.Visibility = DevExpress.XtraBars.Docking.DockVisibility.AutoHide;
            // 
            // controlContainer2
            // 
            this.controlContainer2.Controls.Add(this.trvListInfo);
            this.controlContainer2.Location = new System.Drawing.Point(4, 25);
            this.controlContainer2.Name = "controlContainer2";
            this.controlContainer2.Size = new System.Drawing.Size(192, 445);
            this.controlContainer2.TabIndex = 0;
            // 
            // trvListInfo
            // 
            this.trvListInfo.ContextMenuStrip = this.TreeControlMenu;
            this.trvListInfo.Dock = System.Windows.Forms.DockStyle.Fill;
            this.trvListInfo.ImageIndex = 0;
            this.trvListInfo.ImageList = this.imageList1;
            this.trvListInfo.Location = new System.Drawing.Point(0, 0);
            this.trvListInfo.Name = "trvListInfo";
            treeNode1.ImageIndex = 0;
            treeNode1.Name = "Node0";
            treeNode1.Text = "常用收件人";
            treeNode2.ImageIndex = 2;
            treeNode2.Name = "Node1";
            treeNode2.SelectedImageIndex = 2;
            treeNode2.Text = "常用用户名";
            this.trvListInfo.Nodes.AddRange(new System.Windows.Forms.TreeNode[] {
            treeNode1,
            treeNode2});
            this.trvListInfo.SelectedImageIndex = 0;
            this.trvListInfo.Size = new System.Drawing.Size(192, 445);
            this.trvListInfo.TabIndex = 0;
            this.trvListInfo.NodeMouseDoubleClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.trvListInfo_NodeMouseDoubleClick);
            // 
            // TreeControlMenu
            // 
            this.TreeControlMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.tlsDelAddreess,
            this.tlsAllDelAddreess});
            this.TreeControlMenu.Name = "TreeControlMenu";
            this.TreeControlMenu.Size = new System.Drawing.Size(119, 48);
            // 
            // tlsDelAddreess
            // 
            this.tlsDelAddreess.Name = "tlsDelAddreess";
            this.tlsDelAddreess.Size = new System.Drawing.Size(118, 22);
            this.tlsDelAddreess.Text = "删除";
            this.tlsDelAddreess.Click += new System.EventHandler(this.tlsDelAddreess_Click);
            // 
            // tlsAllDelAddreess
            // 
            this.tlsAllDelAddreess.Name = "tlsAllDelAddreess";
            this.tlsAllDelAddreess.Size = new System.Drawing.Size(118, 22);
            this.tlsAllDelAddreess.Text = "全部删除";
            this.tlsAllDelAddreess.Click += new System.EventHandler(this.tlsAllDelAddreess_Click);
            // 
            // imageList1
            // 
            this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
            this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
            this.imageList1.Images.SetKeyName(0, "Business-Solutions.gif");
            this.imageList1.Images.SetKeyName(1, "Windows-Server-System.gif");
            this.imageList1.Images.SetKeyName(2, "Windows-Mobile.gif");
            // 
            // SendMailRecord
            // 
            this.SendMailRecord.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
            this.SendMailRecord.Appearance.Options.UseBackColor = true;
            this.SendMailRecord.Controls.Add(this.controlContainer3);
            this.SendMailRecord.Dock = DevExpress.XtraBars.Docking.DockingStyle.Right;
            this.SendMailRecord.ID = new System.Guid("c95e2434-36b4-4c4b-b5e2-a87a98581b86");
            this.SendMailRecord.Location = new System.Drawing.Point(0, 0);
            this.SendMailRecord.Name = "SendMailRecord";
            this.SendMailRecord.OriginalSize = new System.Drawing.Size(200, 200);
            this.SendMailRecord.SavedDock = DevExpress.XtraBars.Docking.DockingStyle.Right;
            this.SendMailRecord.SavedIndex = 1;
            this.SendMailRecord.Size = new System.Drawing.Size(171, 398);
            this.SendMailRecord.Text = "发信日志";
            this.SendMailRecord.Visibility = DevExpress.XtraBars.Docking.DockVisibility.AutoHide;
            // 
            // controlContainer3
            // 
            this.controlContainer3.Controls.Add(this.trvLogList);
            this.controlContainer3.Location = new System.Drawing.Point(3, 21);
            this.controlContainer3.Name = "controlContainer3";
            this.controlContainer3.Size = new System.Drawing.Size(165, 373);
            this.controlContainer3.TabIndex = 0;
            // 
            // trvLogList
            // 
            this.trvLogList.Dock = System.Windows.Forms.DockStyle.Fill;
            this.trvLogList.ImageIndex = 0;
            this.trvLogList.ImageList = this.imageList1;
            this.trvLogList.Location = new System.Drawing.Point(0, 0);
            this.trvLogList.Name = "trvLogList";
            treeNode3.ImageIndex = 1;
            treeNode3.Name = "Node0";
            treeNode3.SelectedImageIndex = 1;
            treeNode3.Text = "发信日志";
            this.trvLogList.Nodes.AddRange(new System.Windows.Forms.TreeNode[] {
            treeNode3});
            this.trvLogList.SelectedImageIndex = 0;
            this.trvLogList.Size = new System.Drawing.Size(168, 376);
            this.trvLogList.TabIndex = 0;
            this.trvLogList.NodeMouseDoubleClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.trvLogList_NodeMouseDoubleClick);
            // 
            // StatusInfo
            // 
            this.StatusInfo.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(131)))), ((int)(((byte)(131)))), ((int)(((byte)(131)))));
            this.StatusInfo.Appearance.Options.UseBackColor = true;
            this.StatusInfo.Controls.Add(this.controlContainer1);
            this.StatusInfo.Dock = DevExpress.XtraBars.Docking.DockingStyle.Bottom;
            this.StatusInfo.ID = new System.Guid("3587090b-2fc3-490b-abc3-e475a195175a");
            this.StatusInfo.Location = new System.Drawing.Point(20, 422);
            this.StatusInfo.Name = "StatusInfo";
            this.StatusInfo.OriginalSize = new System.Drawing.Size(200, 200);
            this.StatusInfo.Size = new System.Drawing.Size(1431, 200);
            this.StatusInfo.Text = "状态信息";
            // 
            // controlContainer1
            // 
            this.controlContainer1.Controls.Add(this.MailInfoOutput);
            this.controlContainer1.Location = new System.Drawing.Point(4, 25);
            this.controlContainer1.Name = "controlContainer1";
            this.controlContainer1.Size = new System.Drawing.Size(1423, 171);
            this.controlContainer1.TabIndex = 0;
            // 
            // MailInfoOutput
            // 
            this.MailInfoOutput.Dock = System.Windows.Forms.DockStyle.Fill;
            this.MailInfoOutput.Location = new System.Drawing.Point(0, 0);
            this.MailInfoOutput.MenuManager = this.MainRibbonControl;
            this.MailInfoOutput.Name = "MailInfoOutput";
            this.MailInfoOutput.Size = new System.Drawing.Size(1423, 171);
            this.MailInfoOutput.TabIndex = 0;
            // 
            // printPreviewBarItem3
            // 
            this.printPreviewBarItem3.Caption = "Close Print Preview";
            this.printPreviewBarItem3.Command = DevExpress.XtraPrinting.PrintingSystemCommand.ClosePreview;
            this.printPreviewBarItem3.Enabled = false;
            this.printPreviewBarItem3.Glyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_ClosePreview;
            this.printPreviewBarItem3.Id = 23;
            this.printPreviewBarItem3.LargeGlyph = global::MailExposure.PrintRibbonControllerResources.RibbonPrintPreview_ClosePreviewLarge;
            this.printPreviewBarItem3.Name = "printPreviewBarItem3";
            superToolTip81.FixedTooltipWidth = true;
            toolTipTitleItem81.Text = "Close Print Preview";
            toolTipItem81.LeftIndent = 6;
            toolTipItem81.Text = "Close Print Preview of the document.";
            superToolTip81.Items.Add(toolTipTitleItem81);
            superToolTip81.Items.Add(toolTipItem81);
            superToolTip81.MaxWidth = 210;
            this.printPreviewBarItem3.SuperTip = superToolTip81;
            this.printPreviewBarItem3.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
            // 
            // barManager1
            // 
            this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
            this.bar1,
            this.bar3});
            this.barManager1.Controller = this.barAndDockingController1;
            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.DockManager = this.dockManager1;
            this.barManager1.Form = this;
            this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.SenMailProgress});
            this.barManager1.MaxItemId = 1;
            this.barManager1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.ItemProgressBar1});
            this.barManager1.StatusBar = this.bar3;
            // 
            // bar1
            // 
            this.bar1.BarName = "Tools";
            this.bar1.DockCol = 0;
            this.bar1.DockRow = 1;
            this.bar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Bottom;
            this.bar1.FloatLocation = new System.Drawing.Point(504, 511);
            this.bar1.Text = "Tools";
            this.bar1.Visible = false;
            // 
            // bar3
            // 
            this.bar3.BarName = "Status bar";
            this.bar3.CanDockStyle = DevExpress.XtraBars.BarCanDockStyle.Bottom;
            this.bar3.DockCol = 0;
            this.bar3.DockRow = 0;
            this.bar3.DockStyle = DevExpress.XtraBars.BarDockStyle.Bottom;
            this.bar3.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.SenMailProgress)});
            this.bar3.OptionsBar.AllowQuickCustomization = false;
            this.bar3.OptionsBar.DrawDragBorder = false;
            this.bar3.OptionsBar.UseWholeRow = true;
            this.bar3.Text = "Status bar";
            // 
            // SenMailProgress
            // 
            this.SenMailProgress.Caption = "Status";
            this.SenMailProgress.Edit = this.ItemProgressBar1;
            this.SenMailProgress.Id = 0;
            this.SenMailProgress.Name = "SenMailProgress";
            this.SenMailProgress.Visibility = DevExpress.XtraBars.BarItemVisibility.OnlyInCustomizing;
            this.SenMailProgress.Width = 180;
            // 
            // ItemProgressBar1
            // 
            this.ItemProgressBar1.Name = "ItemProgressBar1";
            this.ItemProgressBar1.ProgressViewStyle = DevExpress.XtraEditors.Controls.ProgressViewStyle.Solid;
            // 
            // barDockControlTop
            // 
            this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
            this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
            this.barDockControlTop.Size = new System.Drawing.Size(1471, 0);
            // 
            // barDockControlBottom
            // 
            this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.barDockControlBottom.Location = new System.Drawing.Point(0, 622);
            this.barDockControlBottom.Size = new System.Drawing.Size(1471, 48);
            // 
            // barDockControlLeft
            // 
            this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
            this.barDockControlLeft.Location = new System.Drawing.Point(0, 0);
            this.barDockControlLeft.Size = new System.Drawing.Size(0, 622);
            // 
            // barDockControlRight
            // 
            this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
            this.barDockControlRight.Location = new System.Drawing.Point(1471, 0);
            this.barDockControlRight.Size = new System.Drawing.Size(0, 622);
            // 
            // importFileDlg
            // 
            this.importFileDlg.FileName = "openFileDialog1";
            // 
            // CollectionType
            // 
            this.CollectionType.Caption = "取证方式:";
            this.CollectionType.Edit = this.CollectionItemRadioGroup;
            this.CollectionType.Id = 53;
            this.CollectionType.Name = "CollectionType";
            this.CollectionType.Width = 360;
            // 
            // CookieMailPanel
            // 
            this.CookieMailPanel.Dock = System.Windows.Forms.DockStyle.Fill;
            this.CookieMailPanel.Location = new System.Drawing.Point(20, 148);
            this.CookieMailPanel.Name = "CookieMailPanel";
            this.CookieMailPanel.Size = new System.Drawing.Size(1431, 274);
            this.CookieMailPanel.TabIndex = 32;
            // 
            // MainForm
            // 
            this.Appearance.Font = new System.Drawing.Font("SimSun", 9F);
            this.Appearance.ForeColor = System.Drawing.Color.Black;
            this.Appearance.Options.UseFont = true;
            this.Appearance.Options.UseForeColor = true;
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1471, 670);
            this.Controls.Add(this.CookieMailPanel);
            this.Controls.Add(this.MailEditorPanel);
            this.Controls.Add(this.StatusInfo);
            this.Controls.Add(this.hideContainerLeft);
            this.Controls.Add(this.hideContainerRight);
            this.Controls.Add(this.MainRibbonControl);
            this.Controls.Add(this.barDockControlLeft);
            this.Controls.Add(this.barDockControlRight);
            this.Controls.Add(this.barDockControlBottom);
            this.Controls.Add(this.barDockControlTop);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Name = "MainForm";
            this.Ribbon = this.MainRibbonControl;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "互联网电子邮箱侦控系统";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
            this.Load += new System.EventHandler(this.MainForm_Load);
            ((System.ComponentModel.ISupportInitialize)(this.recentlyUsedItemsComboBox1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.designRepositoryItemComboBox1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.MainRibbonControl)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.applicationMenu1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.barAndDockingController1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrDesignRibbonController1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrDesignDockManager1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.MailEditorPanel)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit9)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit10)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit11)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit13)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit14)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.MailServerComboBox)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ButtonEdit)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.AutoAddSendRecordCheckEdit)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.AutoAddCommuRecordCheckEdit)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.CollectionItemRadioGroup)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit6)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit7)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit8)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemZoomTrackBar1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit12)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ServerDateEdit.VistaTimeProperties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ServerDateEdit)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).EndInit();
            this.hideContainerLeft.ResumeLayout(false);
            this.MailToolBox.ResumeLayout(false);
            this.dockPanel1_Container.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.navBarControl1)).EndInit();
            this.hideContainerRight.ResumeLayout(false);
            this.InfoRecord.ResumeLayout(false);
            this.controlContainer2.ResumeLayout(false);
            this.TreeControlMenu.ResumeLayout(false);
            this.SendMailRecord.ResumeLayout(false);
            this.controlContainer3.ResumeLayout(false);
            this.StatusInfo.ResumeLayout(false);
            this.controlContainer1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.MailInfoOutput.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemProgressBar1)).EndInit();
            this.ResumeLayout(false);

		}
Пример #50
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.Utils.SuperToolTip     superToolTip1          = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1      = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem      toolTipItem1           = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip     superToolTip2          = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2      = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem      toolTipItem2           = new DevExpress.Utils.ToolTipItem();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PersonalEkleForm));
     DevExpress.Utils.SuperToolTip     superToolTip3          = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem3      = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem      toolTipItem3           = new DevExpress.Utils.ToolTipItem();
     this.ribbonControl1   = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.barBtnSil        = new DevExpress.XtraBars.BarButtonItem();
     this.barBtnCikis      = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem3   = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem4   = new DevExpress.XtraBars.BarButtonItem();
     this.barBtnYeni       = new DevExpress.XtraBars.BarButtonItem();
     this.barBtnPersonal   = new DevExpress.XtraBars.BarButtonItem();
     this.barbtnKisi       = new DevExpress.XtraBars.BarButtonItem();
     this.ribbonPage1      = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup1 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.label1           = new System.Windows.Forms.Label();
     this.pnlKisi          = new System.Windows.Forms.Panel();
     this.txtSifre         = new YazilimSinamaSonProje.Controls.MyTextEdit();
     this.txtTcNo          = new YazilimSinamaSonProje.Controls.MyTextEdit();
     this.label4           = new System.Windows.Forms.Label();
     this.txtSoyIsim       = new YazilimSinamaSonProje.Controls.MyTextEdit();
     this.txtBolumId       = new YazilimSinamaSonProje.Controls.MyTextEdit();
     this.txtIsim          = new YazilimSinamaSonProje.Controls.MyTextEdit();
     this.label5           = new System.Windows.Forms.Label();
     this.label3           = new System.Windows.Forms.Label();
     this.txtPersonalId    = new YazilimSinamaSonProje.Controls.MyTextEdit();
     this.label2           = new System.Windows.Forms.Label();
     this.label6           = new System.Windows.Forms.Label();
     this.label7           = new System.Windows.Forms.Label();
     this.myEmailTextEdit1 = new YazilimSinamaSonProje.Controls.MyEmailTextEdit();
     ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).BeginInit();
     this.pnlKisi.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtSifre.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTcNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSoyIsim.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBolumId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtIsim.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPersonalId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.myEmailTextEdit1.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // ribbonControl1
     //
     this.ribbonControl1.DrawGroupCaptions     = DevExpress.Utils.DefaultBoolean.False;
     this.ribbonControl1.DrawGroupsBorderMode  = DevExpress.Utils.DefaultBoolean.False;
     this.ribbonControl1.ExpandCollapseItem.Id = 0;
     this.ribbonControl1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
         this.ribbonControl1.ExpandCollapseItem,
         this.barBtnSil,
         this.barBtnCikis,
         this.barButtonItem3,
         this.barButtonItem4,
         this.barBtnYeni,
         this.barBtnPersonal,
         this.barbtnKisi
     });
     this.ribbonControl1.Location  = new System.Drawing.Point(0, 0);
     this.ribbonControl1.MaxItemId = 8;
     this.ribbonControl1.Name      = "ribbonControl1";
     this.ribbonControl1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
         this.ribbonPage1
     });
     this.ribbonControl1.ShowApplicationButton        = DevExpress.Utils.DefaultBoolean.False;
     this.ribbonControl1.ShowCategoryInCaption        = false;
     this.ribbonControl1.ShowDisplayOptionsMenuButton = DevExpress.Utils.DefaultBoolean.False;
     this.ribbonControl1.ShowExpandCollapseButton     = DevExpress.Utils.DefaultBoolean.False;
     this.ribbonControl1.ShowPageHeadersInFormCaption = DevExpress.Utils.DefaultBoolean.False;
     this.ribbonControl1.ShowPageHeadersMode          = DevExpress.XtraBars.Ribbon.ShowPageHeadersMode.Hide;
     this.ribbonControl1.ShowQatLocationSelector      = false;
     this.ribbonControl1.ShowToolbarCustomizeItem     = false;
     this.ribbonControl1.Size = new System.Drawing.Size(401, 96);
     this.ribbonControl1.Toolbar.ShowCustomizeItem = false;
     this.ribbonControl1.ToolbarLocation           = DevExpress.XtraBars.Ribbon.RibbonQuickAccessToolbarLocation.Hidden;
     //
     // barBtnSil
     //
     this.barBtnSil.Caption                        = "Sil";
     this.barBtnSil.Id                             = 1;
     this.barBtnSil.ImageOptions.Image             = global::YazilimSinamaSonProje.Properties.Resources.close_16x16;
     this.barBtnSil.ImageOptions.LargeImage        = global::YazilimSinamaSonProje.Properties.Resources.close_32x32;
     this.barBtnSil.Name                           = "barBtnSil";
     toolTipTitleItem1.Appearance.Image            = global::YazilimSinamaSonProje.Properties.Resources.comment_16x16;
     toolTipTitleItem1.Appearance.Options.UseImage = true;
     toolTipTitleItem1.Image                       = global::YazilimSinamaSonProje.Properties.Resources.comment_16x16;
     toolTipTitleItem1.Text                        = "(Delete)";
     toolTipItem1.LeftIndent                       = 6;
     toolTipItem1.Text                             = "Yeni Üye Sil";
     superToolTip1.Items.Add(toolTipTitleItem1);
     superToolTip1.Items.Add(toolTipItem1);
     this.barBtnSil.SuperTip = superToolTip1;
     //
     // barBtnCikis
     //
     this.barBtnCikis.Caption                      = "Çıkış";
     this.barBtnCikis.Id                           = 2;
     this.barBtnCikis.ImageOptions.Image           = global::YazilimSinamaSonProje.Properties.Resources.cancel_16x162;
     this.barBtnCikis.ImageOptions.LargeImage      = global::YazilimSinamaSonProje.Properties.Resources.cancel_32x322;
     this.barBtnCikis.ItemShortcut                 = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.F4));
     this.barBtnCikis.Name                         = "barBtnCikis";
     toolTipTitleItem2.Appearance.Image            = global::YazilimSinamaSonProje.Properties.Resources.comment_16x16;
     toolTipTitleItem2.Appearance.Options.UseImage = true;
     toolTipTitleItem2.Image                       = global::YazilimSinamaSonProje.Properties.Resources.comment_16x16;
     toolTipTitleItem2.Text                        = "(Alt+F4)";
     toolTipItem2.LeftIndent                       = 6;
     toolTipItem2.Text = "Çıkış Yap";
     superToolTip2.Items.Add(toolTipTitleItem2);
     superToolTip2.Items.Add(toolTipItem2);
     this.barBtnCikis.SuperTip   = superToolTip2;
     this.barBtnCikis.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barBtnCikis_ItemClick);
     //
     // barButtonItem3
     //
     this.barButtonItem3.Caption = "barButtonItem3";
     this.barButtonItem3.Id      = 3;
     this.barButtonItem3.Name    = "barButtonItem3";
     //
     // barButtonItem4
     //
     this.barButtonItem4.Caption = "barButtonItem4";
     this.barButtonItem4.Id      = 4;
     this.barButtonItem4.Name    = "barButtonItem4";
     //
     // barBtnYeni
     //
     this.barBtnYeni.Caption                 = "Yeni";
     this.barBtnYeni.Id                      = 5;
     this.barBtnYeni.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("barBtnYeni.ImageOptions.Image")));
     this.barBtnYeni.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("barBtnYeni.ImageOptions.LargeImage")));
     this.barBtnYeni.Name                    = "barBtnYeni";
     this.barBtnYeni.ItemClick              += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem5_ItemClick);
     //
     // barBtnPersonal
     //
     this.barBtnPersonal.Caption                   = "Personal Ekle";
     this.barBtnPersonal.Id                        = 6;
     this.barBtnPersonal.ImageOptions.Image        = ((System.Drawing.Image)(resources.GetObject("barBtnPersonal.ImageOptions.Image")));
     this.barBtnPersonal.ImageOptions.LargeImage   = ((System.Drawing.Image)(resources.GetObject("barBtnPersonal.ImageOptions.LargeImage")));
     this.barBtnPersonal.ItemShortcut              = new DevExpress.XtraBars.BarShortcut(System.Windows.Forms.Keys.Insert);
     this.barBtnPersonal.Name                      = "barBtnPersonal";
     toolTipTitleItem3.Appearance.Image            = global::YazilimSinamaSonProje.Properties.Resources.comment_16x16;
     toolTipTitleItem3.Appearance.Options.UseImage = true;
     toolTipTitleItem3.Image                       = global::YazilimSinamaSonProje.Properties.Resources.comment_16x16;
     toolTipTitleItem3.Text                        = "(Insert)";
     toolTipItem3.LeftIndent                       = 6;
     toolTipItem3.Text = "Personal Ekle";
     superToolTip3.Items.Add(toolTipTitleItem3);
     superToolTip3.Items.Add(toolTipItem3);
     this.barBtnPersonal.SuperTip   = superToolTip3;
     this.barBtnPersonal.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem6_ItemClick);
     //
     // barbtnKisi
     //
     this.barbtnKisi.Caption                 = "Kişi Ekle";
     this.barbtnKisi.Id                      = 7;
     this.barbtnKisi.ImageOptions.Image      = ((System.Drawing.Image)(resources.GetObject("barbtnKisi.ImageOptions.Image")));
     this.barbtnKisi.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("barbtnKisi.ImageOptions.LargeImage")));
     this.barbtnKisi.Name                    = "barbtnKisi";
     this.barbtnKisi.ItemClick              += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem1_ItemClick);
     //
     // ribbonPage1
     //
     this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
         this.ribbonPageGroup1
     });
     this.ribbonPage1.Name = "ribbonPage1";
     this.ribbonPage1.Text = "ribbonPage1";
     //
     // ribbonPageGroup1
     //
     this.ribbonPageGroup1.ItemLinks.Add(this.barBtnPersonal);
     this.ribbonPageGroup1.ItemLinks.Add(this.barBtnCikis);
     this.ribbonPageGroup1.Name = "ribbonPageGroup1";
     this.ribbonPageGroup1.Text = "ribbonPageGroup1";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(45, 32);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(81, 17);
     this.label1.TabIndex = 3;
     this.label1.Text     = "Tc Kimlik No";
     //
     // pnlKisi
     //
     this.pnlKisi.BackColor = System.Drawing.Color.DarkRed;
     this.pnlKisi.Controls.Add(this.txtSifre);
     this.pnlKisi.Controls.Add(this.txtTcNo);
     this.pnlKisi.Controls.Add(this.label4);
     this.pnlKisi.Controls.Add(this.txtSoyIsim);
     this.pnlKisi.Controls.Add(this.txtBolumId);
     this.pnlKisi.Controls.Add(this.txtIsim);
     this.pnlKisi.Controls.Add(this.label5);
     this.pnlKisi.Controls.Add(this.label3);
     this.pnlKisi.Controls.Add(this.txtPersonalId);
     this.pnlKisi.Controls.Add(this.label2);
     this.pnlKisi.Controls.Add(this.label6);
     this.pnlKisi.Controls.Add(this.label1);
     this.pnlKisi.Controls.Add(this.label7);
     this.pnlKisi.Controls.Add(this.myEmailTextEdit1);
     this.pnlKisi.Location    = new System.Drawing.Point(1, 97);
     this.pnlKisi.MaximumSize = new System.Drawing.Size(432, 277);
     this.pnlKisi.Name        = "pnlKisi";
     this.pnlKisi.Size        = new System.Drawing.Size(432, 277);
     this.pnlKisi.TabIndex    = 4;
     //
     // txtSifre
     //
     this.txtSifre.Enabled = false;
     this.txtSifre.EnterMoveNextControl = true;
     this.txtSifre.Location             = new System.Drawing.Point(165, 198);
     this.txtSifre.MenuManager          = this.ribbonControl1;
     this.txtSifre.Name = "txtSifre";
     this.txtSifre.Properties.AppearanceFocused.BackColor            = System.Drawing.Color.Blue;
     this.txtSifre.Properties.AppearanceFocused.Options.UseBackColor = true;
     this.txtSifre.Properties.MaxLength = 50;
     this.txtSifre.Size     = new System.Drawing.Size(158, 22);
     this.txtSifre.TabIndex = 14;
     //
     // txtTcNo
     //
     this.txtTcNo.EnterMoveNextControl = true;
     this.txtTcNo.Location             = new System.Drawing.Point(165, 29);
     this.txtTcNo.MenuManager          = this.ribbonControl1;
     this.txtTcNo.Name = "txtTcNo";
     this.txtTcNo.Properties.AppearanceFocused.BackColor            = System.Drawing.Color.Blue;
     this.txtTcNo.Properties.AppearanceFocused.Options.UseBackColor = true;
     this.txtTcNo.Properties.MaxLength = 11;
     this.txtTcNo.Size     = new System.Drawing.Size(158, 22);
     this.txtTcNo.TabIndex = 13;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(45, 136);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(75, 17);
     this.label4.TabIndex = 6;
     this.label4.Text     = "Personal Id";
     //
     // txtSoyIsim
     //
     this.txtSoyIsim.EnterMoveNextControl = true;
     this.txtSoyIsim.Location             = new System.Drawing.Point(165, 97);
     this.txtSoyIsim.MenuManager          = this.ribbonControl1;
     this.txtSoyIsim.Name = "txtSoyIsim";
     this.txtSoyIsim.Properties.AppearanceFocused.BackColor            = System.Drawing.Color.Blue;
     this.txtSoyIsim.Properties.AppearanceFocused.Options.UseBackColor = true;
     this.txtSoyIsim.Properties.MaxLength = 50;
     this.txtSoyIsim.Size     = new System.Drawing.Size(158, 22);
     this.txtSoyIsim.TabIndex = 12;
     //
     // txtBolumId
     //
     this.txtBolumId.Enabled = false;
     this.txtBolumId.EnterMoveNextControl = true;
     this.txtBolumId.Location             = new System.Drawing.Point(165, 166);
     this.txtBolumId.MenuManager          = this.ribbonControl1;
     this.txtBolumId.Name = "txtBolumId";
     this.txtBolumId.Properties.AppearanceFocused.BackColor            = System.Drawing.Color.Blue;
     this.txtBolumId.Properties.AppearanceFocused.Options.UseBackColor = true;
     this.txtBolumId.Properties.MaxLength = 50;
     this.txtBolumId.Size     = new System.Drawing.Size(158, 22);
     this.txtBolumId.TabIndex = 14;
     //
     // txtIsim
     //
     this.txtIsim.EnterMoveNextControl = true;
     this.txtIsim.Location             = new System.Drawing.Point(165, 63);
     this.txtIsim.MenuManager          = this.ribbonControl1;
     this.txtIsim.Name = "txtIsim";
     this.txtIsim.Properties.AppearanceFocused.BackColor            = System.Drawing.Color.Blue;
     this.txtIsim.Properties.AppearanceFocused.Options.UseBackColor = true;
     this.txtIsim.Properties.MaxLength = 50;
     this.txtIsim.Size     = new System.Drawing.Size(158, 22);
     this.txtIsim.TabIndex = 11;
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(45, 171);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(62, 17);
     this.label5.TabIndex = 7;
     this.label5.Text     = "Bölüm Id";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(45, 100);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(60, 17);
     this.label3.TabIndex = 5;
     this.label3.Text     = "Soy İsim";
     //
     // txtPersonalId
     //
     this.txtPersonalId.Enabled = false;
     this.txtPersonalId.EnterMoveNextControl = true;
     this.txtPersonalId.Location             = new System.Drawing.Point(165, 133);
     this.txtPersonalId.MenuManager          = this.ribbonControl1;
     this.txtPersonalId.Name = "txtPersonalId";
     this.txtPersonalId.Properties.AppearanceFocused.BackColor            = System.Drawing.Color.Blue;
     this.txtPersonalId.Properties.AppearanceFocused.Options.UseBackColor = true;
     this.txtPersonalId.Properties.MaxLength = 50;
     this.txtPersonalId.Size     = new System.Drawing.Size(158, 22);
     this.txtPersonalId.TabIndex = 13;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(45, 66);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(32, 17);
     this.label2.TabIndex = 4;
     this.label2.Text     = "İsim";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(45, 203);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(34, 17);
     this.label6.TabIndex = 8;
     this.label6.Text     = "Şifre";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(45, 236);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(42, 17);
     this.label7.TabIndex = 9;
     this.label7.Text     = "E-Mail";
     //
     // myEmailTextEdit1
     //
     this.myEmailTextEdit1.Location    = new System.Drawing.Point(165, 231);
     this.myEmailTextEdit1.MenuManager = this.ribbonControl1;
     this.myEmailTextEdit1.Name        = "myEmailTextEdit1";
     this.myEmailTextEdit1.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Strong;
     this.myEmailTextEdit1.Properties.Mask.EditMask     = "((([0-9a-zA-Z_%-])+[.])+|([0-9a-zA-Z_%-])+)+@((([0-9a-zA-Z_-])+[.])+|([0-9a-zA-Z_" +
                                                          "-])+)+";
     this.myEmailTextEdit1.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.myEmailTextEdit1.Size     = new System.Drawing.Size(158, 22);
     this.myEmailTextEdit1.TabIndex = 10;
     //
     // PersonalEkleForm
     //
     this.Appearance.BackColor            = System.Drawing.Color.DarkRed;
     this.Appearance.Options.UseBackColor = true;
     this.AutoScaleDimensions             = new System.Drawing.SizeF(7F, 16F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize    = new System.Drawing.Size(401, 364);
     this.Controls.Add(this.pnlKisi);
     this.Controls.Add(this.ribbonControl1);
     this.MaximumSize   = new System.Drawing.Size(419, 411);
     this.MinimumSize   = new System.Drawing.Size(419, 411);
     this.Name          = "PersonalEkleForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "PersonalEkleForm";
     this.Load         += new System.EventHandler(this.PersonalEkleForm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).EndInit();
     this.pnlKisi.ResumeLayout(false);
     this.pnlKisi.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtSifre.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTcNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSoyIsim.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBolumId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtIsim.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPersonalId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.myEmailTextEdit1.Properties)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Пример #51
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.Utils.SuperToolTip     superToolTip1          = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1      = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem      toolTipItem1           = new DevExpress.Utils.ToolTipItem();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MapViewer));
     DevExpress.Utils.SuperToolTip     superToolTip2          = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2      = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem      toolTipItem2           = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip     superToolTip3          = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem3      = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem      toolTipItem3           = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip     superToolTip4          = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem4      = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem      toolTipItem4           = new DevExpress.Utils.ToolTipItem();
     this.TableListBox           = new WLib.WinCtrls.ArcGisCtrl.TableListBox();
     this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
     this.splitContainerControl2 = new DevExpress.XtraEditors.SplitContainerControl();
     this.tocGroupControl        = new DevExpress.XtraEditors.GroupControl();
     this.btnExpand            = new DevExpress.XtraEditors.SimpleButton();
     this.imageCollection1     = new DevExpress.Utils.ImageCollection(this.components);
     this.btnAddData           = new DevExpress.XtraEditors.SimpleButton();
     this.btnSwitchContent     = new DevExpress.XtraEditors.SimpleButton();
     this.btnCollapsed         = new DevExpress.XtraEditors.SimpleButton();
     this.TocControl           = new ESRI.ArcGIS.Controls.AxTOCControl();
     this.groupControlEagleMap = new DevExpress.XtraEditors.GroupControl();
     this.EagleMapControl      = new ESRI.ArcGIS.Controls.AxMapControl();
     this.ViewerTabControl     = new DevExpress.XtraTab.XtraTabControl();
     this.xtpMapView           = new DevExpress.XtraTab.XtraTabPage();
     this.MapNavigationTools   = new WLib.WinCtrls.Dev.ArcGisCtrl.MapNavigationTools();
     this.MainMapControl       = new ESRI.ArcGIS.Controls.AxMapControl();
     this.xtpPageLayout        = new DevExpress.XtraTab.XtraTabPage();
     this.PageNavigationTools  = new WLib.WinCtrls.Dev.ArcGisCtrl.PageNavigationTools();
     this.PageLayoutControl    = new ESRI.ArcGIS.Controls.AxPageLayoutControl();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
     this.splitContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).BeginInit();
     this.splitContainerControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tocGroupControl)).BeginInit();
     this.tocGroupControl.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TocControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlEagleMap)).BeginInit();
     this.groupControlEagleMap.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.EagleMapControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ViewerTabControl)).BeginInit();
     this.ViewerTabControl.SuspendLayout();
     this.xtpMapView.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.MainMapControl)).BeginInit();
     this.xtpPageLayout.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.PageLayoutControl)).BeginInit();
     this.SuspendLayout();
     //
     // TableListBox
     //
     this.TableListBox.AttributeForm = null;
     this.TableListBox.Location      = new System.Drawing.Point(80, 98);
     this.TableListBox.Name          = "TableListBox";
     this.TableListBox.Size          = new System.Drawing.Size(175, 187);
     this.TableListBox.TabIndex      = 0;
     //
     // splitContainerControl1
     //
     this.splitContainerControl1.CollapsePanel = DevExpress.XtraEditors.SplitCollapsePanel.Panel1;
     this.splitContainerControl1.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl1.Location      = new System.Drawing.Point(0, 0);
     this.splitContainerControl1.Name          = "splitContainerControl1";
     this.splitContainerControl1.Panel1.Controls.Add(this.splitContainerControl2);
     this.splitContainerControl1.Panel1.Text = "Panel1";
     this.splitContainerControl1.Panel2.Controls.Add(this.ViewerTabControl);
     this.splitContainerControl1.Panel2.Text      = "Panel2";
     this.splitContainerControl1.Size             = new System.Drawing.Size(935, 562);
     this.splitContainerControl1.SplitterPosition = 291;
     this.splitContainerControl1.TabIndex         = 0;
     //
     // splitContainerControl2
     //
     this.splitContainerControl2.CollapsePanel = DevExpress.XtraEditors.SplitCollapsePanel.Panel2;
     this.splitContainerControl2.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl2.FixedPanel    = DevExpress.XtraEditors.SplitFixedPanel.Panel2;
     this.splitContainerControl2.Horizontal    = false;
     this.splitContainerControl2.Location      = new System.Drawing.Point(0, 0);
     this.splitContainerControl2.Name          = "splitContainerControl2";
     this.splitContainerControl2.Panel1.Controls.Add(this.tocGroupControl);
     this.splitContainerControl2.Panel1.Text = "Panel1";
     this.splitContainerControl2.Panel2.Controls.Add(this.groupControlEagleMap);
     this.splitContainerControl2.Panel2.Text      = "Panel2";
     this.splitContainerControl2.Size             = new System.Drawing.Size(291, 562);
     this.splitContainerControl2.SplitterPosition = 212;
     this.splitContainerControl2.TabIndex         = 2;
     this.splitContainerControl2.Text             = "splitContainerControl2";
     //
     // tocGroupControl
     //
     this.tocGroupControl.Controls.Add(this.btnExpand);
     this.tocGroupControl.Controls.Add(this.btnAddData);
     this.tocGroupControl.Controls.Add(this.btnSwitchContent);
     this.tocGroupControl.Controls.Add(this.btnCollapsed);
     this.tocGroupControl.Controls.Add(this.TocControl);
     this.tocGroupControl.Controls.Add(this.TableListBox);
     this.tocGroupControl.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.tocGroupControl.Location = new System.Drawing.Point(0, 0);
     this.tocGroupControl.Name     = "tocGroupControl";
     this.tocGroupControl.Size     = new System.Drawing.Size(291, 345);
     this.tocGroupControl.TabIndex = 1;
     this.tocGroupControl.Text     = "图层控制";
     //
     // btnExpand
     //
     this.btnExpand.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnExpand.ImageOptions.ImageIndex = 3;
     this.btnExpand.ImageOptions.ImageList  = this.imageCollection1;
     this.btnExpand.ImageOptions.Location   = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.btnExpand.Location = new System.Drawing.Point(265, 1);
     this.btnExpand.Name     = "btnExpand";
     this.btnExpand.Size     = new System.Drawing.Size(20, 17);
     toolTipTitleItem1.Text  = "展开所有图层";
     toolTipItem1.LeftIndent = 6;
     toolTipItem1.Text       = "展开所有图层,显示图层项的具体内容。";
     superToolTip1.Items.Add(toolTipTitleItem1);
     superToolTip1.Items.Add(toolTipItem1);
     this.btnExpand.SuperTip = superToolTip1;
     this.btnExpand.TabIndex = 2;
     this.btnExpand.ToolTip  = "展开所有图层";
     this.btnExpand.Click   += new System.EventHandler(this.layerControlButtons_Click);
     //
     // imageCollection1
     //
     this.imageCollection1.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imageCollection1.ImageStream")));
     this.imageCollection1.Images.SetKeyName(0, "addData.png");
     this.imageCollection1.Images.SetKeyName(1, "list.png");
     this.imageCollection1.Images.SetKeyName(2, "up.png");
     this.imageCollection1.Images.SetKeyName(3, "down.png");
     //
     // btnAddData
     //
     this.btnAddData.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnAddData.ImageOptions.ImageIndex = 0;
     this.btnAddData.ImageOptions.ImageList  = this.imageCollection1;
     this.btnAddData.ImageOptions.Location   = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.btnAddData.Location = new System.Drawing.Point(190, 1);
     this.btnAddData.Name     = "btnAddData";
     this.btnAddData.Size     = new System.Drawing.Size(20, 17);
     toolTipTitleItem2.Text   = "添加数据";
     toolTipItem2.LeftIndent  = 6;
     toolTipItem2.Text        = "添加图层数据";
     superToolTip2.Items.Add(toolTipTitleItem2);
     superToolTip2.Items.Add(toolTipItem2);
     this.btnAddData.SuperTip = superToolTip2;
     this.btnAddData.TabIndex = 1;
     this.btnAddData.ToolTip  = "添加数据";
     this.btnAddData.Click   += new System.EventHandler(this.layerControlButtons_Click);
     //
     // btnSwitchContent
     //
     this.btnSwitchContent.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnSwitchContent.ImageOptions.ImageIndex = 1;
     this.btnSwitchContent.ImageOptions.ImageList  = this.imageCollection1;
     this.btnSwitchContent.ImageOptions.Location   = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.btnSwitchContent.Location = new System.Drawing.Point(215, 1);
     this.btnSwitchContent.Name     = "btnSwitchContent";
     this.btnSwitchContent.Size     = new System.Drawing.Size(20, 17);
     toolTipTitleItem3.Text         = "切换图层/表格";
     toolTipItem3.LeftIndent        = 6;
     toolTipItem3.Text = "切换显示图层列表和表格列表。";
     superToolTip3.Items.Add(toolTipTitleItem3);
     superToolTip3.Items.Add(toolTipItem3);
     this.btnSwitchContent.SuperTip = superToolTip3;
     this.btnSwitchContent.TabIndex = 1;
     this.btnSwitchContent.ToolTip  = "切换图层/表格";
     this.btnSwitchContent.Click   += new System.EventHandler(this.layerControlButtons_Click);
     //
     // btnCollapsed
     //
     this.btnCollapsed.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnCollapsed.ImageOptions.ImageIndex = 2;
     this.btnCollapsed.ImageOptions.ImageList  = this.imageCollection1;
     this.btnCollapsed.ImageOptions.Location   = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.btnCollapsed.Location = new System.Drawing.Point(240, 1);
     this.btnCollapsed.Name     = "btnCollapsed";
     this.btnCollapsed.Size     = new System.Drawing.Size(20, 17);
     toolTipTitleItem4.Text     = "折叠所有图层";
     toolTipItem4.LeftIndent    = 6;
     toolTipItem4.Text          = "折叠所有图层,收起图层列表。";
     superToolTip4.Items.Add(toolTipTitleItem4);
     superToolTip4.Items.Add(toolTipItem4);
     this.btnCollapsed.SuperTip = superToolTip4;
     this.btnCollapsed.TabIndex = 1;
     this.btnCollapsed.ToolTip  = "折叠所有图层";
     this.btnCollapsed.Click   += new System.EventHandler(this.layerControlButtons_Click);
     //
     // TocControl
     //
     this.TocControl.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.TocControl.Location = new System.Drawing.Point(2, 21);
     this.TocControl.Name     = "TocControl";
     this.TocControl.OcxState = ((System.Windows.Forms.AxHost.State)(resources.GetObject("TocControl.OcxState")));
     this.TocControl.Size     = new System.Drawing.Size(287, 322);
     this.TocControl.TabIndex = 0;
     //
     // groupControlEagleMap
     //
     this.groupControlEagleMap.Controls.Add(this.EagleMapControl);
     this.groupControlEagleMap.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.groupControlEagleMap.Location = new System.Drawing.Point(0, 0);
     this.groupControlEagleMap.Name     = "groupControlEagleMap";
     this.groupControlEagleMap.Size     = new System.Drawing.Size(291, 212);
     this.groupControlEagleMap.TabIndex = 1;
     this.groupControlEagleMap.Text     = "鹰眼";
     //
     // EagleMapControl
     //
     this.EagleMapControl.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.EagleMapControl.Location = new System.Drawing.Point(2, 21);
     this.EagleMapControl.Name     = "EagleMapControl";
     this.EagleMapControl.OcxState = ((System.Windows.Forms.AxHost.State)(resources.GetObject("EagleMapControl.OcxState")));
     this.EagleMapControl.Size     = new System.Drawing.Size(287, 189);
     this.EagleMapControl.TabIndex = 0;
     //
     // ViewerTabControl
     //
     this.ViewerTabControl.Dock            = System.Windows.Forms.DockStyle.Fill;
     this.ViewerTabControl.HeaderLocation  = DevExpress.XtraTab.TabHeaderLocation.Bottom;
     this.ViewerTabControl.Location        = new System.Drawing.Point(0, 0);
     this.ViewerTabControl.Name            = "ViewerTabControl";
     this.ViewerTabControl.SelectedTabPage = this.xtpMapView;
     this.ViewerTabControl.Size            = new System.Drawing.Size(639, 562);
     this.ViewerTabControl.TabIndex        = 1;
     this.ViewerTabControl.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
         this.xtpMapView,
         this.xtpPageLayout
     });
     //
     // xtpMapView
     //
     this.xtpMapView.Controls.Add(this.MapNavigationTools);
     this.xtpMapView.Controls.Add(this.MainMapControl);
     this.xtpMapView.Name = "xtpMapView";
     this.xtpMapView.Size = new System.Drawing.Size(633, 533);
     this.xtpMapView.Text = "地图";
     //
     // MapNavigationTools
     //
     this.MapNavigationTools.BackColor  = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(245)))), ((int)(((byte)(241)))));
     this.MapNavigationTools.Location   = new System.Drawing.Point(2, 2);
     this.MapNavigationTools.MapControl = this.MainMapControl;
     this.MapNavigationTools.Name       = "MapNavigationTools";
     this.MapNavigationTools.Size       = new System.Drawing.Size(270, 49);
     this.MapNavigationTools.TabIndex   = 1;
     //
     // MainMapControl
     //
     this.MainMapControl.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.MainMapControl.Location = new System.Drawing.Point(0, 0);
     this.MainMapControl.Name     = "MainMapControl";
     this.MainMapControl.OcxState = ((System.Windows.Forms.AxHost.State)(resources.GetObject("MainMapControl.OcxState")));
     this.MainMapControl.Size     = new System.Drawing.Size(633, 533);
     this.MainMapControl.TabIndex = 0;
     //
     // xtpPageLayout
     //
     this.xtpPageLayout.Controls.Add(this.PageNavigationTools);
     this.xtpPageLayout.Controls.Add(this.PageLayoutControl);
     this.xtpPageLayout.Name = "xtpPageLayout";
     this.xtpPageLayout.Size = new System.Drawing.Size(633, 533);
     this.xtpPageLayout.Text = "页面";
     //
     // PageNavigationTools
     //
     this.PageNavigationTools.Location          = new System.Drawing.Point(2, 3);
     this.PageNavigationTools.Name              = "PageNavigationTools";
     this.PageNavigationTools.PageLayoutControl = null;
     this.PageNavigationTools.Size              = new System.Drawing.Size(147, 49);
     this.PageNavigationTools.TabIndex          = 10;
     //
     // PageLayoutControl
     //
     this.PageLayoutControl.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.PageLayoutControl.Location = new System.Drawing.Point(0, 0);
     this.PageLayoutControl.Name     = "PageLayoutControl";
     this.PageLayoutControl.OcxState = ((System.Windows.Forms.AxHost.State)(resources.GetObject("PageLayoutControl.OcxState")));
     this.PageLayoutControl.Size     = new System.Drawing.Size(633, 533);
     this.PageLayoutControl.TabIndex = 9;
     //
     // MapViewer
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.splitContainerControl1);
     this.Name = "MapViewer";
     this.Size = new System.Drawing.Size(935, 562);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
     this.splitContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).EndInit();
     this.splitContainerControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tocGroupControl)).EndInit();
     this.tocGroupControl.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TocControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlEagleMap)).EndInit();
     this.groupControlEagleMap.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.EagleMapControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ViewerTabControl)).EndInit();
     this.ViewerTabControl.ResumeLayout(false);
     this.xtpMapView.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.MainMapControl)).EndInit();
     this.xtpPageLayout.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.PageLayoutControl)).EndInit();
     this.ResumeLayout(false);
 }
Пример #52
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.Utils.SuperToolTip     superToolTip1          = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1      = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem      toolTipItem1           = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip     superToolTip2          = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2      = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem      toolTipItem2           = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip     superToolTip3          = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem3      = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem      toolTipItem3           = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip     superToolTip4          = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem4      = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem      toolTipItem4           = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip     superToolTip5          = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem5      = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem      toolTipItem5           = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip     superToolTip6          = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem6      = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem      toolTipItem6           = new DevExpress.Utils.ToolTipItem();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmManageUser));
     this.panelContainer         = new DevExpress.XtraEditors.PanelControl();
     this.groupControl1          = new DevExpress.XtraEditors.GroupControl();
     this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
     this.groupBox1              = new System.Windows.Forms.GroupBox();
     this.groupBox2              = new System.Windows.Forms.GroupBox();
     this.groupBox3              = new System.Windows.Forms.GroupBox();
     this.label17                = new System.Windows.Forms.Label();
     this.label18                = new System.Windows.Forms.Label();
     this.label19                = new System.Windows.Forms.Label();
     this.bttnReset              = new System.Windows.Forms.Button();
     this.bttnUpdate             = new System.Windows.Forms.Button();
     this.bttnCancel             = new System.Windows.Forms.Button();
     this.label8                 = new System.Windows.Forms.Label();
     this.checkedListBoxControl1 = new DevExpress.XtraEditors.CheckedListBoxControl();
     this.cbApplication          = new System.Windows.Forms.ComboBox();
     this.label7                 = new System.Windows.Forms.Label();
     this.label5                 = new System.Windows.Forms.Label();
     this.txtOthernames          = new DevExpress.XtraEditors.TextEdit();
     this.txtSurname             = new DevExpress.XtraEditors.TextEdit();
     this.label6                 = new System.Windows.Forms.Label();
     this.cbUserType             = new System.Windows.Forms.ComboBox();
     this.label4                 = new System.Windows.Forms.Label();
     this.txtPassword2           = new DevExpress.XtraEditors.TextEdit();
     this.label2                 = new System.Windows.Forms.Label();
     this.txtPassword            = new DevExpress.XtraEditors.TextEdit();
     this.label1                 = new System.Windows.Forms.Label();
     this.txtUsername            = new DevExpress.XtraEditors.TextEdit();
     this.label3                 = new System.Windows.Forms.Label();
     this.groupControl2          = new DevExpress.XtraEditors.GroupControl();
     this.gridControl1           = new DevExpress.XtraGrid.GridControl();
     this.gridView1              = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.toolStrip              = new System.Windows.Forms.ToolStrip();
     this.tsbNew                 = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1    = new System.Windows.Forms.ToolStripSeparator();
     this.tsbEdit                = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator2    = new System.Windows.Forms.ToolStripSeparator();
     this.tsbDelete              = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator3    = new System.Windows.Forms.ToolStripSeparator();
     this.tsbReload              = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator4    = new System.Windows.Forms.ToolStripSeparator();
     this.tsbClose               = new System.Windows.Forms.ToolStripButton();
     this.HelpProviderHG         = new System.Windows.Forms.HelpProvider();
     ((System.ComponentModel.ISupportInitialize)(this.panelContainer)).BeginInit();
     this.panelContainer.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
     this.splitContainerControl1.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.groupBox3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtOthernames.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSurname.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPassword2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPassword.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtUsername.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     this.toolStrip.SuspendLayout();
     this.SuspendLayout();
     //
     // panelContainer
     //
     this.panelContainer.Appearance.BackColor            = System.Drawing.Color.FromArgb(((int)(((byte)(120)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(100)))));
     this.panelContainer.Appearance.BackColor2           = System.Drawing.Color.Silver;
     this.panelContainer.Appearance.Options.UseBackColor = true;
     this.panelContainer.Controls.Add(this.groupControl1);
     this.panelContainer.Controls.Add(this.toolStrip);
     this.panelContainer.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panelContainer.Location = new System.Drawing.Point(0, 0);
     this.panelContainer.LookAndFeel.UseDefaultLookAndFeel = false;
     this.panelContainer.LookAndFeel.UseWindowsXPTheme     = true;
     this.panelContainer.Name     = "panelContainer";
     this.panelContainer.Size     = new System.Drawing.Size(838, 477);
     this.panelContainer.TabIndex = 0;
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.splitContainerControl1);
     this.groupControl1.Dock                 = System.Windows.Forms.DockStyle.Left;
     this.groupControl1.Location             = new System.Drawing.Point(4, 41);
     this.groupControl1.LookAndFeel.SkinName = "iMaginary";
     this.groupControl1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl1.Name     = "groupControl1";
     this.groupControl1.Size     = new System.Drawing.Size(761, 431);
     this.groupControl1.TabIndex = 2;
     this.groupControl1.Text     = "Tax Smart User Manager";
     //
     // splitContainerControl1
     //
     this.splitContainerControl1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl1.Location = new System.Drawing.Point(2, 21);
     this.splitContainerControl1.Name     = "splitContainerControl1";
     this.splitContainerControl1.Panel1.Controls.Add(this.groupBox1);
     this.splitContainerControl1.Panel1.Text = "Panel1";
     this.splitContainerControl1.Panel2.Controls.Add(this.groupControl2);
     this.splitContainerControl1.Panel2.Text      = "Panel2";
     this.splitContainerControl1.Size             = new System.Drawing.Size(757, 408);
     this.splitContainerControl1.SplitterPosition = 343;
     this.splitContainerControl1.TabIndex         = 0;
     this.splitContainerControl1.Text             = "splitContainerControl1";
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.groupBox2);
     this.groupBox1.Controls.Add(this.label5);
     this.groupBox1.Controls.Add(this.txtOthernames);
     this.groupBox1.Controls.Add(this.txtSurname);
     this.groupBox1.Controls.Add(this.label6);
     this.groupBox1.Controls.Add(this.cbUserType);
     this.groupBox1.Controls.Add(this.label4);
     this.groupBox1.Controls.Add(this.txtPassword2);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.txtPassword);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.txtUsername);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.groupBox1.Location = new System.Drawing.Point(0, 0);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(343, 408);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop  = false;
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.groupBox3);
     this.groupBox2.Controls.Add(this.label8);
     this.groupBox2.Controls.Add(this.checkedListBoxControl1);
     this.groupBox2.Controls.Add(this.cbApplication);
     this.groupBox2.Controls.Add(this.label7);
     this.groupBox2.Location = new System.Drawing.Point(6, 146);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(326, 212);
     this.groupBox2.TabIndex = 433;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Text     = "Application Security Settings";
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.label17);
     this.groupBox3.Controls.Add(this.label18);
     this.groupBox3.Controls.Add(this.label19);
     this.groupBox3.Controls.Add(this.bttnReset);
     this.groupBox3.Controls.Add(this.bttnUpdate);
     this.groupBox3.Controls.Add(this.bttnCancel);
     this.groupBox3.Location = new System.Drawing.Point(196, 145);
     this.groupBox3.Name     = "groupBox3";
     this.groupBox3.Size     = new System.Drawing.Size(121, 62);
     this.groupBox3.TabIndex = 433;
     this.groupBox3.TabStop  = false;
     //
     // label17
     //
     this.label17.Font      = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label17.Location  = new System.Drawing.Point(1, 48);
     this.label17.Name      = "label17";
     this.label17.Size      = new System.Drawing.Size(41, 14);
     this.label17.TabIndex  = 443;
     this.label17.Text      = "&Update";
     this.label17.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label18
     //
     this.label18.Font      = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label18.Location  = new System.Drawing.Point(43, 48);
     this.label18.Name      = "label18";
     this.label18.Size      = new System.Drawing.Size(36, 14);
     this.label18.TabIndex  = 442;
     this.label18.Text      = "&Reset";
     this.label18.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label19
     //
     this.label19.Font      = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label19.Location  = new System.Drawing.Point(80, 48);
     this.label19.Name      = "label19";
     this.label19.Size      = new System.Drawing.Size(40, 14);
     this.label19.TabIndex  = 441;
     this.label19.Text      = "&Cancel";
     this.label19.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // bttnReset
     //
     this.bttnReset.Cursor = System.Windows.Forms.Cursors.Hand;
     this.HelpProviderHG.SetHelpKeyword(this.bttnReset, "FrmManageUser.htm#bttnReset");
     this.HelpProviderHG.SetHelpNavigator(this.bttnReset, System.Windows.Forms.HelpNavigator.Topic);
     this.bttnReset.Location = new System.Drawing.Point(45, 8);
     this.bttnReset.Name     = "bttnReset";
     this.HelpProviderHG.SetShowHelp(this.bttnReset, true);
     this.bttnReset.Size     = new System.Drawing.Size(34, 37);
     this.bttnReset.TabIndex = 439;
     this.bttnReset.UseVisualStyleBackColor = true;
     //
     // bttnUpdate
     //
     this.bttnUpdate.Cursor = System.Windows.Forms.Cursors.Hand;
     this.HelpProviderHG.SetHelpKeyword(this.bttnUpdate, "FrmManageUser.htm#bttnUpdate");
     this.HelpProviderHG.SetHelpNavigator(this.bttnUpdate, System.Windows.Forms.HelpNavigator.Topic);
     this.bttnUpdate.Location = new System.Drawing.Point(5, 8);
     this.bttnUpdate.Name     = "bttnUpdate";
     this.HelpProviderHG.SetShowHelp(this.bttnUpdate, true);
     this.bttnUpdate.Size     = new System.Drawing.Size(34, 37);
     this.bttnUpdate.TabIndex = 438;
     this.bttnUpdate.UseVisualStyleBackColor = true;
     //
     // bttnCancel
     //
     this.bttnCancel.Cursor       = System.Windows.Forms.Cursors.Hand;
     this.bttnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.HelpProviderHG.SetHelpKeyword(this.bttnCancel, "FrmManageUser.htm#bttnCancel");
     this.HelpProviderHG.SetHelpNavigator(this.bttnCancel, System.Windows.Forms.HelpNavigator.Topic);
     this.bttnCancel.Location = new System.Drawing.Point(84, 8);
     this.bttnCancel.Name     = "bttnCancel";
     this.HelpProviderHG.SetShowHelp(this.bttnCancel, true);
     this.bttnCancel.Size     = new System.Drawing.Size(34, 37);
     this.bttnCancel.TabIndex = 440;
     this.bttnCancel.UseVisualStyleBackColor = true;
     //
     // label8
     //
     this.label8.AutoSize  = true;
     this.label8.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label8.ForeColor = System.Drawing.Color.Maroon;
     this.label8.Location  = new System.Drawing.Point(3, 43);
     this.label8.Name      = "label8";
     this.label8.Size      = new System.Drawing.Size(101, 13);
     this.label8.TabIndex  = 424;
     this.label8.Text      = "Application Modules";
     //
     // checkedListBoxControl1
     //
     this.HelpProviderHG.SetHelpKeyword(this.checkedListBoxControl1, "FrmManageUser.htm#checkedListBoxControl1");
     this.HelpProviderHG.SetHelpNavigator(this.checkedListBoxControl1, System.Windows.Forms.HelpNavigator.Topic);
     this.checkedListBoxControl1.HorizontalScrollbar = true;
     this.checkedListBoxControl1.HotTrackSelectMode  = DevExpress.XtraEditors.HotTrackSelectMode.SelectItemOnClick;
     this.checkedListBoxControl1.Location            = new System.Drawing.Point(3, 57);
     this.checkedListBoxControl1.Name = "checkedListBoxControl1";
     this.HelpProviderHG.SetShowHelp(this.checkedListBoxControl1, true);
     this.checkedListBoxControl1.Size = new System.Drawing.Size(283, 89);
     superToolTip1.AllowHtmlText      = DevExpress.Utils.DefaultBoolean.True;
     toolTipTitleItem1.Text           = "Application Modues";
     toolTipItem1.LeftIndent          = 6;
     toolTipItem1.Text = "Select (Check the boxes) from the List below the <B>Application Modules</B> that " +
                         "the user is entitled to access.";
     superToolTip1.Items.Add(toolTipTitleItem1);
     superToolTip1.Items.Add(toolTipItem1);
     this.checkedListBoxControl1.SuperTip = superToolTip1;
     this.checkedListBoxControl1.TabIndex = 423;
     //
     // cbApplication
     //
     this.cbApplication.Cursor            = System.Windows.Forms.Cursors.Hand;
     this.cbApplication.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbApplication.FormattingEnabled = true;
     this.HelpProviderHG.SetHelpKeyword(this.cbApplication, "FrmManageUser.htm#cbApplication");
     this.HelpProviderHG.SetHelpNavigator(this.cbApplication, System.Windows.Forms.HelpNavigator.Topic);
     this.cbApplication.Location = new System.Drawing.Point(94, 19);
     this.cbApplication.Name     = "cbApplication";
     this.HelpProviderHG.SetShowHelp(this.cbApplication, true);
     this.cbApplication.Size     = new System.Drawing.Size(219, 21);
     this.cbApplication.TabIndex = 422;
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(6, 23);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(86, 13);
     this.label7.TabIndex = 421;
     this.label7.Text     = "Application Type";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(29, 125);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(66, 13);
     this.label5.TabIndex = 432;
     this.label5.Text     = "Othernames";
     //
     // txtOthernames
     //
     this.HelpProviderHG.SetHelpKeyword(this.txtOthernames, "FrmManageUser.htm#txtOthernames");
     this.HelpProviderHG.SetHelpNavigator(this.txtOthernames, System.Windows.Forms.HelpNavigator.Topic);
     this.txtOthernames.Location = new System.Drawing.Point(99, 122);
     this.txtOthernames.Name     = "txtOthernames";
     this.HelpProviderHG.SetShowHelp(this.txtOthernames, true);
     this.txtOthernames.Size     = new System.Drawing.Size(219, 20);
     superToolTip2.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipTitleItem2.Text      = "Othernames";
     toolTipItem2.LeftIndent     = 6;
     toolTipItem2.Text           = "Enter <B>Othernames</B>";
     superToolTip2.Items.Add(toolTipTitleItem2);
     superToolTip2.Items.Add(toolTipItem2);
     this.txtOthernames.SuperTip = superToolTip2;
     this.txtOthernames.TabIndex = 431;
     //
     // txtSurname
     //
     this.HelpProviderHG.SetHelpKeyword(this.txtSurname, "FrmManageUser.htm#txtSurname");
     this.HelpProviderHG.SetHelpNavigator(this.txtSurname, System.Windows.Forms.HelpNavigator.Topic);
     this.txtSurname.Location = new System.Drawing.Point(99, 101);
     this.txtSurname.Name     = "txtSurname";
     this.HelpProviderHG.SetShowHelp(this.txtSurname, true);
     this.txtSurname.Size        = new System.Drawing.Size(219, 20);
     superToolTip3.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipTitleItem3.Text      = "Surname";
     toolTipItem3.LeftIndent     = 6;
     toolTipItem3.Text           = "Enter the <B>Surname</B> in full, not abbreviation";
     superToolTip3.Items.Add(toolTipTitleItem3);
     superToolTip3.Items.Add(toolTipItem3);
     this.txtSurname.SuperTip = superToolTip3;
     this.txtSurname.TabIndex = 430;
     //
     // label6
     //
     this.label6.AutoSize  = true;
     this.label6.ForeColor = System.Drawing.Color.Maroon;
     this.label6.Location  = new System.Drawing.Point(44, 105);
     this.label6.Name      = "label6";
     this.label6.Size      = new System.Drawing.Size(49, 13);
     this.label6.TabIndex  = 429;
     this.label6.Text      = "Surname";
     //
     // cbUserType
     //
     this.cbUserType.Cursor            = System.Windows.Forms.Cursors.Hand;
     this.cbUserType.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbUserType.FormattingEnabled = true;
     this.HelpProviderHG.SetHelpKeyword(this.cbUserType, "FrmManageUser.htm#cbUserType");
     this.HelpProviderHG.SetHelpNavigator(this.cbUserType, System.Windows.Forms.HelpNavigator.Topic);
     this.cbUserType.Location = new System.Drawing.Point(99, 78);
     this.cbUserType.Name     = "cbUserType";
     this.HelpProviderHG.SetShowHelp(this.cbUserType, true);
     this.cbUserType.Size     = new System.Drawing.Size(219, 21);
     this.cbUserType.TabIndex = 420;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(24, 82);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(70, 13);
     this.label4.TabIndex = 419;
     this.label4.Text     = "Class of User";
     //
     // txtPassword2
     //
     this.HelpProviderHG.SetHelpKeyword(this.txtPassword2, "FrmManageUser.htm#txtPassword2");
     this.HelpProviderHG.SetHelpNavigator(this.txtPassword2, System.Windows.Forms.HelpNavigator.Topic);
     this.txtPassword2.Location = new System.Drawing.Point(99, 55);
     this.txtPassword2.Name     = "txtPassword2";
     this.txtPassword2.Properties.PasswordChar = '*';
     this.HelpProviderHG.SetShowHelp(this.txtPassword2, true);
     this.txtPassword2.Size      = new System.Drawing.Size(219, 20);
     superToolTip4.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipTitleItem4.Text      = "Confirm Password";
     toolTipItem4.LeftIndent     = 6;
     toolTipItem4.Text           = "Enter the <B>Password</B> again for confirmation";
     superToolTip4.Items.Add(toolTipTitleItem4);
     superToolTip4.Items.Add(toolTipItem4);
     this.txtPassword2.SuperTip = superToolTip4;
     this.txtPassword2.TabIndex = 411;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(2, 59);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(93, 13);
     this.label2.TabIndex = 410;
     this.label2.Text     = "Confirm Password";
     //
     // txtPassword
     //
     this.HelpProviderHG.SetHelpKeyword(this.txtPassword, "FrmManageUser.htm#txtPassword");
     this.HelpProviderHG.SetHelpNavigator(this.txtPassword, System.Windows.Forms.HelpNavigator.Topic);
     this.txtPassword.Location = new System.Drawing.Point(99, 34);
     this.txtPassword.Name     = "txtPassword";
     this.txtPassword.Properties.PasswordChar = '*';
     this.HelpProviderHG.SetShowHelp(this.txtPassword, true);
     this.txtPassword.Size       = new System.Drawing.Size(219, 20);
     superToolTip5.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipTitleItem5.Text      = "Password";
     toolTipItem5.LeftIndent     = 6;
     toolTipItem5.Text           = "Enter the <B>Password</B>";
     superToolTip5.Items.Add(toolTipTitleItem5);
     superToolTip5.Items.Add(toolTipItem5);
     this.txtPassword.SuperTip = superToolTip5;
     this.txtPassword.TabIndex = 409;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(40, 38);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(53, 13);
     this.label1.TabIndex = 408;
     this.label1.Text     = "Password";
     //
     // txtUsername
     //
     this.HelpProviderHG.SetHelpKeyword(this.txtUsername, "FrmManageUser.htm#txtUsername");
     this.HelpProviderHG.SetHelpNavigator(this.txtUsername, System.Windows.Forms.HelpNavigator.Topic);
     this.txtUsername.Location = new System.Drawing.Point(99, 13);
     this.txtUsername.Name     = "txtUsername";
     this.HelpProviderHG.SetShowHelp(this.txtUsername, true);
     this.txtUsername.Size       = new System.Drawing.Size(219, 20);
     superToolTip6.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipTitleItem6.Text      = "Username";
     toolTipItem6.LeftIndent     = 6;
     toolTipItem6.Text           = "Enter the <B>Userrname</B>";
     superToolTip6.Items.Add(toolTipTitleItem6);
     superToolTip6.Items.Add(toolTipItem6);
     this.txtUsername.SuperTip = superToolTip6;
     this.txtUsername.TabIndex = 407;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(38, 17);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(55, 13);
     this.label3.TabIndex = 406;
     this.label3.Text     = "Username";
     //
     // groupControl2
     //
     this.groupControl2.Controls.Add(this.gridControl1);
     this.groupControl2.Dock                 = System.Windows.Forms.DockStyle.Fill;
     this.groupControl2.Location             = new System.Drawing.Point(0, 0);
     this.groupControl2.LookAndFeel.SkinName = "iMaginary";
     this.groupControl2.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl2.Name     = "groupControl2";
     this.groupControl2.Size     = new System.Drawing.Size(409, 408);
     this.groupControl2.TabIndex = 1;
     this.groupControl2.Text     = "List of Registered Users";
     //
     // gridControl1
     //
     this.gridControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.HelpProviderHG.SetHelpKeyword(this.gridControl1, "FrmManageUser.htm#gridControl1");
     this.HelpProviderHG.SetHelpNavigator(this.gridControl1, System.Windows.Forms.HelpNavigator.Topic);
     this.gridControl1.Location             = new System.Drawing.Point(2, 21);
     this.gridControl1.LookAndFeel.SkinName = "Blue";
     this.gridControl1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name     = "gridControl1";
     this.HelpProviderHG.SetShowHelp(this.gridControl1, true);
     this.gridControl1.Size     = new System.Drawing.Size(405, 385);
     this.gridControl1.TabIndex = 0;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridView1
     });
     //
     // gridView1
     //
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name        = "gridView1";
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // toolStrip
     //
     this.toolStrip.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.toolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.tsbNew,
         this.toolStripSeparator1,
         this.tsbEdit,
         this.toolStripSeparator2,
         this.tsbDelete,
         this.toolStripSeparator3,
         this.tsbReload,
         this.toolStripSeparator4,
         this.tsbClose
     });
     this.toolStrip.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow;
     this.toolStrip.Location    = new System.Drawing.Point(4, 4);
     this.toolStrip.Name        = "toolStrip";
     this.toolStrip.RenderMode  = System.Windows.Forms.ToolStripRenderMode.System;
     this.toolStrip.Size        = new System.Drawing.Size(830, 37);
     this.toolStrip.TabIndex    = 1;
     this.toolStrip.Text        = "toolStrip1";
     //
     // tsbNew
     //
     this.tsbNew.Image = ((System.Drawing.Image)(resources.GetObject("tsbNew.Image")));
     this.tsbNew.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsbNew.Name = "tsbNew";
     this.tsbNew.Size = new System.Drawing.Size(37, 34);
     this.tsbNew.Text = "New";
     this.tsbNew.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.tsbNew.ToolTipText       = "Add New Record";
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 37);
     //
     // tsbEdit
     //
     this.tsbEdit.Image = ((System.Drawing.Image)(resources.GetObject("tsbEdit.Image")));
     this.tsbEdit.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsbEdit.Name = "tsbEdit";
     this.tsbEdit.Size = new System.Drawing.Size(35, 34);
     this.tsbEdit.Text = "Edit";
     this.tsbEdit.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.tsbEdit.ToolTipText       = "Modify Selected Record";
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 37);
     //
     // tsbDelete
     //
     this.tsbDelete.Image = ((System.Drawing.Image)(resources.GetObject("tsbDelete.Image")));
     this.tsbDelete.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsbDelete.Name = "tsbDelete";
     this.tsbDelete.Size = new System.Drawing.Size(50, 34);
     this.tsbDelete.Text = "Delete";
     this.tsbDelete.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.tsbDelete.ToolTipText       = "Delete Selected Record";
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(6, 37);
     //
     // tsbReload
     //
     this.tsbReload.Image = ((System.Drawing.Image)(resources.GetObject("tsbReload.Image")));
     this.tsbReload.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsbReload.Name = "tsbReload";
     this.tsbReload.Size = new System.Drawing.Size(53, 34);
     this.tsbReload.Text = "Reload";
     this.tsbReload.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.tsbReload.ToolTipText       = "Reload / Refresh Data Grid View";
     //
     // toolStripSeparator4
     //
     this.toolStripSeparator4.Name = "toolStripSeparator4";
     this.toolStripSeparator4.Size = new System.Drawing.Size(6, 37);
     //
     // tsbClose
     //
     this.tsbClose.Image = ((System.Drawing.Image)(resources.GetObject("tsbClose.Image")));
     this.tsbClose.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsbClose.Name = "tsbClose";
     this.tsbClose.Size = new System.Drawing.Size(43, 34);
     this.tsbClose.Text = "Close";
     this.tsbClose.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.tsbClose.ToolTipText       = "Close Form";
     //
     // HelpProviderHG
     //
     this.HelpProviderHG.HelpNamespace = "Bank_Reconciliation.chm";
     //
     // FrmManageUser
     //
     this.AcceptButton        = this.bttnUpdate;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton        = this.bttnCancel;
     this.ClientSize          = new System.Drawing.Size(838, 477);
     this.Controls.Add(this.panelContainer);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.HelpProviderHG.SetHelpKeyword(this, "FrmManageUser.htm");
     this.HelpProviderHG.SetHelpNavigator(this, System.Windows.Forms.HelpNavigator.Topic);
     this.Name = "FrmManageUser";
     this.HelpProviderHG.SetShowHelp(this, true);
     this.Text = "FrmManageUser";
     ((System.ComponentModel.ISupportInitialize)(this.panelContainer)).EndInit();
     this.panelContainer.ResumeLayout(false);
     this.panelContainer.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
     this.splitContainerControl1.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.groupBox3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtOthernames.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSurname.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPassword2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPassword.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtUsername.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     this.toolStrip.ResumeLayout(false);
     this.toolStrip.PerformLayout();
     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()
 {
     DevExpress.Utils.SuperToolTip     superToolTip1          = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1      = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem      toolTipItem1           = new DevExpress.Utils.ToolTipItem();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frm_FirmaTanimlama));
     DevExpress.Utils.SuperToolTip     superToolTip2          = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2      = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem      toolTipItem2           = new DevExpress.Utils.ToolTipItem();
     this.txtTaxOffice    = new DevExpress.XtraEditors.TextEdit();
     this.txtTitle        = new DevExpress.XtraEditors.TextEdit();
     this.labelControl3   = new DevExpress.XtraEditors.LabelControl();
     this.txtMailAddress  = new DevExpress.XtraEditors.TextEdit();
     this.labelControl12  = new DevExpress.XtraEditors.LabelControl();
     this.txtWebAddress   = new DevExpress.XtraEditors.TextEdit();
     this.labelControl11  = new DevExpress.XtraEditors.LabelControl();
     this.labelControl13  = new DevExpress.XtraEditors.LabelControl();
     this.txtGSM          = new DevExpress.XtraEditors.TextEdit();
     this.labelControl14  = new DevExpress.XtraEditors.LabelControl();
     this.txtFax          = new DevExpress.XtraEditors.TextEdit();
     this.txtName         = new DevExpress.XtraEditors.TextEdit();
     this.labelControl2   = new DevExpress.XtraEditors.LabelControl();
     this.labelControl10  = new DevExpress.XtraEditors.LabelControl();
     this.txtTelephone2   = new DevExpress.XtraEditors.TextEdit();
     this.labelControl9   = new DevExpress.XtraEditors.LabelControl();
     this.labelControl8   = new DevExpress.XtraEditors.LabelControl();
     this.labelControl4   = new DevExpress.XtraEditors.LabelControl();
     this.txtTelephone1   = new DevExpress.XtraEditors.TextEdit();
     this.txtAddress      = new DevExpress.XtraEditors.MemoEdit();
     this.txtBossSurName  = new DevExpress.XtraEditors.TextEdit();
     this.labelControl7   = new DevExpress.XtraEditors.LabelControl();
     this.txtBossName     = new DevExpress.XtraEditors.TextEdit();
     this.labelControl6   = new DevExpress.XtraEditors.LabelControl();
     this.txtTaxNumber    = new DevExpress.XtraEditors.TextEdit();
     this.groupControl3   = new DevExpress.XtraEditors.GroupControl();
     this.btnKaydet       = new DevExpress.XtraEditors.SimpleButton();
     this.txtMailPassword = new DevExpress.XtraEditors.TextEdit();
     this.labelControl15  = new DevExpress.XtraEditors.LabelControl();
     this.groupControl2   = new DevExpress.XtraEditors.GroupControl();
     this.panelControl2   = new DevExpress.XtraEditors.PanelControl();
     this.simpleButton1   = new DevExpress.XtraEditors.SimpleButton();
     this.btnUploadFile   = new DevExpress.XtraEditors.SimpleButton();
     this.picLogo         = new System.Windows.Forms.PictureBox();
     this.labelControl16  = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5   = new DevExpress.XtraEditors.LabelControl();
     ((System.ComponentModel.ISupportInitialize)(this.txtTaxOffice.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTitle.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMailAddress.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtWebAddress.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGSM.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFax.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTelephone2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTelephone1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtAddress.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBossSurName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBossName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTaxNumber.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
     this.groupControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtMailPassword.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.picLogo)).BeginInit();
     this.SuspendLayout();
     //
     // txtTaxOffice
     //
     this.txtTaxOffice.EnterMoveNextControl = true;
     this.txtTaxOffice.Location             = new System.Drawing.Point(134, 118);
     this.txtTaxOffice.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.txtTaxOffice.Name   = "txtTaxOffice";
     this.txtTaxOffice.Properties.Appearance.BackColor                   = System.Drawing.Color.White;
     this.txtTaxOffice.Properties.Appearance.Options.UseBackColor        = true;
     this.txtTaxOffice.Properties.AppearanceFocused.BackColor            = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
     this.txtTaxOffice.Properties.AppearanceFocused.Options.UseBackColor = true;
     this.txtTaxOffice.Size     = new System.Drawing.Size(224, 26);
     this.txtTaxOffice.TabIndex = 2;
     //
     // txtTitle
     //
     this.txtTitle.EnterMoveNextControl = true;
     this.txtTitle.Location             = new System.Drawing.Point(134, 83);
     this.txtTitle.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.txtTitle.Name   = "txtTitle";
     this.txtTitle.Properties.Appearance.BackColor                   = System.Drawing.Color.White;
     this.txtTitle.Properties.Appearance.Options.UseBackColor        = true;
     this.txtTitle.Properties.AppearanceFocused.BackColor            = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
     this.txtTitle.Properties.AppearanceFocused.Options.UseBackColor = true;
     this.txtTitle.Size     = new System.Drawing.Size(732, 26);
     this.txtTitle.TabIndex = 1;
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(70, 88);
     this.labelControl3.Margin   = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.labelControl3.Name     = "labelControl3";
     this.labelControl3.Size     = new System.Drawing.Size(55, 19);
     this.labelControl3.TabIndex = 66;
     this.labelControl3.Text     = "Ünvanı:";
     //
     // txtMailAddress
     //
     this.txtMailAddress.EnterMoveNextControl = true;
     this.txtMailAddress.Location             = new System.Drawing.Point(132, 227);
     this.txtMailAddress.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.txtMailAddress.Name   = "txtMailAddress";
     this.txtMailAddress.Properties.Appearance.BackColor                   = System.Drawing.Color.White;
     this.txtMailAddress.Properties.Appearance.Options.UseBackColor        = true;
     this.txtMailAddress.Properties.AppearanceFocused.BackColor            = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
     this.txtMailAddress.Properties.AppearanceFocused.Options.UseBackColor = true;
     this.txtMailAddress.Size     = new System.Drawing.Size(226, 26);
     this.txtMailAddress.TabIndex = 6;
     //
     // labelControl12
     //
     this.labelControl12.Location = new System.Drawing.Point(40, 229);
     this.labelControl12.Margin   = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.labelControl12.Name     = "labelControl12";
     this.labelControl12.Size     = new System.Drawing.Size(84, 19);
     this.labelControl12.TabIndex = 102;
     this.labelControl12.Text     = "Mail Adresi:";
     //
     // txtWebAddress
     //
     this.txtWebAddress.EnterMoveNextControl = true;
     this.txtWebAddress.Location             = new System.Drawing.Point(132, 191);
     this.txtWebAddress.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.txtWebAddress.Name   = "txtWebAddress";
     this.txtWebAddress.Properties.Appearance.BackColor                   = System.Drawing.Color.White;
     this.txtWebAddress.Properties.Appearance.Options.UseBackColor        = true;
     this.txtWebAddress.Properties.AppearanceFocused.BackColor            = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
     this.txtWebAddress.Properties.AppearanceFocused.Options.UseBackColor = true;
     this.txtWebAddress.Size     = new System.Drawing.Size(730, 26);
     this.txtWebAddress.TabIndex = 5;
     //
     // labelControl11
     //
     this.labelControl11.Location = new System.Drawing.Point(38, 194);
     this.labelControl11.Margin   = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.labelControl11.Name     = "labelControl11";
     this.labelControl11.Size     = new System.Drawing.Size(87, 19);
     this.labelControl11.TabIndex = 100;
     this.labelControl11.Text     = "Web Adresi:";
     //
     // labelControl13
     //
     this.labelControl13.Location = new System.Drawing.Point(398, 56);
     this.labelControl13.Margin   = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.labelControl13.Name     = "labelControl13";
     this.labelControl13.Size     = new System.Drawing.Size(51, 19);
     this.labelControl13.TabIndex = 98;
     this.labelControl13.Text     = "Adresi:";
     //
     // txtGSM
     //
     this.txtGSM.EnterMoveNextControl = true;
     this.txtGSM.Location             = new System.Drawing.Point(132, 158);
     this.txtGSM.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.txtGSM.Name   = "txtGSM";
     this.txtGSM.Properties.Appearance.BackColor                   = System.Drawing.Color.White;
     this.txtGSM.Properties.Appearance.Options.UseBackColor        = true;
     this.txtGSM.Properties.AppearanceFocused.BackColor            = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
     this.txtGSM.Properties.AppearanceFocused.Options.UseBackColor = true;
     this.txtGSM.Properties.Mask.EditMask = "999 000 00 00";
     this.txtGSM.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Simple;
     this.txtGSM.Size     = new System.Drawing.Size(224, 26);
     this.txtGSM.TabIndex = 3;
     //
     // labelControl14
     //
     this.labelControl14.Location = new System.Drawing.Point(86, 162);
     this.labelControl14.Margin   = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.labelControl14.Name     = "labelControl14";
     this.labelControl14.Size     = new System.Drawing.Size(38, 19);
     this.labelControl14.TabIndex = 94;
     this.labelControl14.Text     = "Gsm:";
     //
     // txtFax
     //
     this.txtFax.EnterMoveNextControl = true;
     this.txtFax.Location             = new System.Drawing.Point(132, 124);
     this.txtFax.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.txtFax.Name   = "txtFax";
     this.txtFax.Properties.Appearance.BackColor                   = System.Drawing.Color.White;
     this.txtFax.Properties.Appearance.Options.UseBackColor        = true;
     this.txtFax.Properties.AppearanceFocused.BackColor            = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
     this.txtFax.Properties.AppearanceFocused.Options.UseBackColor = true;
     this.txtFax.Properties.Mask.EditMask = "999 000 00 00";
     this.txtFax.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Simple;
     this.txtFax.Size     = new System.Drawing.Size(224, 26);
     this.txtFax.TabIndex = 2;
     //
     // txtName
     //
     this.txtName.EnterMoveNextControl = true;
     this.txtName.Location             = new System.Drawing.Point(134, 50);
     this.txtName.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.txtName.Name   = "txtName";
     this.txtName.Properties.Appearance.BackColor                   = System.Drawing.Color.White;
     this.txtName.Properties.Appearance.Options.UseBackColor        = true;
     this.txtName.Properties.AppearanceFocused.BackColor            = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
     this.txtName.Properties.AppearanceFocused.Options.UseBackColor = true;
     this.txtName.Size     = new System.Drawing.Size(732, 26);
     this.txtName.TabIndex = 0;
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(96, 53);
     this.labelControl2.Margin   = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.labelControl2.Name     = "labelControl2";
     this.labelControl2.Size     = new System.Drawing.Size(30, 19);
     this.labelControl2.TabIndex = 64;
     this.labelControl2.Text     = "Adı:";
     //
     // labelControl10
     //
     this.labelControl10.Location = new System.Drawing.Point(94, 129);
     this.labelControl10.Margin   = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.labelControl10.Name     = "labelControl10";
     this.labelControl10.Size     = new System.Drawing.Size(30, 19);
     this.labelControl10.TabIndex = 95;
     this.labelControl10.Text     = "Fax:";
     //
     // txtTelephone2
     //
     this.txtTelephone2.EnterMoveNextControl = true;
     this.txtTelephone2.Location             = new System.Drawing.Point(132, 91);
     this.txtTelephone2.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.txtTelephone2.Name   = "txtTelephone2";
     this.txtTelephone2.Properties.Appearance.BackColor                   = System.Drawing.Color.White;
     this.txtTelephone2.Properties.Appearance.Options.UseBackColor        = true;
     this.txtTelephone2.Properties.AppearanceFocused.BackColor            = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
     this.txtTelephone2.Properties.AppearanceFocused.Options.UseBackColor = true;
     this.txtTelephone2.Properties.Mask.EditMask = "999 000 00 00";
     this.txtTelephone2.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Simple;
     this.txtTelephone2.Size     = new System.Drawing.Size(224, 26);
     this.txtTelephone2.TabIndex = 1;
     //
     // labelControl9
     //
     this.labelControl9.Location = new System.Drawing.Point(51, 95);
     this.labelControl9.Margin   = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.labelControl9.Name     = "labelControl9";
     this.labelControl9.Size     = new System.Drawing.Size(73, 19);
     this.labelControl9.TabIndex = 92;
     this.labelControl9.Text     = "Telefon 2:";
     //
     // labelControl8
     //
     this.labelControl8.Location = new System.Drawing.Point(51, 58);
     this.labelControl8.Margin   = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.labelControl8.Name     = "labelControl8";
     this.labelControl8.Size     = new System.Drawing.Size(73, 19);
     this.labelControl8.TabIndex = 90;
     this.labelControl8.Text     = "Telefon 1:";
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(30, 121);
     this.labelControl4.Margin   = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.labelControl4.Name     = "labelControl4";
     this.labelControl4.Size     = new System.Drawing.Size(96, 19);
     this.labelControl4.TabIndex = 68;
     this.labelControl4.Text     = "Vergi Dairesi:";
     //
     // txtTelephone1
     //
     this.txtTelephone1.EnterMoveNextControl = true;
     this.txtTelephone1.Location             = new System.Drawing.Point(132, 56);
     this.txtTelephone1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.txtTelephone1.Name   = "txtTelephone1";
     this.txtTelephone1.Properties.Appearance.BackColor                   = System.Drawing.Color.White;
     this.txtTelephone1.Properties.Appearance.Options.UseBackColor        = true;
     this.txtTelephone1.Properties.AppearanceFocused.BackColor            = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
     this.txtTelephone1.Properties.AppearanceFocused.Options.UseBackColor = true;
     this.txtTelephone1.Properties.Mask.EditMask = "999 000 00 00";
     this.txtTelephone1.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Simple;
     this.txtTelephone1.Size     = new System.Drawing.Size(224, 26);
     this.txtTelephone1.TabIndex = 0;
     //
     // txtAddress
     //
     this.txtAddress.EnterMoveNextControl = true;
     this.txtAddress.Location             = new System.Drawing.Point(458, 56);
     this.txtAddress.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.txtAddress.Name   = "txtAddress";
     this.txtAddress.Properties.Appearance.BackColor                   = System.Drawing.Color.White;
     this.txtAddress.Properties.Appearance.Options.UseBackColor        = true;
     this.txtAddress.Properties.AppearanceFocused.BackColor            = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
     this.txtAddress.Properties.AppearanceFocused.Options.UseBackColor = true;
     this.txtAddress.Size     = new System.Drawing.Size(405, 129);
     this.txtAddress.TabIndex = 4;
     //
     // txtBossSurName
     //
     this.txtBossSurName.EnterMoveNextControl = true;
     this.txtBossSurName.Location             = new System.Drawing.Point(134, 221);
     this.txtBossSurName.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.txtBossSurName.Name   = "txtBossSurName";
     this.txtBossSurName.Properties.Appearance.BackColor                   = System.Drawing.Color.White;
     this.txtBossSurName.Properties.Appearance.Options.UseBackColor        = true;
     this.txtBossSurName.Properties.AppearanceFocused.BackColor            = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
     this.txtBossSurName.Properties.AppearanceFocused.Options.UseBackColor = true;
     this.txtBossSurName.Size     = new System.Drawing.Size(224, 26);
     this.txtBossSurName.TabIndex = 5;
     //
     // labelControl7
     //
     this.labelControl7.Location = new System.Drawing.Point(26, 224);
     this.labelControl7.Margin   = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.labelControl7.Name     = "labelControl7";
     this.labelControl7.Size     = new System.Drawing.Size(101, 19);
     this.labelControl7.TabIndex = 74;
     this.labelControl7.Text     = "Yetkili Soyadı:";
     //
     // txtBossName
     //
     this.txtBossName.EnterMoveNextControl = true;
     this.txtBossName.Location             = new System.Drawing.Point(134, 186);
     this.txtBossName.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.txtBossName.Name   = "txtBossName";
     this.txtBossName.Properties.Appearance.BackColor                   = System.Drawing.Color.White;
     this.txtBossName.Properties.Appearance.Options.UseBackColor        = true;
     this.txtBossName.Properties.AppearanceFocused.BackColor            = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
     this.txtBossName.Properties.AppearanceFocused.Options.UseBackColor = true;
     this.txtBossName.Size     = new System.Drawing.Size(224, 26);
     this.txtBossName.TabIndex = 4;
     //
     // labelControl6
     //
     this.labelControl6.Location = new System.Drawing.Point(48, 189);
     this.labelControl6.Margin   = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.labelControl6.Name     = "labelControl6";
     this.labelControl6.Size     = new System.Drawing.Size(78, 19);
     this.labelControl6.TabIndex = 72;
     this.labelControl6.Text     = "Yetkili Adı:";
     //
     // txtTaxNumber
     //
     this.txtTaxNumber.EnterMoveNextControl = true;
     this.txtTaxNumber.Location             = new System.Drawing.Point(134, 152);
     this.txtTaxNumber.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.txtTaxNumber.Name   = "txtTaxNumber";
     this.txtTaxNumber.Properties.Appearance.BackColor                   = System.Drawing.Color.White;
     this.txtTaxNumber.Properties.Appearance.Options.UseBackColor        = true;
     this.txtTaxNumber.Properties.AppearanceFocused.BackColor            = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
     this.txtTaxNumber.Properties.AppearanceFocused.Options.UseBackColor = true;
     this.txtTaxNumber.Size     = new System.Drawing.Size(224, 26);
     this.txtTaxNumber.TabIndex = 3;
     //
     // groupControl3
     //
     this.groupControl3.AppearanceCaption.Font                 = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.groupControl3.AppearanceCaption.ForeColor            = System.Drawing.Color.Maroon;
     this.groupControl3.AppearanceCaption.Options.UseFont      = true;
     this.groupControl3.AppearanceCaption.Options.UseForeColor = true;
     this.groupControl3.Controls.Add(this.btnKaydet);
     this.groupControl3.Controls.Add(this.txtMailPassword);
     this.groupControl3.Controls.Add(this.labelControl15);
     this.groupControl3.Controls.Add(this.txtMailAddress);
     this.groupControl3.Controls.Add(this.labelControl12);
     this.groupControl3.Controls.Add(this.txtWebAddress);
     this.groupControl3.Controls.Add(this.labelControl11);
     this.groupControl3.Controls.Add(this.labelControl13);
     this.groupControl3.Controls.Add(this.txtGSM);
     this.groupControl3.Controls.Add(this.labelControl14);
     this.groupControl3.Controls.Add(this.txtFax);
     this.groupControl3.Controls.Add(this.labelControl10);
     this.groupControl3.Controls.Add(this.txtTelephone2);
     this.groupControl3.Controls.Add(this.labelControl9);
     this.groupControl3.Controls.Add(this.txtTelephone1);
     this.groupControl3.Controls.Add(this.labelControl8);
     this.groupControl3.Controls.Add(this.txtAddress);
     this.groupControl3.Location = new System.Drawing.Point(0, 260);
     this.groupControl3.Margin   = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.groupControl3.Name     = "groupControl3";
     this.groupControl3.Size     = new System.Drawing.Size(902, 322);
     this.groupControl3.TabIndex = 88;
     this.groupControl3.Text     = "İletişim Bilgileri";
     //
     // btnKaydet
     //
     this.btnKaydet.Appearance.Font            = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.btnKaydet.Appearance.Options.UseFont = true;
     this.btnKaydet.Image    = global::IhalematikProUI.Properties.Resources.refresh_icon;
     this.btnKaydet.Location = new System.Drawing.Point(723, 263);
     this.btnKaydet.Margin   = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.btnKaydet.Name     = "btnKaydet";
     this.btnKaydet.Size     = new System.Drawing.Size(140, 54);
     this.btnKaydet.TabIndex = 8;
     this.btnKaydet.Text     = "&Güncelle";
     this.btnKaydet.Click   += new System.EventHandler(this.btnKaydet_Click);
     //
     // txtMailPassword
     //
     this.txtMailPassword.EnterMoveNextControl = true;
     this.txtMailPassword.Location             = new System.Drawing.Point(132, 260);
     this.txtMailPassword.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.txtMailPassword.Name   = "txtMailPassword";
     this.txtMailPassword.Properties.Appearance.BackColor                   = System.Drawing.Color.White;
     this.txtMailPassword.Properties.Appearance.Options.UseBackColor        = true;
     this.txtMailPassword.Properties.AppearanceFocused.BackColor            = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
     this.txtMailPassword.Properties.AppearanceFocused.Options.UseBackColor = true;
     this.txtMailPassword.Properties.PasswordChar = '*';
     this.txtMailPassword.Size     = new System.Drawing.Size(226, 26);
     this.txtMailPassword.TabIndex = 7;
     //
     // labelControl15
     //
     this.labelControl15.Location = new System.Drawing.Point(42, 265);
     this.labelControl15.Margin   = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.labelControl15.Name     = "labelControl15";
     this.labelControl15.Size     = new System.Drawing.Size(82, 19);
     this.labelControl15.TabIndex = 102;
     this.labelControl15.Text     = "Mail Şifresi:";
     //
     // groupControl2
     //
     this.groupControl2.Appearance.BackColor                   = System.Drawing.Color.White;
     this.groupControl2.Appearance.Options.UseBackColor        = true;
     this.groupControl2.AppearanceCaption.Font                 = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.groupControl2.AppearanceCaption.ForeColor            = System.Drawing.Color.Navy;
     this.groupControl2.AppearanceCaption.Options.UseFont      = true;
     this.groupControl2.AppearanceCaption.Options.UseForeColor = true;
     this.groupControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.groupControl2.Controls.Add(this.panelControl2);
     this.groupControl2.Controls.Add(this.groupControl3);
     this.groupControl2.Controls.Add(this.txtBossSurName);
     this.groupControl2.Controls.Add(this.labelControl7);
     this.groupControl2.Controls.Add(this.txtBossName);
     this.groupControl2.Controls.Add(this.labelControl6);
     this.groupControl2.Controls.Add(this.txtTaxNumber);
     this.groupControl2.Controls.Add(this.labelControl5);
     this.groupControl2.Controls.Add(this.txtTaxOffice);
     this.groupControl2.Controls.Add(this.labelControl4);
     this.groupControl2.Controls.Add(this.txtTitle);
     this.groupControl2.Controls.Add(this.labelControl3);
     this.groupControl2.Controls.Add(this.txtName);
     this.groupControl2.Controls.Add(this.labelControl2);
     this.groupControl2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.groupControl2.Location = new System.Drawing.Point(0, 0);
     this.groupControl2.Margin   = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.groupControl2.Name     = "groupControl2";
     this.groupControl2.Size     = new System.Drawing.Size(902, 617);
     this.groupControl2.TabIndex = 29;
     this.groupControl2.Text     = "Firma Bilgileri";
     //
     // panelControl2
     //
     this.panelControl2.Appearance.BackColor            = System.Drawing.Color.White;
     this.panelControl2.Appearance.Options.UseBackColor = true;
     this.panelControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.panelControl2.Controls.Add(this.simpleButton1);
     this.panelControl2.Controls.Add(this.btnUploadFile);
     this.panelControl2.Controls.Add(this.picLogo);
     this.panelControl2.Controls.Add(this.labelControl16);
     this.panelControl2.Location = new System.Drawing.Point(374, 115);
     this.panelControl2.Name     = "panelControl2";
     this.panelControl2.Size     = new System.Drawing.Size(492, 137);
     this.panelControl2.TabIndex = 104;
     //
     // simpleButton1
     //
     this.simpleButton1.Appearance.Font            = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.simpleButton1.Appearance.GradientMode    = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.simpleButton1.Appearance.Options.UseFont = true;
     this.simpleButton1.Image              = global::IhalematikProUI.Properties.Resources.cross_script_icon;
     this.simpleButton1.ImageLocation      = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton1.Location           = new System.Drawing.Point(26, 85);
     this.simpleButton1.Margin             = new System.Windows.Forms.Padding(6, 6, 6, 6);
     this.simpleButton1.Name               = "simpleButton1";
     this.simpleButton1.RightToLeft        = System.Windows.Forms.RightToLeft.Yes;
     this.simpleButton1.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.True;
     this.simpleButton1.Size               = new System.Drawing.Size(82, 37);
     toolTipTitleItem1.Text                   = "LOGO";
     toolTipItem1.Appearance.Image            = ((System.Drawing.Image)(resources.GetObject("resource.Image")));
     toolTipItem1.Appearance.Options.UseImage = true;
     toolTipItem1.Image      = ((System.Drawing.Image)(resources.GetObject("toolTipItem1.Image")));
     toolTipItem1.LeftIndent = 6;
     toolTipItem1.Text       = "Firma Logosunu yükleyin";
     superToolTip1.Items.Add(toolTipTitleItem1);
     superToolTip1.Items.Add(toolTipItem1);
     this.simpleButton1.SuperTip = superToolTip1;
     this.simpleButton1.TabIndex = 105;
     this.simpleButton1.Text     = "&Kaldir";
     this.simpleButton1.Click   += new System.EventHandler(this.simpleButton1_Click);
     //
     // btnUploadFile
     //
     this.btnUploadFile.Appearance.Font            = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.btnUploadFile.Appearance.GradientMode    = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.btnUploadFile.Appearance.Options.UseFont = true;
     this.btnUploadFile.Image              = ((System.Drawing.Image)(resources.GetObject("btnUploadFile.Image")));
     this.btnUploadFile.ImageLocation      = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnUploadFile.Location           = new System.Drawing.Point(27, 37);
     this.btnUploadFile.Margin             = new System.Windows.Forms.Padding(6, 6, 6, 6);
     this.btnUploadFile.Name               = "btnUploadFile";
     this.btnUploadFile.RightToLeft        = System.Windows.Forms.RightToLeft.Yes;
     this.btnUploadFile.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.True;
     this.btnUploadFile.Size               = new System.Drawing.Size(82, 37);
     toolTipTitleItem2.Text                   = "LOGO";
     toolTipItem2.Appearance.Image            = ((System.Drawing.Image)(resources.GetObject("resource.Image1")));
     toolTipItem2.Appearance.Options.UseImage = true;
     toolTipItem2.Image      = ((System.Drawing.Image)(resources.GetObject("toolTipItem2.Image")));
     toolTipItem2.LeftIndent = 6;
     toolTipItem2.Text       = "Firma Logosunu yükleyin";
     superToolTip2.Items.Add(toolTipTitleItem2);
     superToolTip2.Items.Add(toolTipItem2);
     this.btnUploadFile.SuperTip = superToolTip2;
     this.btnUploadFile.TabIndex = 104;
     this.btnUploadFile.Text     = "&Yükle";
     this.btnUploadFile.Click   += new System.EventHandler(this.btnUploadFile_Click);
     //
     // picLogo
     //
     this.picLogo.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.picLogo.Location    = new System.Drawing.Point(134, 6);
     this.picLogo.Name        = "picLogo";
     this.picLogo.Size        = new System.Drawing.Size(353, 125);
     this.picLogo.SizeMode    = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.picLogo.TabIndex    = 103;
     this.picLogo.TabStop     = false;
     //
     // labelControl16
     //
     this.labelControl16.Location = new System.Drawing.Point(8, 7);
     this.labelControl16.Margin   = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.labelControl16.Name     = "labelControl16";
     this.labelControl16.Size     = new System.Drawing.Size(102, 19);
     this.labelControl16.TabIndex = 102;
     this.labelControl16.Text     = "Firma Logosu:";
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(10, 155);
     this.labelControl5.Margin   = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.labelControl5.Name     = "labelControl5";
     this.labelControl5.Size     = new System.Drawing.Size(115, 19);
     this.labelControl5.TabIndex = 70;
     this.labelControl5.Text     = "Vergi Numarası:";
     //
     // frm_FirmaTanimlama
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 19F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(902, 617);
     this.Controls.Add(this.groupControl2);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
     this.Margin          = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frm_FirmaTanimlama";
     this.ShowIcon        = false;
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "FİRMA TANIMLAMA";
     this.Load           += new System.EventHandler(this.frm_FirmaTanimlama_Load);
     ((System.ComponentModel.ISupportInitialize)(this.txtTaxOffice.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTitle.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMailAddress.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtWebAddress.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGSM.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFax.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTelephone2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTelephone1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtAddress.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBossSurName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBossName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTaxNumber.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
     this.groupControl3.ResumeLayout(false);
     this.groupControl3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtMailPassword.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     this.groupControl2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     this.panelControl2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.picLogo)).EndInit();
     this.ResumeLayout(false);
 }
Пример #54
0
 /// <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(frmZones));
     DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip2 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem1 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip3 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip4 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem3 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip5 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem4 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip6 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem2 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip7 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem3 = new DevExpress.Utils.ToolTipItem();
     this.groupControl5 = new DevExpress.XtraEditors.GroupControl();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.ZdatagridRegionalAllocation = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.ZtxtOtherGroup = new DevExpress.XtraEditors.TextEdit();
     this.ZtxtManagerId = new DevExpress.XtraEditors.TextEdit();
     this.ZtxtCompanyGroupID = new DevExpress.XtraEditors.TextEdit();
     this.checkEdit2 = new DevExpress.XtraEditors.CheckEdit();
     this.ZtxtManagerName = new DevExpress.XtraEditors.TextEdit();
     this.ZtxtGroupName = new DevExpress.XtraEditors.TextEdit();
     this.ZtxtCompanyName = new DevExpress.XtraEditors.TextEdit();
     this.ZtxtCompanyId = new DevExpress.XtraEditors.TextEdit();
     this.ZtxtSPOID = new DevExpress.XtraEditors.TextEdit();
     this.ZchkDiscontinue = new DevExpress.XtraEditors.CheckEdit();
     this.ZchkMerck = new DevExpress.XtraEditors.CheckEdit();
     this.labelControl14 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl15 = new DevExpress.XtraEditors.LabelControl();
     this.ZPlManagerId = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton5 = new DevExpress.XtraEditors.SimpleButton();
     this.ZPLCompanyGroupID = new DevExpress.XtraEditors.SimpleButton();
     this.ZPLCompanyId = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.ZPLSPOId = new DevExpress.XtraEditors.SimpleButton();
     this.ZtxtSPOName = new DevExpress.XtraEditors.TextEdit();
     this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl16 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
     this.btnAdd = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).BeginInit();
     this.groupControl5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ZdatagridRegionalAllocation)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtOtherGroup.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtManagerId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtCompanyGroupID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtManagerName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtGroupName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtCompanyName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtCompanyId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtSPOID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZchkDiscontinue.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZchkMerck.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtSPOName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     this.SuspendLayout();
     //
     // groupControl5
     //
     this.groupControl5.Controls.Add(this.groupControl1);
     this.groupControl5.Controls.Add(this.ZtxtOtherGroup);
     this.groupControl5.Controls.Add(this.ZtxtManagerId);
     this.groupControl5.Controls.Add(this.ZtxtCompanyGroupID);
     this.groupControl5.Controls.Add(this.checkEdit2);
     this.groupControl5.Controls.Add(this.ZtxtManagerName);
     this.groupControl5.Controls.Add(this.ZtxtGroupName);
     this.groupControl5.Controls.Add(this.ZtxtCompanyName);
     this.groupControl5.Controls.Add(this.ZtxtCompanyId);
     this.groupControl5.Controls.Add(this.ZtxtSPOID);
     this.groupControl5.Controls.Add(this.ZchkDiscontinue);
     this.groupControl5.Controls.Add(this.ZchkMerck);
     this.groupControl5.Controls.Add(this.labelControl14);
     this.groupControl5.Controls.Add(this.labelControl13);
     this.groupControl5.Controls.Add(this.labelControl15);
     this.groupControl5.Controls.Add(this.ZPlManagerId);
     this.groupControl5.Controls.Add(this.simpleButton5);
     this.groupControl5.Controls.Add(this.ZPLCompanyGroupID);
     this.groupControl5.Controls.Add(this.ZPLCompanyId);
     this.groupControl5.Controls.Add(this.labelControl11);
     this.groupControl5.Controls.Add(this.ZPLSPOId);
     this.groupControl5.Controls.Add(this.ZtxtSPOName);
     this.groupControl5.Controls.Add(this.labelControl12);
     this.groupControl5.Controls.Add(this.labelControl10);
     this.groupControl5.Controls.Add(this.labelControl8);
     this.groupControl5.Controls.Add(this.labelControl16);
     this.groupControl5.Controls.Add(this.labelControl9);
     this.groupControl5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControl5.Location = new System.Drawing.Point(0, 0);
     this.groupControl5.Name = "groupControl5";
     this.groupControl5.Size = new System.Drawing.Size(567, 390);
     this.groupControl5.TabIndex = 0;
     this.groupControl5.Text = "Zone Details";
     //
     // groupControl1
     //
     this.groupControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl1.Controls.Add(this.ZdatagridRegionalAllocation);
     this.groupControl1.Location = new System.Drawing.Point(0, 130);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.ShowCaption = false;
     this.groupControl1.Size = new System.Drawing.Size(567, 226);
     this.groupControl1.TabIndex = 124261;
     this.groupControl1.Text = "groupControl1";
     //
     // ZdatagridRegionalAllocation
     //
     this.ZdatagridRegionalAllocation.AllowAddNew = true;
     this.ZdatagridRegionalAllocation.CaptionHeight = 17;
     this.ZdatagridRegionalAllocation.DirectionAfterEnter = C1.Win.C1TrueDBGrid.DirectionAfterEnterEnum.MoveNone;
     this.ZdatagridRegionalAllocation.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ZdatagridRegionalAllocation.ExtendRightColumn = true;
     this.ZdatagridRegionalAllocation.FetchRowStyles = true;
     this.ZdatagridRegionalAllocation.Images.Add(((System.Drawing.Image)(resources.GetObject("ZdatagridRegionalAllocation.Images"))));
     this.ZdatagridRegionalAllocation.LinesPerRow = 1;
     this.ZdatagridRegionalAllocation.Location = new System.Drawing.Point(2, 2);
     this.ZdatagridRegionalAllocation.Name = "ZdatagridRegionalAllocation";
     this.ZdatagridRegionalAllocation.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.ZdatagridRegionalAllocation.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.ZdatagridRegionalAllocation.PreviewInfo.ZoomFactor = 75D;
     this.ZdatagridRegionalAllocation.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("ZdatagridRegionalAllocation.PrintInfo.PageSettings")));
     this.ZdatagridRegionalAllocation.RecordSelectors = false;
     this.ZdatagridRegionalAllocation.RowDivider.Color = System.Drawing.SystemColors.ActiveCaption;
     this.ZdatagridRegionalAllocation.RowDivider.Style = C1.Win.C1TrueDBGrid.LineStyleEnum.Single;
     this.ZdatagridRegionalAllocation.RowHeight = 20;
     this.ZdatagridRegionalAllocation.RowSubDividerColor = System.Drawing.SystemColors.ActiveCaption;
     this.ZdatagridRegionalAllocation.Size = new System.Drawing.Size(563, 222);
     this.ZdatagridRegionalAllocation.TabIndex = 124255;
     this.ZdatagridRegionalAllocation.Text = "c1TrueDBGrid1";
     this.ZdatagridRegionalAllocation.VisualStyle = C1.Win.C1TrueDBGrid.VisualStyle.Office2010Blue;
     this.ZdatagridRegionalAllocation.AfterColUpdate += new C1.Win.C1TrueDBGrid.ColEventHandler(this.ZdatagridRegionalAllocation_AfterColUpdate);
     this.ZdatagridRegionalAllocation.PropBag = resources.GetString("ZdatagridRegionalAllocation.PropBag");
     //
     // ZtxtOtherGroup
     //
     this.ZtxtOtherGroup.Location = new System.Drawing.Point(98, 104);
     this.ZtxtOtherGroup.Name = "ZtxtOtherGroup";
     this.ZtxtOtherGroup.Size = new System.Drawing.Size(258, 20);
     this.ZtxtOtherGroup.TabIndex = 5;
     this.ZtxtOtherGroup.TabStop = false;
     this.ZtxtOtherGroup.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.ZtxtOtherGroup_PreviewKeyDown);
     //
     // ZtxtManagerId
     //
     this.ZtxtManagerId.Location = new System.Drawing.Point(98, 85);
     this.ZtxtManagerId.Name = "ZtxtManagerId";
     this.ZtxtManagerId.Properties.MaxLength = 6;
     this.ZtxtManagerId.Size = new System.Drawing.Size(49, 20);
     this.ZtxtManagerId.TabIndex = 4;
     this.ZtxtManagerId.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.ZtxtManagerId_KeyPress);
     this.ZtxtManagerId.Leave += new System.EventHandler(this.ZtxtManagerId_Leave);
     this.ZtxtManagerId.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.ZtxtManagerId_PreviewKeyDown);
     //
     // ZtxtCompanyGroupID
     //
     this.ZtxtCompanyGroupID.Location = new System.Drawing.Point(98, 66);
     this.ZtxtCompanyGroupID.Name = "ZtxtCompanyGroupID";
     this.ZtxtCompanyGroupID.Properties.MaxLength = 6;
     this.ZtxtCompanyGroupID.Size = new System.Drawing.Size(49, 20);
     this.ZtxtCompanyGroupID.TabIndex = 3;
     this.ZtxtCompanyGroupID.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.ZtxtCompanyGroupID_KeyPress);
     this.ZtxtCompanyGroupID.Leave += new System.EventHandler(this.ZtxtCompanyGroupID_Leave);
     this.ZtxtCompanyGroupID.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.ZtxtCompanyGroupID_PreviewKeyDown);
     //
     // checkEdit2
     //
     this.checkEdit2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.checkEdit2.Location = new System.Drawing.Point(421, 84);
     this.checkEdit2.Name = "checkEdit2";
     this.checkEdit2.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.checkEdit2.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.checkEdit2.Properties.Appearance.Options.UseFont = true;
     this.checkEdit2.Properties.Appearance.Options.UseForeColor = true;
     this.checkEdit2.Properties.Caption = "Select/UnSelect All";
     this.checkEdit2.Size = new System.Drawing.Size(141, 19);
     this.checkEdit2.TabIndex = 8;
     this.checkEdit2.CheckedChanged += new System.EventHandler(this.checkEdit2_CheckedChanged);
     this.checkEdit2.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.checkEdit2_KeyPress);
     //
     // ZtxtManagerName
     //
     this.ZtxtManagerName.Enabled = false;
     this.ZtxtManagerName.Location = new System.Drawing.Point(220, 85);
     this.ZtxtManagerName.Name = "ZtxtManagerName";
     this.ZtxtManagerName.Size = new System.Drawing.Size(136, 20);
     this.ZtxtManagerName.TabIndex = 124251;
     this.ZtxtManagerName.TabStop = false;
     //
     // ZtxtGroupName
     //
     this.ZtxtGroupName.Enabled = false;
     this.ZtxtGroupName.Location = new System.Drawing.Point(220, 66);
     this.ZtxtGroupName.Name = "ZtxtGroupName";
     this.ZtxtGroupName.Size = new System.Drawing.Size(136, 20);
     this.ZtxtGroupName.TabIndex = 124246;
     this.ZtxtGroupName.TabStop = false;
     //
     // ZtxtCompanyName
     //
     this.ZtxtCompanyName.Enabled = false;
     this.ZtxtCompanyName.Location = new System.Drawing.Point(220, 47);
     this.ZtxtCompanyName.Name = "ZtxtCompanyName";
     this.ZtxtCompanyName.Size = new System.Drawing.Size(136, 20);
     this.ZtxtCompanyName.TabIndex = 100015;
     this.ZtxtCompanyName.TabStop = false;
     //
     // ZtxtCompanyId
     //
     this.ZtxtCompanyId.Location = new System.Drawing.Point(98, 47);
     this.ZtxtCompanyId.Name = "ZtxtCompanyId";
     this.ZtxtCompanyId.Properties.MaxLength = 3;
     this.ZtxtCompanyId.Size = new System.Drawing.Size(49, 20);
     this.ZtxtCompanyId.TabIndex = 2;
     this.ZtxtCompanyId.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.ZtxtCompanyId_KeyPress);
     this.ZtxtCompanyId.Leave += new System.EventHandler(this.ZtxtCompanyId_Leave);
     this.ZtxtCompanyId.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.ZtxtCompanyId_PreviewKeyDown);
     //
     // ZtxtSPOID
     //
     this.ZtxtSPOID.Location = new System.Drawing.Point(98, 28);
     this.ZtxtSPOID.Name = "ZtxtSPOID";
     this.ZtxtSPOID.Properties.MaxLength = 6;
     this.ZtxtSPOID.Size = new System.Drawing.Size(49, 20);
     this.ZtxtSPOID.TabIndex = 0;
     this.ZtxtSPOID.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.ZtxtSPOID_PreviewKeyDown);
     //
     // ZchkDiscontinue
     //
     this.ZchkDiscontinue.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.ZchkDiscontinue.Location = new System.Drawing.Point(421, 34);
     this.ZchkDiscontinue.Name = "ZchkDiscontinue";
     this.ZchkDiscontinue.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ZchkDiscontinue.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.ZchkDiscontinue.Properties.Appearance.Options.UseFont = true;
     this.ZchkDiscontinue.Properties.Appearance.Options.UseForeColor = true;
     this.ZchkDiscontinue.Properties.Caption = "Discontinue";
     this.ZchkDiscontinue.Size = new System.Drawing.Size(93, 19);
     this.ZchkDiscontinue.TabIndex = 6;
     this.ZchkDiscontinue.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.ZchkDiscontinue_KeyPress);
     //
     // ZchkMerck
     //
     this.ZchkMerck.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.ZchkMerck.Location = new System.Drawing.Point(421, 59);
     this.ZchkMerck.Name = "ZchkMerck";
     this.ZchkMerck.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ZchkMerck.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.ZchkMerck.Properties.Appearance.Options.UseFont = true;
     this.ZchkMerck.Properties.Appearance.Options.UseForeColor = true;
     this.ZchkMerck.Properties.Caption = "MERCK";
     this.ZchkMerck.Size = new System.Drawing.Size(58, 19);
     this.ZchkMerck.TabIndex = 7;
     this.ZchkMerck.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.ZchkMerck_KeyPress);
     //
     // labelControl14
     //
     this.labelControl14.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl14.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl14.Location = new System.Drawing.Point(183, 87);
     this.labelControl14.Name = "labelControl14";
     this.labelControl14.Size = new System.Drawing.Size(51, 20);
     this.labelControl14.TabIndex = 124250;
     this.labelControl14.Text = "Name";
     //
     // labelControl13
     //
     this.labelControl13.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl13.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl13.LineVisible = true;
     this.labelControl13.Location = new System.Drawing.Point(183, 68);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Size = new System.Drawing.Size(40, 20);
     this.labelControl13.TabIndex = 124245;
     this.labelControl13.Text = "Name";
     //
     // labelControl15
     //
     this.labelControl15.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl15.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl15.LineVisible = true;
     this.labelControl15.Location = new System.Drawing.Point(10, 86);
     this.labelControl15.Name = "labelControl15";
     this.labelControl15.Size = new System.Drawing.Size(95, 20);
     this.labelControl15.TabIndex = 124248;
     this.labelControl15.Text = "Manager Id";
     //
     // ZPlManagerId
     //
     this.ZPlManagerId.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.ZPlManagerId.Appearance.Options.UseFont = true;
     this.ZPlManagerId.Image = ((System.Drawing.Image)(resources.GetObject("ZPlManagerId.Image")));
     this.ZPlManagerId.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.ZPlManagerId.Location = new System.Drawing.Point(149, 85);
     this.ZPlManagerId.Name = "ZPlManagerId";
     this.ZPlManagerId.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.ZPlManagerId.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem1.Text = "Add New Entry";
     superToolTip1.Items.Add(toolTipTitleItem1);
     this.ZPlManagerId.SuperTip = superToolTip1;
     this.ZPlManagerId.TabIndex = 124249;
     this.ZPlManagerId.TabStop = false;
     this.ZPlManagerId.Click += new System.EventHandler(this.ZPlManagerId_Click);
     //
     // simpleButton5
     //
     this.simpleButton5.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton5.Image")));
     this.simpleButton5.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton5.Location = new System.Drawing.Point(70, 66);
     this.simpleButton5.Name = "simpleButton5";
     this.simpleButton5.Size = new System.Drawing.Size(27, 20);
     toolTipItem1.Text = "Save Module";
     superToolTip2.Items.Add(toolTipItem1);
     this.simpleButton5.SuperTip = superToolTip2;
     this.simpleButton5.TabIndex = 100019;
     this.simpleButton5.TabStop = false;
     this.simpleButton5.Click += new System.EventHandler(this.simpleButton5_Click);
     //
     // ZPLCompanyGroupID
     //
     this.ZPLCompanyGroupID.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.ZPLCompanyGroupID.Appearance.Options.UseFont = true;
     this.ZPLCompanyGroupID.Image = ((System.Drawing.Image)(resources.GetObject("ZPLCompanyGroupID.Image")));
     this.ZPLCompanyGroupID.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.ZPLCompanyGroupID.Location = new System.Drawing.Point(149, 66);
     this.ZPLCompanyGroupID.Name = "ZPLCompanyGroupID";
     this.ZPLCompanyGroupID.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.ZPLCompanyGroupID.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem2.Text = "Add New Entry";
     superToolTip3.Items.Add(toolTipTitleItem2);
     this.ZPLCompanyGroupID.SuperTip = superToolTip3;
     this.ZPLCompanyGroupID.TabIndex = 100018;
     this.ZPLCompanyGroupID.TabStop = false;
     this.ZPLCompanyGroupID.Click += new System.EventHandler(this.ZPLCompanyGroupID_Click);
     //
     // ZPLCompanyId
     //
     this.ZPLCompanyId.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.ZPLCompanyId.Appearance.Options.UseFont = true;
     this.ZPLCompanyId.Image = ((System.Drawing.Image)(resources.GetObject("ZPLCompanyId.Image")));
     this.ZPLCompanyId.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.ZPLCompanyId.Location = new System.Drawing.Point(149, 47);
     this.ZPLCompanyId.Name = "ZPLCompanyId";
     this.ZPLCompanyId.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.ZPLCompanyId.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem3.Text = "Add New Entry";
     superToolTip4.Items.Add(toolTipTitleItem3);
     this.ZPLCompanyId.SuperTip = superToolTip4;
     this.ZPLCompanyId.TabIndex = 100014;
     this.ZPLCompanyId.TabStop = false;
     this.ZPLCompanyId.Click += new System.EventHandler(this.ZPLCompanyId_Click);
     //
     // labelControl11
     //
     this.labelControl11.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl11.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl11.LineVisible = true;
     this.labelControl11.Location = new System.Drawing.Point(183, 49);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(40, 20);
     this.labelControl11.TabIndex = 100011;
     this.labelControl11.Text = "Name";
     //
     // ZPLSPOId
     //
     this.ZPLSPOId.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.ZPLSPOId.Appearance.Options.UseFont = true;
     this.ZPLSPOId.Image = ((System.Drawing.Image)(resources.GetObject("ZPLSPOId.Image")));
     this.ZPLSPOId.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.ZPLSPOId.Location = new System.Drawing.Point(149, 28);
     this.ZPLSPOId.Name = "ZPLSPOId";
     this.ZPLSPOId.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.ZPLSPOId.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem4.Text = "Add New Entry";
     superToolTip5.Items.Add(toolTipTitleItem4);
     this.ZPLSPOId.SuperTip = superToolTip5;
     this.ZPLSPOId.TabIndex = 100009;
     this.ZPLSPOId.TabStop = false;
     this.ZPLSPOId.Click += new System.EventHandler(this.ZPLSPOId_Click);
     //
     // ZtxtSPOName
     //
     this.ZtxtSPOName.Location = new System.Drawing.Point(220, 28);
     this.ZtxtSPOName.Name = "ZtxtSPOName";
     this.ZtxtSPOName.Size = new System.Drawing.Size(136, 20);
     this.ZtxtSPOName.TabIndex = 1;
     this.ZtxtSPOName.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.ZtxtSPOName_PreviewKeyDown);
     //
     // labelControl12
     //
     this.labelControl12.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl12.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl12.LineVisible = true;
     this.labelControl12.Location = new System.Drawing.Point(10, 67);
     this.labelControl12.Name = "labelControl12";
     this.labelControl12.Size = new System.Drawing.Size(95, 20);
     this.labelControl12.TabIndex = 100017;
     this.labelControl12.Text = "CGroup Id";
     //
     // labelControl10
     //
     this.labelControl10.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl10.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl10.LineVisible = true;
     this.labelControl10.Location = new System.Drawing.Point(10, 47);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(95, 20);
     this.labelControl10.TabIndex = 100013;
     this.labelControl10.Text = "Company Id";
     //
     // labelControl8
     //
     this.labelControl8.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl8.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl8.LineVisible = true;
     this.labelControl8.Location = new System.Drawing.Point(10, 28);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(95, 20);
     this.labelControl8.TabIndex = 100008;
     this.labelControl8.Text = "SPO Id";
     //
     // labelControl16
     //
     this.labelControl16.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl16.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl16.LineVisible = true;
     this.labelControl16.Location = new System.Drawing.Point(10, 104);
     this.labelControl16.Name = "labelControl16";
     this.labelControl16.Size = new System.Drawing.Size(95, 20);
     this.labelControl16.TabIndex = 124255;
     this.labelControl16.Text = "Other Groups";
     //
     // labelControl9
     //
     this.labelControl9.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl9.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl9.LineVisible = true;
     this.labelControl9.Location = new System.Drawing.Point(183, 30);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(40, 20);
     this.labelControl9.TabIndex = 100006;
     this.labelControl9.Text = "Name";
     //
     // btnCancel
     //
     this.btnCancel.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnCancel.Image = ((System.Drawing.Image)(resources.GetObject("btnCancel.Image")));
     this.btnCancel.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnCancel.Location = new System.Drawing.Point(88, 6);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(70, 23);
     toolTipItem2.Text = "Cancel Current Operation";
     superToolTip6.Items.Add(toolTipItem2);
     this.btnCancel.SuperTip = superToolTip6;
     this.btnCancel.TabIndex = 10;
     this.btnCancel.Text = "&Cancel";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // btnAdd
     //
     this.btnAdd.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnAdd.Image = ((System.Drawing.Image)(resources.GetObject("btnAdd.Image")));
     this.btnAdd.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnAdd.Location = new System.Drawing.Point(12, 6);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(70, 23);
     toolTipItem3.Text = "Add New Module";
     superToolTip7.Items.Add(toolTipItem3);
     this.btnAdd.SuperTip = superToolTip7;
     this.btnAdd.TabIndex = 9;
     this.btnAdd.Text = " &Add ";
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // groupControl2
     //
     this.groupControl2.Controls.Add(this.btnAdd);
     this.groupControl2.Controls.Add(this.btnCancel);
     this.groupControl2.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.groupControl2.Location = new System.Drawing.Point(0, 356);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.ShowCaption = false;
     this.groupControl2.Size = new System.Drawing.Size(567, 34);
     this.groupControl2.TabIndex = 13;
     //
     // frmZones
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(567, 390);
     this.Controls.Add(this.groupControl2);
     this.Controls.Add(this.groupControl5);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Name = "frmZones";
     this.ShowIcon = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Zones";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmZones_FormClosing);
     this.Load += new System.EventHandler(this.VendorEmployees_Load);
     this.Enter += new System.EventHandler(this.frmZones_Enter);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).EndInit();
     this.groupControl5.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ZdatagridRegionalAllocation)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtOtherGroup.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtManagerId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtCompanyGroupID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtManagerName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtGroupName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtCompanyName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtCompanyId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtSPOID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZchkDiscontinue.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZchkMerck.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtSPOName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Пример #55
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(GroupProjectView));
     DevExpress.Utils.SerializableAppearanceObject  serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem  toolTipItem1  = new DevExpress.Utils.ToolTipItem();
     this.cJiaPanel1         = new CJia.Controls.CJiaPanel();
     this.btnDelete1         = new CJia.Controls.BtnDelete();
     this.btnSave1           = new CJia.Controls.BtnSave();
     this.btnAdd1            = new CJia.Controls.BtnAdd();
     this.cJiaLabel7         = new CJia.Controls.CJiaLabel();
     this.cJiaLabel6         = new CJia.Controls.CJiaLabel();
     this.cJiaTextBox1       = new CJia.Controls.CJiaTextBox();
     this.cJiaLabel5         = new CJia.Controls.CJiaLabel();
     this.cJiaLabel4         = new CJia.Controls.CJiaLabel();
     this.cJiaLabel3         = new CJia.Controls.CJiaLabel();
     this.cJiaLabel1         = new CJia.Controls.CJiaLabel();
     this.cJiaLabel2         = new CJia.Controls.CJiaLabel();
     this.cJiaTextBox5       = new CJia.Controls.CJiaTextBox();
     this.cJiaTextBox3       = new CJia.Controls.CJiaTextBox();
     this.cJiaTextBox2       = new CJia.Controls.CJiaTextBox();
     this.cJiaPanel3         = new CJia.Controls.CJiaPanel();
     this.cJiaTextSearch1    = new CJia.Controls.CJiaTextSearch();
     this.cJiaLabel38        = new CJia.Controls.CJiaLabel();
     this.cJiaComboBox21     = new CJia.Controls.CJiaComboBox2();
     this.cJiaComboBox21View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.cJiaComboBox22     = new CJia.Controls.CJiaComboBox2();
     this.cJiaComboBox22View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.cJiaComboBox23     = new CJia.Controls.CJiaComboBox2();
     this.cJiaComboBox23View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.cJiaPanel2         = new CJia.Controls.CJiaPanel();
     ((System.ComponentModel.ISupportInitialize)(this.cJiaPanel1)).BeginInit();
     this.cJiaPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cJiaTextBox1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cJiaTextBox5.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cJiaTextBox3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cJiaTextBox2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cJiaPanel3)).BeginInit();
     this.cJiaPanel3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cJiaTextSearch1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cJiaComboBox21.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cJiaComboBox21View)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cJiaComboBox22.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cJiaComboBox22View)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cJiaComboBox23.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cJiaComboBox23View)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cJiaPanel2)).BeginInit();
     this.SuspendLayout();
     //
     // cJiaPanel1
     //
     this.cJiaPanel1.Controls.Add(this.cJiaComboBox23);
     this.cJiaPanel1.Controls.Add(this.cJiaComboBox22);
     this.cJiaPanel1.Controls.Add(this.cJiaComboBox21);
     this.cJiaPanel1.Controls.Add(this.btnDelete1);
     this.cJiaPanel1.Controls.Add(this.btnSave1);
     this.cJiaPanel1.Controls.Add(this.btnAdd1);
     this.cJiaPanel1.Controls.Add(this.cJiaLabel7);
     this.cJiaPanel1.Controls.Add(this.cJiaLabel6);
     this.cJiaPanel1.Controls.Add(this.cJiaTextBox1);
     this.cJiaPanel1.Controls.Add(this.cJiaLabel5);
     this.cJiaPanel1.Controls.Add(this.cJiaLabel4);
     this.cJiaPanel1.Controls.Add(this.cJiaLabel3);
     this.cJiaPanel1.Controls.Add(this.cJiaLabel1);
     this.cJiaPanel1.Controls.Add(this.cJiaLabel2);
     this.cJiaPanel1.Controls.Add(this.cJiaTextBox5);
     this.cJiaPanel1.Controls.Add(this.cJiaTextBox3);
     this.cJiaPanel1.Controls.Add(this.cJiaTextBox2);
     this.cJiaPanel1.Location             = new System.Drawing.Point(233, 3);
     this.cJiaPanel1.LookAndFeel.SkinName = "Office 2010 Silver";
     this.cJiaPanel1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.cJiaPanel1.Name     = "cJiaPanel1";
     this.cJiaPanel1.Size     = new System.Drawing.Size(966, 150);
     this.cJiaPanel1.TabIndex = 55;
     //
     // btnDelete1
     //
     this.btnDelete1.Appearance.Font                 = new System.Drawing.Font("微软雅黑", 10F);
     this.btnDelete1.Appearance.ForeColor            = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(57)))), ((int)(((byte)(91)))));
     this.btnDelete1.Appearance.Options.UseFont      = true;
     this.btnDelete1.Appearance.Options.UseForeColor = true;
     this.btnDelete1.CustomText           = "删除(F6)";
     this.btnDelete1.Image                = ((System.Drawing.Image)(resources.GetObject("btnDelete1.Image")));
     this.btnDelete1.Location             = new System.Drawing.Point(719, 117);
     this.btnDelete1.LookAndFeel.SkinName = "Office 2010 Blue";
     this.btnDelete1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnDelete1.Name       = "btnDelete1";
     this.btnDelete1.Selectable = false;
     this.btnDelete1.Size       = new System.Drawing.Size(80, 28);
     this.btnDelete1.TabIndex   = 88;
     this.btnDelete1.Text       = "删除(F6)";
     //
     // btnSave1
     //
     this.btnSave1.Appearance.Font                 = new System.Drawing.Font("微软雅黑", 10F);
     this.btnSave1.Appearance.ForeColor            = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(57)))), ((int)(((byte)(91)))));
     this.btnSave1.Appearance.Options.UseFont      = true;
     this.btnSave1.Appearance.Options.UseForeColor = true;
     this.btnSave1.CustomText           = "保存(F8)";
     this.btnSave1.Image                = ((System.Drawing.Image)(resources.GetObject("btnSave1.Image")));
     this.btnSave1.Location             = new System.Drawing.Point(607, 116);
     this.btnSave1.LookAndFeel.SkinName = "Office 2010 Blue";
     this.btnSave1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnSave1.Name       = "btnSave1";
     this.btnSave1.Selectable = false;
     this.btnSave1.Size       = new System.Drawing.Size(80, 28);
     this.btnSave1.TabIndex   = 87;
     this.btnSave1.Text       = "保存(F8)";
     //
     // btnAdd1
     //
     this.btnAdd1.Appearance.Font                 = new System.Drawing.Font("微软雅黑", 10F);
     this.btnAdd1.Appearance.ForeColor            = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(57)))), ((int)(((byte)(91)))));
     this.btnAdd1.Appearance.Options.UseFont      = true;
     this.btnAdd1.Appearance.Options.UseForeColor = true;
     this.btnAdd1.CustomText           = "添加(F2)";
     this.btnAdd1.Image                = ((System.Drawing.Image)(resources.GetObject("btnAdd1.Image")));
     this.btnAdd1.Location             = new System.Drawing.Point(497, 117);
     this.btnAdd1.LookAndFeel.SkinName = "Office 2010 Blue";
     this.btnAdd1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnAdd1.Name       = "btnAdd1";
     this.btnAdd1.Selectable = false;
     this.btnAdd1.Size       = new System.Drawing.Size(80, 28);
     this.btnAdd1.TabIndex   = 85;
     this.btnAdd1.Text       = "添加(F2)";
     //
     // cJiaLabel7
     //
     this.cJiaLabel7.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.cJiaLabel7.Location        = new System.Drawing.Point(547, 49);
     this.cJiaLabel7.Name            = "cJiaLabel7";
     this.cJiaLabel7.Size            = new System.Drawing.Size(105, 16);
     this.cJiaLabel7.TabIndex        = 68;
     this.cJiaLabel7.Text            = "常用项目类别:";
     //
     // cJiaLabel6
     //
     this.cJiaLabel6.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.cJiaLabel6.Location        = new System.Drawing.Point(310, 48);
     this.cJiaLabel6.Name            = "cJiaLabel6";
     this.cJiaLabel6.Size            = new System.Drawing.Size(45, 16);
     this.cJiaLabel6.TabIndex        = 66;
     this.cJiaLabel6.Text            = "价格:";
     //
     // cJiaTextBox1
     //
     this.cJiaTextBox1.Location = new System.Drawing.Point(363, 45);
     this.cJiaTextBox1.Name     = "cJiaTextBox1";
     this.cJiaTextBox1.Properties.Appearance.BackColor              = System.Drawing.Color.White;
     this.cJiaTextBox1.Properties.Appearance.Font                   = new System.Drawing.Font("Tahoma", 10F);
     this.cJiaTextBox1.Properties.Appearance.Options.UseBackColor   = true;
     this.cJiaTextBox1.Properties.Appearance.Options.UseFont        = true;
     this.cJiaTextBox1.Properties.LookAndFeel.SkinName              = "Office 2010 Blue";
     this.cJiaTextBox1.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.cJiaTextBox1.Size     = new System.Drawing.Size(135, 22);
     this.cJiaTextBox1.TabIndex = 65;
     //
     // cJiaLabel5
     //
     this.cJiaLabel5.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.cJiaLabel5.Location        = new System.Drawing.Point(577, 21);
     this.cJiaLabel5.Name            = "cJiaLabel5";
     this.cJiaLabel5.Size            = new System.Drawing.Size(75, 16);
     this.cJiaLabel5.TabIndex        = 64;
     this.cJiaLabel5.Text            = "餐前项目:";
     //
     // cJiaLabel4
     //
     this.cJiaLabel4.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.cJiaLabel4.Location        = new System.Drawing.Point(2, 82);
     this.cJiaLabel4.Name            = "cJiaLabel4";
     this.cJiaLabel4.Size            = new System.Drawing.Size(75, 16);
     this.cJiaLabel4.TabIndex        = 62;
     this.cJiaLabel4.Text            = "备注信息:";
     //
     // cJiaLabel3
     //
     this.cJiaLabel3.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.cJiaLabel3.Location        = new System.Drawing.Point(2, 48);
     this.cJiaLabel3.Name            = "cJiaLabel3";
     this.cJiaLabel3.Size            = new System.Drawing.Size(75, 16);
     this.cJiaLabel3.TabIndex        = 61;
     this.cJiaLabel3.Text            = "组合类别:";
     //
     // cJiaLabel1
     //
     this.cJiaLabel1.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.cJiaLabel1.Location        = new System.Drawing.Point(2, 18);
     this.cJiaLabel1.Name            = "cJiaLabel1";
     this.cJiaLabel1.Size            = new System.Drawing.Size(75, 16);
     this.cJiaLabel1.TabIndex        = 60;
     this.cJiaLabel1.Text            = "组合名称:";
     //
     // cJiaLabel2
     //
     this.cJiaLabel2.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.cJiaLabel2.Location        = new System.Drawing.Point(295, 20);
     this.cJiaLabel2.Name            = "cJiaLabel2";
     this.cJiaLabel2.Size            = new System.Drawing.Size(60, 16);
     this.cJiaLabel2.TabIndex        = 59;
     this.cJiaLabel2.Text            = "排序号:";
     //
     // cJiaTextBox5
     //
     this.cJiaTextBox5.Location = new System.Drawing.Point(88, 79);
     this.cJiaTextBox5.Name     = "cJiaTextBox5";
     this.cJiaTextBox5.Properties.Appearance.BackColor              = System.Drawing.Color.White;
     this.cJiaTextBox5.Properties.Appearance.Font                   = new System.Drawing.Font("Tahoma", 10F);
     this.cJiaTextBox5.Properties.Appearance.Options.UseBackColor   = true;
     this.cJiaTextBox5.Properties.Appearance.Options.UseFont        = true;
     this.cJiaTextBox5.Properties.LookAndFeel.SkinName              = "Office 2010 Blue";
     this.cJiaTextBox5.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.cJiaTextBox5.Size     = new System.Drawing.Size(410, 22);
     this.cJiaTextBox5.TabIndex = 58;
     //
     // cJiaTextBox3
     //
     this.cJiaTextBox3.Location = new System.Drawing.Point(363, 16);
     this.cJiaTextBox3.Name     = "cJiaTextBox3";
     this.cJiaTextBox3.Properties.Appearance.BackColor              = System.Drawing.Color.White;
     this.cJiaTextBox3.Properties.Appearance.Font                   = new System.Drawing.Font("Tahoma", 10F);
     this.cJiaTextBox3.Properties.Appearance.Options.UseBackColor   = true;
     this.cJiaTextBox3.Properties.Appearance.Options.UseFont        = true;
     this.cJiaTextBox3.Properties.LookAndFeel.SkinName              = "Office 2010 Blue";
     this.cJiaTextBox3.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.cJiaTextBox3.Size     = new System.Drawing.Size(135, 22);
     this.cJiaTextBox3.TabIndex = 57;
     //
     // cJiaTextBox2
     //
     this.cJiaTextBox2.Location = new System.Drawing.Point(88, 16);
     this.cJiaTextBox2.Name     = "cJiaTextBox2";
     this.cJiaTextBox2.Properties.Appearance.BackColor              = System.Drawing.Color.White;
     this.cJiaTextBox2.Properties.Appearance.Font                   = new System.Drawing.Font("Tahoma", 10F);
     this.cJiaTextBox2.Properties.Appearance.Options.UseBackColor   = true;
     this.cJiaTextBox2.Properties.Appearance.Options.UseFont        = true;
     this.cJiaTextBox2.Properties.LookAndFeel.SkinName              = "Office 2010 Blue";
     this.cJiaTextBox2.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.cJiaTextBox2.Size     = new System.Drawing.Size(135, 22);
     this.cJiaTextBox2.TabIndex = 56;
     //
     // cJiaPanel3
     //
     this.cJiaPanel3.Controls.Add(this.cJiaTextSearch1);
     this.cJiaPanel3.Controls.Add(this.cJiaLabel38);
     this.cJiaPanel3.Location             = new System.Drawing.Point(3, 6);
     this.cJiaPanel3.LookAndFeel.SkinName = "Office 2010 Silver";
     this.cJiaPanel3.LookAndFeel.UseDefaultLookAndFeel = false;
     this.cJiaPanel3.Name     = "cJiaPanel3";
     this.cJiaPanel3.Size     = new System.Drawing.Size(226, 594);
     this.cJiaPanel3.TabIndex = 69;
     //
     // cJiaTextSearch1
     //
     this.cJiaTextSearch1.EditValue = "";
     this.cJiaTextSearch1.Location  = new System.Drawing.Point(71, 13);
     this.cJiaTextSearch1.Name      = "cJiaTextSearch1";
     this.cJiaTextSearch1.PointText = "";
     this.cJiaTextSearch1.Properties.Appearance.BorderColor            = System.Drawing.Color.Salmon;
     this.cJiaTextSearch1.Properties.Appearance.Font                   = new System.Drawing.Font("Tahoma", 14F);
     this.cJiaTextSearch1.Properties.Appearance.ForeColor              = System.Drawing.Color.LightGray;
     this.cJiaTextSearch1.Properties.Appearance.Options.UseBorderColor = true;
     this.cJiaTextSearch1.Properties.Appearance.Options.UseFont        = true;
     this.cJiaTextSearch1.Properties.Appearance.Options.UseForeColor   = true;
     toolTipItem1.Text = "查询";
     superToolTip1.Items.Add(toolTipItem1);
     this.cJiaTextSearch1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, ((System.Drawing.Image)(resources.GetObject("cJiaTextSearch1.Properties.Buttons"))), new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", null, superToolTip1, true)
     });
     this.cJiaTextSearch1.Properties.LookAndFeel.SkinName = "Office 2010 Blue";
     this.cJiaTextSearch1.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.cJiaTextSearch1.Size     = new System.Drawing.Size(152, 32);
     this.cJiaTextSearch1.TabIndex = 8;
     //
     // cJiaLabel38
     //
     this.cJiaLabel38.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.cJiaLabel38.Location        = new System.Drawing.Point(2, 22);
     this.cJiaLabel38.Name            = "cJiaLabel38";
     this.cJiaLabel38.Size            = new System.Drawing.Size(65, 16);
     this.cJiaLabel38.TabIndex        = 7;
     this.cJiaLabel38.Text            = "查找内容:";
     //
     // cJiaComboBox21
     //
     this.cJiaComboBox21.Location = new System.Drawing.Point(88, 51);
     this.cJiaComboBox21.Name     = "cJiaComboBox21";
     this.cJiaComboBox21.Properties.AllowNullInput             = DevExpress.Utils.DefaultBoolean.True;
     this.cJiaComboBox21.Properties.Appearance.Font            = new System.Drawing.Font("Tahoma", 10F);
     this.cJiaComboBox21.Properties.Appearance.Options.UseFont = true;
     this.cJiaComboBox21.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Down)
     });
     this.cJiaComboBox21.Properties.ImmediatePopup       = true;
     this.cJiaComboBox21.Properties.LookAndFeel.SkinName = "Office 2010 Blue";
     this.cJiaComboBox21.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.cJiaComboBox21.Properties.PopupFilterMode  = DevExpress.XtraEditors.PopupFilterMode.Contains;
     this.cJiaComboBox21.Properties.PopupFormMinSize = new System.Drawing.Size(150, 150);
     this.cJiaComboBox21.Properties.PopupFormSize    = new System.Drawing.Size(150, 150);
     this.cJiaComboBox21.Properties.ShowFooter       = false;
     this.cJiaComboBox21.Properties.View             = this.cJiaComboBox21View;
     this.cJiaComboBox21.Size     = new System.Drawing.Size(150, 22);
     this.cJiaComboBox21.TabIndex = 70;
     //
     // cJiaComboBox21View
     //
     this.cJiaComboBox21View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.None;
     this.cJiaComboBox21View.Name           = "cJiaComboBox21View";
     this.cJiaComboBox21View.OptionsBehavior.AutoPopulateColumns          = false;
     this.cJiaComboBox21View.OptionsCustomization.AllowFilter             = false;
     this.cJiaComboBox21View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.cJiaComboBox21View.OptionsView.ShowColumnHeaders = false;
     this.cJiaComboBox21View.OptionsView.ShowGroupPanel    = false;
     //
     // cJiaComboBox22
     //
     this.cJiaComboBox22.Location = new System.Drawing.Point(664, 12);
     this.cJiaComboBox22.Name     = "cJiaComboBox22";
     this.cJiaComboBox22.Properties.AllowNullInput             = DevExpress.Utils.DefaultBoolean.True;
     this.cJiaComboBox22.Properties.Appearance.Font            = new System.Drawing.Font("Tahoma", 10F);
     this.cJiaComboBox22.Properties.Appearance.Options.UseFont = true;
     this.cJiaComboBox22.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Down)
     });
     this.cJiaComboBox22.Properties.ImmediatePopup       = true;
     this.cJiaComboBox22.Properties.LookAndFeel.SkinName = "Office 2010 Blue";
     this.cJiaComboBox22.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.cJiaComboBox22.Properties.PopupFilterMode  = DevExpress.XtraEditors.PopupFilterMode.Contains;
     this.cJiaComboBox22.Properties.PopupFormMinSize = new System.Drawing.Size(150, 150);
     this.cJiaComboBox22.Properties.PopupFormSize    = new System.Drawing.Size(150, 150);
     this.cJiaComboBox22.Properties.ShowFooter       = false;
     this.cJiaComboBox22.Properties.View             = this.cJiaComboBox22View;
     this.cJiaComboBox22.Size     = new System.Drawing.Size(150, 22);
     this.cJiaComboBox22.TabIndex = 89;
     //
     // cJiaComboBox22View
     //
     this.cJiaComboBox22View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.None;
     this.cJiaComboBox22View.Name           = "cJiaComboBox22View";
     this.cJiaComboBox22View.OptionsBehavior.AutoPopulateColumns          = false;
     this.cJiaComboBox22View.OptionsCustomization.AllowFilter             = false;
     this.cJiaComboBox22View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.cJiaComboBox22View.OptionsView.ShowColumnHeaders = false;
     this.cJiaComboBox22View.OptionsView.ShowGroupPanel    = false;
     //
     // cJiaComboBox23
     //
     this.cJiaComboBox23.Location = new System.Drawing.Point(664, 46);
     this.cJiaComboBox23.Name     = "cJiaComboBox23";
     this.cJiaComboBox23.Properties.AllowNullInput             = DevExpress.Utils.DefaultBoolean.True;
     this.cJiaComboBox23.Properties.Appearance.Font            = new System.Drawing.Font("Tahoma", 10F);
     this.cJiaComboBox23.Properties.Appearance.Options.UseFont = true;
     this.cJiaComboBox23.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Down)
     });
     this.cJiaComboBox23.Properties.ImmediatePopup       = true;
     this.cJiaComboBox23.Properties.LookAndFeel.SkinName = "Office 2010 Blue";
     this.cJiaComboBox23.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.cJiaComboBox23.Properties.PopupFilterMode  = DevExpress.XtraEditors.PopupFilterMode.Contains;
     this.cJiaComboBox23.Properties.PopupFormMinSize = new System.Drawing.Size(150, 150);
     this.cJiaComboBox23.Properties.PopupFormSize    = new System.Drawing.Size(150, 150);
     this.cJiaComboBox23.Properties.ShowFooter       = false;
     this.cJiaComboBox23.Properties.View             = this.cJiaComboBox23View;
     this.cJiaComboBox23.Size     = new System.Drawing.Size(150, 22);
     this.cJiaComboBox23.TabIndex = 90;
     //
     // cJiaComboBox23View
     //
     this.cJiaComboBox23View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.None;
     this.cJiaComboBox23View.Name           = "cJiaComboBox23View";
     this.cJiaComboBox23View.OptionsBehavior.AutoPopulateColumns          = false;
     this.cJiaComboBox23View.OptionsCustomization.AllowFilter             = false;
     this.cJiaComboBox23View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.cJiaComboBox23View.OptionsView.ShowColumnHeaders = false;
     this.cJiaComboBox23View.OptionsView.ShowGroupPanel    = false;
     //
     // cJiaPanel2
     //
     this.cJiaPanel2.Location             = new System.Drawing.Point(233, 159);
     this.cJiaPanel2.LookAndFeel.SkinName = "Office 2010 Silver";
     this.cJiaPanel2.LookAndFeel.UseDefaultLookAndFeel = false;
     this.cJiaPanel2.Name     = "cJiaPanel2";
     this.cJiaPanel2.Size     = new System.Drawing.Size(964, 438);
     this.cJiaPanel2.TabIndex = 70;
     //
     // GroupProjectView
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.cJiaPanel2);
     this.Controls.Add(this.cJiaPanel3);
     this.Controls.Add(this.cJiaPanel1);
     this.Name = "GroupProjectView";
     this.Size = new System.Drawing.Size(1200, 600);
     ((System.ComponentModel.ISupportInitialize)(this.cJiaPanel1)).EndInit();
     this.cJiaPanel1.ResumeLayout(false);
     this.cJiaPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cJiaTextBox1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cJiaTextBox5.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cJiaTextBox3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cJiaTextBox2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cJiaPanel3)).EndInit();
     this.cJiaPanel3.ResumeLayout(false);
     this.cJiaPanel3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cJiaTextSearch1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cJiaComboBox21.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cJiaComboBox21View)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cJiaComboBox22.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cJiaComboBox22View)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cJiaComboBox23.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cJiaComboBox23View)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cJiaPanel2)).EndInit();
     this.ResumeLayout(false);
 }
Пример #56
0
        /// <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.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem1 = new DevExpress.Utils.ToolTipItem();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MinOrderForm));
            this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
            this.grid = new DevExpress.XtraGrid.GridControl();
            this.gridView = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.colid = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colGroup = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colName = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colPrice = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colQuantityInPack = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colMeasure = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colSupplier = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colCode = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colBarcode = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colReserved = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colSAPMinOrder = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colMinOrder = new DevExpress.XtraGrid.Columns.GridColumn();
            this.repositoryItemSpinEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
            this.BarManager = new DevExpress.ExpressApp.Win.Templates.Controls.XafBarManager(this.components);
            this.xafBar2 = new DevExpress.ExpressApp.Win.Templates.Controls.XafBar();
            this.xafBar3 = new DevExpress.ExpressApp.Win.Templates.Controls.XafBar();
            this.cbCategory = new DevExpress.XtraBars.BarEditItem();
            this.cbRepCategory = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
            this.btRefresh = new DevExpress.XtraBars.BarButtonItem();
            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.btClear = new DevExpress.XtraBars.BarButtonItem();
            this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
            this.panelControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grid)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.BarManager)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbRepCategory)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
            this.SuspendLayout();
            // 
            // panelControl1
            // 
            this.panelControl1.Controls.Add(this.grid);
            this.panelControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panelControl1.Location = new System.Drawing.Point(0, 47);
            this.panelControl1.Name = "panelControl1";
            this.panelControl1.Size = new System.Drawing.Size(769, 401);
            this.panelControl1.TabIndex = 4;
            // 
            // grid
            // 
            this.grid.Dock = System.Windows.Forms.DockStyle.Fill;
            this.grid.Location = new System.Drawing.Point(2, 2);
            this.grid.MainView = this.gridView;
            this.grid.Name = "grid";
            this.grid.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemSpinEdit1,
            this.repositoryItemTextEdit1});
            this.grid.Size = new System.Drawing.Size(765, 397);
            this.grid.TabIndex = 1;
            this.grid.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridView});
            // 
            // gridView
            // 
            this.gridView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.colid,
            this.colGroup,
            this.colName,
            this.colPrice,
            this.colQuantityInPack,
            this.colMeasure,
            this.colSupplier,
            this.colCode,
            this.colBarcode,
            this.colReserved,
            this.colSAPMinOrder,
            this.colMinOrder});
            this.gridView.GridControl = this.grid;
            this.gridView.Name = "gridView";
            this.gridView.OptionsView.ShowAutoFilterRow = true;
            this.gridView.OptionsView.ShowFooter = true;
            this.gridView.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
            new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colName, DevExpress.Data.ColumnSortOrder.Ascending)});
            // 
            // colid
            // 
            this.colid.FieldName = "id";
            this.colid.Name = "colid";
            this.colid.OptionsColumn.AllowEdit = false;
            this.colid.OptionsColumn.AllowFocus = false;
            this.colid.OptionsColumn.ReadOnly = true;
            this.colid.Width = 27;
            // 
            // colGroup
            // 
            this.colGroup.Caption = "Группа товара";
            this.colGroup.FieldName = "Group";
            this.colGroup.Name = "colGroup";
            this.colGroup.OptionsColumn.AllowEdit = false;
            this.colGroup.OptionsColumn.AllowFocus = false;
            this.colGroup.OptionsColumn.ReadOnly = true;
            this.colGroup.Visible = true;
            this.colGroup.VisibleIndex = 2;
            this.colGroup.Width = 100;
            // 
            // colName
            // 
            this.colName.Caption = "Название";
            this.colName.FieldName = "Name";
            this.colName.Name = "colName";
            this.colName.OptionsColumn.AllowEdit = false;
            this.colName.OptionsColumn.AllowFocus = false;
            this.colName.OptionsColumn.ReadOnly = true;
            this.colName.Visible = true;
            this.colName.VisibleIndex = 1;
            this.colName.Width = 120;
            // 
            // colPrice
            // 
            this.colPrice.Caption = "Цена";
            this.colPrice.FieldName = "Price";
            this.colPrice.Name = "colPrice";
            this.colPrice.OptionsColumn.AllowEdit = false;
            this.colPrice.OptionsColumn.AllowFocus = false;
            this.colPrice.OptionsColumn.ReadOnly = true;
            this.colPrice.Visible = true;
            this.colPrice.VisibleIndex = 3;
            this.colPrice.Width = 50;
            // 
            // colQuantityInPack
            // 
            this.colQuantityInPack.Caption = "Кол. в упаковке";
            this.colQuantityInPack.FieldName = "QuantityInPack";
            this.colQuantityInPack.Name = "colQuantityInPack";
            this.colQuantityInPack.OptionsColumn.AllowEdit = false;
            this.colQuantityInPack.OptionsColumn.AllowFocus = false;
            this.colQuantityInPack.OptionsColumn.ReadOnly = true;
            this.colQuantityInPack.Width = 27;
            // 
            // colMeasure
            // 
            this.colMeasure.Caption = "Ед. изм. (шт/упак.)";
            this.colMeasure.FieldName = "Measure";
            this.colMeasure.Name = "colMeasure";
            this.colMeasure.OptionsColumn.AllowEdit = false;
            this.colMeasure.OptionsColumn.AllowFocus = false;
            this.colMeasure.OptionsColumn.ReadOnly = true;
            this.colMeasure.Visible = true;
            this.colMeasure.VisibleIndex = 4;
            this.colMeasure.Width = 50;
            // 
            // colSupplier
            // 
            this.colSupplier.Caption = "Поставщик";
            this.colSupplier.FieldName = "Supplier";
            this.colSupplier.Name = "colSupplier";
            this.colSupplier.OptionsColumn.AllowEdit = false;
            this.colSupplier.OptionsColumn.AllowFocus = false;
            this.colSupplier.OptionsColumn.ReadOnly = true;
            this.colSupplier.Visible = true;
            this.colSupplier.VisibleIndex = 5;
            this.colSupplier.Width = 100;
            // 
            // colCode
            // 
            this.colCode.Caption = "Код товара";
            this.colCode.FieldName = "Code";
            this.colCode.Name = "colCode";
            this.colCode.OptionsColumn.AllowEdit = false;
            this.colCode.OptionsColumn.AllowFocus = false;
            this.colCode.OptionsColumn.ReadOnly = true;
            this.colCode.Width = 27;
            // 
            // colBarcode
            // 
            this.colBarcode.Caption = "Штрихкод";
            this.colBarcode.FieldName = "Barcode";
            this.colBarcode.Name = "colBarcode";
            this.colBarcode.OptionsColumn.AllowEdit = false;
            this.colBarcode.OptionsColumn.AllowFocus = false;
            this.colBarcode.OptionsColumn.ReadOnly = true;
            this.colBarcode.Visible = true;
            this.colBarcode.VisibleIndex = 6;
            this.colBarcode.Width = 50;
            // 
            // colReserved
            // 
            this.colReserved.FieldName = "Reserved";
            this.colReserved.Name = "colReserved";
            this.colReserved.OptionsColumn.AllowEdit = false;
            this.colReserved.OptionsColumn.AllowFocus = false;
            this.colReserved.OptionsColumn.ReadOnly = true;
            this.colReserved.Width = 27;
            // 
            // colSAPMinOrder
            // 
            this.colSAPMinOrder.Caption = "Мин. заказ SAP";
            this.colSAPMinOrder.FieldName = "SAPMinOrder";
            this.colSAPMinOrder.Name = "colSAPMinOrder";
            this.colSAPMinOrder.OptionsColumn.AllowEdit = false;
            this.colSAPMinOrder.OptionsColumn.AllowFocus = false;
            this.colSAPMinOrder.OptionsColumn.ReadOnly = true;
            this.colSAPMinOrder.Visible = true;
            this.colSAPMinOrder.VisibleIndex = 7;
            this.colSAPMinOrder.Width = 33;
            // 
            // colMinOrder
            // 
            this.colMinOrder.AppearanceCell.BackColor = System.Drawing.Color.CornflowerBlue;
            this.colMinOrder.AppearanceCell.Options.UseBackColor = true;
            this.colMinOrder.Caption = "Минимальный заказ";
            this.colMinOrder.ColumnEdit = this.repositoryItemTextEdit1;
            this.colMinOrder.FieldName = "MinOrder";
            this.colMinOrder.MaxWidth = 100;
            this.colMinOrder.Name = "colMinOrder";
            this.colMinOrder.Visible = true;
            this.colMinOrder.VisibleIndex = 0;
            this.colMinOrder.Width = 100;
            // 
            // repositoryItemSpinEdit1
            // 
            this.repositoryItemSpinEdit1.AllowNullInput = DevExpress.Utils.DefaultBoolean.False;
            this.repositoryItemSpinEdit1.AutoHeight = false;
            this.repositoryItemSpinEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.repositoryItemSpinEdit1.IsFloatValue = false;
            this.repositoryItemSpinEdit1.Mask.EditMask = "N00";
            this.repositoryItemSpinEdit1.MaxValue = new decimal(new int[] {
            1000000,
            0,
            0,
            0});
            this.repositoryItemSpinEdit1.Name = "repositoryItemSpinEdit1";
            // 
            // BarManager
            // 
            this.BarManager.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
            this.xafBar2,
            this.xafBar3});
            this.BarManager.Categories.AddRange(new DevExpress.XtraBars.BarManagerCategory[] {
            new DevExpress.XtraBars.BarManagerCategory("Заказы", new System.Guid("f4698afc-915d-46b6-b4ad-e497d23d7378"))});
            this.BarManager.DockControls.Add(this.barDockControlTop);
            this.BarManager.DockControls.Add(this.barDockControlBottom);
            this.BarManager.DockControls.Add(this.barDockControlLeft);
            this.BarManager.DockControls.Add(this.barDockControlRight);
            this.BarManager.Form = this;
            this.BarManager.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.cbCategory,
            this.btClear,
            this.btRefresh});
            this.BarManager.MaxItemId = 14;
            this.BarManager.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.cbRepCategory});
            this.BarManager.StatusBar = this.xafBar2;
            // 
            // xafBar2
            // 
            this.xafBar2.BarName = "StatusBar";
            this.xafBar2.CanDockStyle = DevExpress.XtraBars.BarCanDockStyle.Bottom;
            this.xafBar2.DockCol = 0;
            this.xafBar2.DockRow = 0;
            this.xafBar2.DockStyle = DevExpress.XtraBars.BarDockStyle.Bottom;
            this.xafBar2.OptionsBar.AllowQuickCustomization = false;
            this.xafBar2.OptionsBar.DrawDragBorder = false;
            this.xafBar2.OptionsBar.UseWholeRow = true;
            this.xafBar2.TargetPageCategoryColor = System.Drawing.Color.Empty;
            this.xafBar2.Text = "StatusBar";
            // 
            // xafBar3
            // 
            this.xafBar3.BarName = "Main Toolbar";
            this.xafBar3.DockCol = 0;
            this.xafBar3.DockRow = 0;
            this.xafBar3.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
            this.xafBar3.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.cbCategory, DevExpress.XtraBars.BarItemPaintStyle.Caption),
            new DevExpress.XtraBars.LinkPersistInfo(this.btRefresh, true)});
            this.xafBar3.TargetPageCategoryColor = System.Drawing.Color.Empty;
            this.xafBar3.Text = "Main Toolbar";
            // 
            // cbCategory
            // 
            this.cbCategory.Caption = "Категория магазина";
            this.cbCategory.Edit = this.cbRepCategory;
            this.cbCategory.Id = 9;
            this.cbCategory.Name = "cbCategory";
            this.cbCategory.Width = 171;
            this.cbCategory.EditValueChanged += new System.EventHandler(this.CbCategoryEditValueChanged);
            // 
            // cbRepCategory
            // 
            this.cbRepCategory.AutoComplete = false;
            this.cbRepCategory.AutoHeight = false;
            this.cbRepCategory.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.cbRepCategory.Name = "cbRepCategory";
            this.cbRepCategory.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            // 
            // btRefresh
            // 
            this.btRefresh.Caption = "Обновить";
            this.btRefresh.Glyph = global::ShopOrderCustom.Properties.Resources.reload_all_tabs;
            this.btRefresh.Id = 13;
            this.btRefresh.Name = "btRefresh";
            this.btRefresh.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.BtRefreshItemClick);
            // 
            // 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(769, 47);
            // 
            // barDockControlBottom
            // 
            this.barDockControlBottom.CausesValidation = false;
            this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.barDockControlBottom.Location = new System.Drawing.Point(0, 448);
            this.barDockControlBottom.Size = new System.Drawing.Size(769, 23);
            // 
            // barDockControlLeft
            // 
            this.barDockControlLeft.CausesValidation = false;
            this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
            this.barDockControlLeft.Location = new System.Drawing.Point(0, 47);
            this.barDockControlLeft.Size = new System.Drawing.Size(0, 401);
            // 
            // barDockControlRight
            // 
            this.barDockControlRight.CausesValidation = false;
            this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
            this.barDockControlRight.Location = new System.Drawing.Point(769, 47);
            this.barDockControlRight.Size = new System.Drawing.Size(0, 401);
            // 
            // btClear
            // 
            this.btClear.Caption = "Очистить";
            this.btClear.Enabled = false;
            this.btClear.Glyph = global::ShopOrderCustom.Properties.Resources.edit_clear;
            this.btClear.Id = 12;
            this.btClear.Name = "btClear";
            toolTipTitleItem1.Appearance.Image = global::ShopOrderCustom.Properties.Resources.edit_clear;
            toolTipTitleItem1.Appearance.Options.UseImage = true;
            toolTipTitleItem1.Image = global::ShopOrderCustom.Properties.Resources.edit_clear;
            toolTipTitleItem1.Text = "Очистить все отмеченные позиции";
            toolTipItem1.LeftIndent = 6;
            toolTipItem1.Text = "Очищает все отмеченные позиции у выбранной категории магазина";
            superToolTip1.Items.Add(toolTipTitleItem1);
            superToolTip1.Items.Add(toolTipItem1);
            this.btClear.SuperTip = superToolTip1;
            // 
            // repositoryItemTextEdit1
            // 
            this.repositoryItemTextEdit1.AutoHeight = false;
            this.repositoryItemTextEdit1.Mask.EditMask = "n";
            this.repositoryItemTextEdit1.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
            this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
            // 
            // MinOrderForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(769, 471);
            this.Controls.Add(this.panelControl1);
            this.Controls.Add(this.barDockControlLeft);
            this.Controls.Add(this.barDockControlRight);
            this.Controls.Add(this.barDockControlBottom);
            this.Controls.Add(this.barDockControlTop);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Name = "MinOrderForm";
            this.Text = "Минимальный заказ";
            this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.MinOrderFormFormClosed);
            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
            this.panelControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.grid)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.BarManager)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbRepCategory)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
            this.ResumeLayout(false);

        }
Пример #57
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.Utils.SerializableAppearanceObject  serializableAppearanceObject3 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject  serializableAppearanceObject4 = new DevExpress.Utils.SerializableAppearanceObject();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ArsivGelenGidenEvraklar));
     DevExpress.Utils.SuperToolTip     superToolTip3          = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem3      = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip     superToolTip4          = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem4      = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem      toolTipItem2           = new DevExpress.Utils.ToolTipItem();
     this.repositoryItemMarqueeProgressBar1 = new DevExpress.XtraEditors.Repository.RepositoryItemMarqueeProgressBar();
     this.grdArsivGelenGiden      = new DevExpress.XtraGrid.GridControl();
     this.entityServerModeSource1 = new DevExpress.Data.Linq.EntityServerModeSource();
     this.gridVArsivGelenGiden    = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colId1                            = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colIlkEvrak                       = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colIlgiliEvrak                    = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDosyaNo                        = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTarih                          = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSubeId                         = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEsasKonuNo                     = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colAraSayiNo                      = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colYil                            = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colIlgiliBirimId                  = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colCikaranMakamId                 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colKonusu                         = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colGizililikDerecesiId            = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEkSayisi                       = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colImhaYili                       = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSil                            = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btnKayitSil                       = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.colDuzenle                        = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btnDuzenle                        = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.ribbonControl1                    = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.btnGelenEvraklarYazdir            = new DevExpress.XtraBars.BarButtonItem();
     this.btnGelenEvraklarExcelCiktiAl      = new DevExpress.XtraBars.BarButtonItem();
     this.btnGelenEvraklarPdfCiktiAl        = new DevExpress.XtraBars.BarButtonItem();
     this.btnGelenEvraklarYazdirmaGoruntule = new DevExpress.XtraBars.BarButtonItem();
     this.btnGridiYenile                    = new DevExpress.XtraBars.BarButtonItem();
     this.barEditItem1                      = new DevExpress.XtraBars.BarEditItem();
     this.btnSuresiGelenEvraklar            = new DevExpress.XtraBars.BarButtonItem();
     this.brGridVeriYili                    = new DevExpress.XtraBars.BarEditItem();
     this.repositoryItemSpinEdit1           = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
     this.btnYiliUygula                     = new DevExpress.XtraBars.BarButtonItem();
     this.btnYeniArsiv                      = new DevExpress.XtraBars.BarButtonItem();
     this.ribbonPageCategory1               = new DevExpress.XtraBars.Ribbon.RibbonPageCategory();
     this.rpageGelenEvraklar                = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.rpgAyarlar                        = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup2                  = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup1                  = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonStatusBar1                  = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.colId                          = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEvrakKayitNo                = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEvrakKayitTarihi            = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEvrakiCikaranMakamId        = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTarihTSG                    = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDosyaNoKonusu               = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colGizlilikDerecesiId          = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colGuvenlikNoOncelikDerecesiId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colGonderdigiMakamId           = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colAciklama                    = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDurum                       = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEvrakSonTarihi              = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEvrakiCikaranMakam          = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colGizlilikDerecesi            = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colGonderdigiMakam             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colGuvenlikNoOncelikDerecesi   = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn1                    = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ribbonPageGroup3               = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.btnRaporHazirla                = new DevExpress.XtraBars.BarButtonItem();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMarqueeProgressBar1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdArsivGelenGiden)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.entityServerModeSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridVArsivGelenGiden)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnKayitSil)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnDuzenle)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).BeginInit();
     this.SuspendLayout();
     //
     // repositoryItemMarqueeProgressBar1
     //
     this.repositoryItemMarqueeProgressBar1.Name = "repositoryItemMarqueeProgressBar1";
     //
     // grdArsivGelenGiden
     //
     this.grdArsivGelenGiden.Cursor     = System.Windows.Forms.Cursors.Default;
     this.grdArsivGelenGiden.DataSource = this.entityServerModeSource1;
     this.grdArsivGelenGiden.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.grdArsivGelenGiden.Location   = new System.Drawing.Point(0, 142);
     this.grdArsivGelenGiden.MainView   = this.gridVArsivGelenGiden;
     this.grdArsivGelenGiden.Name       = "grdArsivGelenGiden";
     this.grdArsivGelenGiden.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.btnKayitSil,
         this.btnDuzenle
     });
     this.grdArsivGelenGiden.Size     = new System.Drawing.Size(1023, 262);
     this.grdArsivGelenGiden.TabIndex = 0;
     this.grdArsivGelenGiden.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridVArsivGelenGiden
     });
     //
     // entityServerModeSource1
     //
     this.entityServerModeSource1.DefaultSorting = "Id ASC";
     this.entityServerModeSource1.ElementType    = typeof(ETS.VeriKatmani.ArsivGelenGiden);
     this.entityServerModeSource1.KeyExpression  = "Id";
     //
     // gridVArsivGelenGiden
     //
     this.gridVArsivGelenGiden.Appearance.SelectedRow.BackColor            = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.gridVArsivGelenGiden.Appearance.SelectedRow.BackColor2           = System.Drawing.Color.Silver;
     this.gridVArsivGelenGiden.Appearance.SelectedRow.GradientMode         = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gridVArsivGelenGiden.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gridVArsivGelenGiden.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.colId1,
         this.colIlkEvrak,
         this.colIlgiliEvrak,
         this.colDosyaNo,
         this.colTarih,
         this.colSubeId,
         this.colEsasKonuNo,
         this.colAraSayiNo,
         this.colYil,
         this.colIlgiliBirimId,
         this.colCikaranMakamId,
         this.colKonusu,
         this.colGizililikDerecesiId,
         this.colEkSayisi,
         this.colImhaYili,
         this.colSil,
         this.colDuzenle
     });
     this.gridVArsivGelenGiden.FocusRectStyle                               = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.None;
     this.gridVArsivGelenGiden.GridControl                                  = this.grdArsivGelenGiden;
     this.gridVArsivGelenGiden.Name                                         = "gridVArsivGelenGiden";
     this.gridVArsivGelenGiden.OptionsFind.AlwaysVisible                    = true;
     this.gridVArsivGelenGiden.OptionsPrint.PrintDetails                    = true;
     this.gridVArsivGelenGiden.OptionsPrint.PrintFilterInfo                 = true;
     this.gridVArsivGelenGiden.OptionsPrint.PrintPreview                    = true;
     this.gridVArsivGelenGiden.OptionsPrint.SplitCellPreviewAcrossPages     = true;
     this.gridVArsivGelenGiden.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridVArsivGelenGiden.OptionsSelection.EnableAppearanceFocusedRow  = false;
     this.gridVArsivGelenGiden.OptionsSelection.MultiSelect                 = true;
     this.gridVArsivGelenGiden.OptionsView.EnableAppearanceEvenRow          = true;
     this.gridVArsivGelenGiden.OptionsView.EnableAppearanceOddRow           = true;
     this.gridVArsivGelenGiden.OptionsView.RowAutoHeight                    = true;
     this.gridVArsivGelenGiden.OptionsView.ShowFooter                       = true;
     //
     // colId1
     //
     this.colId1.FieldName = "Id";
     this.colId1.Name      = "colId1";
     this.colId1.OptionsColumn.AllowEdit = false;
     //
     // colIlkEvrak
     //
     this.colIlkEvrak.Caption   = "İlk Evrak";
     this.colIlkEvrak.FieldName = "IlkEvrak";
     this.colIlkEvrak.Name      = "colIlkEvrak";
     this.colIlkEvrak.OptionsColumn.AllowEdit = false;
     this.colIlkEvrak.Visible      = true;
     this.colIlkEvrak.VisibleIndex = 0;
     this.colIlkEvrak.Width        = 62;
     //
     // colIlgiliEvrak
     //
     this.colIlgiliEvrak.Caption   = "İlgili Evrak";
     this.colIlgiliEvrak.FieldName = "IlgiliEvrak";
     this.colIlgiliEvrak.Name      = "colIlgiliEvrak";
     this.colIlgiliEvrak.OptionsColumn.AllowEdit = false;
     this.colIlgiliEvrak.Visible      = true;
     this.colIlgiliEvrak.VisibleIndex = 1;
     this.colIlgiliEvrak.Width        = 62;
     //
     // colDosyaNo
     //
     this.colDosyaNo.Caption   = "Dosya No";
     this.colDosyaNo.FieldName = "DosyaNo";
     this.colDosyaNo.Name      = "colDosyaNo";
     this.colDosyaNo.OptionsColumn.AllowEdit = false;
     this.colDosyaNo.Visible      = true;
     this.colDosyaNo.VisibleIndex = 2;
     this.colDosyaNo.Width        = 62;
     //
     // colTarih
     //
     this.colTarih.Caption   = "Tarih";
     this.colTarih.FieldName = "Tarih";
     this.colTarih.Name      = "colTarih";
     this.colTarih.OptionsColumn.AllowEdit = false;
     this.colTarih.Visible      = true;
     this.colTarih.VisibleIndex = 4;
     this.colTarih.Width        = 64;
     //
     // colSubeId
     //
     this.colSubeId.Caption   = "Şube";
     this.colSubeId.FieldName = "Subeler.Sube";
     this.colSubeId.Name      = "colSubeId";
     this.colSubeId.OptionsColumn.AllowEdit = false;
     this.colSubeId.Visible      = true;
     this.colSubeId.VisibleIndex = 5;
     this.colSubeId.Width        = 60;
     //
     // colEsasKonuNo
     //
     this.colEsasKonuNo.Caption   = "Esas Konu No";
     this.colEsasKonuNo.FieldName = "EsasKonuNo";
     this.colEsasKonuNo.Name      = "colEsasKonuNo";
     this.colEsasKonuNo.OptionsColumn.AllowEdit = false;
     this.colEsasKonuNo.Visible      = true;
     this.colEsasKonuNo.VisibleIndex = 6;
     this.colEsasKonuNo.Width        = 60;
     //
     // colAraSayiNo
     //
     this.colAraSayiNo.Caption   = "Ara Sayı No";
     this.colAraSayiNo.FieldName = "AraSayiNo";
     this.colAraSayiNo.Name      = "colAraSayiNo";
     this.colAraSayiNo.OptionsColumn.AllowEdit = false;
     this.colAraSayiNo.Visible      = true;
     this.colAraSayiNo.VisibleIndex = 7;
     this.colAraSayiNo.Width        = 60;
     //
     // colYil
     //
     this.colYil.Caption   = "Yıl";
     this.colYil.FieldName = "Yil";
     this.colYil.Name      = "colYil";
     this.colYil.OptionsColumn.AllowEdit = false;
     this.colYil.Visible      = true;
     this.colYil.VisibleIndex = 8;
     this.colYil.Width        = 60;
     //
     // colIlgiliBirimId
     //
     this.colIlgiliBirimId.Caption   = "İlgili Birim";
     this.colIlgiliBirimId.FieldName = "Birimler.Birim";
     this.colIlgiliBirimId.Name      = "colIlgiliBirimId";
     this.colIlgiliBirimId.OptionsColumn.AllowEdit = false;
     this.colIlgiliBirimId.Visible      = true;
     this.colIlgiliBirimId.VisibleIndex = 9;
     this.colIlgiliBirimId.Width        = 60;
     //
     // colCikaranMakamId
     //
     this.colCikaranMakamId.Caption   = "Çıkaran Makam";
     this.colCikaranMakamId.FieldName = "EvrakiCikaranMakam.Makam";
     this.colCikaranMakamId.Name      = "colCikaranMakamId";
     this.colCikaranMakamId.OptionsColumn.AllowEdit = false;
     this.colCikaranMakamId.Visible      = true;
     this.colCikaranMakamId.VisibleIndex = 3;
     this.colCikaranMakamId.Width        = 62;
     //
     // colKonusu
     //
     this.colKonusu.Caption   = "Konusu";
     this.colKonusu.FieldName = "Konusu";
     this.colKonusu.Name      = "colKonusu";
     this.colKonusu.OptionsColumn.AllowEdit = false;
     this.colKonusu.Visible      = true;
     this.colKonusu.VisibleIndex = 10;
     this.colKonusu.Width        = 60;
     //
     // colGizililikDerecesiId
     //
     this.colGizililikDerecesiId.Caption   = "Gizlilik Derecesi";
     this.colGizililikDerecesiId.FieldName = "GizlilikDerecesi.Derece";
     this.colGizililikDerecesiId.Name      = "colGizililikDerecesiId";
     this.colGizililikDerecesiId.OptionsColumn.AllowEdit = false;
     this.colGizililikDerecesiId.Visible      = true;
     this.colGizililikDerecesiId.VisibleIndex = 11;
     this.colGizililikDerecesiId.Width        = 60;
     //
     // colEkSayisi
     //
     this.colEkSayisi.Caption   = "Ek Sayısı";
     this.colEkSayisi.FieldName = "EkSayisi";
     this.colEkSayisi.Name      = "colEkSayisi";
     this.colEkSayisi.OptionsColumn.AllowEdit = false;
     this.colEkSayisi.Visible      = true;
     this.colEkSayisi.VisibleIndex = 12;
     this.colEkSayisi.Width        = 60;
     //
     // colImhaYili
     //
     this.colImhaYili.Caption   = "İmha Yılı";
     this.colImhaYili.FieldName = "ImhaYili";
     this.colImhaYili.Name      = "colImhaYili";
     this.colImhaYili.OptionsColumn.AllowEdit = false;
     this.colImhaYili.Visible      = true;
     this.colImhaYili.VisibleIndex = 13;
     this.colImhaYili.Width        = 60;
     //
     // colSil
     //
     this.colSil.Caption      = "Sil";
     this.colSil.ColumnEdit   = this.btnKayitSil;
     this.colSil.Name         = "colSil";
     this.colSil.Visible      = true;
     this.colSil.VisibleIndex = 15;
     this.colSil.Width        = 83;
     //
     // btnKayitSil
     //
     this.btnKayitSil.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, global::ETS.Properties.Resources.icoSil, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject3, "", null, null, true)
     });
     this.btnKayitSil.Name          = "btnKayitSil";
     this.btnKayitSil.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.btnKayitSil.Click        += new System.EventHandler(this.btnKayitSil_Click);
     //
     // colDuzenle
     //
     this.colDuzenle.Caption      = "Düzenle";
     this.colDuzenle.ColumnEdit   = this.btnDuzenle;
     this.colDuzenle.Name         = "colDuzenle";
     this.colDuzenle.Visible      = true;
     this.colDuzenle.VisibleIndex = 14;
     this.colDuzenle.Width        = 61;
     //
     // btnDuzenle
     //
     this.btnDuzenle.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, global::ETS.Properties.Resources.icoDuzenle, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject4, "", null, null, true)
     });
     this.btnDuzenle.Name          = "btnDuzenle";
     this.btnDuzenle.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.btnDuzenle.Click        += new System.EventHandler(this.btnDuzenle_Click);
     //
     // ribbonControl1
     //
     this.ribbonControl1.ExpandCollapseItem.Id = 0;
     this.ribbonControl1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
         this.ribbonControl1.ExpandCollapseItem,
         this.btnGelenEvraklarYazdir,
         this.btnGelenEvraklarExcelCiktiAl,
         this.btnGelenEvraklarPdfCiktiAl,
         this.btnGelenEvraklarYazdirmaGoruntule,
         this.btnGridiYenile,
         this.barEditItem1,
         this.btnSuresiGelenEvraklar,
         this.brGridVeriYili,
         this.btnYiliUygula,
         this.btnYeniArsiv,
         this.btnRaporHazirla
     });
     this.ribbonControl1.Location  = new System.Drawing.Point(0, 0);
     this.ribbonControl1.MaxItemId = 7;
     this.ribbonControl1.Name      = "ribbonControl1";
     this.ribbonControl1.PageCategories.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageCategory[] {
         this.ribbonPageCategory1
     });
     this.ribbonControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.repositoryItemSpinEdit1
     });
     this.ribbonControl1.Size      = new System.Drawing.Size(1023, 142);
     this.ribbonControl1.StatusBar = this.ribbonStatusBar1;
     //
     // btnGelenEvraklarYazdir
     //
     this.btnGelenEvraklarYazdir.Caption     = "Yazdır";
     this.btnGelenEvraklarYazdir.Glyph       = ((System.Drawing.Image)(resources.GetObject("btnGelenEvraklarYazdir.Glyph")));
     this.btnGelenEvraklarYazdir.Id          = 1;
     this.btnGelenEvraklarYazdir.Name        = "btnGelenEvraklarYazdir";
     this.btnGelenEvraklarYazdir.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
     toolTipTitleItem3.Text = "Yazdır";
     superToolTip3.Items.Add(toolTipTitleItem3);
     this.btnGelenEvraklarYazdir.SuperTip   = superToolTip3;
     this.btnGelenEvraklarYazdir.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnGelenEvraklarYazdir_ItemClick);
     //
     // btnGelenEvraklarExcelCiktiAl
     //
     this.btnGelenEvraklarExcelCiktiAl.Caption     = "Excel Çıktısı Al";
     this.btnGelenEvraklarExcelCiktiAl.Glyph       = ((System.Drawing.Image)(resources.GetObject("btnGelenEvraklarExcelCiktiAl.Glyph")));
     this.btnGelenEvraklarExcelCiktiAl.Id          = 5;
     this.btnGelenEvraklarExcelCiktiAl.Name        = "btnGelenEvraklarExcelCiktiAl";
     this.btnGelenEvraklarExcelCiktiAl.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
     this.btnGelenEvraklarExcelCiktiAl.ItemClick  += new DevExpress.XtraBars.ItemClickEventHandler(this.btnGelenEvraklarExcelCiktiAl_ItemClick);
     //
     // btnGelenEvraklarPdfCiktiAl
     //
     this.btnGelenEvraklarPdfCiktiAl.Caption     = "PDF Çıktısı Al";
     this.btnGelenEvraklarPdfCiktiAl.Glyph       = ((System.Drawing.Image)(resources.GetObject("btnGelenEvraklarPdfCiktiAl.Glyph")));
     this.btnGelenEvraklarPdfCiktiAl.Id          = 6;
     this.btnGelenEvraklarPdfCiktiAl.Name        = "btnGelenEvraklarPdfCiktiAl";
     this.btnGelenEvraklarPdfCiktiAl.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
     this.btnGelenEvraklarPdfCiktiAl.ItemClick  += new DevExpress.XtraBars.ItemClickEventHandler(this.btnGelenEvraklarPdfCiktiAl_ItemClick);
     //
     // btnGelenEvraklarYazdirmaGoruntule
     //
     this.btnGelenEvraklarYazdirmaGoruntule.Caption     = "Yazdırma Görüntüle";
     this.btnGelenEvraklarYazdirmaGoruntule.Glyph       = ((System.Drawing.Image)(resources.GetObject("btnGelenEvraklarYazdirmaGoruntule.Glyph")));
     this.btnGelenEvraklarYazdirmaGoruntule.Id          = 10;
     this.btnGelenEvraklarYazdirmaGoruntule.Name        = "btnGelenEvraklarYazdirmaGoruntule";
     this.btnGelenEvraklarYazdirmaGoruntule.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
     this.btnGelenEvraklarYazdirmaGoruntule.ItemClick  += new DevExpress.XtraBars.ItemClickEventHandler(this.btnGelenEvraklarYazdirmaGoruntule_ItemClick);
     //
     // btnGridiYenile
     //
     this.btnGridiYenile.Caption = "Yenile";
     this.btnGridiYenile.Glyph   = global::ETS.Properties.Resources.icoYenile;
     this.btnGridiYenile.Id      = 11;
     this.btnGridiYenile.Name    = "btnGridiYenile";
     toolTipTitleItem4.Text      = "Gridi Yenile";
     toolTipItem2.LeftIndent     = 6;
     toolTipItem2.Text           = "Tüm verileri yeniden yükle";
     superToolTip4.Items.Add(toolTipTitleItem4);
     superToolTip4.Items.Add(toolTipItem2);
     this.btnGridiYenile.SuperTip   = superToolTip4;
     this.btnGridiYenile.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnGridiYenile_ItemClick);
     //
     // barEditItem1
     //
     this.barEditItem1.Caption = "barEditItem1";
     this.barEditItem1.Edit    = this.repositoryItemMarqueeProgressBar1;
     this.barEditItem1.Id      = 1;
     this.barEditItem1.Name    = "barEditItem1";
     //
     // btnSuresiGelenEvraklar
     //
     this.btnSuresiGelenEvraklar.Caption     = "Süresi Gelen Evraklar";
     this.btnSuresiGelenEvraklar.Glyph       = global::ETS.Properties.Resources.icoZamaniGelen;
     this.btnSuresiGelenEvraklar.Id          = 2;
     this.btnSuresiGelenEvraklar.Name        = "btnSuresiGelenEvraklar";
     this.btnSuresiGelenEvraklar.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
     //
     // brGridVeriYili
     //
     this.brGridVeriYili.Caption          = "Yıl : ";
     this.brGridVeriYili.CaptionAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.brGridVeriYili.Edit             = this.repositoryItemSpinEdit1;
     this.brGridVeriYili.Id   = 3;
     this.brGridVeriYili.Name = "brGridVeriYili";
     //
     // repositoryItemSpinEdit1
     //
     this.repositoryItemSpinEdit1.AutoHeight = false;
     this.repositoryItemSpinEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.repositoryItemSpinEdit1.Mask.EditMask = "f0";
     this.repositoryItemSpinEdit1.Name          = "repositoryItemSpinEdit1";
     //
     // btnYiliUygula
     //
     this.btnYiliUygula.Caption    = "Yılı Uygula";
     this.btnYiliUygula.Glyph      = ((System.Drawing.Image)(resources.GetObject("btnYiliUygula.Glyph")));
     this.btnYiliUygula.Id         = 4;
     this.btnYiliUygula.Name       = "btnYiliUygula";
     this.btnYiliUygula.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnYiliUygula_ItemClick);
     //
     // btnYeniArsiv
     //
     this.btnYeniArsiv.Caption     = "Yeni Arşiv";
     this.btnYeniArsiv.Glyph       = ((System.Drawing.Image)(resources.GetObject("btnYeniArsiv.Glyph")));
     this.btnYeniArsiv.Id          = 5;
     this.btnYeniArsiv.Name        = "btnYeniArsiv";
     this.btnYeniArsiv.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
     //
     // ribbonPageCategory1
     //
     this.ribbonPageCategory1.Color = System.Drawing.Color.Purple;
     this.ribbonPageCategory1.Name  = "ribbonPageCategory1";
     this.ribbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
         this.rpageGelenEvraklar
     });
     this.ribbonPageCategory1.Text = "Gelen Giden Evraklar";
     //
     // rpageGelenEvraklar
     //
     this.rpageGelenEvraklar.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
         this.rpgAyarlar,
         this.ribbonPageGroup2,
         this.ribbonPageGroup1,
         this.ribbonPageGroup3
     });
     this.rpageGelenEvraklar.ImageAlign = DevExpress.Utils.HorzAlignment.Near;
     this.rpageGelenEvraklar.Name       = "rpageGelenEvraklar";
     this.rpageGelenEvraklar.Text       = "Arşiv Gelen Giden Evraklar";
     //
     // rpgAyarlar
     //
     this.rpgAyarlar.ItemLinks.Add(this.brGridVeriYili);
     this.rpgAyarlar.ItemLinks.Add(this.btnYiliUygula);
     this.rpgAyarlar.Name = "rpgAyarlar";
     this.rpgAyarlar.Text = "Ayarlar";
     //
     // ribbonPageGroup2
     //
     this.ribbonPageGroup2.ItemLinks.Add(this.btnGelenEvraklarYazdir);
     this.ribbonPageGroup2.ItemLinks.Add(this.btnGelenEvraklarYazdirmaGoruntule);
     this.ribbonPageGroup2.Name = "ribbonPageGroup2";
     this.ribbonPageGroup2.Text = "Yazdırma";
     //
     // ribbonPageGroup1
     //
     this.ribbonPageGroup1.ItemLinks.Add(this.btnGelenEvraklarExcelCiktiAl);
     this.ribbonPageGroup1.ItemLinks.Add(this.btnGelenEvraklarPdfCiktiAl);
     this.ribbonPageGroup1.Name = "ribbonPageGroup1";
     this.ribbonPageGroup1.Text = "Çıktı Alma";
     //
     // ribbonStatusBar1
     //
     this.ribbonStatusBar1.ItemLinks.Add(this.btnGridiYenile);
     this.ribbonStatusBar1.Location = new System.Drawing.Point(0, 377);
     this.ribbonStatusBar1.Name     = "ribbonStatusBar1";
     this.ribbonStatusBar1.Ribbon   = this.ribbonControl1;
     this.ribbonStatusBar1.Size     = new System.Drawing.Size(1023, 27);
     //
     // colId
     //
     this.colId.FieldName = "Id";
     this.colId.Name      = "colId";
     //
     // colEvrakKayitNo
     //
     this.colEvrakKayitNo.FieldName = "EvrakKayitNo";
     this.colEvrakKayitNo.Name      = "colEvrakKayitNo";
     //
     // colEvrakKayitTarihi
     //
     this.colEvrakKayitTarihi.FieldName = "EvrakKayitTarihi";
     this.colEvrakKayitTarihi.Name      = "colEvrakKayitTarihi";
     //
     // colEvrakiCikaranMakamId
     //
     this.colEvrakiCikaranMakamId.FieldName = "EvrakiCikaranMakamId";
     this.colEvrakiCikaranMakamId.Name      = "colEvrakiCikaranMakamId";
     //
     // colTarihTSG
     //
     this.colTarihTSG.FieldName = "TarihTSG";
     this.colTarihTSG.Name      = "colTarihTSG";
     //
     // colDosyaNoKonusu
     //
     this.colDosyaNoKonusu.FieldName = "DosyaNoKonusu";
     this.colDosyaNoKonusu.Name      = "colDosyaNoKonusu";
     //
     // colGizlilikDerecesiId
     //
     this.colGizlilikDerecesiId.FieldName = "GizlilikDerecesiId";
     this.colGizlilikDerecesiId.Name      = "colGizlilikDerecesiId";
     //
     // colGuvenlikNoOncelikDerecesiId
     //
     this.colGuvenlikNoOncelikDerecesiId.FieldName = "GuvenlikNoOncelikDerecesiId";
     this.colGuvenlikNoOncelikDerecesiId.Name      = "colGuvenlikNoOncelikDerecesiId";
     //
     // colGonderdigiMakamId
     //
     this.colGonderdigiMakamId.FieldName = "GonderdigiMakamId";
     this.colGonderdigiMakamId.Name      = "colGonderdigiMakamId";
     //
     // colAciklama
     //
     this.colAciklama.FieldName = "Aciklama";
     this.colAciklama.Name      = "colAciklama";
     //
     // colDurum
     //
     this.colDurum.FieldName = "Durum";
     this.colDurum.Name      = "colDurum";
     //
     // colEvrakSonTarihi
     //
     this.colEvrakSonTarihi.FieldName = "EvrakSonTarihi";
     this.colEvrakSonTarihi.Name      = "colEvrakSonTarihi";
     //
     // colEvrakiCikaranMakam
     //
     this.colEvrakiCikaranMakam.FieldName = "EvrakiCikaranMakam";
     this.colEvrakiCikaranMakam.Name      = "colEvrakiCikaranMakam";
     //
     // colGizlilikDerecesi
     //
     this.colGizlilikDerecesi.FieldName = "GizlilikDerecesi";
     this.colGizlilikDerecesi.Name      = "colGizlilikDerecesi";
     //
     // colGonderdigiMakam
     //
     this.colGonderdigiMakam.FieldName = "GonderdigiMakam";
     this.colGonderdigiMakam.Name      = "colGonderdigiMakam";
     //
     // colGuvenlikNoOncelikDerecesi
     //
     this.colGuvenlikNoOncelikDerecesi.FieldName = "GuvenlikNoOncelikDerecesi";
     this.colGuvenlikNoOncelikDerecesi.Name      = "colGuvenlikNoOncelikDerecesi";
     //
     // gridColumn1
     //
     this.gridColumn1.FieldName = "GizlilikDerecesi.Derece";
     this.gridColumn1.Name      = "gridColumn1";
     //
     // ribbonPageGroup3
     //
     this.ribbonPageGroup3.AllowTextClipping = false;
     this.ribbonPageGroup3.ItemLinks.Add(this.btnRaporHazirla);
     this.ribbonPageGroup3.Name = "ribbonPageGroup3";
     this.ribbonPageGroup3.Text = "Rapor Hazırla";
     //
     // btnRaporHazirla
     //
     this.btnRaporHazirla.Caption     = "Rapor Hazırla";
     this.btnRaporHazirla.Glyph       = ((System.Drawing.Image)(resources.GetObject("btnRaporHazirla.Glyph")));
     this.btnRaporHazirla.Id          = 6;
     this.btnRaporHazirla.Name        = "btnRaporHazirla";
     this.btnRaporHazirla.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
     this.btnRaporHazirla.ItemClick  += new DevExpress.XtraBars.ItemClickEventHandler(this.btnRaporHazirla_ItemClick);
     //
     // ArsivGelenGidenEvraklar
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1023, 404);
     this.Controls.Add(this.ribbonStatusBar1);
     this.Controls.Add(this.grdArsivGelenGiden);
     this.Controls.Add(this.ribbonControl1);
     this.Icon        = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name        = "ArsivGelenGidenEvraklar";
     this.Text        = "Arşiv Gelen Giden Evraklar";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMarqueeProgressBar1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdArsivGelenGiden)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.entityServerModeSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridVArsivGelenGiden)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnKayitSil)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnDuzenle)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
        /// <summary> 
        /// Required method for Designer support - do not modify 
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            DevExpress.XtraGrid.GridLevelNode gridLevelNode1 = new DevExpress.XtraGrid.GridLevelNode();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(InboundQTabPnll));
            DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem1 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip2 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem2 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip3 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem3 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem3 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip4 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem4 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem4 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip5 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem5 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem5 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem6 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.SuperToolTip superToolTip6 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem7 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem6 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem8 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.SuperToolTip superToolTip7 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem9 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem7 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem10 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.SuperToolTip superToolTip8 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem11 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem8 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem12 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.SuperToolTip superToolTip9 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem13 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem9 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem14 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.SuperToolTip superToolTip10 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem15 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem10 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip11 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem16 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem11 = new DevExpress.Utils.ToolTipItem();
            DevExpress.Utils.SuperToolTip superToolTip12 = new DevExpress.Utils.SuperToolTip();
            DevExpress.Utils.ToolTipTitleItem toolTipTitleItem17 = new DevExpress.Utils.ToolTipTitleItem();
            DevExpress.Utils.ToolTipItem toolTipItem12 = new DevExpress.Utils.ToolTipItem();
            this.gridViewAssociatedDocs = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.colAssociatedDocId = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colInboundDocId = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colIndedValue = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colAssociatedDocFileName = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colAssociatedDocTradeId = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colAssociatedDocStatusCode = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colAssociatedBy = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colAssociatedDt = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colFinalApprovedBy = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colFinalApprovedDt = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colDisputedBy = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colDisputedDt = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colVaultedBy = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colVaultedDt = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colCdtyGrpCode = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colCptySn = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colBrokerSn = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colDocTypeCode = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colSecValidateReqFlag = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colTradeRqmtId = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridControlInboundDocs = new DevExpress.XtraGrid.GridControl();
            this.gridViewInboundDocs = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.colCallerRef = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colDocStatusCode = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colSender = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colWorkingTradeID = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colSentTo = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colId = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colCmt = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colHasAutoAsctedFlag = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colDocUserName = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colFileName = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colRcvdTs = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colUnresolvedCount = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colMappedCptySn = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colIgnoreFlag = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colBookmarkFlag = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colUserComments = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colCommentFlag = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colTradeIds = new DevExpress.XtraGrid.Columns.GridColumn();
            this.panelMain = new DevExpress.XtraEditors.PanelControl();
            this.ribbonControl1 = new DevExpress.XtraBars.Ribbon.RibbonControl();
            this.imageSmall = new System.Windows.Forms.ImageList();
            this.barBtnPrint = new DevExpress.XtraBars.BarButtonItem();
            this.barBtnDiscard = new DevExpress.XtraBars.BarButtonItem();
            this.barBtnCopy = new DevExpress.XtraBars.BarButtonItem();
            this.barBtnMatchDoc = new DevExpress.XtraBars.BarButtonItem();
            this.barBtnIgnore = new DevExpress.XtraBars.BarButtonItem();
            this.barBtnBookmark = new DevExpress.XtraBars.BarButtonItem();
            this.barBtnUtils = new DevExpress.XtraBars.BarButtonItem();
            this.barBtnUserCmts = new DevExpress.XtraBars.BarButtonItem();
            this.barBtnDocCmt = new DevExpress.XtraBars.BarButtonItem();
            this.btnGroupMain = new DevExpress.XtraBars.BarButtonGroup();
            this.splitButton = new DevExpress.XtraBars.BarButtonItem();
            this.btnMergeDocument = new DevExpress.XtraBars.BarButtonItem();
            this.barBtnGrpDocs = new DevExpress.XtraBars.BarButtonGroup();
            this.barBtnRedirectFax = new DevExpress.XtraBars.BarButtonItem();
            this.barBtnGrpUser = new DevExpress.XtraBars.BarButtonGroup();
            this.barBtnGrpUtils = new DevExpress.XtraBars.BarButtonGroup();
            this.barBtnViewMatchedDocuments = new DevExpress.XtraBars.BarButtonItem();
            this.barBtnApproveAndSend = new DevExpress.XtraBars.BarButtonItem();
            this.ribbonPage1 = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.ribbonPageGroup1 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.defaultToolTipController1 = new DevExpress.Utils.DefaultToolTipController();
            this.popupMain = new DevExpress.XtraBars.PopupMenu();
            this.imageList2 = new System.Windows.Forms.ImageList();
            this.colTrdSysCode = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colTrdSysTicket = new DevExpress.XtraGrid.Columns.GridColumn();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewAssociatedDocs)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControlInboundDocs)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewInboundDocs)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelMain)).BeginInit();
            this.panelMain.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMain)).BeginInit();
            this.SuspendLayout();
            // 
            // gridViewAssociatedDocs
            // 
            this.gridViewAssociatedDocs.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.colAssociatedDocId,
            this.colInboundDocId,
            this.colTrdSysTicket,
            this.colTrdSysCode,
            this.colIndedValue,
            this.colAssociatedDocFileName,
            this.colAssociatedDocTradeId,
            this.colAssociatedDocStatusCode,
            this.colAssociatedBy,
            this.colAssociatedDt,
            this.colFinalApprovedBy,
            this.colFinalApprovedDt,
            this.colDisputedBy,
            this.colDisputedDt,
            this.colVaultedBy,
            this.colVaultedDt,
            this.colCdtyGrpCode,
            this.colCptySn,
            this.colBrokerSn,
            this.colDocTypeCode,
            this.colSecValidateReqFlag,
            this.colTradeRqmtId});
            this.gridViewAssociatedDocs.GridControl = this.gridControlInboundDocs;
            this.gridViewAssociatedDocs.Name = "gridViewAssociatedDocs";
            this.gridViewAssociatedDocs.OptionsBehavior.Editable = false;
            this.gridViewAssociatedDocs.OptionsCustomization.AllowGroup = false;
            this.gridViewAssociatedDocs.OptionsSelection.EnableAppearanceFocusedCell = false;
            this.gridViewAssociatedDocs.OptionsView.AnimationType = DevExpress.XtraGrid.Views.Base.GridAnimationType.AnimateFocusedItem;
            this.gridViewAssociatedDocs.OptionsView.ShowButtonMode = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.ShowForFocusedRow;
            // 
            // colAssociatedDocId
            // 
            this.colAssociatedDocId.AppearanceHeader.Options.UseTextOptions = true;
            this.colAssociatedDocId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.colAssociatedDocId.Caption = "Id";
            this.colAssociatedDocId.FieldName = "Id";
            this.colAssociatedDocId.Name = "colAssociatedDocId";
            this.colAssociatedDocId.UnboundType = DevExpress.Data.UnboundColumnType.Integer;
            this.colAssociatedDocId.Visible = true;
            this.colAssociatedDocId.VisibleIndex = 0;
            // 
            // colInboundDocId
            // 
            this.colInboundDocId.AppearanceHeader.Options.UseTextOptions = true;
            this.colInboundDocId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.colInboundDocId.Caption = "Inbound Doc Id";
            this.colInboundDocId.FieldName = "InboundDocsId";
            this.colInboundDocId.Name = "colInboundDocId";
            this.colInboundDocId.UnboundType = DevExpress.Data.UnboundColumnType.Integer;
            this.colInboundDocId.Visible = true;
            this.colInboundDocId.VisibleIndex = 1;
            // 
            // colIndedValue
            // 
            this.colIndedValue.AppearanceHeader.Options.UseTextOptions = true;
            this.colIndedValue.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.colIndedValue.Caption = "Index";
            this.colIndedValue.FieldName = "IndexVal";
            this.colIndedValue.Name = "colIndedValue";
            this.colIndedValue.UnboundType = DevExpress.Data.UnboundColumnType.Integer;
            this.colIndedValue.Visible = true;
            this.colIndedValue.VisibleIndex = 4;
            // 
            // colAssociatedDocFileName
            // 
            this.colAssociatedDocFileName.AppearanceHeader.Options.UseTextOptions = true;
            this.colAssociatedDocFileName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.colAssociatedDocFileName.Caption = "File Name";
            this.colAssociatedDocFileName.FieldName = "FileName";
            this.colAssociatedDocFileName.Name = "colAssociatedDocFileName";
            this.colAssociatedDocFileName.Visible = true;
            this.colAssociatedDocFileName.VisibleIndex = 5;
            // 
            // colAssociatedDocTradeId
            // 
            this.colAssociatedDocTradeId.AppearanceHeader.Options.UseTextOptions = true;
            this.colAssociatedDocTradeId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.colAssociatedDocTradeId.Caption = "Trade Id";
            this.colAssociatedDocTradeId.FieldName = "TradeId";
            this.colAssociatedDocTradeId.Name = "colAssociatedDocTradeId";
            this.colAssociatedDocTradeId.UnboundType = DevExpress.Data.UnboundColumnType.Integer;
            this.colAssociatedDocTradeId.Visible = true;
            this.colAssociatedDocTradeId.VisibleIndex = 6;
            // 
            // colAssociatedDocStatusCode
            // 
            this.colAssociatedDocStatusCode.AppearanceHeader.Options.UseTextOptions = true;
            this.colAssociatedDocStatusCode.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.colAssociatedDocStatusCode.Caption = "Status Code";
            this.colAssociatedDocStatusCode.FieldName = "DocStatusCode";
            this.colAssociatedDocStatusCode.Name = "colAssociatedDocStatusCode";
            this.colAssociatedDocStatusCode.Visible = true;
            this.colAssociatedDocStatusCode.VisibleIndex = 7;
            // 
            // colAssociatedBy
            // 
            this.colAssociatedBy.AppearanceHeader.Options.UseTextOptions = true;
            this.colAssociatedBy.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.colAssociatedBy.Caption = "Associated By";
            this.colAssociatedBy.FieldName = "AssociatedBy";
            this.colAssociatedBy.Name = "colAssociatedBy";
            this.colAssociatedBy.Visible = true;
            this.colAssociatedBy.VisibleIndex = 8;
            // 
            // colAssociatedDt
            // 
            this.colAssociatedDt.AppearanceHeader.Options.UseTextOptions = true;
            this.colAssociatedDt.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.colAssociatedDt.Caption = "Associated Date";
            this.colAssociatedDt.DisplayFormat.FormatString = "MM-dd-yyyy hh:mm:ss tt";
            this.colAssociatedDt.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
            this.colAssociatedDt.FieldName = "AssociatedDt";
            this.colAssociatedDt.Name = "colAssociatedDt";
            this.colAssociatedDt.UnboundType = DevExpress.Data.UnboundColumnType.DateTime;
            this.colAssociatedDt.Visible = true;
            this.colAssociatedDt.VisibleIndex = 9;
            // 
            // colFinalApprovedBy
            // 
            this.colFinalApprovedBy.AppearanceHeader.Options.UseTextOptions = true;
            this.colFinalApprovedBy.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.colFinalApprovedBy.Caption = "Final Approved By";
            this.colFinalApprovedBy.FieldName = "FinalApprovedBy";
            this.colFinalApprovedBy.Name = "colFinalApprovedBy";
            this.colFinalApprovedBy.Visible = true;
            this.colFinalApprovedBy.VisibleIndex = 10;
            // 
            // colFinalApprovedDt
            // 
            this.colFinalApprovedDt.AppearanceHeader.Options.UseTextOptions = true;
            this.colFinalApprovedDt.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.colFinalApprovedDt.Caption = "Final Approved Date";
            this.colFinalApprovedDt.DisplayFormat.FormatString = "MM-dd-yyyy hh:mm:ss tt";
            this.colFinalApprovedDt.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
            this.colFinalApprovedDt.FieldName = "FinalApprovedDt";
            this.colFinalApprovedDt.Name = "colFinalApprovedDt";
            this.colFinalApprovedDt.UnboundType = DevExpress.Data.UnboundColumnType.DateTime;
            this.colFinalApprovedDt.Visible = true;
            this.colFinalApprovedDt.VisibleIndex = 11;
            // 
            // colDisputedBy
            // 
            this.colDisputedBy.AppearanceHeader.Options.UseTextOptions = true;
            this.colDisputedBy.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.colDisputedBy.Caption = "Disputed By";
            this.colDisputedBy.FieldName = "DisputedBy";
            this.colDisputedBy.Name = "colDisputedBy";
            this.colDisputedBy.Visible = true;
            this.colDisputedBy.VisibleIndex = 12;
            // 
            // colDisputedDt
            // 
            this.colDisputedDt.AppearanceHeader.Options.UseTextOptions = true;
            this.colDisputedDt.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.colDisputedDt.Caption = "Disputed Date";
            this.colDisputedDt.DisplayFormat.FormatString = "MM-dd-yyyy hh:mm:ss tt";
            this.colDisputedDt.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
            this.colDisputedDt.FieldName = "DisputedDt";
            this.colDisputedDt.Name = "colDisputedDt";
            this.colDisputedDt.UnboundType = DevExpress.Data.UnboundColumnType.DateTime;
            this.colDisputedDt.Visible = true;
            this.colDisputedDt.VisibleIndex = 13;
            // 
            // colVaultedBy
            // 
            this.colVaultedBy.AppearanceHeader.Options.UseTextOptions = true;
            this.colVaultedBy.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.colVaultedBy.Caption = "Vaulted By";
            this.colVaultedBy.FieldName = "VaultedBy";
            this.colVaultedBy.Name = "colVaultedBy";
            this.colVaultedBy.Visible = true;
            this.colVaultedBy.VisibleIndex = 14;
            // 
            // colVaultedDt
            // 
            this.colVaultedDt.AppearanceHeader.Options.UseTextOptions = true;
            this.colVaultedDt.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.colVaultedDt.Caption = "Vaulted Date";
            this.colVaultedDt.DisplayFormat.FormatString = "MM-dd-yyyy hh:mm:ss tt";
            this.colVaultedDt.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
            this.colVaultedDt.FieldName = "VaultedDt";
            this.colVaultedDt.Name = "colVaultedDt";
            this.colVaultedDt.UnboundType = DevExpress.Data.UnboundColumnType.DateTime;
            this.colVaultedDt.Visible = true;
            this.colVaultedDt.VisibleIndex = 15;
            // 
            // colCdtyGrpCode
            // 
            this.colCdtyGrpCode.AppearanceHeader.Options.UseTextOptions = true;
            this.colCdtyGrpCode.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.colCdtyGrpCode.Caption = "Cdty Grp Code";
            this.colCdtyGrpCode.FieldName = "CdtyGroupCode";
            this.colCdtyGrpCode.Name = "colCdtyGrpCode";
            this.colCdtyGrpCode.Visible = true;
            this.colCdtyGrpCode.VisibleIndex = 16;
            // 
            // colCptySn
            // 
            this.colCptySn.AppearanceHeader.Options.UseTextOptions = true;
            this.colCptySn.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.colCptySn.Caption = "Cpty Sn";
            this.colCptySn.FieldName = "CptySn";
            this.colCptySn.Name = "colCptySn";
            this.colCptySn.Visible = true;
            this.colCptySn.VisibleIndex = 17;
            // 
            // colBrokerSn
            // 
            this.colBrokerSn.AppearanceHeader.Options.UseTextOptions = true;
            this.colBrokerSn.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.colBrokerSn.Caption = "Broker Sn";
            this.colBrokerSn.FieldName = "BrokerSn";
            this.colBrokerSn.Name = "colBrokerSn";
            this.colBrokerSn.Visible = true;
            this.colBrokerSn.VisibleIndex = 18;
            // 
            // colDocTypeCode
            // 
            this.colDocTypeCode.AppearanceHeader.Options.UseTextOptions = true;
            this.colDocTypeCode.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.colDocTypeCode.Caption = "Doc Type Code";
            this.colDocTypeCode.FieldName = "DocTypeCode";
            this.colDocTypeCode.Name = "colDocTypeCode";
            this.colDocTypeCode.Visible = true;
            this.colDocTypeCode.VisibleIndex = 19;
            // 
            // colSecValidateReqFlag
            // 
            this.colSecValidateReqFlag.AppearanceHeader.Options.UseTextOptions = true;
            this.colSecValidateReqFlag.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.colSecValidateReqFlag.Caption = "Requires 2nd Check";
            this.colSecValidateReqFlag.FieldName = "SecValidateReqFlag";
            this.colSecValidateReqFlag.Name = "colSecValidateReqFlag";
            this.colSecValidateReqFlag.Visible = true;
            this.colSecValidateReqFlag.VisibleIndex = 20;
            // 
            // colTradeRqmtId
            // 
            this.colTradeRqmtId.AppearanceHeader.Options.UseTextOptions = true;
            this.colTradeRqmtId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.colTradeRqmtId.Caption = "Trade Rqmt Id";
            this.colTradeRqmtId.FieldName = "TradeRqmtId";
            this.colTradeRqmtId.Name = "colTradeRqmtId";
            this.colTradeRqmtId.UnboundType = DevExpress.Data.UnboundColumnType.Integer;
            this.colTradeRqmtId.Visible = true;
            this.colTradeRqmtId.VisibleIndex = 21;
            // 
            // gridControlInboundDocs
            // 
            this.gridControlInboundDocs.Dock = System.Windows.Forms.DockStyle.Fill;
            gridLevelNode1.LevelTemplate = this.gridViewAssociatedDocs;
            gridLevelNode1.RelationName = "Level1";
            this.gridControlInboundDocs.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
            gridLevelNode1});
            this.gridControlInboundDocs.Location = new System.Drawing.Point(3, 121);
            this.gridControlInboundDocs.MainView = this.gridViewInboundDocs;
            this.gridControlInboundDocs.Name = "gridControlInboundDocs";
            this.gridControlInboundDocs.Size = new System.Drawing.Size(1160, 410);
            this.gridControlInboundDocs.TabIndex = 5;
            this.gridControlInboundDocs.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridViewInboundDocs,
            this.gridViewAssociatedDocs});
            this.gridControlInboundDocs.DoubleClick += new System.EventHandler(this.gridControlInboundDocs_DoubleClick);
            // 
            // gridViewInboundDocs
            // 
            this.gridViewInboundDocs.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.colCallerRef,
            this.colDocStatusCode,
            this.colSender,
            this.colWorkingTradeID,
            this.colSentTo,
            this.colId,
            this.colCmt,
            this.colHasAutoAsctedFlag,
            this.colDocUserName,
            this.colFileName,
            this.colRcvdTs,
            this.colUnresolvedCount,
            this.colMappedCptySn,
            this.colIgnoreFlag,
            this.colBookmarkFlag,
            this.colUserComments,
            this.colCommentFlag,
            this.colTradeIds});
            this.gridViewInboundDocs.CustomizationFormBounds = new System.Drawing.Rectangle(729, 379, 208, 168);
            this.gridViewInboundDocs.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
            this.gridViewInboundDocs.GridControl = this.gridControlInboundDocs;
            this.gridViewInboundDocs.IndicatorWidth = 45;
            this.gridViewInboundDocs.Name = "gridViewInboundDocs";
            this.gridViewInboundDocs.OptionsBehavior.AllowFixedGroups = DevExpress.Utils.DefaultBoolean.True;
            this.gridViewInboundDocs.OptionsBehavior.AllowIncrementalSearch = true;
            this.gridViewInboundDocs.OptionsBehavior.Editable = false;
            this.gridViewInboundDocs.OptionsDetail.ShowDetailTabs = false;
            this.gridViewInboundDocs.OptionsMenu.ShowAddNewSummaryItem = DevExpress.Utils.DefaultBoolean.False;
            this.gridViewInboundDocs.OptionsSelection.EnableAppearanceFocusedCell = false;
            this.gridViewInboundDocs.OptionsSelection.MultiSelect = true;
            this.gridViewInboundDocs.OptionsView.AnimationType = DevExpress.XtraGrid.Views.Base.GridAnimationType.AnimateFocusedItem;
            this.gridViewInboundDocs.OptionsView.ColumnAutoWidth = false;
            this.gridViewInboundDocs.OptionsView.ShowGroupPanel = false;
            this.gridViewInboundDocs.CustomDrawRowIndicator += new DevExpress.XtraGrid.Views.Grid.RowIndicatorCustomDrawEventHandler(this.gridViewInboundDocs_CustomDrawRowIndicator);
            this.gridViewInboundDocs.RowStyle += new DevExpress.XtraGrid.Views.Grid.RowStyleEventHandler(this.gridViewInboundDocs_RowStyle);
            this.gridViewInboundDocs.ShowGridMenu += new DevExpress.XtraGrid.Views.Grid.GridMenuEventHandler(this.gridViewInboundDocs_ShowGridMenu);
            this.gridViewInboundDocs.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridViewInboundDocs_FocusedRowChanged);
            this.gridViewInboundDocs.ColumnFilterChanged += new System.EventHandler(this.gridViewInboundDocs_ColumnFilterChanged);
            this.gridViewInboundDocs.MouseDown += new System.Windows.Forms.MouseEventHandler(this.gridViewInboundDocs_MouseDown);
            this.gridViewInboundDocs.MouseMove += new System.Windows.Forms.MouseEventHandler(this.gridViewInboundDocs_MouseMove);
            this.gridViewInboundDocs.DataSourceChanged += new System.EventHandler(this.gridViewInboundDocs_DataSourceChanged);
            // 
            // colCallerRef
            // 
            this.colCallerRef.AppearanceHeader.Options.UseTextOptions = true;
            this.colCallerRef.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.colCallerRef.Caption = "Caller Ref.";
            this.colCallerRef.FieldName = "CallerRef";
            this.colCallerRef.Name = "colCallerRef";
            this.colCallerRef.Visible = true;
            this.colCallerRef.VisibleIndex = 0;
            // 
            // colDocStatusCode
            // 
            this.colDocStatusCode.AppearanceHeader.Options.UseTextOptions = true;
            this.colDocStatusCode.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.colDocStatusCode.Caption = "Status";
            this.colDocStatusCode.FieldName = "DocStatusCode";
            this.colDocStatusCode.Name = "colDocStatusCode";
            // 
            // colSender
            // 
            this.colSender.AppearanceHeader.Options.UseTextOptions = true;
            this.colSender.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.colSender.Caption = "Sender";
            this.colSender.FieldName = "Sender";
            this.colSender.Name = "colSender";
            this.colSender.Visible = true;
            this.colSender.VisibleIndex = 1;
            // 
            // colWorkingTradeID
            // 
            this.colWorkingTradeID.AppearanceHeader.Options.UseTextOptions = true;
            this.colWorkingTradeID.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.colWorkingTradeID.Caption = "Working Trade Id";
            this.colWorkingTradeID.FieldName = "WorkingTradeID";
            this.colWorkingTradeID.Name = "colWorkingTradeID";
            this.colWorkingTradeID.UnboundType = DevExpress.Data.UnboundColumnType.Integer;
            // 
            // colSentTo
            // 
            this.colSentTo.AppearanceHeader.Options.UseTextOptions = true;
            this.colSentTo.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.colSentTo.Caption = "Sent To";
            this.colSentTo.FieldName = "SentTo";
            this.colSentTo.Name = "colSentTo";
            this.colSentTo.Visible = true;
            this.colSentTo.VisibleIndex = 2;
            // 
            // colId
            // 
            this.colId.AppearanceHeader.Options.UseTextOptions = true;
            this.colId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.colId.Caption = "Id";
            this.colId.FieldName = "Id";
            this.colId.Name = "colId";
            this.colId.UnboundType = DevExpress.Data.UnboundColumnType.Integer;
            // 
            // colCmt
            // 
            this.colCmt.AppearanceHeader.Options.UseTextOptions = true;
            this.colCmt.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.colCmt.Caption = "Comment";
            this.colCmt.FieldName = "Cmt";
            this.colCmt.Name = "colCmt";
            this.colCmt.Visible = true;
            this.colCmt.VisibleIndex = 3;
            // 
            // colHasAutoAsctedFlag
            // 
            this.colHasAutoAsctedFlag.AppearanceHeader.Options.UseTextOptions = true;
            this.colHasAutoAsctedFlag.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.colHasAutoAsctedFlag.Caption = "Auto Associated";
            this.colHasAutoAsctedFlag.FieldName = "HasAutoAsctedFlag";
            this.colHasAutoAsctedFlag.Name = "colHasAutoAsctedFlag";
            // 
            // colDocUserName
            // 
            this.colDocUserName.AppearanceHeader.Options.UseTextOptions = true;
            this.colDocUserName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.colDocUserName.Caption = "Doc User Name";
            this.colDocUserName.FieldName = "DocUserName";
            this.colDocUserName.Name = "colDocUserName";
            // 
            // colFileName
            // 
            this.colFileName.AppearanceHeader.Options.UseTextOptions = true;
            this.colFileName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.colFileName.Caption = "File Name";
            this.colFileName.FieldName = "FileName";
            this.colFileName.Name = "colFileName";
            // 
            // colRcvdTs
            // 
            this.colRcvdTs.AppearanceHeader.Options.UseTextOptions = true;
            this.colRcvdTs.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.colRcvdTs.Caption = "Received";
            this.colRcvdTs.DisplayFormat.FormatString = "G";
            this.colRcvdTs.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
            this.colRcvdTs.FieldName = "RcvdTs";
            this.colRcvdTs.Name = "colRcvdTs";
            this.colRcvdTs.Visible = true;
            this.colRcvdTs.VisibleIndex = 4;
            // 
            // colUnresolvedCount
            // 
            this.colUnresolvedCount.AppearanceHeader.Options.UseTextOptions = true;
            this.colUnresolvedCount.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.colUnresolvedCount.Caption = "Unresolved Count";
            this.colUnresolvedCount.FieldName = "UnresolvedCount";
            this.colUnresolvedCount.Name = "colUnresolvedCount";
            // 
            // colMappedCptySn
            // 
            this.colMappedCptySn.AppearanceHeader.Options.UseTextOptions = true;
            this.colMappedCptySn.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.colMappedCptySn.Caption = "Mapped Cpty";
            this.colMappedCptySn.FieldName = "MappedCptySn";
            this.colMappedCptySn.Name = "colMappedCptySn";
            this.colMappedCptySn.Visible = true;
            this.colMappedCptySn.VisibleIndex = 5;
            // 
            // colIgnoreFlag
            // 
            this.colIgnoreFlag.AppearanceHeader.Options.UseTextOptions = true;
            this.colIgnoreFlag.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.colIgnoreFlag.Caption = "Ignore Flag";
            this.colIgnoreFlag.FieldName = "IgnoreFlag";
            this.colIgnoreFlag.Name = "colIgnoreFlag";
            this.colIgnoreFlag.Visible = true;
            this.colIgnoreFlag.VisibleIndex = 6;
            // 
            // colBookmarkFlag
            // 
            this.colBookmarkFlag.AppearanceHeader.Options.UseTextOptions = true;
            this.colBookmarkFlag.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.colBookmarkFlag.Caption = "Bookmark Flag";
            this.colBookmarkFlag.FieldName = "BookmarkFlag";
            this.colBookmarkFlag.Name = "colBookmarkFlag";
            this.colBookmarkFlag.Visible = true;
            this.colBookmarkFlag.VisibleIndex = 7;
            // 
            // colUserComments
            // 
            this.colUserComments.AppearanceHeader.Options.UseTextOptions = true;
            this.colUserComments.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.colUserComments.Caption = "User Comment";
            this.colUserComments.FieldName = "CommentUser";
            this.colUserComments.Name = "colUserComments";
            this.colUserComments.Visible = true;
            this.colUserComments.VisibleIndex = 8;
            // 
            // colCommentFlag
            // 
            this.colCommentFlag.AppearanceHeader.Options.UseTextOptions = true;
            this.colCommentFlag.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.colCommentFlag.Caption = "User Comment Flag";
            this.colCommentFlag.FieldName = "CommentFlag";
            this.colCommentFlag.Name = "colCommentFlag";
            this.colCommentFlag.Visible = true;
            this.colCommentFlag.VisibleIndex = 9;
            // 
            // colTradeIds
            // 
            this.colTradeIds.AppearanceHeader.Options.UseTextOptions = true;
            this.colTradeIds.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.colTradeIds.Caption = "Matched Trade IDs";
            this.colTradeIds.FieldName = "TradeIds";
            this.colTradeIds.Name = "colTradeIds";
            // 
            // panelMain
            // 
            this.defaultToolTipController1.SetAllowHtmlText(this.panelMain, DevExpress.Utils.DefaultBoolean.Default);
            this.panelMain.Controls.Add(this.gridControlInboundDocs);
            this.panelMain.Controls.Add(this.ribbonControl1);
            this.panelMain.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panelMain.Location = new System.Drawing.Point(0, 0);
            this.panelMain.Name = "panelMain";
            this.panelMain.Size = new System.Drawing.Size(1166, 534);
            this.panelMain.TabIndex = 0;
            // 
            // ribbonControl1
            // 
            this.ribbonControl1.ExpandCollapseItem.Id = 0;
            this.ribbonControl1.Images = this.imageSmall;
            this.ribbonControl1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.ribbonControl1.ExpandCollapseItem,
            this.barBtnPrint,
            this.barBtnDiscard,
            this.barBtnCopy,
            this.barBtnMatchDoc,
            this.barBtnIgnore,
            this.barBtnBookmark,
            this.barBtnUtils,
            this.barBtnUserCmts,
            this.barBtnDocCmt,
            this.btnGroupMain,
            this.barBtnGrpDocs,
            this.barBtnGrpUser,
            this.barBtnGrpUtils,
            this.barBtnRedirectFax,
            this.barBtnViewMatchedDocuments,
            this.barBtnApproveAndSend,
            this.splitButton,
            this.btnMergeDocument});
            this.ribbonControl1.Location = new System.Drawing.Point(3, 3);
            this.ribbonControl1.MaxItemId = 28;
            this.ribbonControl1.Name = "ribbonControl1";
            this.ribbonControl1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.ribbonPage1});
            this.ribbonControl1.ShowCategoryInCaption = false;
            this.ribbonControl1.ShowPageHeadersMode = DevExpress.XtraBars.Ribbon.ShowPageHeadersMode.Hide;
            this.ribbonControl1.ShowToolbarCustomizeItem = false;
            this.ribbonControl1.Size = new System.Drawing.Size(1160, 118);
            this.ribbonControl1.Toolbar.ItemLinks.Add(this.btnGroupMain);
            this.ribbonControl1.Toolbar.ItemLinks.Add(this.barBtnGrpDocs);
            this.ribbonControl1.Toolbar.ItemLinks.Add(this.barBtnGrpUser);
            this.ribbonControl1.Toolbar.ItemLinks.Add(this.barBtnGrpUtils);
            this.ribbonControl1.Toolbar.ShowCustomizeItem = false;
            this.ribbonControl1.ToolTipController = this.defaultToolTipController1.DefaultController;
            this.ribbonControl1.ShowCustomizationMenu += new DevExpress.XtraBars.Ribbon.RibbonCustomizationMenuEventHandler(this.ribbonControl1_ShowCustomizationMenu);
            // 
            // imageSmall
            // 
            this.imageSmall.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageSmall.ImageStream")));
            this.imageSmall.TransparentColor = System.Drawing.Color.Transparent;
            this.imageSmall.Images.SetKeyName(0, "accept.png");
            this.imageSmall.Images.SetKeyName(1, "exclamation.png");
            this.imageSmall.Images.SetKeyName(2, "table_delete.png");
            this.imageSmall.Images.SetKeyName(3, "table_add.png");
            this.imageSmall.Images.SetKeyName(4, "lightning_go.png");
            this.imageSmall.Images.SetKeyName(5, "lightning.png");
            this.imageSmall.Images.SetKeyName(6, "lightning_add.png");
            this.imageSmall.Images.SetKeyName(7, "lightning_delete.png");
            this.imageSmall.Images.SetKeyName(8, "database_add.png");
            this.imageSmall.Images.SetKeyName(9, "eye.png");
            this.imageSmall.Images.SetKeyName(10, "find.png");
            this.imageSmall.Images.SetKeyName(11, "cancel.png");
            this.imageSmall.Images.SetKeyName(12, "transmit.png");
            this.imageSmall.Images.SetKeyName(13, "user_edit.png");
            this.imageSmall.Images.SetKeyName(14, "table_row_insert.png");
            this.imageSmall.Images.SetKeyName(15, "lightbulb_off.png");
            this.imageSmall.Images.SetKeyName(16, "lightbulb.png");
            this.imageSmall.Images.SetKeyName(17, "printer.png");
            this.imageSmall.Images.SetKeyName(18, "bin.png");
            this.imageSmall.Images.SetKeyName(19, "bin_closed.png");
            this.imageSmall.Images.SetKeyName(20, "page_add.png");
            this.imageSmall.Images.SetKeyName(21, "page_copy.png");
            this.imageSmall.Images.SetKeyName(22, "table_row_delete.png");
            this.imageSmall.Images.SetKeyName(23, "flag_red.gif");
            this.imageSmall.Images.SetKeyName(24, "page_bookmark.gif");
            this.imageSmall.Images.SetKeyName(25, "comment.gif");
            this.imageSmall.Images.SetKeyName(26, "user_comment.png");
            this.imageSmall.Images.SetKeyName(27, "comments_add.png");
            this.imageSmall.Images.SetKeyName(28, "wand.png");
            this.imageSmall.Images.SetKeyName(29, "telephone_go.png");
            this.imageSmall.Images.SetKeyName(30, "page_find.png");
            this.imageSmall.Images.SetKeyName(31, "flag_green.gif");
            this.imageSmall.Images.SetKeyName(32, "arrow-split-270-icon.png");
            this.imageSmall.Images.SetKeyName(33, "arrow_join.png");
            // 
            // barBtnPrint
            // 
            this.barBtnPrint.Caption = "Print";
            this.barBtnPrint.Id = 0;
            this.barBtnPrint.ImageIndex = 17;
            this.barBtnPrint.Name = "barBtnPrint";
            this.barBtnPrint.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            toolTipTitleItem1.Text = "Print";
            toolTipItem1.LeftIndent = 6;
            toolTipItem1.Text = "Print the currently selected document";
            superToolTip1.Items.Add(toolTipTitleItem1);
            superToolTip1.Items.Add(toolTipItem1);
            this.barBtnPrint.SuperTip = superToolTip1;
            this.barBtnPrint.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barBtnPrint_ItemClick);
            // 
            // barBtnDiscard
            // 
            this.barBtnDiscard.Caption = "Discard";
            this.barBtnDiscard.Id = 1;
            this.barBtnDiscard.ImageIndex = 19;
            this.barBtnDiscard.Name = "barBtnDiscard";
            this.barBtnDiscard.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            toolTipTitleItem2.Text = "Discard/Un-Discard Document(s)";
            toolTipItem2.LeftIndent = 6;
            toolTipItem2.Text = "Send currently selected document(s) to the discarded folder.  While in the Discar" +
    "ded folder, this will Un-Discard the currently selected document(s) and send it " +
    "back to the Inbound Queue folder.";
            superToolTip2.Items.Add(toolTipTitleItem2);
            superToolTip2.Items.Add(toolTipItem2);
            this.barBtnDiscard.SuperTip = superToolTip2;
            this.barBtnDiscard.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barBtnDiscard_ItemClick);
            // 
            // barBtnCopy
            // 
            this.barBtnCopy.Caption = "Copy";
            this.barBtnCopy.Id = 2;
            this.barBtnCopy.ImageIndex = 21;
            this.barBtnCopy.Name = "barBtnCopy";
            this.barBtnCopy.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            toolTipTitleItem3.Text = "Copy Document";
            toolTipItem3.LeftIndent = 6;
            toolTipItem3.Text = "Make physical copies of the currently selected document.  This will create new en" +
    "tries in the Inbound Queue for the currently selected document.";
            superToolTip3.Items.Add(toolTipTitleItem3);
            superToolTip3.Items.Add(toolTipItem3);
            this.barBtnCopy.SuperTip = superToolTip3;
            this.barBtnCopy.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barBtnCopy_ItemClick);
            // 
            // barBtnMatchDoc
            // 
            this.barBtnMatchDoc.Caption = "Associate";
            this.barBtnMatchDoc.Id = 4;
            this.barBtnMatchDoc.ImageIndex = 0;
            this.barBtnMatchDoc.Name = "barBtnMatchDoc";
            this.barBtnMatchDoc.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            toolTipTitleItem4.Text = "Match Document";
            toolTipItem4.LeftIndent = 6;
            toolTipItem4.Text = "Associate an Inbound Document to a particular Trade Requirement.  This action inv" +
    "okes the Trade Requirement editor window for the user to set the correct status " +
    "of the Trade Requirement";
            superToolTip4.Items.Add(toolTipTitleItem4);
            superToolTip4.Items.Add(toolTipItem4);
            this.barBtnMatchDoc.SuperTip = superToolTip4;
            this.barBtnMatchDoc.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barBtnMatchDoc_ItemClick);
            // 
            // barBtnIgnore
            // 
            this.barBtnIgnore.Caption = "Ignore";
            this.barBtnIgnore.Id = 5;
            this.barBtnIgnore.ImageIndex = 23;
            this.barBtnIgnore.Name = "barBtnIgnore";
            this.barBtnIgnore.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            toolTipTitleItem5.Text = "Ignore/Un-Ignore Toggle";
            toolTipItem5.LeftIndent = 6;
            toolTipItem5.Text = resources.GetString("toolTipItem5.Text");
            toolTipTitleItem6.LeftIndent = 6;
            toolTipTitleItem6.Text = "This is a user specific operation and will not have affect other users.";
            superToolTip5.Items.Add(toolTipTitleItem5);
            superToolTip5.Items.Add(toolTipItem5);
            superToolTip5.Items.Add(toolTipTitleItem6);
            this.barBtnIgnore.SuperTip = superToolTip5;
            this.barBtnIgnore.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barBtnIgnore_ItemClick_1);
            // 
            // barBtnBookmark
            // 
            this.barBtnBookmark.Caption = "Bookmark";
            this.barBtnBookmark.Id = 6;
            this.barBtnBookmark.ImageIndex = 24;
            this.barBtnBookmark.Name = "barBtnBookmark";
            this.barBtnBookmark.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            toolTipTitleItem7.Text = "Bookmark Toggle";
            toolTipItem6.LeftIndent = 6;
            toolTipItem6.Text = "Toggles the Bookmark Flag column to On/Off.  Creates a \"B\" for the row that is be" +
    "ing bookmarked.";
            toolTipTitleItem8.LeftIndent = 6;
            toolTipTitleItem8.Text = "Use the Bookmark Flag column to filter on documents you have Bookmarked.";
            superToolTip6.Items.Add(toolTipTitleItem7);
            superToolTip6.Items.Add(toolTipItem6);
            superToolTip6.Items.Add(toolTipTitleItem8);
            this.barBtnBookmark.SuperTip = superToolTip6;
            this.barBtnBookmark.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barBtnBookmark_ItemClick);
            // 
            // barBtnUtils
            // 
            this.barBtnUtils.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.barBtnUtils.Caption = "Utils";
            this.barBtnUtils.Id = 8;
            this.barBtnUtils.ImageIndex = 28;
            this.barBtnUtils.Name = "barBtnUtils";
            this.barBtnUtils.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            toolTipTitleItem9.Text = "Utilities";
            toolTipItem7.LeftIndent = 6;
            toolTipItem7.Text = "Not Yet Implemented";
            toolTipTitleItem10.LeftIndent = 6;
            toolTipTitleItem10.Text = "Will contain a list of utility functions.";
            superToolTip7.Items.Add(toolTipTitleItem9);
            superToolTip7.Items.Add(toolTipItem7);
            superToolTip7.Items.Add(toolTipTitleItem10);
            this.barBtnUtils.SuperTip = superToolTip7;
            // 
            // barBtnUserCmts
            // 
            this.barBtnUserCmts.Caption = "User Cmts";
            this.barBtnUserCmts.Id = 10;
            this.barBtnUserCmts.ImageIndex = 26;
            this.barBtnUserCmts.Name = "barBtnUserCmts";
            this.barBtnUserCmts.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            toolTipTitleItem11.Text = "User Comment(s)";
            toolTipItem8.LeftIndent = 6;
            toolTipItem8.Text = "Creates a user specific comment for the selected Inbound Document.";
            toolTipTitleItem12.LeftIndent = 6;
            toolTipTitleItem12.Text = "Comment is user specific and will not be seen by other users.";
            superToolTip8.Items.Add(toolTipTitleItem11);
            superToolTip8.Items.Add(toolTipItem8);
            superToolTip8.Items.Add(toolTipTitleItem12);
            this.barBtnUserCmts.SuperTip = superToolTip8;
            this.barBtnUserCmts.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barBtnUserCmts_ItemClick);
            // 
            // barBtnDocCmt
            // 
            this.barBtnDocCmt.Caption = "Doc Cmts";
            this.barBtnDocCmt.Id = 11;
            this.barBtnDocCmt.ImageIndex = 27;
            this.barBtnDocCmt.Name = "barBtnDocCmt";
            this.barBtnDocCmt.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            toolTipTitleItem13.Text = "Document Comment";
            toolTipItem9.LeftIndent = 6;
            toolTipItem9.Text = "Create Inbound Document comments.";
            toolTipTitleItem14.LeftIndent = 6;
            toolTipTitleItem14.Text = "Will be seen by all users.";
            superToolTip9.Items.Add(toolTipTitleItem13);
            superToolTip9.Items.Add(toolTipItem9);
            superToolTip9.Items.Add(toolTipTitleItem14);
            this.barBtnDocCmt.SuperTip = superToolTip9;
            this.barBtnDocCmt.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barBtnDocCmt_ItemClick);
            // 
            // btnGroupMain
            // 
            this.btnGroupMain.Caption = "barButtonGroup1";
            this.btnGroupMain.Id = 12;
            this.btnGroupMain.ItemLinks.Add(this.barBtnMatchDoc);
            this.btnGroupMain.ItemLinks.Add(this.barBtnDiscard);
            this.btnGroupMain.ItemLinks.Add(this.barBtnIgnore);
            this.btnGroupMain.ItemLinks.Add(this.barBtnCopy);
            this.btnGroupMain.ItemLinks.Add(this.splitButton);
            this.btnGroupMain.ItemLinks.Add(this.btnMergeDocument);
            this.btnGroupMain.Name = "btnGroupMain";
            // 
            // splitButton
            // 
            this.splitButton.Caption = "Split";
            this.splitButton.Id = 21;
            this.splitButton.ImageIndex = 32;
            this.splitButton.Name = "splitButton";
            this.splitButton.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            toolTipTitleItem15.Text = "Split Document";
            toolTipItem10.LeftIndent = 6;
            toolTipItem10.Text = "Split a multi-page Inbound document into 2 Inbound documents.";
            superToolTip10.Items.Add(toolTipTitleItem15);
            superToolTip10.Items.Add(toolTipItem10);
            this.splitButton.SuperTip = superToolTip10;
            this.splitButton.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.OnSplitDocumentItemClick);
            // 
            // btnMergeDocument
            // 
            this.btnMergeDocument.Caption = "Merge";
            this.btnMergeDocument.Id = 22;
            this.btnMergeDocument.ImageIndex = 33;
            this.btnMergeDocument.Name = "btnMergeDocument";
            this.btnMergeDocument.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            toolTipTitleItem16.Text = "Merge Inbound Document";
            toolTipItem11.LeftIndent = 6;
            toolTipItem11.Text = "Select 2 documents and merge them into 1 multi-page document.";
            superToolTip11.Items.Add(toolTipTitleItem16);
            superToolTip11.Items.Add(toolTipItem11);
            this.btnMergeDocument.SuperTip = superToolTip11;
            this.btnMergeDocument.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.OnMergeDocumentsClicked);
            // 
            // barBtnGrpDocs
            // 
            this.barBtnGrpDocs.Caption = "barButtonGroup1";
            this.barBtnGrpDocs.Id = 14;
            this.barBtnGrpDocs.ItemLinks.Add(this.barBtnDocCmt);
            this.barBtnGrpDocs.ItemLinks.Add(this.barBtnUserCmts);
            this.barBtnGrpDocs.ItemLinks.Add(this.barBtnRedirectFax);
            this.barBtnGrpDocs.Name = "barBtnGrpDocs";
            // 
            // barBtnRedirectFax
            // 
            this.barBtnRedirectFax.Caption = "Redirect Fax";
            this.barBtnRedirectFax.Id = 17;
            this.barBtnRedirectFax.ImageIndex = 29;
            this.barBtnRedirectFax.Name = "barBtnRedirectFax";
            this.barBtnRedirectFax.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            toolTipTitleItem17.Text = "Redirect Fax";
            toolTipItem12.LeftIndent = 6;
            toolTipItem12.Text = "Give the user the ability to change the Sent To fax number value if the fax was s" +
    "ent to the wrong fax machine.";
            superToolTip12.Items.Add(toolTipTitleItem17);
            superToolTip12.Items.Add(toolTipItem12);
            this.barBtnRedirectFax.SuperTip = superToolTip12;
            this.barBtnRedirectFax.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barBtnRedirectFax_ItemClick);
            // 
            // barBtnGrpUser
            // 
            this.barBtnGrpUser.Caption = "barButtonGroup1";
            this.barBtnGrpUser.Id = 15;
            this.barBtnGrpUser.ItemLinks.Add(this.barBtnPrint);
            this.barBtnGrpUser.ItemLinks.Add(this.barBtnBookmark);
            this.barBtnGrpUser.Name = "barBtnGrpUser";
            // 
            // barBtnGrpUtils
            // 
            this.barBtnGrpUtils.Caption = "barButtonGroup1";
            this.barBtnGrpUtils.Id = 16;
            this.barBtnGrpUtils.ItemLinks.Add(this.barBtnUtils);
            this.barBtnGrpUtils.Name = "barBtnGrpUtils";
            this.barBtnGrpUtils.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            this.barBtnGrpUtils.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
            // 
            // barBtnViewMatchedDocuments
            // 
            this.barBtnViewMatchedDocuments.Caption = "View Associated Documents";
            this.barBtnViewMatchedDocuments.Id = 18;
            this.barBtnViewMatchedDocuments.ImageIndex = 30;
            this.barBtnViewMatchedDocuments.Name = "barBtnViewMatchedDocuments";
            this.barBtnViewMatchedDocuments.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barBtnViewMatchedDocuments_ItemClick);
            // 
            // barBtnApproveAndSend
            // 
            this.barBtnApproveAndSend.Caption = "Approve and Transmit";
            this.barBtnApproveAndSend.Id = 19;
            this.barBtnApproveAndSend.ImageIndex = 12;
            this.barBtnApproveAndSend.Name = "barBtnApproveAndSend";
            this.barBtnApproveAndSend.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            this.barBtnApproveAndSend.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
            this.barBtnApproveAndSend.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barBtnApproveAndSend_ItemClick);
            // 
            // ribbonPage1
            // 
            this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonPageGroup1});
            this.ribbonPage1.Name = "ribbonPage1";
            this.ribbonPage1.Text = "ribbonPage1";
            this.ribbonPage1.Visible = false;
            // 
            // ribbonPageGroup1
            // 
            this.ribbonPageGroup1.ItemLinks.Add(this.barBtnDiscard);
            this.ribbonPageGroup1.ItemLinks.Add(this.barBtnCopy);
            this.ribbonPageGroup1.ItemLinks.Add(this.barBtnMatchDoc);
            this.ribbonPageGroup1.ItemLinks.Add(this.barBtnPrint);
            this.ribbonPageGroup1.ItemLinks.Add(this.barBtnIgnore);
            this.ribbonPageGroup1.ItemLinks.Add(this.barBtnBookmark);
            this.ribbonPageGroup1.ItemLinks.Add(this.barBtnUtils);
            this.ribbonPageGroup1.ItemLinks.Add(this.barBtnUserCmts);
            this.ribbonPageGroup1.ItemLinks.Add(this.barBtnDocCmt);
            this.ribbonPageGroup1.ItemLinks.Add(this.btnGroupMain, true);
            this.ribbonPageGroup1.ItemLinks.Add(this.barBtnGrpUser, true);
            this.ribbonPageGroup1.ItemLinks.Add(this.barBtnGrpUtils, true);
            this.ribbonPageGroup1.ItemLinks.Add(this.barBtnRedirectFax);
            this.ribbonPageGroup1.ItemLinks.Add(this.barBtnGrpDocs);
            this.ribbonPageGroup1.Name = "ribbonPageGroup1";
            this.ribbonPageGroup1.Text = "ribbonPageGroup1";
            // 
            // defaultToolTipController1
            // 
            // 
            // 
            // 
            this.defaultToolTipController1.DefaultController.ToolTipType = DevExpress.Utils.ToolTipType.SuperTip;
            // 
            // popupMain
            // 
            this.popupMain.ItemLinks.Add(this.barBtnPrint);
            this.popupMain.ItemLinks.Add(this.barBtnCopy, true);
            this.popupMain.ItemLinks.Add(this.barBtnDiscard);
            this.popupMain.ItemLinks.Add(this.barBtnViewMatchedDocuments, true);
            this.popupMain.ItemLinks.Add(this.barBtnRedirectFax, true);
            this.popupMain.ItemLinks.Add(this.barBtnApproveAndSend, true);
            this.popupMain.Name = "popupMain";
            this.popupMain.Ribbon = this.ribbonControl1;
            // 
            // imageList2
            // 
            this.imageList2.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList2.ImageStream")));
            this.imageList2.TransparentColor = System.Drawing.Color.Magenta;
            this.imageList2.Images.SetKeyName(0, "");
            this.imageList2.Images.SetKeyName(1, "");
            this.imageList2.Images.SetKeyName(2, "");
            // 
            // colTrdSysCode
            // 
            this.colTrdSysCode.Caption = "Trading System Code";
            this.colTrdSysCode.FieldName = "TrdSysCode";
            this.colTrdSysCode.Name = "colTrdSysCode";
            this.colTrdSysCode.Visible = true;
            this.colTrdSysCode.VisibleIndex = 3;
            // 
            // colTrdSysTicket
            // 
            this.colTrdSysTicket.Caption = "Ticket";
            this.colTrdSysTicket.FieldName = "TrdSysTicket";
            this.colTrdSysTicket.Name = "colTrdSysTicket";
            this.colTrdSysTicket.Visible = true;
            this.colTrdSysTicket.VisibleIndex = 2;
            // 
            // InboundQTabPnll
            // 
            this.defaultToolTipController1.SetAllowHtmlText(this, DevExpress.Utils.DefaultBoolean.Default);
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.panelMain);
            this.Name = "InboundQTabPnll";
            this.Size = new System.Drawing.Size(1166, 534);
            ((System.ComponentModel.ISupportInitialize)(this.gridViewAssociatedDocs)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControlInboundDocs)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewInboundDocs)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelMain)).EndInit();
            this.panelMain.ResumeLayout(false);
            this.panelMain.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMain)).EndInit();
            this.ResumeLayout(false);

        }
Пример #59
0
 /// <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(frmProducts));
     DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip2 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip3 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem3 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip4 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem4 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip5 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem1 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip6 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem2 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip7 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem3 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip8 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem4 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip9 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem5 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip10 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem5 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip11 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem6 = new DevExpress.Utils.ToolTipTitleItem();
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.xtrabarGeneralinformation = new DevExpress.XtraTab.XtraTabPage();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.txtfactor = new DevExpress.XtraEditors.ComboBoxEdit();
     this.txtuompurchase = new DevExpress.XtraEditors.ComboBoxEdit();
     this.txtuomsize = new DevExpress.XtraEditors.ComboBoxEdit();
     this.txtuomsale = new DevExpress.XtraEditors.ComboBoxEdit();
     this.cmbValueMethod = new DevExpress.XtraEditors.ComboBoxEdit();
     this.txtAvgRate = new DevExpress.XtraEditors.TextEdit();
     this.txtToleranceDay = new DevExpress.XtraEditors.TextEdit();
     this.txtLoadTime = new DevExpress.XtraEditors.TextEdit();
     this.txtPurchaseRate = new DevExpress.XtraEditors.TextEdit();
     this.txtSpecialRate = new DevExpress.XtraEditors.TextEdit();
     this.txtCostRate = new DevExpress.XtraEditors.TextEdit();
     this.txtTransit = new DevExpress.XtraEditors.TextEdit();
     this.txtTarget = new DevExpress.XtraEditors.TextEdit();
     this.txtNetBalance = new DevExpress.XtraEditors.TextEdit();
     this.txtBalanceBonus = new DevExpress.XtraEditors.TextEdit();
     this.txtBalanceStock = new DevExpress.XtraEditors.TextEdit();
     this.txtMaxQuantityDays = new DevExpress.XtraEditors.TextEdit();
     this.txtMaxQuantityPCustomer = new DevExpress.XtraEditors.TextEdit();
     this.txtPackInBox = new DevExpress.XtraEditors.TextEdit();
     this.txtInventoryDays = new DevExpress.XtraEditors.TextEdit();
     this.txtMinFlatRate = new DevExpress.XtraEditors.TextEdit();
     this.txtMaxFlatRate = new DevExpress.XtraEditors.TextEdit();
     this.cmbSaleTaxCalculation = new DevExpress.XtraEditors.ComboBoxEdit();
     this.txtSaleTaxVale = new DevExpress.XtraEditors.TextEdit();
     this.txtSaleTaxPer = new DevExpress.XtraEditors.TextEdit();
     this.txtMaxSalesDisc = new DevExpress.XtraEditors.TextEdit();
     this.txtPurchaseDiscountPer = new DevExpress.XtraEditors.TextEdit();
     this.txtRetailPrice = new DevExpress.XtraEditors.TextEdit();
     this.chkwolallow = new DevExpress.XtraEditors.CheckEdit();
     this.chkAllowPer = new DevExpress.XtraEditors.CheckEdit();
     this.chkAutoBonus = new DevExpress.XtraEditors.CheckEdit();
     this.chkSaleBase = new DevExpress.XtraEditors.CheckEdit();
     this.chkSaleTaxReg = new DevExpress.XtraEditors.CheckEdit();
     this.chkNonPharma = new DevExpress.XtraEditors.CheckEdit();
     this.chkExcempted = new DevExpress.XtraEditors.CheckEdit();
     this.chkUseFlatRate = new DevExpress.XtraEditors.CheckEdit();
     this.chkNorCotics = new DevExpress.XtraEditors.CheckEdit();
     this.chkHideinTabs = new DevExpress.XtraEditors.CheckEdit();
     this.chkAllowMaxQtyDays = new DevExpress.XtraEditors.CheckEdit();
     this.chkProductDiscontinue = new DevExpress.XtraEditors.CheckEdit();
     this.txtTradePrice = new DevExpress.XtraEditors.TextEdit();
     this.txtSaleRate = new DevExpress.XtraEditors.TextEdit();
     this.txtPackInCarton = new DevExpress.XtraEditors.TextEdit();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl18 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl17 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl16 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl15 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl50 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl19 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl20 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl25 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl24 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl23 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl22 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl21 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl26 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl52 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl53 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl27 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl28 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl29 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl30 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl31 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl32 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl37 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl38 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl44 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl43 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl41 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl42 = new DevExpress.XtraEditors.LabelControl();
     this.XtrabarBonus = new DevExpress.XtraTab.XtraTabPage();
     this.datagridBonus = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
     this.datagridProductAllocation = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
     this.groupControl5 = new DevExpress.XtraEditors.GroupControl();
     this.txtMaxLimit = new DevExpress.XtraEditors.TextEdit();
     this.txtMinLimit = new DevExpress.XtraEditors.TextEdit();
     this.txtBarCode = new DevExpress.XtraEditors.TextEdit();
     this.txtShelfCode = new DevExpress.XtraEditors.TextEdit();
     this.grdPresevasionStandard = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.simpleButton8 = new DevExpress.XtraEditors.SimpleButton();
     this.txtClaimPartnerID = new System.Windows.Forms.MaskedTextBox();
     this.txtClaimPartnerName = new DevExpress.XtraEditors.TextEdit();
     this.simpleButton7 = new DevExpress.XtraEditors.SimpleButton();
     this.txtBussinessPartnerid = new System.Windows.Forms.MaskedTextBox();
     this.businessPartnerName = new DevExpress.XtraEditors.TextEdit();
     this.labelControl40 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl48 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl46 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl47 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl54 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl55 = new DevExpress.XtraEditors.LabelControl();
     this.xtraTabPage3 = new DevExpress.XtraTab.XtraTabPage();
     this.dgFileAttachments = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.Productid = new DevExpress.XtraEditors.LabelControl();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.cmbProductCategory = new DevExpress.XtraEditors.ComboBoxEdit();
     this.txtShortName = new DevExpress.XtraEditors.TextEdit();
     this.txtArtical = new DevExpress.XtraEditors.TextEdit();
     this.txtProductName = new DevExpress.XtraEditors.TextEdit();
     this.cmbSkuType = new DevExpress.XtraEditors.ComboBoxEdit();
     this.cmbGeneralName = new DevExpress.XtraEditors.ComboBoxEdit();
     this.cmbProtoType = new DevExpress.XtraEditors.ComboBoxEdit();
     this.btnPickList = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.txtProductId = new System.Windows.Forms.MaskedTextBox();
     this.txtPack = new DevExpress.XtraEditors.TextEdit();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl14 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl49 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl39 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.txtGroupSeq = new DevExpress.XtraEditors.TextEdit();
     this.txtGroupName = new DevExpress.XtraEditors.TextEdit();
     this.txtGroupid = new System.Windows.Forms.MaskedTextBox();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.txtmanualgroup = new DevExpress.XtraEditors.TextEdit();
     this.labelControl57 = new DevExpress.XtraEditors.LabelControl();
     this.txtdateto = new System.Windows.Forms.MaskedTextBox();
     this.txtdatefrom = new System.Windows.Forms.MaskedTextBox();
     this.simpleButton4 = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl56 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl51 = new DevExpress.XtraEditors.LabelControl();
     this.btnAdd = new DevExpress.XtraEditors.SimpleButton();
     this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl4 = new DevExpress.XtraEditors.GroupControl();
     this.simpleButton6 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton5 = new DevExpress.XtraEditors.SimpleButton();
     this.chkCompanyDiscount = new DevExpress.XtraEditors.CheckEdit();
     this.txtCompanySeq = new DevExpress.XtraEditors.TextEdit();
     this.simpleButton3 = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl35 = new DevExpress.XtraEditors.LabelControl();
     this.txtReportCompanyName = new DevExpress.XtraEditors.TextEdit();
     this.txtReportCompanyid = new System.Windows.Forms.MaskedTextBox();
     this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
     this.txtCompanyName = new DevExpress.XtraEditors.TextEdit();
     this.txtCompanyid = new System.Windows.Forms.MaskedTextBox();
     this.labelControl33 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl34 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl36 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.xtrabarGeneralinformation.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtfactor.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtuompurchase.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtuomsize.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtuomsale.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbValueMethod.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtAvgRate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtToleranceDay.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLoadTime.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPurchaseRate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSpecialRate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCostRate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTransit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTarget.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNetBalance.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBalanceBonus.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBalanceStock.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxQuantityDays.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxQuantityPCustomer.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPackInBox.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInventoryDays.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMinFlatRate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxFlatRate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbSaleTaxCalculation.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSaleTaxVale.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSaleTaxPer.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxSalesDisc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPurchaseDiscountPer.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRetailPrice.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkwolallow.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkAllowPer.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkAutoBonus.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkSaleBase.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkSaleTaxReg.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkNonPharma.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkExcempted.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkUseFlatRate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkNorCotics.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkHideinTabs.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkAllowMaxQtyDays.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkProductDiscontinue.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTradePrice.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSaleRate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPackInCarton.Properties)).BeginInit();
     this.XtrabarBonus.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.datagridBonus)).BeginInit();
     this.xtraTabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.datagridProductAllocation)).BeginInit();
     this.xtraTabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).BeginInit();
     this.groupControl5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxLimit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMinLimit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBarCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShelfCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdPresevasionStandard)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtClaimPartnerName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.businessPartnerName.Properties)).BeginInit();
     this.xtraTabPage3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgFileAttachments)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbProductCategory.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShortName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtArtical.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtProductName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbSkuType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbGeneralName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbProtoType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPack.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGroupSeq.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGroupName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtmanualgroup.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).BeginInit();
     this.groupControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkCompanyDiscount.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCompanySeq.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtReportCompanyName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCompanyName.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.xtraTabControl1.Location = new System.Drawing.Point(3, 171);
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.SelectedTabPage = this.xtrabarGeneralinformation;
     this.xtraTabControl1.Size = new System.Drawing.Size(701, 254);
     this.xtraTabControl1.TabIndex = 0;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtrabarGeneralinformation,
     this.XtrabarBonus,
     this.xtraTabPage1,
     this.xtraTabPage2,
     this.xtraTabPage3});
     this.xtraTabControl1.SelectedPageChanged += new DevExpress.XtraTab.TabPageChangedEventHandler(this.xtraTabControl1_SelectedPageChanged);
     this.xtraTabControl1.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.xtraTabControl1_PreviewKeyDown);
     //
     // xtrabarGeneralinformation
     //
     this.xtrabarGeneralinformation.Controls.Add(this.panelControl1);
     this.xtrabarGeneralinformation.Name = "xtrabarGeneralinformation";
     this.xtrabarGeneralinformation.Size = new System.Drawing.Size(695, 226);
     this.xtrabarGeneralinformation.Text = "General Information";
     //
     // panelControl1
     //
     this.panelControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.panelControl1.Appearance.BackColor = System.Drawing.Color.White;
     this.panelControl1.Appearance.Options.UseBackColor = true;
     this.panelControl1.Controls.Add(this.txtfactor);
     this.panelControl1.Controls.Add(this.txtuompurchase);
     this.panelControl1.Controls.Add(this.txtuomsize);
     this.panelControl1.Controls.Add(this.txtuomsale);
     this.panelControl1.Controls.Add(this.cmbValueMethod);
     this.panelControl1.Controls.Add(this.txtAvgRate);
     this.panelControl1.Controls.Add(this.txtToleranceDay);
     this.panelControl1.Controls.Add(this.txtLoadTime);
     this.panelControl1.Controls.Add(this.txtPurchaseRate);
     this.panelControl1.Controls.Add(this.txtSpecialRate);
     this.panelControl1.Controls.Add(this.txtCostRate);
     this.panelControl1.Controls.Add(this.txtTransit);
     this.panelControl1.Controls.Add(this.txtTarget);
     this.panelControl1.Controls.Add(this.txtNetBalance);
     this.panelControl1.Controls.Add(this.txtBalanceBonus);
     this.panelControl1.Controls.Add(this.txtBalanceStock);
     this.panelControl1.Controls.Add(this.txtMaxQuantityDays);
     this.panelControl1.Controls.Add(this.txtMaxQuantityPCustomer);
     this.panelControl1.Controls.Add(this.txtPackInBox);
     this.panelControl1.Controls.Add(this.txtInventoryDays);
     this.panelControl1.Controls.Add(this.txtMinFlatRate);
     this.panelControl1.Controls.Add(this.txtMaxFlatRate);
     this.panelControl1.Controls.Add(this.cmbSaleTaxCalculation);
     this.panelControl1.Controls.Add(this.txtSaleTaxVale);
     this.panelControl1.Controls.Add(this.txtSaleTaxPer);
     this.panelControl1.Controls.Add(this.txtMaxSalesDisc);
     this.panelControl1.Controls.Add(this.txtPurchaseDiscountPer);
     this.panelControl1.Controls.Add(this.txtRetailPrice);
     this.panelControl1.Controls.Add(this.chkwolallow);
     this.panelControl1.Controls.Add(this.chkAllowPer);
     this.panelControl1.Controls.Add(this.chkAutoBonus);
     this.panelControl1.Controls.Add(this.chkSaleBase);
     this.panelControl1.Controls.Add(this.chkSaleTaxReg);
     this.panelControl1.Controls.Add(this.chkNonPharma);
     this.panelControl1.Controls.Add(this.chkExcempted);
     this.panelControl1.Controls.Add(this.chkUseFlatRate);
     this.panelControl1.Controls.Add(this.chkNorCotics);
     this.panelControl1.Controls.Add(this.chkHideinTabs);
     this.panelControl1.Controls.Add(this.chkAllowMaxQtyDays);
     this.panelControl1.Controls.Add(this.chkProductDiscontinue);
     this.panelControl1.Controls.Add(this.txtTradePrice);
     this.panelControl1.Controls.Add(this.txtSaleRate);
     this.panelControl1.Controls.Add(this.txtPackInCarton);
     this.panelControl1.Controls.Add(this.labelControl9);
     this.panelControl1.Controls.Add(this.labelControl18);
     this.panelControl1.Controls.Add(this.labelControl17);
     this.panelControl1.Controls.Add(this.labelControl16);
     this.panelControl1.Controls.Add(this.labelControl15);
     this.panelControl1.Controls.Add(this.labelControl13);
     this.panelControl1.Controls.Add(this.labelControl50);
     this.panelControl1.Controls.Add(this.labelControl12);
     this.panelControl1.Controls.Add(this.labelControl11);
     this.panelControl1.Controls.Add(this.labelControl19);
     this.panelControl1.Controls.Add(this.labelControl20);
     this.panelControl1.Controls.Add(this.labelControl25);
     this.panelControl1.Controls.Add(this.labelControl24);
     this.panelControl1.Controls.Add(this.labelControl23);
     this.panelControl1.Controls.Add(this.labelControl22);
     this.panelControl1.Controls.Add(this.labelControl21);
     this.panelControl1.Controls.Add(this.labelControl26);
     this.panelControl1.Controls.Add(this.labelControl52);
     this.panelControl1.Controls.Add(this.labelControl53);
     this.panelControl1.Controls.Add(this.labelControl27);
     this.panelControl1.Controls.Add(this.labelControl28);
     this.panelControl1.Controls.Add(this.labelControl29);
     this.panelControl1.Controls.Add(this.labelControl30);
     this.panelControl1.Controls.Add(this.labelControl31);
     this.panelControl1.Controls.Add(this.labelControl32);
     this.panelControl1.Controls.Add(this.labelControl37);
     this.panelControl1.Controls.Add(this.labelControl38);
     this.panelControl1.Controls.Add(this.labelControl44);
     this.panelControl1.Controls.Add(this.labelControl43);
     this.panelControl1.Controls.Add(this.labelControl41);
     this.panelControl1.Controls.Add(this.labelControl42);
     this.panelControl1.Location = new System.Drawing.Point(-1, 0);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(700, 226);
     this.panelControl1.TabIndex = 180;
     //
     // txtfactor
     //
     this.txtfactor.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtfactor.Location = new System.Drawing.Point(449, 161);
     this.txtfactor.Name = "txtfactor";
     this.txtfactor.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txtfactor.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.txtfactor.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.txtfactor.Size = new System.Drawing.Size(82, 20);
     this.txtfactor.TabIndex = 124270;
     this.txtfactor.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtfactor_PreviewKeyDown);
     //
     // txtuompurchase
     //
     this.txtuompurchase.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtuompurchase.Location = new System.Drawing.Point(449, 142);
     this.txtuompurchase.Name = "txtuompurchase";
     this.txtuompurchase.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txtuompurchase.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.txtuompurchase.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.txtuompurchase.Size = new System.Drawing.Size(82, 20);
     this.txtuompurchase.TabIndex = 124262;
     this.txtuompurchase.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtuompurchase_PreviewKeyDown);
     //
     // txtuomsize
     //
     this.txtuomsize.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtuomsize.Location = new System.Drawing.Point(449, 123);
     this.txtuomsize.Name = "txtuomsize";
     this.txtuomsize.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txtuomsize.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.txtuomsize.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.txtuomsize.Size = new System.Drawing.Size(82, 20);
     this.txtuomsize.TabIndex = 124258;
     this.txtuomsize.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtuomsize_PreviewKeyDown);
     //
     // txtuomsale
     //
     this.txtuomsale.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtuomsale.Location = new System.Drawing.Point(449, 104);
     this.txtuomsale.Name = "txtuomsale";
     this.txtuomsale.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txtuomsale.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.txtuomsale.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.txtuomsale.Size = new System.Drawing.Size(82, 20);
     this.txtuomsale.TabIndex = 124260;
     this.txtuomsale.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtuomsale_PreviewKeyDown);
     //
     // cmbValueMethod
     //
     this.cmbValueMethod.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cmbValueMethod.Location = new System.Drawing.Point(449, 85);
     this.cmbValueMethod.Name = "cmbValueMethod";
     this.cmbValueMethod.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbValueMethod.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.cmbValueMethod.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cmbValueMethod.Size = new System.Drawing.Size(82, 20);
     this.cmbValueMethod.TabIndex = 37;
     this.cmbValueMethod.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.cmbValueMethod_PreviewKeyDown);
     //
     // txtAvgRate
     //
     this.txtAvgRate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtAvgRate.Location = new System.Drawing.Point(449, 66);
     this.txtAvgRate.Name = "txtAvgRate";
     this.txtAvgRate.Size = new System.Drawing.Size(82, 20);
     this.txtAvgRate.TabIndex = 36;
     this.txtAvgRate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtAvgRate_PreviewKeyDown);
     //
     // txtToleranceDay
     //
     this.txtToleranceDay.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtToleranceDay.Location = new System.Drawing.Point(449, 47);
     this.txtToleranceDay.Name = "txtToleranceDay";
     this.txtToleranceDay.Size = new System.Drawing.Size(82, 20);
     this.txtToleranceDay.TabIndex = 35;
     this.txtToleranceDay.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtToleranceDay_PreviewKeyDown);
     //
     // txtLoadTime
     //
     this.txtLoadTime.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtLoadTime.Location = new System.Drawing.Point(449, 28);
     this.txtLoadTime.Name = "txtLoadTime";
     this.txtLoadTime.Size = new System.Drawing.Size(82, 20);
     this.txtLoadTime.TabIndex = 34;
     this.txtLoadTime.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtLoadTime_PreviewKeyDown);
     //
     // txtPurchaseRate
     //
     this.txtPurchaseRate.EditValue = "0.00";
     this.txtPurchaseRate.Location = new System.Drawing.Point(285, 199);
     this.txtPurchaseRate.Name = "txtPurchaseRate";
     this.txtPurchaseRate.Size = new System.Drawing.Size(82, 20);
     this.txtPurchaseRate.TabIndex = 32;
     this.txtPurchaseRate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtPurchaseRate_PreviewKeyDown);
     //
     // txtSpecialRate
     //
     this.txtSpecialRate.EditValue = "0.00";
     this.txtSpecialRate.Location = new System.Drawing.Point(285, 180);
     this.txtSpecialRate.Name = "txtSpecialRate";
     this.txtSpecialRate.Size = new System.Drawing.Size(82, 20);
     this.txtSpecialRate.TabIndex = 31;
     this.txtSpecialRate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtSpecialRate_PreviewKeyDown);
     //
     // txtCostRate
     //
     this.txtCostRate.EditValue = "0.00";
     this.txtCostRate.Location = new System.Drawing.Point(285, 161);
     this.txtCostRate.Name = "txtCostRate";
     this.txtCostRate.Size = new System.Drawing.Size(82, 20);
     this.txtCostRate.TabIndex = 30;
     this.txtCostRate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtCostRate_PreviewKeyDown);
     //
     // txtTransit
     //
     this.txtTransit.EditValue = "0.00";
     this.txtTransit.Location = new System.Drawing.Point(285, 142);
     this.txtTransit.Name = "txtTransit";
     this.txtTransit.Size = new System.Drawing.Size(82, 20);
     this.txtTransit.TabIndex = 124268;
     this.txtTransit.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtTransit_PreviewKeyDown);
     //
     // txtTarget
     //
     this.txtTarget.EditValue = "0.00";
     this.txtTarget.Location = new System.Drawing.Point(285, 123);
     this.txtTarget.Name = "txtTarget";
     this.txtTarget.Size = new System.Drawing.Size(82, 20);
     this.txtTarget.TabIndex = 124266;
     this.txtTarget.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtTarget_PreviewKeyDown);
     //
     // txtNetBalance
     //
     this.txtNetBalance.EditValue = "0.00";
     this.txtNetBalance.Location = new System.Drawing.Point(285, 104);
     this.txtNetBalance.Name = "txtNetBalance";
     this.txtNetBalance.Size = new System.Drawing.Size(82, 20);
     this.txtNetBalance.TabIndex = 29;
     this.txtNetBalance.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtNetBalance_PreviewKeyDown);
     //
     // txtBalanceBonus
     //
     this.txtBalanceBonus.EditValue = "";
     this.txtBalanceBonus.Location = new System.Drawing.Point(285, 85);
     this.txtBalanceBonus.Name = "txtBalanceBonus";
     this.txtBalanceBonus.Size = new System.Drawing.Size(82, 20);
     this.txtBalanceBonus.TabIndex = 28;
     this.txtBalanceBonus.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtBalanceBonus_PreviewKeyDown);
     //
     // txtBalanceStock
     //
     this.txtBalanceStock.Location = new System.Drawing.Point(285, 66);
     this.txtBalanceStock.Name = "txtBalanceStock";
     this.txtBalanceStock.Size = new System.Drawing.Size(82, 20);
     this.txtBalanceStock.TabIndex = 27;
     this.txtBalanceStock.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtBalanceStock_PreviewKeyDown);
     //
     // txtMaxQuantityDays
     //
     this.txtMaxQuantityDays.Location = new System.Drawing.Point(285, 47);
     this.txtMaxQuantityDays.Name = "txtMaxQuantityDays";
     this.txtMaxQuantityDays.Size = new System.Drawing.Size(82, 20);
     this.txtMaxQuantityDays.TabIndex = 26;
     this.txtMaxQuantityDays.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtMaxQuantityDays_PreviewKeyDown);
     //
     // txtMaxQuantityPCustomer
     //
     this.txtMaxQuantityPCustomer.Location = new System.Drawing.Point(285, 28);
     this.txtMaxQuantityPCustomer.Name = "txtMaxQuantityPCustomer";
     this.txtMaxQuantityPCustomer.Size = new System.Drawing.Size(82, 20);
     this.txtMaxQuantityPCustomer.TabIndex = 25;
     this.txtMaxQuantityPCustomer.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtMaxQuantityPCustomer_PreviewKeyDown);
     //
     // txtPackInBox
     //
     this.txtPackInBox.Location = new System.Drawing.Point(102, 199);
     this.txtPackInBox.Name = "txtPackInBox";
     this.txtPackInBox.Size = new System.Drawing.Size(82, 20);
     this.txtPackInBox.TabIndex = 23;
     this.txtPackInBox.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtPackInBox_PreviewKeyDown);
     //
     // txtInventoryDays
     //
     this.txtInventoryDays.EditValue = "0.00";
     this.txtInventoryDays.Location = new System.Drawing.Point(102, 180);
     this.txtInventoryDays.Name = "txtInventoryDays";
     this.txtInventoryDays.Size = new System.Drawing.Size(82, 20);
     this.txtInventoryDays.TabIndex = 22;
     this.txtInventoryDays.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtInventoryDays_PreviewKeyDown);
     //
     // txtMinFlatRate
     //
     this.txtMinFlatRate.EditValue = "0.00";
     this.txtMinFlatRate.Location = new System.Drawing.Point(102, 161);
     this.txtMinFlatRate.Name = "txtMinFlatRate";
     this.txtMinFlatRate.Size = new System.Drawing.Size(82, 20);
     this.txtMinFlatRate.TabIndex = 21;
     this.txtMinFlatRate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtMinFlatRate_PreviewKeyDown);
     //
     // txtMaxFlatRate
     //
     this.txtMaxFlatRate.EditValue = "0.00";
     this.txtMaxFlatRate.Location = new System.Drawing.Point(102, 142);
     this.txtMaxFlatRate.Name = "txtMaxFlatRate";
     this.txtMaxFlatRate.Size = new System.Drawing.Size(82, 20);
     this.txtMaxFlatRate.TabIndex = 20;
     this.txtMaxFlatRate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtMaxFlatRate_PreviewKeyDown);
     //
     // cmbSaleTaxCalculation
     //
     this.cmbSaleTaxCalculation.Location = new System.Drawing.Point(102, 123);
     this.cmbSaleTaxCalculation.Name = "cmbSaleTaxCalculation";
     this.cmbSaleTaxCalculation.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbSaleTaxCalculation.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.cmbSaleTaxCalculation.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cmbSaleTaxCalculation.Size = new System.Drawing.Size(82, 20);
     this.cmbSaleTaxCalculation.TabIndex = 59;
     //
     // txtSaleTaxVale
     //
     this.txtSaleTaxVale.EditValue = "0.00";
     this.txtSaleTaxVale.Location = new System.Drawing.Point(102, 104);
     this.txtSaleTaxVale.Name = "txtSaleTaxVale";
     this.txtSaleTaxVale.Size = new System.Drawing.Size(82, 20);
     this.txtSaleTaxVale.TabIndex = 19;
     this.txtSaleTaxVale.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtSaleTaxVale_PreviewKeyDown);
     //
     // txtSaleTaxPer
     //
     this.txtSaleTaxPer.EditValue = "0.00";
     this.txtSaleTaxPer.Location = new System.Drawing.Point(102, 85);
     this.txtSaleTaxPer.Name = "txtSaleTaxPer";
     this.txtSaleTaxPer.Size = new System.Drawing.Size(82, 20);
     this.txtSaleTaxPer.TabIndex = 18;
     this.txtSaleTaxPer.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtSaleTaxPer_PreviewKeyDown);
     //
     // txtMaxSalesDisc
     //
     this.txtMaxSalesDisc.EditValue = "0.00";
     this.txtMaxSalesDisc.Location = new System.Drawing.Point(102, 66);
     this.txtMaxSalesDisc.Name = "txtMaxSalesDisc";
     this.txtMaxSalesDisc.Size = new System.Drawing.Size(82, 20);
     this.txtMaxSalesDisc.TabIndex = 17;
     this.txtMaxSalesDisc.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtMaxSalesDisc_PreviewKeyDown);
     //
     // txtPurchaseDiscountPer
     //
     this.txtPurchaseDiscountPer.EditValue = "0.0000";
     this.txtPurchaseDiscountPer.Location = new System.Drawing.Point(102, 47);
     this.txtPurchaseDiscountPer.Name = "txtPurchaseDiscountPer";
     this.txtPurchaseDiscountPer.Size = new System.Drawing.Size(82, 20);
     this.txtPurchaseDiscountPer.TabIndex = 16;
     this.txtPurchaseDiscountPer.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtPurchaseDiscountPer_PreviewKeyDown);
     //
     // txtRetailPrice
     //
     this.txtRetailPrice.EditValue = "0.00";
     this.txtRetailPrice.Location = new System.Drawing.Point(102, 28);
     this.txtRetailPrice.Name = "txtRetailPrice";
     this.txtRetailPrice.Size = new System.Drawing.Size(82, 20);
     this.txtRetailPrice.TabIndex = 15;
     this.txtRetailPrice.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtRetailPrice_PreviewKeyDown);
     //
     // chkwolallow
     //
     this.chkwolallow.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkwolallow.EnterMoveNextControl = true;
     this.chkwolallow.Location = new System.Drawing.Point(545, 179);
     this.chkwolallow.Name = "chkwolallow";
     this.chkwolallow.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkwolallow.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkwolallow.Properties.Appearance.Options.UseFont = true;
     this.chkwolallow.Properties.Appearance.Options.UseForeColor = true;
     this.chkwolallow.Properties.Caption = "With Out Lic Allow";
     this.chkwolallow.Size = new System.Drawing.Size(136, 19);
     this.chkwolallow.TabIndex = 50;
     this.chkwolallow.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkwolallow_PreviewKeyDown);
     //
     // chkAllowPer
     //
     this.chkAllowPer.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkAllowPer.Location = new System.Drawing.Point(545, 145);
     this.chkAllowPer.Name = "chkAllowPer";
     this.chkAllowPer.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkAllowPer.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkAllowPer.Properties.Appearance.Options.UseFont = true;
     this.chkAllowPer.Properties.Appearance.Options.UseForeColor = true;
     this.chkAllowPer.Properties.Caption = "Allow 100%";
     this.chkAllowPer.Size = new System.Drawing.Size(136, 19);
     this.chkAllowPer.TabIndex = 48;
     this.chkAllowPer.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkAllowPer_PreviewKeyDown);
     //
     // chkAutoBonus
     //
     this.chkAutoBonus.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkAutoBonus.Location = new System.Drawing.Point(545, 162);
     this.chkAutoBonus.Name = "chkAutoBonus";
     this.chkAutoBonus.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkAutoBonus.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkAutoBonus.Properties.Appearance.Options.UseFont = true;
     this.chkAutoBonus.Properties.Appearance.Options.UseForeColor = true;
     this.chkAutoBonus.Properties.Caption = "Auto Bonus";
     this.chkAutoBonus.Size = new System.Drawing.Size(136, 19);
     this.chkAutoBonus.TabIndex = 49;
     this.chkAutoBonus.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkAutoBonus_PreviewKeyDown);
     //
     // chkSaleBase
     //
     this.chkSaleBase.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkSaleBase.Location = new System.Drawing.Point(545, 128);
     this.chkSaleBase.Name = "chkSaleBase";
     this.chkSaleBase.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkSaleBase.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkSaleBase.Properties.Appearance.Options.UseFont = true;
     this.chkSaleBase.Properties.Appearance.Options.UseForeColor = true;
     this.chkSaleBase.Properties.Caption = "Sale Base";
     this.chkSaleBase.Size = new System.Drawing.Size(136, 19);
     this.chkSaleBase.TabIndex = 47;
     this.chkSaleBase.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkSaleBase_PreviewKeyDown);
     //
     // chkSaleTaxReg
     //
     this.chkSaleTaxReg.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkSaleTaxReg.Location = new System.Drawing.Point(545, 93);
     this.chkSaleTaxReg.Name = "chkSaleTaxReg";
     this.chkSaleTaxReg.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkSaleTaxReg.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkSaleTaxReg.Properties.Appearance.Options.UseFont = true;
     this.chkSaleTaxReg.Properties.Appearance.Options.UseForeColor = true;
     this.chkSaleTaxReg.Properties.Caption = "S.Tax Reg";
     this.chkSaleTaxReg.Size = new System.Drawing.Size(111, 19);
     this.chkSaleTaxReg.TabIndex = 44;
     this.chkSaleTaxReg.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkSaleTaxReg_PreviewKeyDown);
     //
     // chkNonPharma
     //
     this.chkNonPharma.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkNonPharma.Location = new System.Drawing.Point(545, 110);
     this.chkNonPharma.Name = "chkNonPharma";
     this.chkNonPharma.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkNonPharma.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkNonPharma.Properties.Appearance.Options.UseFont = true;
     this.chkNonPharma.Properties.Appearance.Options.UseForeColor = true;
     this.chkNonPharma.Properties.Caption = "Non Pharma";
     this.chkNonPharma.Size = new System.Drawing.Size(89, 19);
     this.chkNonPharma.TabIndex = 45;
     this.chkNonPharma.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkNonPharma_PreviewKeyDown);
     //
     // chkExcempted
     //
     this.chkExcempted.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkExcempted.Location = new System.Drawing.Point(545, 76);
     this.chkExcempted.Name = "chkExcempted";
     this.chkExcempted.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkExcempted.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkExcempted.Properties.Appearance.Options.UseFont = true;
     this.chkExcempted.Properties.Appearance.Options.UseForeColor = true;
     this.chkExcempted.Properties.Caption = "Tax Excempted";
     this.chkExcempted.Size = new System.Drawing.Size(111, 19);
     this.chkExcempted.TabIndex = 43;
     this.chkExcempted.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkExcempted_PreviewKeyDown);
     //
     // chkUseFlatRate
     //
     this.chkUseFlatRate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkUseFlatRate.Location = new System.Drawing.Point(545, 7);
     this.chkUseFlatRate.Name = "chkUseFlatRate";
     this.chkUseFlatRate.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkUseFlatRate.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkUseFlatRate.Properties.Appearance.Options.UseFont = true;
     this.chkUseFlatRate.Properties.Appearance.Options.UseForeColor = true;
     this.chkUseFlatRate.Properties.Caption = "Use Flat Rate";
     this.chkUseFlatRate.Size = new System.Drawing.Size(139, 19);
     this.chkUseFlatRate.TabIndex = 39;
     this.chkUseFlatRate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkUseFlatRate_PreviewKeyDown);
     //
     // chkNorCotics
     //
     this.chkNorCotics.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkNorCotics.Location = new System.Drawing.Point(545, 24);
     this.chkNorCotics.Name = "chkNorCotics";
     this.chkNorCotics.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkNorCotics.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkNorCotics.Properties.Appearance.Options.UseFont = true;
     this.chkNorCotics.Properties.Appearance.Options.UseForeColor = true;
     this.chkNorCotics.Properties.Caption = "Norcotics";
     this.chkNorCotics.Size = new System.Drawing.Size(75, 19);
     this.chkNorCotics.TabIndex = 40;
     this.chkNorCotics.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkNorCotics_PreviewKeyDown);
     //
     // chkHideinTabs
     //
     this.chkHideinTabs.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkHideinTabs.Location = new System.Drawing.Point(545, 59);
     this.chkHideinTabs.Name = "chkHideinTabs";
     this.chkHideinTabs.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkHideinTabs.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkHideinTabs.Properties.Appearance.Options.UseFont = true;
     this.chkHideinTabs.Properties.Appearance.Options.UseForeColor = true;
     this.chkHideinTabs.Properties.Caption = "Hide in Tabs";
     this.chkHideinTabs.Size = new System.Drawing.Size(111, 19);
     this.chkHideinTabs.TabIndex = 42;
     this.chkHideinTabs.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkHideinTabs_PreviewKeyDown);
     //
     // chkAllowMaxQtyDays
     //
     this.chkAllowMaxQtyDays.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkAllowMaxQtyDays.Location = new System.Drawing.Point(545, 42);
     this.chkAllowMaxQtyDays.Name = "chkAllowMaxQtyDays";
     this.chkAllowMaxQtyDays.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkAllowMaxQtyDays.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkAllowMaxQtyDays.Properties.Appearance.Options.UseFont = true;
     this.chkAllowMaxQtyDays.Properties.Appearance.Options.UseForeColor = true;
     this.chkAllowMaxQtyDays.Properties.Caption = "Allow Max Qty & Days";
     this.chkAllowMaxQtyDays.Size = new System.Drawing.Size(139, 19);
     this.chkAllowMaxQtyDays.TabIndex = 41;
     this.chkAllowMaxQtyDays.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkAllowMaxQtyDays_PreviewKeyDown);
     //
     // chkProductDiscontinue
     //
     this.chkProductDiscontinue.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkProductDiscontinue.Location = new System.Drawing.Point(545, 197);
     this.chkProductDiscontinue.Name = "chkProductDiscontinue";
     this.chkProductDiscontinue.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkProductDiscontinue.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkProductDiscontinue.Properties.Appearance.Options.UseFont = true;
     this.chkProductDiscontinue.Properties.Appearance.Options.UseForeColor = true;
     this.chkProductDiscontinue.Properties.Caption = "Product Discountinue";
     this.chkProductDiscontinue.Size = new System.Drawing.Size(141, 19);
     this.chkProductDiscontinue.TabIndex = 38;
     this.chkProductDiscontinue.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkProductDiscontinue_PreviewKeyDown);
     //
     // txtTradePrice
     //
     this.txtTradePrice.EditValue = "0.00";
     this.txtTradePrice.Location = new System.Drawing.Point(102, 9);
     this.txtTradePrice.Name = "txtTradePrice";
     this.txtTradePrice.Size = new System.Drawing.Size(82, 20);
     this.txtTradePrice.TabIndex = 14;
     this.txtTradePrice.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtTradePrice_PreviewKeyDown);
     //
     // txtSaleRate
     //
     this.txtSaleRate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtSaleRate.EditValue = "0.00";
     this.txtSaleRate.Location = new System.Drawing.Point(449, 9);
     this.txtSaleRate.Name = "txtSaleRate";
     this.txtSaleRate.Size = new System.Drawing.Size(82, 20);
     this.txtSaleRate.TabIndex = 33;
     this.txtSaleRate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtSaleRate_PreviewKeyDown);
     //
     // txtPackInCarton
     //
     this.txtPackInCarton.Location = new System.Drawing.Point(285, 9);
     this.txtPackInCarton.Name = "txtPackInCarton";
     this.txtPackInCarton.Size = new System.Drawing.Size(82, 20);
     this.txtPackInCarton.TabIndex = 24;
     this.txtPackInCarton.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtPackInCarton_PreviewKeyDown);
     //
     // labelControl9
     //
     this.labelControl9.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl9.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl9.LineVisible = true;
     this.labelControl9.Location = new System.Drawing.Point(16, 9);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(96, 20);
     this.labelControl9.TabIndex = 140;
     this.labelControl9.Text = "Trade Price";
     //
     // labelControl18
     //
     this.labelControl18.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl18.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl18.LineVisible = true;
     this.labelControl18.Location = new System.Drawing.Point(16, 28);
     this.labelControl18.Name = "labelControl18";
     this.labelControl18.Size = new System.Drawing.Size(96, 20);
     this.labelControl18.TabIndex = 157;
     this.labelControl18.Text = "Retail Price";
     //
     // labelControl17
     //
     this.labelControl17.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl17.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl17.LineVisible = true;
     this.labelControl17.Location = new System.Drawing.Point(16, 47);
     this.labelControl17.Name = "labelControl17";
     this.labelControl17.Size = new System.Drawing.Size(96, 20);
     this.labelControl17.TabIndex = 156;
     this.labelControl17.Text = "Purchase Disc %";
     //
     // labelControl16
     //
     this.labelControl16.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl16.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl16.LineVisible = true;
     this.labelControl16.Location = new System.Drawing.Point(16, 66);
     this.labelControl16.Name = "labelControl16";
     this.labelControl16.Size = new System.Drawing.Size(96, 20);
     this.labelControl16.TabIndex = 155;
     this.labelControl16.Text = "Max Sales Disc %";
     //
     // labelControl15
     //
     this.labelControl15.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl15.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl15.LineVisible = true;
     this.labelControl15.Location = new System.Drawing.Point(16, 85);
     this.labelControl15.Name = "labelControl15";
     this.labelControl15.Size = new System.Drawing.Size(96, 20);
     this.labelControl15.TabIndex = 154;
     this.labelControl15.Text = "Sale Tax %";
     //
     // labelControl13
     //
     this.labelControl13.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl13.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl13.LineVisible = true;
     this.labelControl13.Location = new System.Drawing.Point(16, 104);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Size = new System.Drawing.Size(96, 20);
     this.labelControl13.TabIndex = 153;
     this.labelControl13.Text = "Sale Tax Value";
     //
     // labelControl50
     //
     this.labelControl50.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl50.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl50.LineVisible = true;
     this.labelControl50.Location = new System.Drawing.Point(16, 123);
     this.labelControl50.Name = "labelControl50";
     this.labelControl50.Size = new System.Drawing.Size(96, 20);
     this.labelControl50.TabIndex = 60;
     this.labelControl50.Text = "Sale Tax Calc";
     //
     // labelControl12
     //
     this.labelControl12.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl12.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl12.LineVisible = true;
     this.labelControl12.Location = new System.Drawing.Point(16, 142);
     this.labelControl12.Name = "labelControl12";
     this.labelControl12.Size = new System.Drawing.Size(96, 20);
     this.labelControl12.TabIndex = 152;
     this.labelControl12.Text = "Max Flat Rate";
     //
     // labelControl11
     //
     this.labelControl11.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl11.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl11.LineVisible = true;
     this.labelControl11.Location = new System.Drawing.Point(16, 161);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(96, 20);
     this.labelControl11.TabIndex = 151;
     this.labelControl11.Text = "Min Flat Rate";
     //
     // labelControl19
     //
     this.labelControl19.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl19.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl19.LineVisible = true;
     this.labelControl19.Location = new System.Drawing.Point(16, 180);
     this.labelControl19.Name = "labelControl19";
     this.labelControl19.Size = new System.Drawing.Size(96, 20);
     this.labelControl19.TabIndex = 158;
     this.labelControl19.Text = "Inventory Days";
     //
     // labelControl20
     //
     this.labelControl20.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl20.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl20.LineVisible = true;
     this.labelControl20.Location = new System.Drawing.Point(16, 198);
     this.labelControl20.Name = "labelControl20";
     this.labelControl20.Size = new System.Drawing.Size(96, 20);
     this.labelControl20.TabIndex = 159;
     this.labelControl20.Text = "Tabs in Pack";
     //
     // labelControl25
     //
     this.labelControl25.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl25.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl25.LineVisible = true;
     this.labelControl25.Location = new System.Drawing.Point(191, 10);
     this.labelControl25.Name = "labelControl25";
     this.labelControl25.Size = new System.Drawing.Size(100, 20);
     this.labelControl25.TabIndex = 164;
     this.labelControl25.Text = "Packs in Carton";
     //
     // labelControl24
     //
     this.labelControl24.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl24.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl24.LineVisible = true;
     this.labelControl24.Location = new System.Drawing.Point(191, 29);
     this.labelControl24.Name = "labelControl24";
     this.labelControl24.Size = new System.Drawing.Size(100, 20);
     this.labelControl24.TabIndex = 163;
     this.labelControl24.Text = "Max Qty/Customer";
     //
     // labelControl23
     //
     this.labelControl23.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl23.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl23.LineVisible = true;
     this.labelControl23.Location = new System.Drawing.Point(191, 48);
     this.labelControl23.Name = "labelControl23";
     this.labelControl23.Size = new System.Drawing.Size(100, 20);
     this.labelControl23.TabIndex = 162;
     this.labelControl23.Text = "Max Qty Days";
     //
     // labelControl22
     //
     this.labelControl22.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl22.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl22.LineVisible = true;
     this.labelControl22.Location = new System.Drawing.Point(191, 67);
     this.labelControl22.Name = "labelControl22";
     this.labelControl22.Size = new System.Drawing.Size(100, 20);
     this.labelControl22.TabIndex = 161;
     this.labelControl22.Text = "Balance Stock";
     //
     // labelControl21
     //
     this.labelControl21.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl21.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl21.LineVisible = true;
     this.labelControl21.Location = new System.Drawing.Point(191, 86);
     this.labelControl21.Name = "labelControl21";
     this.labelControl21.Size = new System.Drawing.Size(100, 20);
     this.labelControl21.TabIndex = 160;
     this.labelControl21.Text = "Balance Bonus";
     //
     // labelControl26
     //
     this.labelControl26.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl26.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl26.LineVisible = true;
     this.labelControl26.Location = new System.Drawing.Point(191, 104);
     this.labelControl26.Name = "labelControl26";
     this.labelControl26.Size = new System.Drawing.Size(100, 20);
     this.labelControl26.TabIndex = 165;
     this.labelControl26.Text = "Net Balance";
     //
     // labelControl52
     //
     this.labelControl52.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl52.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl52.LineVisible = true;
     this.labelControl52.Location = new System.Drawing.Point(191, 123);
     this.labelControl52.Name = "labelControl52";
     this.labelControl52.Size = new System.Drawing.Size(100, 20);
     this.labelControl52.TabIndex = 124267;
     this.labelControl52.Text = "Target";
     //
     // labelControl53
     //
     this.labelControl53.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl53.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl53.LineVisible = true;
     this.labelControl53.Location = new System.Drawing.Point(191, 142);
     this.labelControl53.Name = "labelControl53";
     this.labelControl53.Size = new System.Drawing.Size(100, 20);
     this.labelControl53.TabIndex = 124269;
     this.labelControl53.Text = "Transit";
     //
     // labelControl27
     //
     this.labelControl27.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl27.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl27.LineVisible = true;
     this.labelControl27.Location = new System.Drawing.Point(191, 162);
     this.labelControl27.Name = "labelControl27";
     this.labelControl27.Size = new System.Drawing.Size(100, 20);
     this.labelControl27.TabIndex = 166;
     this.labelControl27.Text = "Total Cost";
     //
     // labelControl28
     //
     this.labelControl28.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl28.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl28.LineVisible = true;
     this.labelControl28.Location = new System.Drawing.Point(191, 180);
     this.labelControl28.Name = "labelControl28";
     this.labelControl28.Size = new System.Drawing.Size(100, 20);
     this.labelControl28.TabIndex = 167;
     this.labelControl28.Text = "Special Rate";
     //
     // labelControl29
     //
     this.labelControl29.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl29.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl29.LineVisible = true;
     this.labelControl29.Location = new System.Drawing.Point(191, 199);
     this.labelControl29.Name = "labelControl29";
     this.labelControl29.Size = new System.Drawing.Size(100, 20);
     this.labelControl29.TabIndex = 168;
     this.labelControl29.Text = "Pure Rate";
     //
     // labelControl30
     //
     this.labelControl30.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl30.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl30.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl30.LineVisible = true;
     this.labelControl30.Location = new System.Drawing.Point(373, 10);
     this.labelControl30.Name = "labelControl30";
     this.labelControl30.Size = new System.Drawing.Size(82, 20);
     this.labelControl30.TabIndex = 169;
     this.labelControl30.Text = "Sale Rate";
     //
     // labelControl31
     //
     this.labelControl31.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl31.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl31.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl31.LineVisible = true;
     this.labelControl31.Location = new System.Drawing.Point(373, 29);
     this.labelControl31.Name = "labelControl31";
     this.labelControl31.Size = new System.Drawing.Size(82, 20);
     this.labelControl31.TabIndex = 182;
     this.labelControl31.Text = "Lead Time";
     //
     // labelControl32
     //
     this.labelControl32.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl32.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl32.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl32.LineVisible = true;
     this.labelControl32.Location = new System.Drawing.Point(373, 48);
     this.labelControl32.Name = "labelControl32";
     this.labelControl32.Size = new System.Drawing.Size(82, 20);
     this.labelControl32.TabIndex = 184;
     this.labelControl32.Text = "Tolerance Day";
     //
     // labelControl37
     //
     this.labelControl37.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl37.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl37.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl37.LineVisible = true;
     this.labelControl37.Location = new System.Drawing.Point(373, 67);
     this.labelControl37.Name = "labelControl37";
     this.labelControl37.Size = new System.Drawing.Size(82, 20);
     this.labelControl37.TabIndex = 186;
     this.labelControl37.Text = "Avg Rate";
     //
     // labelControl38
     //
     this.labelControl38.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl38.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl38.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl38.LineVisible = true;
     this.labelControl38.Location = new System.Drawing.Point(373, 86);
     this.labelControl38.Name = "labelControl38";
     this.labelControl38.Size = new System.Drawing.Size(82, 20);
     this.labelControl38.TabIndex = 103;
     this.labelControl38.Text = "Value Method";
     //
     // labelControl44
     //
     this.labelControl44.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl44.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl44.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl44.LineVisible = true;
     this.labelControl44.Location = new System.Drawing.Point(373, 105);
     this.labelControl44.Name = "labelControl44";
     this.labelControl44.Size = new System.Drawing.Size(82, 20);
     this.labelControl44.TabIndex = 124261;
     this.labelControl44.Text = "UOM-Sale";
     //
     // labelControl43
     //
     this.labelControl43.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl43.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl43.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl43.LineVisible = true;
     this.labelControl43.Location = new System.Drawing.Point(373, 124);
     this.labelControl43.Name = "labelControl43";
     this.labelControl43.Size = new System.Drawing.Size(82, 20);
     this.labelControl43.TabIndex = 124259;
     this.labelControl43.Text = "UOM-Size";
     //
     // labelControl41
     //
     this.labelControl41.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl41.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl41.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl41.LineVisible = true;
     this.labelControl41.Location = new System.Drawing.Point(373, 144);
     this.labelControl41.Name = "labelControl41";
     this.labelControl41.Size = new System.Drawing.Size(82, 20);
     this.labelControl41.TabIndex = 124263;
     this.labelControl41.Text = "UOM-Purchase";
     //
     // labelControl42
     //
     this.labelControl42.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl42.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl42.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl42.LineVisible = true;
     this.labelControl42.Location = new System.Drawing.Point(373, 161);
     this.labelControl42.Name = "labelControl42";
     this.labelControl42.Size = new System.Drawing.Size(82, 20);
     this.labelControl42.TabIndex = 124265;
     this.labelControl42.Text = "Factor";
     //
     // XtrabarBonus
     //
     this.XtrabarBonus.Controls.Add(this.datagridBonus);
     this.XtrabarBonus.Name = "XtrabarBonus";
     this.XtrabarBonus.Size = new System.Drawing.Size(695, 226);
     this.XtrabarBonus.Text = "Bonus";
     //
     // datagridBonus
     //
     this.datagridBonus.AllowAddNew = true;
     this.datagridBonus.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.datagridBonus.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.datagridBonus.Caption = "Product Bonus";
     this.datagridBonus.CaptionHeight = 20;
     this.datagridBonus.CollapseColor = System.Drawing.Color.Transparent;
     this.datagridBonus.ColumnFooters = true;
     this.datagridBonus.DirectionAfterEnter = C1.Win.C1TrueDBGrid.DirectionAfterEnterEnum.MoveNone;
     this.datagridBonus.ExpandColor = System.Drawing.Color.Transparent;
     this.datagridBonus.ForeColor = System.Drawing.SystemColors.Window;
     this.datagridBonus.Images.Add(((System.Drawing.Image)(resources.GetObject("datagridBonus.Images"))));
     this.datagridBonus.Location = new System.Drawing.Point(0, 1);
     this.datagridBonus.Name = "datagridBonus";
     this.datagridBonus.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.datagridBonus.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.datagridBonus.PreviewInfo.ZoomFactor = 75D;
     this.datagridBonus.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("datagridBonus.PrintInfo.PageSettings")));
     this.datagridBonus.RecordSelectors = false;
     this.datagridBonus.RowHeight = 20;
     this.datagridBonus.RowSubDividerColor = System.Drawing.Color.Black;
     this.datagridBonus.ScrollTips = true;
     this.datagridBonus.Size = new System.Drawing.Size(726, 304);
     this.datagridBonus.TabIndex = 32000;
     this.datagridBonus.Text = "c1TrueDBGrid1";
     this.datagridBonus.VisualStyle = C1.Win.C1TrueDBGrid.VisualStyle.Office2007Blue;
     this.datagridBonus.AfterColUpdate += new C1.Win.C1TrueDBGrid.ColEventHandler(this.datagridBonus_AfterColUpdate);
     this.datagridBonus.KeyDown += new System.Windows.Forms.KeyEventHandler(this.datagridBonus_KeyDown);
     this.datagridBonus.PropBag = resources.GetString("datagridBonus.PropBag");
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Controls.Add(this.datagridProductAllocation);
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(695, 226);
     this.xtraTabPage1.Text = "Territory Allocation";
     //
     // datagridProductAllocation
     //
     this.datagridProductAllocation.AllowAddNew = true;
     this.datagridProductAllocation.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.datagridProductAllocation.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.datagridProductAllocation.Caption = "Product Allocation";
     this.datagridProductAllocation.CaptionHeight = 20;
     this.datagridProductAllocation.CollapseColor = System.Drawing.Color.Transparent;
     this.datagridProductAllocation.ColumnFooters = true;
     this.datagridProductAllocation.DirectionAfterEnter = C1.Win.C1TrueDBGrid.DirectionAfterEnterEnum.MoveNone;
     this.datagridProductAllocation.ExpandColor = System.Drawing.Color.Transparent;
     this.datagridProductAllocation.ForeColor = System.Drawing.SystemColors.Window;
     this.datagridProductAllocation.Images.Add(((System.Drawing.Image)(resources.GetObject("datagridProductAllocation.Images"))));
     this.datagridProductAllocation.Location = new System.Drawing.Point(-1, 0);
     this.datagridProductAllocation.Name = "datagridProductAllocation";
     this.datagridProductAllocation.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.datagridProductAllocation.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.datagridProductAllocation.PreviewInfo.ZoomFactor = 75D;
     this.datagridProductAllocation.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("datagridProductAllocation.PrintInfo.PageSettings")));
     this.datagridProductAllocation.RecordSelectors = false;
     this.datagridProductAllocation.RowHeight = 20;
     this.datagridProductAllocation.RowSubDividerColor = System.Drawing.Color.Black;
     this.datagridProductAllocation.ScrollTips = true;
     this.datagridProductAllocation.Size = new System.Drawing.Size(696, 233);
     this.datagridProductAllocation.TabIndex = 1;
     this.datagridProductAllocation.Text = "c1TrueDBGrid1";
     this.datagridProductAllocation.VisualStyle = C1.Win.C1TrueDBGrid.VisualStyle.Office2007Blue;
     this.datagridProductAllocation.AfterColUpdate += new C1.Win.C1TrueDBGrid.ColEventHandler(this.datagridProductAllocation_AfterColUpdate);
     this.datagridProductAllocation.KeyDown += new System.Windows.Forms.KeyEventHandler(this.datagridProductAllocation_KeyDown);
     this.datagridProductAllocation.PropBag = resources.GetString("datagridProductAllocation.PropBag");
     //
     // xtraTabPage2
     //
     this.xtraTabPage2.Controls.Add(this.groupControl5);
     this.xtraTabPage2.Name = "xtraTabPage2";
     this.xtraTabPage2.Size = new System.Drawing.Size(695, 226);
     this.xtraTabPage2.Text = "Advance Information";
     //
     // groupControl5
     //
     this.groupControl5.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl5.Controls.Add(this.txtMaxLimit);
     this.groupControl5.Controls.Add(this.txtMinLimit);
     this.groupControl5.Controls.Add(this.txtBarCode);
     this.groupControl5.Controls.Add(this.txtShelfCode);
     this.groupControl5.Controls.Add(this.grdPresevasionStandard);
     this.groupControl5.Controls.Add(this.simpleButton8);
     this.groupControl5.Controls.Add(this.txtClaimPartnerID);
     this.groupControl5.Controls.Add(this.txtClaimPartnerName);
     this.groupControl5.Controls.Add(this.simpleButton7);
     this.groupControl5.Controls.Add(this.txtBussinessPartnerid);
     this.groupControl5.Controls.Add(this.businessPartnerName);
     this.groupControl5.Controls.Add(this.labelControl40);
     this.groupControl5.Controls.Add(this.labelControl48);
     this.groupControl5.Controls.Add(this.labelControl46);
     this.groupControl5.Controls.Add(this.labelControl47);
     this.groupControl5.Controls.Add(this.labelControl54);
     this.groupControl5.Controls.Add(this.labelControl55);
     this.groupControl5.Location = new System.Drawing.Point(0, 0);
     this.groupControl5.Name = "groupControl5";
     this.groupControl5.ShowCaption = false;
     this.groupControl5.Size = new System.Drawing.Size(695, 233);
     this.groupControl5.TabIndex = 0;
     this.groupControl5.Text = "Extra Information";
     //
     // txtMaxLimit
     //
     this.txtMaxLimit.Location = new System.Drawing.Point(103, 102);
     this.txtMaxLimit.Name = "txtMaxLimit";
     this.txtMaxLimit.Size = new System.Drawing.Size(209, 20);
     this.txtMaxLimit.TabIndex = 124268;
     this.txtMaxLimit.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtMaxLimit_PreviewKeyDown);
     //
     // txtMinLimit
     //
     this.txtMinLimit.Location = new System.Drawing.Point(103, 83);
     this.txtMinLimit.Name = "txtMinLimit";
     this.txtMinLimit.Size = new System.Drawing.Size(209, 20);
     this.txtMinLimit.TabIndex = 124266;
     this.txtMinLimit.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtMinLimit_PreviewKeyDown);
     //
     // txtBarCode
     //
     this.txtBarCode.Location = new System.Drawing.Point(103, 64);
     this.txtBarCode.Name = "txtBarCode";
     this.txtBarCode.Size = new System.Drawing.Size(209, 20);
     this.txtBarCode.TabIndex = 124261;
     this.txtBarCode.TabStop = false;
     this.txtBarCode.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtBarCode_PreviewKeyDown);
     //
     // txtShelfCode
     //
     this.txtShelfCode.Location = new System.Drawing.Point(103, 45);
     this.txtShelfCode.Name = "txtShelfCode";
     this.txtShelfCode.Size = new System.Drawing.Size(209, 20);
     this.txtShelfCode.TabIndex = 124259;
     this.txtShelfCode.TabStop = false;
     this.txtShelfCode.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtShelfCode_PreviewKeyDown);
     //
     // grdPresevasionStandard
     //
     this.grdPresevasionStandard.AllowAddNew = true;
     this.grdPresevasionStandard.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.grdPresevasionStandard.CaptionHeight = 17;
     this.grdPresevasionStandard.Images.Add(((System.Drawing.Image)(resources.GetObject("grdPresevasionStandard.Images"))));
     this.grdPresevasionStandard.Location = new System.Drawing.Point(411, 5);
     this.grdPresevasionStandard.Name = "grdPresevasionStandard";
     this.grdPresevasionStandard.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.grdPresevasionStandard.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.grdPresevasionStandard.PreviewInfo.ZoomFactor = 75D;
     this.grdPresevasionStandard.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("grdPresevasionStandard.PrintInfo.PageSettings")));
     this.grdPresevasionStandard.RowHeight = 15;
     this.grdPresevasionStandard.Size = new System.Drawing.Size(277, 225);
     this.grdPresevasionStandard.TabIndex = 124270;
     this.grdPresevasionStandard.Text = "c1TrueDBGrid2";
     this.grdPresevasionStandard.AfterColUpdate += new C1.Win.C1TrueDBGrid.ColEventHandler(this.grdPresevasionStandard_AfterColUpdate);
     this.grdPresevasionStandard.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.grdPresevasionStandard_PreviewKeyDown);
     this.grdPresevasionStandard.PropBag = resources.GetString("grdPresevasionStandard.PropBag");
     //
     // simpleButton8
     //
     this.simpleButton8.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.simpleButton8.Appearance.Options.UseFont = true;
     this.simpleButton8.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.simpleButton8.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton8.Location = new System.Drawing.Point(152, 26);
     this.simpleButton8.Name = "simpleButton8";
     this.simpleButton8.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.simpleButton8.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem1.Text = "Add New Entry";
     superToolTip1.Items.Add(toolTipTitleItem1);
     this.simpleButton8.SuperTip = superToolTip1;
     this.simpleButton8.TabIndex = 124264;
     this.simpleButton8.Click += new System.EventHandler(this.simpleButton8_Click);
     //
     // txtClaimPartnerID
     //
     this.txtClaimPartnerID.Location = new System.Drawing.Point(103, 25);
     this.txtClaimPartnerID.Mask = "000000";
     this.txtClaimPartnerID.Name = "txtClaimPartnerID";
     this.txtClaimPartnerID.Size = new System.Drawing.Size(49, 21);
     this.txtClaimPartnerID.TabIndex = 124262;
     this.txtClaimPartnerID.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtClaimPartnerID_PreviewKeyDown);
     //
     // txtClaimPartnerName
     //
     this.txtClaimPartnerName.Location = new System.Drawing.Point(176, 26);
     this.txtClaimPartnerName.Name = "txtClaimPartnerName";
     this.txtClaimPartnerName.Size = new System.Drawing.Size(136, 20);
     this.txtClaimPartnerName.TabIndex = 124265;
     //
     // simpleButton7
     //
     this.simpleButton7.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.simpleButton7.Appearance.Options.UseFont = true;
     this.simpleButton7.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.simpleButton7.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton7.Location = new System.Drawing.Point(152, 6);
     this.simpleButton7.Name = "simpleButton7";
     this.simpleButton7.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.simpleButton7.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem2.Text = "Add New Entry";
     superToolTip2.Items.Add(toolTipTitleItem2);
     this.simpleButton7.SuperTip = superToolTip2;
     this.simpleButton7.TabIndex = 124250;
     this.simpleButton7.Click += new System.EventHandler(this.simpleButton7_Click);
     //
     // txtBussinessPartnerid
     //
     this.txtBussinessPartnerid.Location = new System.Drawing.Point(103, 6);
     this.txtBussinessPartnerid.Mask = "000000";
     this.txtBussinessPartnerid.Name = "txtBussinessPartnerid";
     this.txtBussinessPartnerid.Size = new System.Drawing.Size(49, 21);
     this.txtBussinessPartnerid.TabIndex = 124248;
     this.txtBussinessPartnerid.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtBussinessPartnerid_PreviewKeyDown);
     //
     // businessPartnerName
     //
     this.businessPartnerName.Location = new System.Drawing.Point(176, 7);
     this.businessPartnerName.Name = "businessPartnerName";
     this.businessPartnerName.Size = new System.Drawing.Size(136, 20);
     this.businessPartnerName.TabIndex = 124251;
     //
     // labelControl40
     //
     this.labelControl40.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl40.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl40.LineVisible = true;
     this.labelControl40.Location = new System.Drawing.Point(8, 6);
     this.labelControl40.Name = "labelControl40";
     this.labelControl40.Size = new System.Drawing.Size(103, 20);
     this.labelControl40.TabIndex = 124249;
     this.labelControl40.Text = "Business Partner ID";
     //
     // labelControl48
     //
     this.labelControl48.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl48.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl48.LineVisible = true;
     this.labelControl48.Location = new System.Drawing.Point(8, 26);
     this.labelControl48.Name = "labelControl48";
     this.labelControl48.Size = new System.Drawing.Size(103, 20);
     this.labelControl48.TabIndex = 124263;
     this.labelControl48.Text = "Claim Partner ID";
     //
     // labelControl46
     //
     this.labelControl46.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl46.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl46.LineVisible = true;
     this.labelControl46.Location = new System.Drawing.Point(8, 46);
     this.labelControl46.Name = "labelControl46";
     this.labelControl46.Size = new System.Drawing.Size(103, 20);
     this.labelControl46.TabIndex = 124258;
     this.labelControl46.Text = "Shelf Code";
     //
     // labelControl47
     //
     this.labelControl47.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl47.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl47.LineVisible = true;
     this.labelControl47.Location = new System.Drawing.Point(8, 65);
     this.labelControl47.Name = "labelControl47";
     this.labelControl47.Size = new System.Drawing.Size(103, 20);
     this.labelControl47.TabIndex = 124260;
     this.labelControl47.Text = "Bar Code";
     //
     // labelControl54
     //
     this.labelControl54.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl54.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl54.LineVisible = true;
     this.labelControl54.Location = new System.Drawing.Point(8, 85);
     this.labelControl54.Name = "labelControl54";
     this.labelControl54.Size = new System.Drawing.Size(103, 20);
     this.labelControl54.TabIndex = 124267;
     this.labelControl54.Text = "Min Limit";
     //
     // labelControl55
     //
     this.labelControl55.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl55.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl55.LineVisible = true;
     this.labelControl55.Location = new System.Drawing.Point(8, 103);
     this.labelControl55.Name = "labelControl55";
     this.labelControl55.Size = new System.Drawing.Size(103, 20);
     this.labelControl55.TabIndex = 124269;
     this.labelControl55.Text = "Max Limit";
     //
     // xtraTabPage3
     //
     this.xtraTabPage3.Controls.Add(this.dgFileAttachments);
     this.xtraTabPage3.Name = "xtraTabPage3";
     this.xtraTabPage3.Size = new System.Drawing.Size(695, 226);
     this.xtraTabPage3.Text = "Attachment & Remarks";
     //
     // dgFileAttachments
     //
     this.dgFileAttachments.AllowAddNew = true;
     this.dgFileAttachments.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.dgFileAttachments.CaptionHeight = 17;
     this.dgFileAttachments.Images.Add(((System.Drawing.Image)(resources.GetObject("dgFileAttachments.Images"))));
     this.dgFileAttachments.Location = new System.Drawing.Point(0, 0);
     this.dgFileAttachments.Name = "dgFileAttachments";
     this.dgFileAttachments.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.dgFileAttachments.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.dgFileAttachments.PreviewInfo.ZoomFactor = 75D;
     this.dgFileAttachments.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("dgFileAttachments.PrintInfo.PageSettings")));
     this.dgFileAttachments.RowHeight = 15;
     this.dgFileAttachments.Size = new System.Drawing.Size(698, 233);
     this.dgFileAttachments.TabIndex = 0;
     this.dgFileAttachments.Text = "c1TrueDBGrid1";
     this.dgFileAttachments.AfterColUpdate += new C1.Win.C1TrueDBGrid.ColEventHandler(this.dgFileAttachments_AfterColUpdate);
     this.dgFileAttachments.ButtonClick += new C1.Win.C1TrueDBGrid.ColEventHandler(this.dgFileAttachments_ButtonClick);
     this.dgFileAttachments.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.dgFileAttachments_PreviewKeyDown);
     this.dgFileAttachments.PropBag = resources.GetString("dgFileAttachments.PropBag");
     //
     // Productid
     //
     this.Productid.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.Productid.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.Productid.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.Productid.LineVisible = true;
     this.Productid.Location = new System.Drawing.Point(4, 12);
     this.Productid.Name = "Productid";
     this.Productid.Size = new System.Drawing.Size(72, 20);
     this.Productid.TabIndex = 1;
     this.Productid.Text = "Item Id";
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.cmbProductCategory);
     this.groupControl1.Controls.Add(this.txtShortName);
     this.groupControl1.Controls.Add(this.txtArtical);
     this.groupControl1.Controls.Add(this.txtProductName);
     this.groupControl1.Controls.Add(this.cmbSkuType);
     this.groupControl1.Controls.Add(this.cmbGeneralName);
     this.groupControl1.Controls.Add(this.cmbProtoType);
     this.groupControl1.Controls.Add(this.btnPickList);
     this.groupControl1.Controls.Add(this.labelControl3);
     this.groupControl1.Controls.Add(this.txtProductId);
     this.groupControl1.Controls.Add(this.txtPack);
     this.groupControl1.Controls.Add(this.Productid);
     this.groupControl1.Controls.Add(this.labelControl6);
     this.groupControl1.Controls.Add(this.labelControl2);
     this.groupControl1.Controls.Add(this.labelControl8);
     this.groupControl1.Controls.Add(this.labelControl14);
     this.groupControl1.Controls.Add(this.labelControl7);
     this.groupControl1.Controls.Add(this.labelControl49);
     this.groupControl1.Controls.Add(this.labelControl39);
     this.groupControl1.Location = new System.Drawing.Point(2, 3);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.ShowCaption = false;
     this.groupControl1.Size = new System.Drawing.Size(405, 105);
     this.groupControl1.TabIndex = 11;
     this.groupControl1.Text = "Products";
     //
     // cmbProductCategory
     //
     this.cmbProductCategory.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.cmbProductCategory.Location = new System.Drawing.Point(308, 67);
     this.cmbProductCategory.Name = "cmbProductCategory";
     this.cmbProductCategory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbProductCategory.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.cmbProductCategory.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cmbProductCategory.Size = new System.Drawing.Size(91, 20);
     this.cmbProductCategory.TabIndex = 55;
     this.cmbProductCategory.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.cmbProductCategory_PreviewKeyDown);
     //
     // txtShortName
     //
     this.txtShortName.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtShortName.Location = new System.Drawing.Point(62, 69);
     this.txtShortName.Name = "txtShortName";
     this.txtShortName.Size = new System.Drawing.Size(169, 20);
     this.txtShortName.TabIndex = 6;
     this.txtShortName.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtShortName_PreviewKeyDown);
     //
     // txtArtical
     //
     this.txtArtical.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtArtical.Location = new System.Drawing.Point(62, 50);
     this.txtArtical.Name = "txtArtical";
     this.txtArtical.Size = new System.Drawing.Size(169, 20);
     this.txtArtical.TabIndex = 5;
     this.txtArtical.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtArtical_PreviewKeyDown);
     //
     // txtProductName
     //
     this.txtProductName.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtProductName.Location = new System.Drawing.Point(62, 31);
     this.txtProductName.Name = "txtProductName";
     this.txtProductName.Size = new System.Drawing.Size(169, 20);
     this.txtProductName.TabIndex = 4;
     this.txtProductName.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtProductName_PreviewKeyDown);
     //
     // cmbSkuType
     //
     this.cmbSkuType.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.cmbSkuType.Location = new System.Drawing.Point(308, 48);
     this.cmbSkuType.Name = "cmbSkuType";
     this.cmbSkuType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbSkuType.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.cmbSkuType.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cmbSkuType.Size = new System.Drawing.Size(91, 20);
     this.cmbSkuType.TabIndex = 57;
     this.cmbSkuType.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.cmbSkuType_PreviewKeyDown);
     //
     // cmbGeneralName
     //
     this.cmbGeneralName.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.cmbGeneralName.Location = new System.Drawing.Point(308, 29);
     this.cmbGeneralName.Name = "cmbGeneralName";
     this.cmbGeneralName.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbGeneralName.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.cmbGeneralName.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cmbGeneralName.Size = new System.Drawing.Size(91, 20);
     this.cmbGeneralName.TabIndex = 3;
     this.cmbGeneralName.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.cmbGeneralName_PreviewKeyDown);
     //
     // cmbProtoType
     //
     this.cmbProtoType.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.cmbProtoType.Location = new System.Drawing.Point(308, 11);
     this.cmbProtoType.Name = "cmbProtoType";
     this.cmbProtoType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbProtoType.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.cmbProtoType.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cmbProtoType.Size = new System.Drawing.Size(91, 20);
     this.cmbProtoType.TabIndex = 2;
     this.cmbProtoType.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.cmbProtoType_PreviewKeyDown);
     //
     // btnPickList
     //
     this.btnPickList.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnPickList.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.btnPickList.Appearance.Options.UseFont = true;
     this.btnPickList.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.btnPickList.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnPickList.Location = new System.Drawing.Point(113, 12);
     this.btnPickList.Name = "btnPickList";
     this.btnPickList.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.btnPickList.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem3.Text = "Add New Entry";
     superToolTip3.Items.Add(toolTipTitleItem3);
     this.btnPickList.SuperTip = superToolTip3;
     this.btnPickList.TabIndex = 47;
     this.btnPickList.TabStop = false;
     this.btnPickList.Click += new System.EventHandler(this.btnPickList_Click);
     //
     // labelControl3
     //
     this.labelControl3.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl3.Location = new System.Drawing.Point(140, 15);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(22, 13);
     this.labelControl3.TabIndex = 4;
     this.labelControl3.Text = "Pack";
     //
     // txtProductId
     //
     this.txtProductId.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtProductId.Location = new System.Drawing.Point(62, 11);
     this.txtProductId.Mask = "000-000";
     this.txtProductId.Name = "txtProductId";
     this.txtProductId.Size = new System.Drawing.Size(51, 21);
     this.txtProductId.TabIndex = 0;
     this.txtProductId.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtProductId_KeyDown);
     this.txtProductId.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtProductId_KeyPress);
     this.txtProductId.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtProductId_PreviewKeyDown);
     //
     // txtPack
     //
     this.txtPack.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtPack.Location = new System.Drawing.Point(171, 12);
     this.txtPack.Name = "txtPack";
     this.txtPack.Size = new System.Drawing.Size(60, 20);
     this.txtPack.TabIndex = 1;
     this.txtPack.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtPack_PreviewKeyDown);
     //
     // labelControl6
     //
     this.labelControl6.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl6.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl6.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl6.LineVisible = true;
     this.labelControl6.Location = new System.Drawing.Point(4, 32);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(79, 20);
     this.labelControl6.TabIndex = 7;
     this.labelControl6.Text = "Item Name";
     //
     // labelControl2
     //
     this.labelControl2.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl2.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl2.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl2.LineVisible = true;
     this.labelControl2.Location = new System.Drawing.Point(4, 51);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(72, 20);
     this.labelControl2.TabIndex = 52;
     this.labelControl2.Text = "Artical No.";
     //
     // labelControl8
     //
     this.labelControl8.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl8.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl8.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl8.LineVisible = true;
     this.labelControl8.Location = new System.Drawing.Point(4, 70);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(72, 20);
     this.labelControl8.TabIndex = 59;
     this.labelControl8.Text = "Description";
     //
     // labelControl14
     //
     this.labelControl14.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl14.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl14.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl14.LineVisible = true;
     this.labelControl14.Location = new System.Drawing.Point(235, 11);
     this.labelControl14.Name = "labelControl14";
     this.labelControl14.Size = new System.Drawing.Size(90, 20);
     this.labelControl14.TabIndex = 52;
     this.labelControl14.Text = "Item Type";
     //
     // labelControl7
     //
     this.labelControl7.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl7.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl7.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl7.LineVisible = true;
     this.labelControl7.Location = new System.Drawing.Point(235, 30);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(90, 20);
     this.labelControl7.TabIndex = 54;
     this.labelControl7.Text = "Gen. Name";
     //
     // labelControl49
     //
     this.labelControl49.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl49.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl49.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl49.LineVisible = true;
     this.labelControl49.Location = new System.Drawing.Point(235, 48);
     this.labelControl49.Name = "labelControl49";
     this.labelControl49.Size = new System.Drawing.Size(77, 20);
     this.labelControl49.TabIndex = 58;
     this.labelControl49.Text = "SKU Type";
     //
     // labelControl39
     //
     this.labelControl39.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl39.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl39.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl39.LineVisible = true;
     this.labelControl39.Location = new System.Drawing.Point(235, 67);
     this.labelControl39.Name = "labelControl39";
     this.labelControl39.Size = new System.Drawing.Size(90, 20);
     this.labelControl39.TabIndex = 56;
     this.labelControl39.Text = "Item Category";
     //
     // labelControl4
     //
     this.labelControl4.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl4.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl4.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl4.LineVisible = true;
     this.labelControl4.Location = new System.Drawing.Point(169, 9);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(54, 20);
     this.labelControl4.TabIndex = 5;
     this.labelControl4.Text = "Group Seq.";
     //
     // labelControl5
     //
     this.labelControl5.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl5.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl5.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl5.LineVisible = true;
     this.labelControl5.Location = new System.Drawing.Point(5, 30);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(84, 20);
     this.labelControl5.TabIndex = 6;
     this.labelControl5.Text = "Group Name";
     //
     // labelControl10
     //
     this.labelControl10.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl10.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl10.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl10.LineVisible = true;
     this.labelControl10.Location = new System.Drawing.Point(5, 8);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(71, 20);
     this.labelControl10.TabIndex = 11;
     this.labelControl10.Text = "Group Id";
     //
     // txtGroupSeq
     //
     this.txtGroupSeq.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtGroupSeq.Location = new System.Drawing.Point(224, 10);
     this.txtGroupSeq.Name = "txtGroupSeq";
     this.txtGroupSeq.Size = new System.Drawing.Size(62, 20);
     this.txtGroupSeq.TabIndex = 8;
     this.txtGroupSeq.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtGroupSeq_PreviewKeyDown);
     //
     // txtGroupName
     //
     this.txtGroupName.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtGroupName.Location = new System.Drawing.Point(85, 29);
     this.txtGroupName.Name = "txtGroupName";
     this.txtGroupName.Size = new System.Drawing.Size(201, 20);
     this.txtGroupName.TabIndex = 124244;
     this.txtGroupName.TabStop = false;
     //
     // txtGroupid
     //
     this.txtGroupid.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtGroupid.Location = new System.Drawing.Point(85, 9);
     this.txtGroupid.Mask = "000-000";
     this.txtGroupid.Name = "txtGroupid";
     this.txtGroupid.Size = new System.Drawing.Size(51, 21);
     this.txtGroupid.TabIndex = 7;
     this.txtGroupid.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtGroupid_PreviewKeyDown);
     //
     // simpleButton1
     //
     this.simpleButton1.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.simpleButton1.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.simpleButton1.Appearance.Options.UseFont = true;
     this.simpleButton1.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.simpleButton1.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton1.Location = new System.Drawing.Point(137, 9);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.simpleButton1.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem4.Text = "Add New Entry";
     superToolTip4.Items.Add(toolTipTitleItem4);
     this.simpleButton1.SuperTip = superToolTip4;
     this.simpleButton1.TabIndex = 48;
     this.simpleButton1.TabStop = false;
     this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
     //
     // groupControl2
     //
     this.groupControl2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl2.Controls.Add(this.txtmanualgroup);
     this.groupControl2.Controls.Add(this.labelControl57);
     this.groupControl2.Controls.Add(this.txtdateto);
     this.groupControl2.Controls.Add(this.txtdatefrom);
     this.groupControl2.Controls.Add(this.simpleButton4);
     this.groupControl2.Controls.Add(this.simpleButton1);
     this.groupControl2.Controls.Add(this.labelControl10);
     this.groupControl2.Controls.Add(this.txtGroupName);
     this.groupControl2.Controls.Add(this.labelControl4);
     this.groupControl2.Controls.Add(this.txtGroupSeq);
     this.groupControl2.Controls.Add(this.txtGroupid);
     this.groupControl2.Controls.Add(this.labelControl5);
     this.groupControl2.Controls.Add(this.labelControl56);
     this.groupControl2.Controls.Add(this.labelControl51);
     this.groupControl2.Location = new System.Drawing.Point(411, 3);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.ShowCaption = false;
     this.groupControl2.Size = new System.Drawing.Size(291, 105);
     this.groupControl2.TabIndex = 12;
     this.groupControl2.Text = "Group";
     this.groupControl2.Paint += new System.Windows.Forms.PaintEventHandler(this.groupControl2_Paint);
     //
     // txtmanualgroup
     //
     this.txtmanualgroup.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtmanualgroup.Location = new System.Drawing.Point(85, 68);
     this.txtmanualgroup.Name = "txtmanualgroup";
     this.txtmanualgroup.Size = new System.Drawing.Size(201, 20);
     this.txtmanualgroup.TabIndex = 124245;
     this.txtmanualgroup.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtmanualgroup_PreviewKeyDown);
     //
     // labelControl57
     //
     this.labelControl57.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl57.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl57.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl57.LineVisible = true;
     this.labelControl57.Location = new System.Drawing.Point(168, 50);
     this.labelControl57.Name = "labelControl57";
     this.labelControl57.Size = new System.Drawing.Size(38, 20);
     this.labelControl57.TabIndex = 124252;
     this.labelControl57.Text = "Date To";
     //
     // txtdateto
     //
     this.txtdateto.Location = new System.Drawing.Point(211, 48);
     this.txtdateto.Mask = "00/00/0000";
     this.txtdateto.Name = "txtdateto";
     this.txtdateto.Size = new System.Drawing.Size(75, 21);
     this.txtdateto.TabIndex = 124251;
     this.txtdateto.ValidatingType = typeof(System.DateTime);
     this.txtdateto.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtdateto_PreviewKeyDown);
     //
     // txtdatefrom
     //
     this.txtdatefrom.Location = new System.Drawing.Point(85, 48);
     this.txtdatefrom.Mask = "00/00/0000";
     this.txtdatefrom.Name = "txtdatefrom";
     this.txtdatefrom.Size = new System.Drawing.Size(75, 21);
     this.txtdatefrom.TabIndex = 124250;
     this.txtdatefrom.ValidatingType = typeof(System.DateTime);
     this.txtdatefrom.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtdatefrom_PreviewKeyDown);
     //
     // simpleButton4
     //
     this.simpleButton4.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.simpleButton4.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton4.Image")));
     this.simpleButton4.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton4.Location = new System.Drawing.Point(63, 9);
     this.simpleButton4.Name = "simpleButton4";
     this.simpleButton4.Size = new System.Drawing.Size(21, 20);
     toolTipItem1.Text = "Save Module";
     superToolTip5.Items.Add(toolTipItem1);
     this.simpleButton4.SuperTip = superToolTip5;
     this.simpleButton4.TabIndex = 187;
     this.simpleButton4.Click += new System.EventHandler(this.simpleButton4_Click);
     //
     // labelControl56
     //
     this.labelControl56.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl56.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl56.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl56.LineVisible = true;
     this.labelControl56.Location = new System.Drawing.Point(5, 51);
     this.labelControl56.Name = "labelControl56";
     this.labelControl56.Size = new System.Drawing.Size(84, 20);
     this.labelControl56.TabIndex = 124249;
     this.labelControl56.Text = "Date From";
     //
     // labelControl51
     //
     this.labelControl51.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl51.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl51.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl51.LineVisible = true;
     this.labelControl51.Location = new System.Drawing.Point(5, 69);
     this.labelControl51.Name = "labelControl51";
     this.labelControl51.Size = new System.Drawing.Size(84, 20);
     this.labelControl51.TabIndex = 124246;
     this.labelControl51.Text = "Manual Groups";
     //
     // btnAdd
     //
     this.btnAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnAdd.Image = global::ERPGUI.Properties.Resources.addfooter_16x16;
     this.btnAdd.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnAdd.Location = new System.Drawing.Point(3, 426);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(70, 23);
     toolTipItem2.Text = "Add New Module";
     superToolTip6.Items.Add(toolTipItem2);
     this.btnAdd.SuperTip = superToolTip6;
     this.btnAdd.TabIndex = 47;
     this.btnAdd.Text = " &Add ";
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // btnCancel
     //
     this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnCancel.Image = global::ERPGUI.Properties.Resources.deletedatasource_16x16;
     this.btnCancel.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnCancel.Location = new System.Drawing.Point(79, 426);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(70, 23);
     toolTipItem3.Text = "Cancel Current Operation";
     superToolTip7.Items.Add(toolTipItem3);
     this.btnCancel.SuperTip = superToolTip7;
     this.btnCancel.TabIndex = 50;
     this.btnCancel.Text = "&Cancel";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // groupControl4
     //
     this.groupControl4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl4.Controls.Add(this.simpleButton6);
     this.groupControl4.Controls.Add(this.simpleButton5);
     this.groupControl4.Controls.Add(this.chkCompanyDiscount);
     this.groupControl4.Controls.Add(this.txtCompanySeq);
     this.groupControl4.Controls.Add(this.simpleButton3);
     this.groupControl4.Controls.Add(this.labelControl35);
     this.groupControl4.Controls.Add(this.txtReportCompanyName);
     this.groupControl4.Controls.Add(this.txtReportCompanyid);
     this.groupControl4.Controls.Add(this.simpleButton2);
     this.groupControl4.Controls.Add(this.txtCompanyName);
     this.groupControl4.Controls.Add(this.txtCompanyid);
     this.groupControl4.Controls.Add(this.labelControl33);
     this.groupControl4.Controls.Add(this.labelControl34);
     this.groupControl4.Controls.Add(this.labelControl36);
     this.groupControl4.Controls.Add(this.labelControl1);
     this.groupControl4.Location = new System.Drawing.Point(3, 110);
     this.groupControl4.Name = "groupControl4";
     this.groupControl4.ShowCaption = false;
     this.groupControl4.Size = new System.Drawing.Size(699, 55);
     this.groupControl4.TabIndex = 49;
     this.groupControl4.Text = "Group";
     //
     // simpleButton6
     //
     this.simpleButton6.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.simpleButton6.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton6.Image")));
     this.simpleButton6.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton6.Location = new System.Drawing.Point(110, 27);
     this.simpleButton6.Name = "simpleButton6";
     this.simpleButton6.Size = new System.Drawing.Size(21, 20);
     toolTipItem4.Text = "Save Module";
     superToolTip8.Items.Add(toolTipItem4);
     this.simpleButton6.SuperTip = superToolTip8;
     this.simpleButton6.TabIndex = 124246;
     //
     // simpleButton5
     //
     this.simpleButton5.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.simpleButton5.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton5.Image")));
     this.simpleButton5.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton5.Location = new System.Drawing.Point(110, 6);
     this.simpleButton5.Name = "simpleButton5";
     this.simpleButton5.Size = new System.Drawing.Size(21, 20);
     toolTipItem5.Text = "Save Module";
     superToolTip9.Items.Add(toolTipItem5);
     this.simpleButton5.SuperTip = superToolTip9;
     this.simpleButton5.TabIndex = 124245;
     //
     // chkCompanyDiscount
     //
     this.chkCompanyDiscount.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.chkCompanyDiscount.Location = new System.Drawing.Point(472, 26);
     this.chkCompanyDiscount.Name = "chkCompanyDiscount";
     this.chkCompanyDiscount.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkCompanyDiscount.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkCompanyDiscount.Properties.Appearance.Options.UseFont = true;
     this.chkCompanyDiscount.Properties.Appearance.Options.UseForeColor = true;
     this.chkCompanyDiscount.Properties.Caption = "Company Discount";
     this.chkCompanyDiscount.Size = new System.Drawing.Size(136, 19);
     this.chkCompanyDiscount.TabIndex = 100001;
     this.chkCompanyDiscount.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkCompanyDiscount_PreviewKeyDown);
     //
     // txtCompanySeq
     //
     this.txtCompanySeq.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.txtCompanySeq.Location = new System.Drawing.Point(542, 6);
     this.txtCompanySeq.Name = "txtCompanySeq";
     this.txtCompanySeq.Size = new System.Drawing.Size(62, 20);
     this.txtCompanySeq.TabIndex = 10;
     this.txtCompanySeq.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtCompanySeq_PreviewKeyDown);
     //
     // simpleButton3
     //
     this.simpleButton3.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.simpleButton3.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.simpleButton3.Appearance.Options.UseFont = true;
     this.simpleButton3.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.simpleButton3.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton3.Location = new System.Drawing.Point(159, 27);
     this.simpleButton3.Name = "simpleButton3";
     this.simpleButton3.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.simpleButton3.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem5.Text = "Add New Entry";
     superToolTip10.Items.Add(toolTipTitleItem5);
     this.simpleButton3.SuperTip = superToolTip10;
     this.simpleButton3.TabIndex = 53;
     this.simpleButton3.Click += new System.EventHandler(this.simpleButton3_Click);
     //
     // labelControl35
     //
     this.labelControl35.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl35.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl35.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl35.LineVisible = true;
     this.labelControl35.Location = new System.Drawing.Point(17, 29);
     this.labelControl35.Name = "labelControl35";
     this.labelControl35.Size = new System.Drawing.Size(101, 20);
     this.labelControl35.TabIndex = 50;
     this.labelControl35.Text = "Report CompanyId";
     //
     // txtReportCompanyName
     //
     this.txtReportCompanyName.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.txtReportCompanyName.Location = new System.Drawing.Point(264, 26);
     this.txtReportCompanyName.Name = "txtReportCompanyName";
     this.txtReportCompanyName.Size = new System.Drawing.Size(204, 20);
     this.txtReportCompanyName.TabIndex = 13;
     //
     // txtReportCompanyid
     //
     this.txtReportCompanyid.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.txtReportCompanyid.Location = new System.Drawing.Point(133, 27);
     this.txtReportCompanyid.Mask = "000";
     this.txtReportCompanyid.Name = "txtReportCompanyid";
     this.txtReportCompanyid.Size = new System.Drawing.Size(25, 21);
     this.txtReportCompanyid.TabIndex = 11;
     this.txtReportCompanyid.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtReportCompanyid_PreviewKeyDown);
     //
     // simpleButton2
     //
     this.simpleButton2.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.simpleButton2.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.simpleButton2.Appearance.Options.UseFont = true;
     this.simpleButton2.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.simpleButton2.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton2.Location = new System.Drawing.Point(159, 6);
     this.simpleButton2.Name = "simpleButton2";
     this.simpleButton2.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.simpleButton2.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem6.Text = "Add New Entry";
     superToolTip11.Items.Add(toolTipTitleItem6);
     this.simpleButton2.SuperTip = superToolTip11;
     this.simpleButton2.TabIndex = 48;
     this.simpleButton2.Click += new System.EventHandler(this.simpleButton2_Click);
     //
     // txtCompanyName
     //
     this.txtCompanyName.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.txtCompanyName.Location = new System.Drawing.Point(264, 6);
     this.txtCompanyName.Name = "txtCompanyName";
     this.txtCompanyName.Size = new System.Drawing.Size(204, 20);
     this.txtCompanyName.TabIndex = 100000;
     //
     // txtCompanyid
     //
     this.txtCompanyid.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.txtCompanyid.Location = new System.Drawing.Point(133, 6);
     this.txtCompanyid.Mask = "000";
     this.txtCompanyid.Name = "txtCompanyid";
     this.txtCompanyid.Size = new System.Drawing.Size(25, 21);
     this.txtCompanyid.TabIndex = 9;
     this.txtCompanyid.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtCompanyid_PreviewKeyDown);
     //
     // labelControl33
     //
     this.labelControl33.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl33.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl33.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl33.LineVisible = true;
     this.labelControl33.Location = new System.Drawing.Point(17, 7);
     this.labelControl33.Name = "labelControl33";
     this.labelControl33.Size = new System.Drawing.Size(101, 20);
     this.labelControl33.TabIndex = 11;
     this.labelControl33.Text = "Company Id";
     //
     // labelControl34
     //
     this.labelControl34.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl34.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl34.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl34.LineVisible = true;
     this.labelControl34.Location = new System.Drawing.Point(187, 6);
     this.labelControl34.Name = "labelControl34";
     this.labelControl34.Size = new System.Drawing.Size(95, 20);
     this.labelControl34.TabIndex = 6;
     this.labelControl34.Text = "Company Name";
     //
     // labelControl36
     //
     this.labelControl36.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl36.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl36.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl36.LineVisible = true;
     this.labelControl36.Location = new System.Drawing.Point(187, 26);
     this.labelControl36.Name = "labelControl36";
     this.labelControl36.Size = new System.Drawing.Size(95, 20);
     this.labelControl36.TabIndex = 49;
     this.labelControl36.Text = "Company Name";
     //
     // labelControl1
     //
     this.labelControl1.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl1.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl1.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl1.LineVisible = true;
     this.labelControl1.Location = new System.Drawing.Point(471, 6);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(81, 20);
     this.labelControl1.TabIndex = 54;
     this.labelControl1.Text = "Company Seq.";
     //
     // frmProducts
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(704, 454);
     this.Controls.Add(this.groupControl4);
     this.Controls.Add(this.groupControl2);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.xtraTabControl1);
     this.Controls.Add(this.btnAdd);
     this.Controls.Add(this.btnCancel);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "frmProducts";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Products";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmProducts_FormClosing);
     this.Load += new System.EventHandler(this.frmProducts_Load);
     this.Enter += new System.EventHandler(this.frmProducts_Enter);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.xtrabarGeneralinformation.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtfactor.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtuompurchase.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtuomsize.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtuomsale.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbValueMethod.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtAvgRate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtToleranceDay.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLoadTime.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPurchaseRate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSpecialRate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCostRate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTransit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTarget.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNetBalance.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBalanceBonus.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBalanceStock.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxQuantityDays.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxQuantityPCustomer.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPackInBox.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInventoryDays.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMinFlatRate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxFlatRate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbSaleTaxCalculation.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSaleTaxVale.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSaleTaxPer.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxSalesDisc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPurchaseDiscountPer.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRetailPrice.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkwolallow.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkAllowPer.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkAutoBonus.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkSaleBase.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkSaleTaxReg.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkNonPharma.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkExcempted.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkUseFlatRate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkNorCotics.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkHideinTabs.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkAllowMaxQtyDays.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkProductDiscontinue.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTradePrice.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSaleRate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPackInCarton.Properties)).EndInit();
     this.XtrabarBonus.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.datagridBonus)).EndInit();
     this.xtraTabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.datagridProductAllocation)).EndInit();
     this.xtraTabPage2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).EndInit();
     this.groupControl5.ResumeLayout(false);
     this.groupControl5.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxLimit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMinLimit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBarCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShelfCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdPresevasionStandard)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtClaimPartnerName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.businessPartnerName.Properties)).EndInit();
     this.xtraTabPage3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dgFileAttachments)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbProductCategory.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShortName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtArtical.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtProductName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbSkuType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbGeneralName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbProtoType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPack.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGroupSeq.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGroupName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     this.groupControl2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtmanualgroup.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).EndInit();
     this.groupControl4.ResumeLayout(false);
     this.groupControl4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkCompanyDiscount.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCompanySeq.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtReportCompanyName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCompanyName.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Пример #60
-1
 /// <summary> 
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MyBarMenu));
     DevExpress.Utils.SuperToolTip superToolTip63 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem62 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip64 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem63 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip65 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem64 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip66 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem65 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip67 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem66 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip68 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem67 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip69 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem68 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip70 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem69 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip71 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem70 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip72 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem71 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip73 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem72 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip74 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem73 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip75 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem74 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip76 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem75 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip77 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem76 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip78 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem77 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip79 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem78 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip80 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem79 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip81 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem80 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip82 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem81 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip83 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem82 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip84 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem83 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip85 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem84 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip86 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem85 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip87 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem86 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip88 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem87 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip89 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem88 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip90 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem89 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip91 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem90 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip92 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem91 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip93 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem92 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip94 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem93 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip95 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem94 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip96 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem95 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip97 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem96 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip98 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem97 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip99 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem98 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip100 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem99 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip101 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem100 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip102 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem101 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip103 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem102 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip104 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem103 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip105 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem104 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip106 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem105 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip107 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem106 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip108 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem107 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip109 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem108 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip110 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem109 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip111 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem110 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip112 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem111 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip113 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem112 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip114 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem113 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip115 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem114 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip116 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip117 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem115 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip118 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem116 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip119 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem117 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip120 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem118 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip121 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem119 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip122 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem120 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip123 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem121 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip124 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem122 = new DevExpress.Utils.ToolTipItem();
     this.BarMenus = new DevExpress.XtraBars.BarManager(this.components);
     this.Menu = new DevExpress.XtraBars.Bar();
     this.btnCreate = new DevExpress.XtraBars.BarButtonItem();
     this.btnRequestSource = new DevExpress.XtraBars.BarButtonItem();
     this.btnModify = new DevExpress.XtraBars.BarButtonItem();
     this.btnRemove = new DevExpress.XtraBars.BarButtonItem();
     this.btnLock = new DevExpress.XtraBars.BarButtonItem();
     this.btnUnLock = new DevExpress.XtraBars.BarButtonItem();
     this.btnReView = new DevExpress.XtraBars.BarButtonItem();
     this.btnFinReView = new DevExpress.XtraBars.BarButtonItem();
     this.btnUnReView = new DevExpress.XtraBars.BarButtonItem();
     this.btnUsing = new DevExpress.XtraBars.BarButtonItem();
     this.btnUnUsing = new DevExpress.XtraBars.BarButtonItem();
     this.btnGoods = new DevExpress.XtraBars.BarButtonItem();
     this.btnPayed = new DevExpress.XtraBars.BarButtonItem();
     this.btnImport = new DevExpress.XtraBars.BarButtonItem();
     this.btnExport = new DevExpress.XtraBars.BarButtonItem();
     this.btnMerge = new DevExpress.XtraBars.BarButtonItem();
     this.btnSplit = new DevExpress.XtraBars.BarButtonItem();
     this.btnSMS = new DevExpress.XtraBars.BarButtonItem();
     this.btnSyn = new DevExpress.XtraBars.BarButtonItem();
     this.btnPrePage = new DevExpress.XtraBars.BarButtonItem();
     this.btnNextPage = new DevExpress.XtraBars.BarButtonItem();
     this.btnConvertReplan = new DevExpress.XtraBars.BarButtonItem();
     this.btnReleva = new DevExpress.XtraBars.BarButtonItem();
     this.btnUnReplation = new DevExpress.XtraBars.BarButtonItem();
     this.btnPurchase = new DevExpress.XtraBars.BarButtonItem();
     this.btnRequest = new DevExpress.XtraBars.BarButtonItem();
     this.btnAgainDown = new DevExpress.XtraBars.BarButtonItem();
     this.btnUpload = new DevExpress.XtraBars.BarButtonItem();
     this.btnDownload = new DevExpress.XtraBars.BarButtonItem();
     this.btnAuthorPur = new DevExpress.XtraBars.BarButtonItem();
     this.btnAuthorUser = new DevExpress.XtraBars.BarButtonItem();
     this.btnPrint = new DevExpress.XtraBars.BarButtonItem();
     this.btnBackUp = new DevExpress.XtraBars.BarButtonItem();
     this.btnRevert = new DevExpress.XtraBars.BarButtonItem();
     this.btnInvalid = new DevExpress.XtraBars.BarButtonItem();
     this.btnSubmit = new DevExpress.XtraBars.BarButtonItem();
     this.btnStopOutput = new DevExpress.XtraBars.BarButtonItem();
     this.btnSendEmail = new DevExpress.XtraBars.BarButtonItem();
     this.btnCast = new DevExpress.XtraBars.BarButtonItem();
     this.btnaAlot = new DevExpress.XtraBars.BarButtonItem();
     this.btnAFP = new DevExpress.XtraBars.BarButtonItem();
     this.btnArrival = new DevExpress.XtraBars.BarButtonItem();
     this.btnCRP = new DevExpress.XtraBars.BarButtonItem();
     this.btnDirectStorage = new DevExpress.XtraBars.BarButtonItem();
     this.btnDiscount = new DevExpress.XtraBars.BarButtonItem();
     this.btnDump = new DevExpress.XtraBars.BarButtonItem();
     this.btnFavourable = new DevExpress.XtraBars.BarButtonItem();
     this.btnKeep = new DevExpress.XtraBars.BarButtonItem();
     this.btnReject = new DevExpress.XtraBars.BarButtonItem();
     this.btnReBack = new DevExpress.XtraBars.BarButtonItem();
     this.btnDispute = new DevExpress.XtraBars.BarButtonItem();
     this.btnRePayed = new DevExpress.XtraBars.BarButtonItem();
     this.btnInv = new DevExpress.XtraBars.BarButtonItem();
     this.btnCmp = new DevExpress.XtraBars.BarButtonItem();
     this.btnPrintView = new DevExpress.XtraBars.BarButtonItem();
     this.btnChange = new DevExpress.XtraBars.BarButtonItem();
     this.btnTraferCargo = new DevExpress.XtraBars.BarButtonItem();
     this.btnUnPrint = new DevExpress.XtraBars.BarButtonItem();
     this.btnGen = new DevExpress.XtraBars.BarButtonItem();
     this.btnLaid = new DevExpress.XtraBars.BarButtonItem();
     this.btnKnockOff = new DevExpress.XtraBars.BarButtonItem();
     this.btnRefresh = new DevExpress.XtraBars.BarButtonItem();
     this.barAndDockingController1 = new DevExpress.XtraBars.BarAndDockingController(this.components);
     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.btnLogDocument = new DevExpress.XtraBars.BarButtonItem();
     this.btnGoodsDocument = new DevExpress.XtraBars.BarButtonItem();
     this.btnHouseReView = new DevExpress.XtraBars.BarButtonItem();
     this.btnSendMoney = new DevExpress.XtraBars.BarButtonItem();
     this.btnRecharge = new DevExpress.XtraBars.BarButtonItem();
     this.btnTagPrint = new DevExpress.XtraBars.BarButtonItem();
     this.btnTocPrint = new DevExpress.XtraBars.BarButtonItem();
     this.btnHold = new DevExpress.XtraBars.BarButtonItem();
     this.btnHangUp = new DevExpress.XtraBars.BarButtonItem();
     this.btnCallOut = new DevExpress.XtraBars.BarButtonItem();
     this.btnBusy = new DevExpress.XtraBars.BarButtonItem();
     this.btnReset = new DevExpress.XtraBars.BarButtonItem();
     this.btnSetting = new DevExpress.XtraBars.BarButtonItem();
     this.btnShowBusy = new DevExpress.XtraBars.BarButtonItem();
     this.btnShowIdle = new DevExpress.XtraBars.BarButtonItem();
     this.btnAnswer = new DevExpress.XtraBars.BarButtonItem();
     this.btnTurnOut = new DevExpress.XtraBars.BarButtonItem();
     this.btnPick = new DevExpress.XtraBars.BarButtonItem();
     ((System.ComponentModel.ISupportInitialize)(this.BarMenus)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.barAndDockingController1)).BeginInit();
     this.SuspendLayout();
     //
     // BarMenus
     //
     this.BarMenus.AllowCustomization = false;
     this.BarMenus.AllowMoveBarOnToolbar = false;
     this.BarMenus.AllowQuickCustomization = false;
     this.BarMenus.AllowShowToolbarsPopup = false;
     this.BarMenus.AutoSaveInRegistry = true;
     this.BarMenus.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.Menu});
     this.BarMenus.Controller = this.barAndDockingController1;
     this.BarMenus.DockControls.Add(this.barDockControlTop);
     this.BarMenus.DockControls.Add(this.barDockControlBottom);
     this.BarMenus.DockControls.Add(this.barDockControlLeft);
     this.BarMenus.DockControls.Add(this.barDockControlRight);
     this.BarMenus.Form = this;
     this.BarMenus.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.btnCreate,
     this.btnModify,
     this.btnRemove,
     this.btnLock,
     this.btnUnLock,
     this.btnReView,
     this.btnUnReView,
     this.btnGoods,
     this.btnImport,
     this.btnExport,
     this.btnLogDocument,
     this.btnMerge,
     this.btnSplit,
     this.btnSMS,
     this.btnSyn,
     this.btnGoodsDocument,
     this.btnPrePage,
     this.btnNextPage,
     this.btnConvertReplan,
     this.btnReleva,
     this.btnPurchase,
     this.btnRequest,
     this.btnAgainDown,
     this.btnUpload,
     this.btnDownload,
     this.btnPrint,
     this.btnAuthorPur,
     this.btnAuthorUser,
     this.btnHouseReView,
     this.btnBackUp,
     this.btnRevert,
     this.btnInvalid,
     this.btnSubmit,
     this.btnRequestSource,
     this.btnUnReplation,
     this.btnPayed,
     this.btnStopOutput,
     this.btnSendEmail,
     this.btnSendMoney,
     this.btnRecharge,
     this.btnCast,
     this.btnUsing,
     this.btnUnUsing,
     this.btnFinReView,
     this.btnTagPrint,
     this.btnTocPrint,
     this.btnaAlot,
     this.btnAFP,
     this.btnArrival,
     this.btnCRP,
     this.btnDirectStorage,
     this.btnTraferCargo,
     this.btnDiscount,
     this.btnDump,
     this.btnFavourable,
     this.btnKeep,
     this.btnReject,
     this.btnReBack,
     this.btnDispute,
     this.btnInv,
     this.btnRePayed,
     this.btnCmp,
     this.btnPrintView,
     this.btnUnPrint,
     this.btnChange,
     this.btnGen,
     this.btnLaid,
     this.btnKnockOff,
     this.btnRefresh,
     this.btnHold,
     this.btnHangUp,
     this.btnCallOut,
     this.btnBusy,
     this.btnReset,
     this.btnSetting,
     this.btnShowBusy,
     this.btnShowIdle,
     this.btnAnswer,
     this.btnTurnOut,
     this.btnPick});
     this.BarMenus.MaxItemId = 132;
     this.BarMenus.ShowFullMenus = true;
     //
     // Menu
     //
     this.Menu.BarName = "Tools";
     this.Menu.CanDockStyle = DevExpress.XtraBars.BarCanDockStyle.Bottom;
     this.Menu.DockCol = 0;
     this.Menu.DockRow = 0;
     this.Menu.DockStyle = DevExpress.XtraBars.BarDockStyle.Bottom;
     this.Menu.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.btnCreate),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnRequestSource),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnModify),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnRemove),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnLock),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnUnLock),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnReView),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnFinReView),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnUnReView),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnUsing),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnUnUsing),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnGoods),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnPayed),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnImport),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnExport),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnMerge),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnSplit),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnSMS),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnSyn),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnPrePage),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnNextPage),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnConvertReplan),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnReleva),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnUnReplation),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnPurchase),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnRequest),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnAgainDown),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnUpload),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnDownload),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnAuthorPur),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnAuthorUser),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnPrint),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnBackUp),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnRevert),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnInvalid),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnSubmit),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnStopOutput),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnSendEmail),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnCast),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnaAlot),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnAFP),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnArrival),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnCRP),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnDirectStorage),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnDiscount),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnDump),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnFavourable),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnKeep),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnReject),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnReBack),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnDispute),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnRePayed),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnInv),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnCmp),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnPrintView),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnChange),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnTraferCargo),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnUnPrint),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnGen),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnLaid),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnKnockOff),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnRefresh),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnHold),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnHangUp),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnCallOut),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnPick),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnBusy),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnReset),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnSetting),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnShowBusy),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnShowIdle),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnAnswer),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnTurnOut)});
     this.Menu.OptionsBar.AllowCollapse = true;
     this.Menu.OptionsBar.AllowQuickCustomization = false;
     this.Menu.OptionsBar.DrawDragBorder = false;
     this.Menu.OptionsBar.UseWholeRow = true;
     this.Menu.Text = "Tools";
     //
     // btnCreate
     //
     this.btnCreate.Caption = "新增";
     this.btnCreate.Glyph = ((System.Drawing.Image)(resources.GetObject("btnCreate.Glyph")));
     this.btnCreate.Id = 0;
     this.btnCreate.Name = "btnCreate";
     superToolTip63.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem62.Text = "<b>新增按钮</b>";
     superToolTip63.Items.Add(toolTipItem62);
     this.btnCreate.SuperTip = superToolTip63;
     this.btnCreate.Tag = "新增";
     this.btnCreate.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnRequestSource
     //
     this.btnRequestSource.Caption = "获取";
     this.btnRequestSource.Glyph = ((System.Drawing.Image)(resources.GetObject("btnRequestSource.Glyph")));
     this.btnRequestSource.Id = 43;
     this.btnRequestSource.Name = "btnRequestSource";
     superToolTip64.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem63.Text = "<b>获取数据</b>";
     superToolTip64.Items.Add(toolTipItem63);
     this.btnRequestSource.SuperTip = superToolTip64;
     this.btnRequestSource.Tag = "获取";
     this.btnRequestSource.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnModify
     //
     this.btnModify.Caption = "修改";
     this.btnModify.Glyph = ((System.Drawing.Image)(resources.GetObject("btnModify.Glyph")));
     this.btnModify.Id = 1;
     this.btnModify.Name = "btnModify";
     superToolTip65.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem64.Text = "<b>修改按钮</b>";
     superToolTip65.Items.Add(toolTipItem64);
     this.btnModify.SuperTip = superToolTip65;
     this.btnModify.Tag = "修改";
     this.btnModify.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnRemove
     //
     this.btnRemove.Caption = "删除";
     this.btnRemove.Glyph = ((System.Drawing.Image)(resources.GetObject("btnRemove.Glyph")));
     this.btnRemove.Id = 3;
     this.btnRemove.Name = "btnRemove";
     superToolTip66.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem65.Text = "<b>删除按钮</b>";
     superToolTip66.Items.Add(toolTipItem65);
     this.btnRemove.SuperTip = superToolTip66;
     this.btnRemove.Tag = "删除";
     this.btnRemove.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnLock
     //
     this.btnLock.Caption = "锁定";
     this.btnLock.Glyph = ((System.Drawing.Image)(resources.GetObject("btnLock.Glyph")));
     this.btnLock.Id = 4;
     this.btnLock.Name = "btnLock";
     superToolTip67.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem66.Text = "<b>锁定按钮</b>";
     superToolTip67.Items.Add(toolTipItem66);
     this.btnLock.SuperTip = superToolTip67;
     this.btnLock.Tag = "锁定";
     this.btnLock.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnUnLock
     //
     this.btnUnLock.Caption = "解锁";
     this.btnUnLock.Glyph = ((System.Drawing.Image)(resources.GetObject("btnUnLock.Glyph")));
     this.btnUnLock.Id = 5;
     this.btnUnLock.Name = "btnUnLock";
     superToolTip68.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem67.Text = "<b>解锁按钮</b>";
     superToolTip68.Items.Add(toolTipItem67);
     this.btnUnLock.SuperTip = superToolTip68;
     this.btnUnLock.Tag = "解锁";
     this.btnUnLock.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnReView
     //
     this.btnReView.Caption = "审核";
     this.btnReView.Glyph = ((System.Drawing.Image)(resources.GetObject("btnReView.Glyph")));
     this.btnReView.Id = 6;
     this.btnReView.Name = "btnReView";
     superToolTip69.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem68.Text = "<b>审核按钮</b>";
     superToolTip69.Items.Add(toolTipItem68);
     this.btnReView.SuperTip = superToolTip69;
     this.btnReView.Tag = "审核";
     this.btnReView.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnFinReView
     //
     this.btnFinReView.Caption = "财审";
     this.btnFinReView.Glyph = ((System.Drawing.Image)(resources.GetObject("btnFinReView.Glyph")));
     this.btnFinReView.Id = 54;
     this.btnFinReView.Name = "btnFinReView";
     superToolTip70.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem69.Text = "<b>财务审核</b>";
     superToolTip70.Items.Add(toolTipItem69);
     this.btnFinReView.SuperTip = superToolTip70;
     this.btnFinReView.Tag = "财审";
     this.btnFinReView.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnUnReView
     //
     this.btnUnReView.Caption = "退审";
     this.btnUnReView.Glyph = ((System.Drawing.Image)(resources.GetObject("btnUnReView.Glyph")));
     this.btnUnReView.Id = 7;
     this.btnUnReView.Name = "btnUnReView";
     superToolTip71.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem70.Text = "<b>退审按钮</b>";
     superToolTip71.Items.Add(toolTipItem70);
     this.btnUnReView.SuperTip = superToolTip71;
     this.btnUnReView.Tag = "退审";
     this.btnUnReView.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnUsing
     //
     this.btnUsing.Caption = "启用";
     this.btnUsing.Glyph = ((System.Drawing.Image)(resources.GetObject("btnUsing.Glyph")));
     this.btnUsing.Id = 52;
     this.btnUsing.Name = "btnUsing";
     superToolTip72.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem71.Text = "<b>启用按钮</b>";
     superToolTip72.Items.Add(toolTipItem71);
     this.btnUsing.SuperTip = superToolTip72;
     this.btnUsing.Tag = "启用";
     this.btnUsing.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnUnUsing
     //
     this.btnUnUsing.Caption = "禁用";
     this.btnUnUsing.Glyph = ((System.Drawing.Image)(resources.GetObject("btnUnUsing.Glyph")));
     this.btnUnUsing.Id = 53;
     this.btnUnUsing.Name = "btnUnUsing";
     superToolTip73.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem72.Text = "<b>未启用按钮</b>";
     superToolTip73.Items.Add(toolTipItem72);
     this.btnUnUsing.SuperTip = superToolTip73;
     this.btnUnUsing.Tag = "禁用";
     this.btnUnUsing.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnGoods
     //
     this.btnGoods.Caption = "发货";
     this.btnGoods.Glyph = ((System.Drawing.Image)(resources.GetObject("btnGoods.Glyph")));
     this.btnGoods.Id = 9;
     this.btnGoods.Name = "btnGoods";
     superToolTip74.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem73.Text = "<b>发货按钮</b>";
     superToolTip74.Items.Add(toolTipItem73);
     this.btnGoods.SuperTip = superToolTip74;
     this.btnGoods.Tag = "发货";
     this.btnGoods.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnPayed
     //
     this.btnPayed.Caption = "结算";
     this.btnPayed.Glyph = ((System.Drawing.Image)(resources.GetObject("btnPayed.Glyph")));
     this.btnPayed.Id = 46;
     this.btnPayed.Name = "btnPayed";
     superToolTip75.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem74.Text = "<b>结算按钮</b>";
     superToolTip75.Items.Add(toolTipItem74);
     this.btnPayed.SuperTip = superToolTip75;
     this.btnPayed.Tag = "结算";
     this.btnPayed.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnImport
     //
     this.btnImport.Caption = "导入";
     this.btnImport.Glyph = ((System.Drawing.Image)(resources.GetObject("btnImport.Glyph")));
     this.btnImport.Id = 10;
     this.btnImport.Name = "btnImport";
     superToolTip76.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem75.Text = "<b>导入按钮</b>";
     superToolTip76.Items.Add(toolTipItem75);
     this.btnImport.SuperTip = superToolTip76;
     this.btnImport.Tag = "导入";
     this.btnImport.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnExport
     //
     this.btnExport.Caption = "导出";
     this.btnExport.Glyph = ((System.Drawing.Image)(resources.GetObject("btnExport.Glyph")));
     this.btnExport.Id = 11;
     this.btnExport.Name = "btnExport";
     superToolTip77.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem76.Text = "<b>导出按钮</b>";
     superToolTip77.Items.Add(toolTipItem76);
     this.btnExport.SuperTip = superToolTip77;
     this.btnExport.Tag = "导出";
     this.btnExport.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnMerge
     //
     this.btnMerge.Caption = "合并";
     this.btnMerge.Glyph = ((System.Drawing.Image)(resources.GetObject("btnMerge.Glyph")));
     this.btnMerge.Id = 18;
     this.btnMerge.Name = "btnMerge";
     superToolTip78.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem77.Text = "<b>合并按钮</b>";
     superToolTip78.Items.Add(toolTipItem77);
     this.btnMerge.SuperTip = superToolTip78;
     this.btnMerge.Tag = "合并";
     this.btnMerge.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnSplit
     //
     this.btnSplit.Caption = "拆分";
     this.btnSplit.Glyph = ((System.Drawing.Image)(resources.GetObject("btnSplit.Glyph")));
     this.btnSplit.Id = 19;
     this.btnSplit.Name = "btnSplit";
     superToolTip79.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem78.Text = "<b>拆分按钮</b>";
     superToolTip79.Items.Add(toolTipItem78);
     this.btnSplit.SuperTip = superToolTip79;
     this.btnSplit.Tag = "拆分";
     this.btnSplit.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnSMS
     //
     this.btnSMS.Caption = "发短信";
     this.btnSMS.Glyph = ((System.Drawing.Image)(resources.GetObject("btnSMS.Glyph")));
     this.btnSMS.Id = 20;
     this.btnSMS.Name = "btnSMS";
     superToolTip80.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem79.Text = "<b>发送短信按钮</b>";
     superToolTip80.Items.Add(toolTipItem79);
     this.btnSMS.SuperTip = superToolTip80;
     this.btnSMS.Tag = "发短信";
     this.btnSMS.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnSyn
     //
     this.btnSyn.Caption = "同步";
     this.btnSyn.Glyph = ((System.Drawing.Image)(resources.GetObject("btnSyn.Glyph")));
     this.btnSyn.Id = 21;
     this.btnSyn.Name = "btnSyn";
     superToolTip81.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem80.Text = "<b>同步按钮</b>";
     superToolTip81.Items.Add(toolTipItem80);
     this.btnSyn.SuperTip = superToolTip81;
     this.btnSyn.Tag = "同步";
     this.btnSyn.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnPrePage
     //
     this.btnPrePage.Caption = "上一条";
     this.btnPrePage.Glyph = ((System.Drawing.Image)(resources.GetObject("btnPrePage.Glyph")));
     this.btnPrePage.Id = 27;
     this.btnPrePage.Name = "btnPrePage";
     superToolTip82.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem81.Text = "<b>上一条按钮</b>";
     superToolTip82.Items.Add(toolTipItem81);
     this.btnPrePage.SuperTip = superToolTip82;
     this.btnPrePage.Tag = "上一条";
     this.btnPrePage.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnNextPage
     //
     this.btnNextPage.Caption = "下一条";
     this.btnNextPage.Glyph = ((System.Drawing.Image)(resources.GetObject("btnNextPage.Glyph")));
     this.btnNextPage.Id = 28;
     this.btnNextPage.Name = "btnNextPage";
     superToolTip83.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem82.Text = "<b>下一条按钮</b>";
     superToolTip83.Items.Add(toolTipItem82);
     this.btnNextPage.SuperTip = superToolTip83;
     this.btnNextPage.Tag = "下一条";
     this.btnNextPage.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnConvertReplan
     //
     this.btnConvertReplan.Caption = "转补款单";
     this.btnConvertReplan.Glyph = ((System.Drawing.Image)(resources.GetObject("btnConvertReplan.Glyph")));
     this.btnConvertReplan.Id = 29;
     this.btnConvertReplan.Name = "btnConvertReplan";
     superToolTip84.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem83.Text = "<b>转换成补款单按钮</b>";
     superToolTip84.Items.Add(toolTipItem83);
     this.btnConvertReplan.SuperTip = superToolTip84;
     this.btnConvertReplan.Tag = "转换补款单";
     this.btnConvertReplan.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnReleva
     //
     this.btnReleva.Caption = "关联";
     this.btnReleva.Glyph = ((System.Drawing.Image)(resources.GetObject("btnReleva.Glyph")));
     this.btnReleva.Id = 31;
     this.btnReleva.Name = "btnReleva";
     superToolTip85.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem84.Text = "<b>关联按钮</b>";
     superToolTip85.Items.Add(toolTipItem84);
     this.btnReleva.SuperTip = superToolTip85;
     this.btnReleva.Tag = "关联";
     this.btnReleva.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnUnReplation
     //
     this.btnUnReplation.Caption = "取消关联";
     this.btnUnReplation.Glyph = ((System.Drawing.Image)(resources.GetObject("btnUnReplation.Glyph")));
     this.btnUnReplation.Id = 45;
     this.btnUnReplation.Name = "btnUnReplation";
     superToolTip86.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem85.Text = "<b>取消关联</b>";
     superToolTip86.Items.Add(toolTipItem85);
     this.btnUnReplation.SuperTip = superToolTip86;
     this.btnUnReplation.Tag = "取消关联";
     this.btnUnReplation.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnPurchase
     //
     this.btnPurchase.Caption = "订单采购";
     this.btnPurchase.Glyph = ((System.Drawing.Image)(resources.GetObject("btnPurchase.Glyph")));
     this.btnPurchase.Id = 32;
     this.btnPurchase.Name = "btnPurchase";
     superToolTip87.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem86.Text = "<b>生产采购单按钮</b>";
     superToolTip87.Items.Add(toolTipItem86);
     this.btnPurchase.SuperTip = superToolTip87;
     this.btnPurchase.Tag = "订单采购";
     this.btnPurchase.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnRequest
     //
     this.btnRequest.Caption = "获取失败";
     this.btnRequest.Glyph = ((System.Drawing.Image)(resources.GetObject("btnRequest.Glyph")));
     this.btnRequest.Id = 23;
     this.btnRequest.Name = "btnRequest";
     superToolTip88.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem87.Text = "<b>得到下载失败订单</b>";
     superToolTip88.Items.Add(toolTipItem87);
     this.btnRequest.SuperTip = superToolTip88;
     this.btnRequest.Tag = "获取订单";
     this.btnRequest.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnAgainDown
     //
     this.btnAgainDown.Caption = "重下失败";
     this.btnAgainDown.Glyph = ((System.Drawing.Image)(resources.GetObject("btnAgainDown.Glyph")));
     this.btnAgainDown.Id = 22;
     this.btnAgainDown.Name = "btnAgainDown";
     superToolTip89.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem88.Text = "<b>重新下载失败订单</b>";
     superToolTip89.Items.Add(toolTipItem88);
     this.btnAgainDown.SuperTip = superToolTip89;
     this.btnAgainDown.Tag = "重下订单";
     this.btnAgainDown.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnUpload
     //
     this.btnUpload.Caption = "上传";
     this.btnUpload.Glyph = ((System.Drawing.Image)(resources.GetObject("btnUpload.Glyph")));
     this.btnUpload.Id = 33;
     this.btnUpload.Name = "btnUpload";
     superToolTip90.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem89.Text = "<b>上传按钮</b>";
     superToolTip90.Items.Add(toolTipItem89);
     this.btnUpload.SuperTip = superToolTip90;
     this.btnUpload.Tag = "上传";
     this.btnUpload.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnDownload
     //
     this.btnDownload.Caption = "下载";
     this.btnDownload.Glyph = ((System.Drawing.Image)(resources.GetObject("btnDownload.Glyph")));
     this.btnDownload.Id = 34;
     this.btnDownload.Name = "btnDownload";
     superToolTip91.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem90.Text = "<b>下载按钮</b>";
     superToolTip91.Items.Add(toolTipItem90);
     this.btnDownload.SuperTip = superToolTip91;
     this.btnDownload.Tag = "下载";
     this.btnDownload.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnAuthorPur
     //
     this.btnAuthorPur.Caption = "角色权限";
     this.btnAuthorPur.Glyph = ((System.Drawing.Image)(resources.GetObject("btnAuthorPur.Glyph")));
     this.btnAuthorPur.Id = 36;
     this.btnAuthorPur.Name = "btnAuthorPur";
     superToolTip92.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem91.Text = "<b>角色赋值权限按钮</b>";
     superToolTip92.Items.Add(toolTipItem91);
     this.btnAuthorPur.SuperTip = superToolTip92;
     this.btnAuthorPur.Tag = "角色权限";
     this.btnAuthorPur.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnAuthorUser
     //
     this.btnAuthorUser.Caption = "角色用户";
     this.btnAuthorUser.Glyph = ((System.Drawing.Image)(resources.GetObject("btnAuthorUser.Glyph")));
     this.btnAuthorUser.Id = 37;
     this.btnAuthorUser.Name = "btnAuthorUser";
     superToolTip93.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem92.Text = "<b>用户赋值角色按钮</b>";
     superToolTip93.Items.Add(toolTipItem92);
     this.btnAuthorUser.SuperTip = superToolTip93;
     this.btnAuthorUser.Tag = "角色用户";
     this.btnAuthorUser.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnPrint
     //
     this.btnPrint.Caption = "打印";
     this.btnPrint.Glyph = ((System.Drawing.Image)(resources.GetObject("btnPrint.Glyph")));
     this.btnPrint.Id = 35;
     this.btnPrint.Name = "btnPrint";
     superToolTip94.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem93.Text = "<b>单据打印按钮</b>";
     superToolTip94.Items.Add(toolTipItem93);
     this.btnPrint.SuperTip = superToolTip94;
     this.btnPrint.Tag = "打印";
     this.btnPrint.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnBackUp
     //
     this.btnBackUp.Caption = "备份";
     this.btnBackUp.Glyph = ((System.Drawing.Image)(resources.GetObject("btnBackUp.Glyph")));
     this.btnBackUp.Id = 39;
     this.btnBackUp.Name = "btnBackUp";
     superToolTip95.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem94.Text = "<b>备份</b>";
     superToolTip95.Items.Add(toolTipItem94);
     this.btnBackUp.SuperTip = superToolTip95;
     this.btnBackUp.Tag = "备份";
     this.btnBackUp.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnRevert
     //
     this.btnRevert.Caption = "还原";
     this.btnRevert.Glyph = ((System.Drawing.Image)(resources.GetObject("btnRevert.Glyph")));
     this.btnRevert.Id = 40;
     this.btnRevert.Name = "btnRevert";
     superToolTip96.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem95.Text = "<b>还原</b>";
     superToolTip96.Items.Add(toolTipItem95);
     this.btnRevert.SuperTip = superToolTip96;
     this.btnRevert.Tag = "还原";
     this.btnRevert.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnInvalid
     //
     this.btnInvalid.Caption = "作废";
     this.btnInvalid.Glyph = ((System.Drawing.Image)(resources.GetObject("btnInvalid.Glyph")));
     this.btnInvalid.Id = 41;
     this.btnInvalid.Name = "btnInvalid";
     superToolTip97.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem96.Text = "<b>作废</b>";
     superToolTip97.Items.Add(toolTipItem96);
     this.btnInvalid.SuperTip = superToolTip97;
     this.btnInvalid.Tag = "作废";
     this.btnInvalid.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnSubmit
     //
     this.btnSubmit.Caption = "提交";
     this.btnSubmit.Glyph = ((System.Drawing.Image)(resources.GetObject("btnSubmit.Glyph")));
     this.btnSubmit.Id = 42;
     this.btnSubmit.Name = "btnSubmit";
     superToolTip98.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem97.Text = "<b>提交</b>";
     superToolTip98.Items.Add(toolTipItem97);
     this.btnSubmit.SuperTip = superToolTip98;
     this.btnSubmit.Tag = "提交";
     this.btnSubmit.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnStopOutput
     //
     this.btnStopOutput.Caption = "停止生产";
     this.btnStopOutput.Glyph = ((System.Drawing.Image)(resources.GetObject("btnStopOutput.Glyph")));
     this.btnStopOutput.Id = 47;
     this.btnStopOutput.Name = "btnStopOutput";
     superToolTip99.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem98.Text = "<b>停止生产</b>";
     superToolTip99.Items.Add(toolTipItem98);
     this.btnStopOutput.SuperTip = superToolTip99;
     this.btnStopOutput.Tag = "停止生产";
     this.btnStopOutput.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnSendEmail
     //
     this.btnSendEmail.Caption = "发邮件";
     this.btnSendEmail.Glyph = ((System.Drawing.Image)(resources.GetObject("btnSendEmail.Glyph")));
     this.btnSendEmail.Id = 48;
     this.btnSendEmail.Name = "btnSendEmail";
     superToolTip100.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem99.Text = "<b>发送邮件按钮</b>";
     superToolTip100.Items.Add(toolTipItem99);
     this.btnSendEmail.SuperTip = superToolTip100;
     this.btnSendEmail.Tag = "发邮件";
     this.btnSendEmail.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnCast
     //
     this.btnCast.Caption = "转赠品";
     this.btnCast.Glyph = ((System.Drawing.Image)(resources.GetObject("btnCast.Glyph")));
     this.btnCast.Id = 51;
     this.btnCast.Name = "btnCast";
     superToolTip101.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem100.Text = "<b>转赠品</b>";
     superToolTip101.Items.Add(toolTipItem100);
     this.btnCast.SuperTip = superToolTip101;
     this.btnCast.Tag = "转赠品";
     this.btnCast.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnaAlot
     //
     this.btnaAlot.Caption = "分配商品";
     this.btnaAlot.Glyph = ((System.Drawing.Image)(resources.GetObject("btnaAlot.Glyph")));
     this.btnaAlot.Id = 57;
     this.btnaAlot.Name = "btnaAlot";
     superToolTip102.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem101.Text = "<b>分配商品</b>";
     superToolTip102.Items.Add(toolTipItem101);
     this.btnaAlot.SuperTip = superToolTip102;
     this.btnaAlot.Tag = "分配商品";
     this.btnaAlot.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnAFP
     //
     this.btnAFP.Caption = "申请打印";
     this.btnAFP.Glyph = ((System.Drawing.Image)(resources.GetObject("btnAFP.Glyph")));
     this.btnAFP.Id = 58;
     this.btnAFP.Name = "btnAFP";
     superToolTip103.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem102.Text = "<b>申请打印</b>";
     superToolTip103.Items.Add(toolTipItem102);
     this.btnAFP.SuperTip = superToolTip103;
     this.btnAFP.Tag = "申请打印";
     this.btnAFP.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnArrival
     //
     this.btnArrival.Caption = "维修到货";
     this.btnArrival.Glyph = ((System.Drawing.Image)(resources.GetObject("btnArrival.Glyph")));
     this.btnArrival.Id = 59;
     this.btnArrival.Name = "btnArrival";
     superToolTip104.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem103.Text = "<b>维修到货</b>";
     superToolTip104.Items.Add(toolTipItem103);
     this.btnArrival.SuperTip = superToolTip104;
     this.btnArrival.Tag = "维修到货";
     this.btnArrival.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnCRP
     //
     this.btnCRP.Caption = "折价退回";
     this.btnCRP.Glyph = ((System.Drawing.Image)(resources.GetObject("btnCRP.Glyph")));
     this.btnCRP.Id = 60;
     this.btnCRP.Name = "btnCRP";
     superToolTip105.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem104.Text = "<b>折价退回</b>";
     superToolTip105.Items.Add(toolTipItem104);
     this.btnCRP.SuperTip = superToolTip105;
     this.btnCRP.Tag = "折价退回";
     this.btnCRP.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnDirectStorage
     //
     this.btnDirectStorage.Caption = "直接入库";
     this.btnDirectStorage.Glyph = ((System.Drawing.Image)(resources.GetObject("btnDirectStorage.Glyph")));
     this.btnDirectStorage.Id = 61;
     this.btnDirectStorage.Name = "btnDirectStorage";
     superToolTip106.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem105.Text = "<b>直接入库</b>";
     superToolTip106.Items.Add(toolTipItem105);
     this.btnDirectStorage.SuperTip = superToolTip106;
     this.btnDirectStorage.Tag = "直接入库";
     this.btnDirectStorage.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnDiscount
     //
     this.btnDiscount.Caption = "永久折扣";
     this.btnDiscount.Glyph = ((System.Drawing.Image)(resources.GetObject("btnDiscount.Glyph")));
     this.btnDiscount.Id = 64;
     this.btnDiscount.Name = "btnDiscount";
     superToolTip107.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem106.Text = "<b>永久折扣</b>";
     superToolTip107.Items.Add(toolTipItem106);
     this.btnDiscount.SuperTip = superToolTip107;
     this.btnDiscount.Tag = "永久折扣";
     this.btnDiscount.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnDump
     //
     this.btnDump.Caption = "报废";
     this.btnDump.Glyph = ((System.Drawing.Image)(resources.GetObject("btnDump.Glyph")));
     this.btnDump.Id = 65;
     this.btnDump.Name = "btnDump";
     superToolTip108.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem107.Text = "<b>报废</b>";
     superToolTip108.Items.Add(toolTipItem107);
     this.btnDump.SuperTip = superToolTip108;
     this.btnDump.Tag = "报废";
     this.btnDump.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnFavourable
     //
     this.btnFavourable.Caption = "优惠规则";
     this.btnFavourable.Glyph = ((System.Drawing.Image)(resources.GetObject("btnFavourable.Glyph")));
     this.btnFavourable.Id = 67;
     this.btnFavourable.Name = "btnFavourable";
     superToolTip109.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem108.Text = "<b>优惠规则</b>";
     superToolTip109.Items.Add(toolTipItem108);
     this.btnFavourable.SuperTip = superToolTip109;
     this.btnFavourable.Tag = "优惠规则";
     this.btnFavourable.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnKeep
     //
     this.btnKeep.Caption = "返厂维修";
     this.btnKeep.Glyph = ((System.Drawing.Image)(resources.GetObject("btnKeep.Glyph")));
     this.btnKeep.Id = 68;
     this.btnKeep.Name = "btnKeep";
     superToolTip110.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem109.Text = "<b>反厂维修</b>";
     superToolTip110.Items.Add(toolTipItem109);
     this.btnKeep.SuperTip = superToolTip110;
     this.btnKeep.Tag = "返厂维修";
     this.btnKeep.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnReject
     //
     this.btnReject.Caption = "驳回";
     this.btnReject.Glyph = ((System.Drawing.Image)(resources.GetObject("btnReject.Glyph")));
     this.btnReject.Id = 70;
     this.btnReject.Name = "btnReject";
     superToolTip111.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem110.Text = "<b>驳回</b>";
     superToolTip111.Items.Add(toolTipItem110);
     this.btnReject.SuperTip = superToolTip111;
     this.btnReject.Tag = "驳回";
     this.btnReject.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnReBack
     //
     this.btnReBack.Caption = "回访";
     this.btnReBack.Glyph = ((System.Drawing.Image)(resources.GetObject("btnReBack.Glyph")));
     this.btnReBack.Id = 71;
     this.btnReBack.Name = "btnReBack";
     superToolTip112.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem111.Text = "<b>回访</b>";
     superToolTip112.Items.Add(toolTipItem111);
     this.btnReBack.SuperTip = superToolTip112;
     this.btnReBack.Tag = "回访";
     this.btnReBack.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnDispute
     //
     this.btnDispute.Caption = "纠纷 ";
     this.btnDispute.Glyph = ((System.Drawing.Image)(resources.GetObject("btnDispute.Glyph")));
     this.btnDispute.Id = 74;
     this.btnDispute.Name = "btnDispute";
     superToolTip113.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem112.Text = "<b>纠纷</b>";
     superToolTip113.Items.Add(toolTipItem112);
     this.btnDispute.SuperTip = superToolTip113;
     this.btnDispute.Tag = "纠纷";
     this.btnDispute.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnRePayed
     //
     this.btnRePayed.Caption = "退结算";
     this.btnRePayed.Glyph = ((System.Drawing.Image)(resources.GetObject("btnRePayed.Glyph")));
     this.btnRePayed.Id = 76;
     this.btnRePayed.Name = "btnRePayed";
     superToolTip114.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem113.Text = "<b>退结算</b>";
     superToolTip114.Items.Add(toolTipItem113);
     this.btnRePayed.SuperTip = superToolTip114;
     this.btnRePayed.Tag = "退结算";
     this.btnRePayed.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnInv
     //
     this.btnInv.Caption = "库存采购";
     this.btnInv.Glyph = ((System.Drawing.Image)(resources.GetObject("btnInv.Glyph")));
     this.btnInv.Id = 75;
     this.btnInv.Name = "btnInv";
     superToolTip115.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem114.Text = "<b>库存采购</b>";
     superToolTip115.Items.Add(toolTipItem114);
     this.btnInv.SuperTip = superToolTip115;
     this.btnInv.Tag = "库存采购";
     this.btnInv.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnCmp
     //
     this.btnCmp.Caption = "完结";
     this.btnCmp.Glyph = ((System.Drawing.Image)(resources.GetObject("btnCmp.Glyph")));
     this.btnCmp.Id = 77;
     this.btnCmp.Name = "btnCmp";
     this.btnCmp.Tag = "完结";
     this.btnCmp.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnPrintView
     //
     this.btnPrintView.Caption = "打印预览";
     this.btnPrintView.Glyph = ((System.Drawing.Image)(resources.GetObject("btnPrintView.Glyph")));
     this.btnPrintView.Id = 78;
     this.btnPrintView.Name = "btnPrintView";
     this.btnPrintView.Tag = "打印预览";
     this.btnPrintView.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnChange
     //
     this.btnChange.Caption = "变更";
     this.btnChange.Glyph = ((System.Drawing.Image)(resources.GetObject("btnChange.Glyph")));
     this.btnChange.Id = 79;
     this.btnChange.Name = "btnChange";
     this.btnChange.Tag = "变更";
     this.btnChange.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnTraferCargo
     //
     this.btnTraferCargo.Caption = "调货";
     this.btnTraferCargo.Glyph = ((System.Drawing.Image)(resources.GetObject("btnTraferCargo.Glyph")));
     this.btnTraferCargo.Id = 63;
     this.btnTraferCargo.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnTraferCargo.LargeGlyph")));
     this.btnTraferCargo.Name = "btnTraferCargo";
     this.btnTraferCargo.Tag = "调货";
     this.btnTraferCargo.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnUnPrint
     //
     this.btnUnPrint.Caption = "退打印";
     this.btnUnPrint.Description = "退打印";
     this.btnUnPrint.Glyph = ((System.Drawing.Image)(resources.GetObject("btnUnPrint.Glyph")));
     this.btnUnPrint.Id = 79;
     this.btnUnPrint.Name = "btnUnPrint";
     this.btnUnPrint.Tag = "退打印";
     this.btnUnPrint.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnGen
     //
     this.btnGen.Caption = "生成";
     this.btnGen.Description = "生成";
     this.btnGen.Glyph = ((System.Drawing.Image)(resources.GetObject("btnGen.Glyph")));
     this.btnGen.Id = 81;
     this.btnGen.Name = "btnGen";
     this.btnGen.Tag = "生成";
     this.btnGen.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnLaid
     //
     this.btnLaid.Caption = "临时入库";
     this.btnLaid.Glyph = ((System.Drawing.Image)(resources.GetObject("btnLaid.Glyph")));
     this.btnLaid.Id = 97;
     this.btnLaid.Name = "btnLaid";
     toolTipTitleItem2.Text = "<b>临时入库</b>";
     superToolTip116.Items.Add(toolTipTitleItem2);
     this.btnLaid.SuperTip = superToolTip116;
     this.btnLaid.Tag = "临时入库";
     this.btnLaid.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnKnockOff
     //
     this.btnKnockOff.Caption = "收 工";
     this.btnKnockOff.Description = "收 工";
     this.btnKnockOff.Glyph = ((System.Drawing.Image)(resources.GetObject("btnKnockOff.Glyph")));
     this.btnKnockOff.Id = 120;
     this.btnKnockOff.Name = "btnKnockOff";
     this.btnKnockOff.Tag = "收工";
     this.btnKnockOff.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnRefresh
     //
     this.btnRefresh.Caption = "刷新";
     this.btnRefresh.Glyph = ((System.Drawing.Image)(resources.GetObject("btnRefresh.Glyph")));
     this.btnRefresh.Id = 25;
     this.btnRefresh.Name = "btnRefresh";
     superToolTip117.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem115.Text = "<b>刷新数据按钮</b>";
     superToolTip117.Items.Add(toolTipItem115);
     this.btnRefresh.SuperTip = superToolTip117;
     this.btnRefresh.Tag = "刷新";
     this.btnRefresh.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // barAndDockingController1
     //
     this.barAndDockingController1.PropertiesBar.AllowLinkLighting = false;
     //
     // 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(4570, 0);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, -5);
     this.barDockControlBottom.Size = new System.Drawing.Size(4570, 65);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.CausesValidation = false;
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 0);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 0);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(4570, 0);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 0);
     //
     // btnLogDocument
     //
     this.btnLogDocument.Caption = "物流单";
     this.btnLogDocument.Glyph = ((System.Drawing.Image)(resources.GetObject("btnLogDocument.Glyph")));
     this.btnLogDocument.Id = 12;
     this.btnLogDocument.Name = "btnLogDocument";
     superToolTip118.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem116.Text = "<b>打印物流单按钮</b>";
     superToolTip118.Items.Add(toolTipItem116);
     this.btnLogDocument.SuperTip = superToolTip118;
     this.btnLogDocument.Tag = "物流单";
     this.btnLogDocument.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnGoodsDocument
     //
     this.btnGoodsDocument.Caption = "发货单";
     this.btnGoodsDocument.Glyph = ((System.Drawing.Image)(resources.GetObject("btnGoodsDocument.Glyph")));
     this.btnGoodsDocument.Id = 26;
     this.btnGoodsDocument.Name = "btnGoodsDocument";
     superToolTip119.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem117.Text = "<b>打印发货单按钮</b>";
     superToolTip119.Items.Add(toolTipItem117);
     this.btnGoodsDocument.SuperTip = superToolTip119;
     this.btnGoodsDocument.Tag = "发货单";
     this.btnGoodsDocument.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnHouseReView
     //
     this.btnHouseReView.Glyph = ((System.Drawing.Image)(resources.GetObject("btnHouseReView.Glyph")));
     this.btnHouseReView.Id = 38;
     this.btnHouseReView.Name = "btnHouseReView";
     superToolTip120.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem118.Text = "<b>货物审核按钮</b>";
     superToolTip120.Items.Add(toolTipItem118);
     this.btnHouseReView.SuperTip = superToolTip120;
     this.btnHouseReView.Tag = "货审";
     this.btnHouseReView.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnSendMoney
     //
     this.btnSendMoney.Caption = "发红包";
     this.btnSendMoney.Glyph = ((System.Drawing.Image)(resources.GetObject("btnSendMoney.Glyph")));
     this.btnSendMoney.Id = 49;
     this.btnSendMoney.Name = "btnSendMoney";
     superToolTip121.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem119.Text = "<b>发送红包按钮</b>";
     superToolTip121.Items.Add(toolTipItem119);
     this.btnSendMoney.SuperTip = superToolTip121;
     this.btnSendMoney.Tag = "发红包";
     this.btnSendMoney.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnRecharge
     //
     this.btnRecharge.Caption = "短信充值";
     this.btnRecharge.Glyph = ((System.Drawing.Image)(resources.GetObject("btnRecharge.Glyph")));
     this.btnRecharge.Id = 50;
     this.btnRecharge.Name = "btnRecharge";
     superToolTip122.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem120.Text = "<b>短信充值按钮</b>";
     superToolTip122.Items.Add(toolTipItem120);
     this.btnRecharge.SuperTip = superToolTip122;
     this.btnRecharge.Tag = "短信充值";
     this.btnRecharge.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnTagPrint
     //
     this.btnTagPrint.Caption = "barButtonItem1";
     this.btnTagPrint.Glyph = ((System.Drawing.Image)(resources.GetObject("btnTagPrint.Glyph")));
     this.btnTagPrint.Id = 55;
     this.btnTagPrint.Name = "btnTagPrint";
     superToolTip123.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem121.Text = "<b>标签打印</b>";
     superToolTip123.Items.Add(toolTipItem121);
     this.btnTagPrint.SuperTip = superToolTip123;
     this.btnTagPrint.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnTocPrint
     //
     this.btnTocPrint.Caption = "理货打印";
     this.btnTocPrint.Glyph = ((System.Drawing.Image)(resources.GetObject("btnTocPrint.Glyph")));
     this.btnTocPrint.Id = 56;
     this.btnTocPrint.Name = "btnTocPrint";
     superToolTip124.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipItem122.Text = "<b>理货打印</b>";
     superToolTip124.Items.Add(toolTipItem122);
     this.btnTocPrint.SuperTip = superToolTip124;
     this.btnTocPrint.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnHold
     //
     this.btnHold.Caption = "保持";
     this.btnHold.Glyph = ((System.Drawing.Image)(resources.GetObject("btnHold.Glyph")));
     this.btnHold.Id = 121;
     this.btnHold.Name = "btnHold";
     this.btnHold.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnHangUp
     //
     this.btnHangUp.Caption = "挂断";
     this.btnHangUp.Glyph = ((System.Drawing.Image)(resources.GetObject("btnHangUp.Glyph")));
     this.btnHangUp.Id = 122;
     this.btnHangUp.Name = "btnHangUp";
     this.btnHangUp.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnCallOut
     //
     this.btnCallOut.Caption = "呼出";
     this.btnCallOut.Glyph = ((System.Drawing.Image)(resources.GetObject("btnCallOut.Glyph")));
     this.btnCallOut.Id = 123;
     this.btnCallOut.Name = "btnCallOut";
     this.btnCallOut.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnBusy
     //
     this.btnBusy.Caption = "忙碌";
     this.btnBusy.Glyph = ((System.Drawing.Image)(resources.GetObject("btnBusy.Glyph")));
     this.btnBusy.Id = 124;
     this.btnBusy.Name = "btnBusy";
     this.btnBusy.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnReset
     //
     this.btnReset.Caption = "强复位";
     this.btnReset.Glyph = ((System.Drawing.Image)(resources.GetObject("btnReset.Glyph")));
     this.btnReset.Id = 125;
     this.btnReset.Name = "btnReset";
     this.btnReset.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnSetting
     //
     this.btnSetting.Caption = "设置";
     this.btnSetting.Glyph = ((System.Drawing.Image)(resources.GetObject("btnSetting.Glyph")));
     this.btnSetting.Id = 126;
     this.btnSetting.Name = "btnSetting";
     this.btnSetting.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnShowBusy
     //
     this.btnShowBusy.Caption = "示忙";
     this.btnShowBusy.Glyph = ((System.Drawing.Image)(resources.GetObject("btnShowBusy.Glyph")));
     this.btnShowBusy.Id = 127;
     this.btnShowBusy.Name = "btnShowBusy";
     this.btnShowBusy.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnShowIdle
     //
     this.btnShowIdle.Caption = "示闲";
     this.btnShowIdle.Glyph = ((System.Drawing.Image)(resources.GetObject("btnShowIdle.Glyph")));
     this.btnShowIdle.Id = 128;
     this.btnShowIdle.Name = "btnShowIdle";
     this.btnShowIdle.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnAnswer
     //
     this.btnAnswer.Caption = "应答";
     this.btnAnswer.Glyph = ((System.Drawing.Image)(resources.GetObject("btnAnswer.Glyph")));
     this.btnAnswer.Id = 129;
     this.btnAnswer.Name = "btnAnswer";
     this.btnAnswer.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnTurnOut
     //
     this.btnTurnOut.Caption = "转出";
     this.btnTurnOut.Glyph = ((System.Drawing.Image)(resources.GetObject("btnTurnOut.Glyph")));
     this.btnTurnOut.Id = 130;
     this.btnTurnOut.Name = "btnTurnOut";
     this.btnTurnOut.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // btnPick
     //
     this.btnPick.Caption = "接回";
     this.btnPick.Glyph = ((System.Drawing.Image)(resources.GetObject("btnPick.Glyph")));
     this.btnPick.Id = 131;
     this.btnPick.Name = "btnPick";
     this.btnPick.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // MyBarMenu
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "MyBarMenu";
     this.Size = new System.Drawing.Size(4570, 60);
     this.Load += new System.EventHandler(this.MyBarMenu_Load);
     ((System.ComponentModel.ISupportInitialize)(this.BarMenus)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.barAndDockingController1)).EndInit();
     this.ResumeLayout(false);
 }