Example #1
0
 private void ShowProj(DataTable projdt)
 {
     nbcProj.Groups.Clear();
     nbcProj.Items.Clear();
     DataRow[] rows = projdt.Select(string.Format("ProjectManager='{0}' ", string.Empty));
     foreach (DataRow row in rows)
     {
         DevExpress.XtraNavBar.NavBarGroup nbg = new DevExpress.XtraNavBar.NavBarGroup();
         nbg.Name       = row["ProjectName"].ToString();
         nbg.Tag        = DataConverter.RowToObject <Project>(row);
         nbg.Caption    = row["ProjectName"].ToString();
         nbg.LargeImage = imageList2.Images[0];
         nbg.Hint       = row["ProjectName"].ToString();
         DataRow[] childrows = projdt.Select(string.Format("ProjectManager='{0}'", row["UID"].ToString()));
         foreach (DataRow itemrow in childrows)
         {
             DevExpress.XtraNavBar.NavBarItem nbi = new DevExpress.XtraNavBar.NavBarItem();
             nbi.Name       = itemrow["ProjectName"].ToString();
             nbi.Tag        = DataConverter.RowToObject <Project>(itemrow);
             nbi.Caption    = itemrow["ProjectName"].ToString();
             nbi.SmallImage = imageList3.Images[3];
             nbi.Hint       = itemrow["ProjectName"].ToString();
             nbcProj.Items.Add(nbi);
             nbg.ItemLinks.Add(nbi);
         }
         nbcProj.Groups.Add(nbg);
         nbcProj.Refresh();
     }
 }
Example #2
0
 /// <summary>
 /// 加载系统模块
 /// </summary>
 /// <param name="paramDataTable"></param>
 private void LoadModule(DataTable paramDataTable)
 {
     if (paramDataTable.Rows.Count > 0)
     {
         //创建GROUP
         DevExpress.XtraNavBar.NavBarGroup navBarGroupParent;
         if (paramDataTable == null)
         {
             return;
         }
         BindingBarManager(paramDataTable);
         foreach (DataRow tempDataRow in paramDataTable.Rows)
         {
             if (tempDataRow["MODULEID"].ToString() != string.Empty)
             {
                 if (!(tempDataRow["PARENTID"].ToString() == "0"))
                 {
                     continue;
                 }
                 else
                 {
                     navBarGroupParent                            = new DevExpress.XtraNavBar.NavBarGroup(tempDataRow["FULLNAME"].ToString());
                     navBarGroupParent.Name                       = tempDataRow["ID"].ToString();
                     navBarGroupParent.Appearance.Font            = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
                     navBarGroupParent.Appearance.Options.UseFont = true;
                     navBarGroupParent.Expanded                   = true;
                     this.navBarControlLeft.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] { navBarGroupParent });
                     LoadChildItem(paramDataTable, navBarGroupParent);
                 }
             }
         }
     }
 }
Example #3
0
 void InitFunction()
 {
     List<SysFunction> lstFunction = Identity.CurrentFunction.OrderBy(obj => obj.OrderID).ToList();
     //组
     foreach (SysFunction func in lstFunction)
     {
         if (!lstFunction.Exists(obj => obj.Code == func.ParentCode))
         {
             DevExpress.XtraNavBar.NavBarGroup group = new DevExpress.XtraNavBar.NavBarGroup();
             group.Caption = func.Name;
             group.Name = func.Code;
             navBarControl.Groups.Add(group);
             //子项
             List<SysFunction> lstItemFunction = lstFunction.FindAll(obj => obj.ParentCode == func.Code);
             foreach (SysFunction f in lstItemFunction)
             {
                 DevExpress.XtraNavBar.NavBarItem item = new DevExpress.XtraNavBar.NavBarItem();
                 item.Caption = f.Name;
                 item.Name = f.Code;
                 item.Tag = f;
                 group.ItemLinks.Add(item);
             }
         }
     }
     //展开
     if (navBarControl.Groups.Count > 0)
     {
         navBarControl.Groups[0].Expanded = true;
     }
 }
Example #4
0
        public void AddGroup(String strGroupName, String strGroupCaption)
        {
            DevExpress.XtraNavBar.NavBarGroup group = new DevExpress.XtraNavBar.NavBarGroup();
            group.Caption  = strGroupCaption;
            group.Expanded = true;
            group.Name     = strGroupName;

            this.navBarControl.Groups.Add(group);
            this.navBarControl.ActiveGroup = group;
        }
Example #5
0
        protected override void initUI()
        {
            base.initUI();

            Text = "战略先导汇总系统";

            treeListObj = buildTreeControl(new string[] { string.Empty }, new string[] { "数据包汇总" });

            treeListObj.MouseClick += treeListObj_MouseClick;
            firstPage = appendPage("数据汇总", PublicManager.Properties.Resources.Mail_32x32);
            firstPage.ControlContainer.Controls.Add(treeListObj);
        }
Example #6
0
        /// <summary>
        /// 闯将菜单分组
        /// </summary>
        /// <param name="navControl"></param>
        /// <param name="navFrame"></param>
        /// <param name="menuGroups"></param>
        void CreateMenuGroup(DevExpress.XtraNavBar.NavBarControl navControl, DevExpress.XtraBars.Navigation.NavigationFrame navFrame, List <MenuGroup> menuGroups)
        {
            DevExpress.XtraGrid.Views.Tile.TileView aaa = new DevExpress.XtraGrid.Views.Tile.TileView();
            foreach (var item in menuGroups)
            {
                //Mybug 需要先检查是否已存在同名组,无则生成

                var navBarGroupTemp = new DevExpress.XtraNavBar.NavBarGroup();
                navBarGroupTemp.Caption  = item.Name;
                navBarGroupTemp.Expanded = true;
                navControl.Groups.Add(navBarGroupTemp);
                CreateMenu(navFrame, navBarGroupTemp, item.MenuItems);
            }
        }
Example #7
0
        /// <summary>添加NavBarGroup
        ///
        /// </summary>
        /// <param name="nbg">NavBarGroup</param>
        /// <param name="Caption">标题</param>
        /// <param name="Name">名称</param>
        /// <param name="SmallImageIndex"></param>
        public void AddGroup(DevExpress.XtraNavBar.NavBarGroup nbg, string Caption, string Name, int SmallImageIndex, bool Is_Visible, string NavigateUrl, string strAllow)
        {
            try
            {
                DevExpress.XtraNavBar.NavBarItem navBarItem1 = new DevExpress.XtraNavBar.NavBarItem();
                navBarItem1.Caption         = Caption;
                navBarItem1.Name            = Name;
                navBarItem1.Visible         = Is_Visible;
                navBarItem1.SmallImageIndex = SmallImageIndex;
                navBarItem1.Tag             = NavigateUrl + "#" + strAllow;

                navBarItem1.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(navBarItem1_LinkClicked);  //新增项的 点击事件 触发
                nbg.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] { new DevExpress.XtraNavBar.NavBarItemLink(navBarItem1) });
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }
        }
Example #8
0
        private void AddItem()
        {
            nbcMeun.Items.Clear();
            DataRow[] rows    = smmprogTable.Select(string.Format("parentid='{0}' and ProgType='{1}'", string.Empty, "m"));
            IList     list    = SysService.GetList("SelectSmmprogByMeIco", null);
            DataTable dt_list = DataConverter.ToDataTable(list);

            nbcMeun.LargeImages = ImageListRes.GetimageList(28, dt_list);
            IList     list2    = SysService.GetList("SelectSmmprogByFormIco", null);
            DataTable dt_list2 = DataConverter.ToDataTable(list2);

            nbcMeun.SmallImages = ImageListRes.GetimageList(22, dt_list2);
            foreach (DataRow row in rows)
            {
                DevExpress.XtraNavBar.NavBarGroup nbg = new DevExpress.XtraNavBar.NavBarGroup();
                nbg.Name       = row["progname"].ToString();
                nbg.Tag        = DataConverter.RowToObject <Smmprog>(row);
                nbg.Caption    = row["progname"].ToString();
                nbg.Hint       = row["progname"].ToString();
                nbg.LargeImage = ((ImageList)nbcMeun.LargeImages).Images[row["ProgIco"].ToString()];

                DataRow[] childrows = smmprogTable.Select(string.Format("parentid='{0}' and ProgType='{1}'", row["progid"].ToString(), "m"));
                foreach (DataRow itemrow in childrows)
                {
                    VsmdgroupProg smdgroup2 = new VsmdgroupProg();
                    smdgroup2 = MIS.GetProgRight(itemrow["ProgId"].ToString(), MIS.ProgUID);
                    if (smdgroup2 != null && Convert.ToInt32(smdgroup2.run) <= 0)
                    {
                        continue;
                    }
                    DevExpress.XtraNavBar.NavBarItem nbi = new DevExpress.XtraNavBar.NavBarItem();
                    nbi.Name       = itemrow["progname"].ToString();
                    nbi.Tag        = DataConverter.RowToObject <Smmprog>(itemrow);
                    nbi.Caption    = itemrow["progname"].ToString();
                    nbi.SmallImage = ((ImageList)nbcMeun.SmallImages).Images[itemrow["ProgIco"].ToString()];
                    nbi.Hint       = itemrow["progname"].ToString();
                    nbcMeun.Items.Add(nbi);
                    nbg.ItemLinks.Add(nbi);
                }
                nbcMeun.Groups.Add(nbg);
                nbcMeun.Refresh();
            }
        }
Example #9
0
        /// <summary>
        /// 创建菜单
        /// </summary>
        /// <param name="navFrame"></param>
        /// <param name="barGroup"></param>
        /// <param name="menuItems"></param>
        void CreateMenu(DevExpress.XtraBars.Navigation.NavigationFrame navFrame, DevExpress.XtraNavBar.NavBarGroup barGroup, List <MenuItem> menuItems)
        {
            Stopwatch sw = new Stopwatch();

            foreach (var item in menuItems)
            {
                DevExpress.XtraBars.Navigation.NavigationPage navPageTemp = new DevExpress.XtraBars.Navigation.NavigationPage();
                navPageTemp.Name    = "";
                navPageTemp.Caption = item.Name;

                navFrame.Controls.Add(navPageTemp);
                navFrame.Pages.Add(navPageTemp);

                DevExpress.XtraNavBar.NavBarItem navbarTemp = new DevExpress.XtraNavBar.NavBarItem()
                {
                    Caption = item.Name
                };

                navbarTemp.LinkClicked += (s, e) =>
                {
                    sw.Restart();
                    //初次点击实例化
                    if (item.ControlType != null)
                    {
                        if (item.View == null)
                        {
                            UserControl intance = (UserControl)item.ControlType.Assembly.CreateInstance(item.ControlType.FullName);
                            item.View = intance;
                            navPageTemp.Controls.Add(item.View);
                            item.View.Dock     = DockStyle.Fill;
                            item.View.Location = new System.Drawing.Point(0, 0);
                            System.Diagnostics.Debug.WriteLine($"临时生成了view:{item.Name}");
                        }
                    }

                    navFrame.SelectedPage = (DevExpress.XtraBars.Navigation.INavigationPage)navFrame.Pages.SingleOrDefault(x => x.Caption == item.Name);
                    sw.Stop();
                    System.Diagnostics.Debug.WriteLine($"创建或打开view:{item.Name}耗时:{sw.Elapsed}");
                };
                barGroup.ItemLinks.Add(navbarTemp);
            }
        }
Example #10
0
        public void cargarMenu()
        {
            if (_dataSistema.usuario.CD_LOGIN == "root")
            {
                uinv_bar_sistemas.Visible = true;
                uigrp_general.Visible     = false;
            }
            else
            {
                uinv_bar_sistemas.Visible = false;

                List <SIS_MENU> lista_menu = (from u in _dataSistema.contextoSistema.SIS_MENU
                                              where (from y in _dataSistema.contextoSistema.SIS_PERFIL_OPC_MENU where y.SIS_OPC_MENU.ID_MENU == u.ID && y.ID_PERFIL == _dataSistema.usuario.ID_PERFIL select y).Count() > 0
                                              select u).ToList();
                List <SIS_FORM>  lista_opcion;
                List <clsImagen> listaimagen = MetodosForm.listaDeImagenesModulo();
                foreach (SIS_MENU menu_item in lista_menu)
                {
                    DevExpress.XtraNavBar.NavBarGroup menu = uinavbarmenu.Groups.Add();
                    menu.Caption  = menu_item.DS_MENU;
                    menu.Expanded = false;
                    lista_opcion  = (from u in _dataSistema.contextoSistema.SIS_FORM
                                     orderby u.DS_ALT_NOMBRE ascending
                                     where (from y in _dataSistema.contextoSistema.SIS_PERFIL_OPC_MENU  where y.ID_PERFIL == _dataSistema.usuario.ID_PERFIL && y.SIS_OPC_MENU.ID_FORM == u.ID && y.SIS_OPC_MENU.ID_MENU == menu_item.ID select y).Count() > 0
                                     select u).ToList();

                    foreach (SIS_FORM item_form in lista_opcion)
                    {
                        DevExpress.XtraNavBar.NavBarItemLink opcion = menu.AddItem();
                        opcion.Item.Caption    = item_form.DS_ALT_NOMBRE;
                        opcion.Item.Tag        = item_form;
                        opcion.Item.SmallImage = MetodosForm.encontrarImagen(int.Parse(item_form.SIS_MODULO.CD_IMAGEN_ICO.ToString()), listaimagen);
                        //AddHandler opcion.Item.LinkClicked, AddressOf NavBarItemClicked
                        opcion.Item.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(NavBarItemClicked);
                        opcion.Item.Hint         = item_form.DS_TOOLTIP;
                    }
                }
            }
        }
Example #11
0
        /// <summary>动态生成主窗体NavBarControl菜单
        ///
        /// </summary>
        /// <param name="nbc">NavBarControl菜单控件</param>
        /// <param name="ds">获取的一级跟二级菜单项</param>
        public void CreateMenu(DevExpress.XtraNavBar.NavBarControl nbc, DataSet ds)
        {
            DataTable dtMenu = ds.Tables[1];
            DataTable dtInfo = ds.Tables[0];

            for (int i = 0; i < dtMenu.Rows.Count; i++)
            {
                DevExpress.XtraNavBar.NavBarGroup navbargroup = new DevExpress.XtraNavBar.NavBarGroup();
                navbargroup.Caption = dtMenu.Rows[i]["Name"].ToString();
                navbargroup.Name    = dtMenu.Rows[i]["Number"].ToString();
                nbc.Groups.Add(navbargroup);
                for (int j = 0; j < dtInfo.Rows.Count; j++)
                {
                    if (dtMenu.Rows[i]["Module_Id"].ToString() != dtInfo.Rows[j]["ParentId"].ToString())
                    {
                        continue;
                    }
                    AddGroup(navbargroup, dtInfo.Rows[j]["Name"].ToString(), dtInfo.Rows[j]["FormName"].ToString(), Convert.ToInt32(dtInfo.Rows[j]["Module_Id"].ToString()), Convert.ToBoolean(dtInfo.Rows[j]["IsPublic"].ToString()), dtInfo.Rows[j]["NavigateUrl"].ToString(), dtInfo.Rows[j]["strAllow"].ToString());
                }
            }
            //  nbc.Groups[0].Expanded = true;
        }
Example #12
0
        private void CreateMenu()
        {
            DataTable dt = null;
            DataView  dv = null;

            DevExpress.XtraNavBar.NavBarGroup menuGroup = null;
            //navBarControlMain.Items.Clear();
            MenuGroupBL bl = null;

            bl           = new MenuGroupBL();
            dt           = bl.FindMenuPermissionByUserGroup(MyLogin.USERGROUP_OID);
            dv           = new DataView(dt);
            dv.RowFilter = string.Format("[MENUGROUP_OID]='' and USERGROUP_OID='{0}' and View='1'", MyLogin.USERGROUP_OID);

            if (dv != null && dv.Count > 0)
            {
                foreach (DataRowView node in dv)
                {
                    try
                    {
                        menuGroup         = new DevExpress.XtraNavBar.NavBarGroup();
                        menuGroup.Caption = node["Name"].ToString();
                        menuGroup.Name    = "menuGroup" + node["MENUGROUP_OID"].ToString();

                        if (!node["Link"].ToString().Equals(""))
                        {
                        }

                        navBarControlMain.Groups.Add(menuGroup);
                        CreateSubMenu(navBarControlMain, dt, node);
                    }
                    catch (Exception ex)
                    {
                        throw ex;
                    }
                }
            }
        }
Example #13
0
        void Power(DevExpress.XtraNavBar.NavBarGroup pnl)
        {
            if (UserLogin.userNum.Equals("DS"))
            {
                return;
            }
            CarpenterBll.Bll.MainBll _bll = new CarpenterBll.Bll.MainBll( );
            DataTable dt = _bll.GetDataTablePower(UserLogin.userNum);

            if (dt != null && dt.Rows.Count > 0)
            {
                foreach (DevExpress.XtraNavBar.NavBarItem cn in pnl.NavBar.Items)
                {
                    if (!string.IsNullOrEmpty(cn.Tag.ToString( )))
                    {
                        if (dt.Select("POW003='" + cn.Tag.ToString( ) + "'").Length < 1)
                        {
                            cn.Visible = false;
                        }
                        else
                        {
                            cn.Visible = true;
                        }
                    }
                    else
                    {
                        cn.Visible = false;
                    }
                }
            }
            else
            {
                foreach (DevExpress.XtraNavBar.NavBarItem cn in pnl.NavBar.Items)
                {
                    cn.Visible = false;
                }
            }
        }
Example #14
0
 /// <summary>
 /// 加载系统二级菜单
 /// </summary>
 /// <param name="paramDataTable">用户权限数据集</param>
 /// <param name="paramNavBarGroup">左侧二级菜单</param>
 private void LoadChildItem(DataTable paramDataTable, DevExpress.XtraNavBar.NavBarGroup paramNavBarGroup)
 {
     DevExpress.XtraNavBar.NavBarItem navBarItemChild;
     foreach (DataRow tempDataRow in paramDataTable.Rows)
     {
         if ((tempDataRow["MODULEID"].ToString() != string.Empty))
         {
             if (!(tempDataRow["PARENTID"].ToString() == paramNavBarGroup.Name))
             {
                 continue;
             }
             else
             {
                 navBarItemChild              = new DevExpress.XtraNavBar.NavBarItem(tempDataRow["FULLName"].ToString());
                 navBarItemChild.Name         = tempDataRow["ID"].ToString();
                 navBarItemChild.Tag          = tempDataRow["HREF"].ToString();
                 navBarItemChild.LinkClicked += this.navBarItem_LinkClicked;
                 paramNavBarGroup.ItemLinks.Add(navBarItemChild);
             }
         }
     }
     //paramNavBarGroup.Expanded = true;
 }
Example #15
0
        private void CreateMenu()
        {
            nbctSystem.Groups.Clear();
            nbctSystem.Items.Clear();

            nbctSystem.LargeImages = ImageListRes.GetimageListAll(40, "");
            nbctSystem.SmallImages = ImageListRes.GetimageListAll(28, "");


            string sqlwhere = "where ParentID='0' and  Description='system'  order by Sequence";
            IList<mModule> mlist = Ebada.Client.ClientHelper.PlatformSqlMap.GetList<mModule>(sqlwhere);
            for (int i = 0; i < mlist.Count; i++)
            {
                DevExpress.XtraNavBar.NavBarGroup nbg = new DevExpress.XtraNavBar.NavBarGroup();
                nbg.Name = mlist[i].ModuName;
                nbg.Tag = mlist[i];
                nbg.Caption = mlist[i].ModuName;
                nbg.LargeImage = ((ImageList)nbctSystem.LargeImages).Images[mlist[i].IconName];

                string slqwhrer2 = "where Description = 'system' and ParentID='" + mlist[i].Modu_ID + "'  order by Sequence";
                IList<mModule> mlist2 = Ebada.Client.ClientHelper.PlatformSqlMap.GetList<mModule>(slqwhrer2);
                for (int j = 0; j < mlist2.Count; j++)
                {
                    DevExpress.XtraNavBar.NavBarItem nbi = new DevExpress.XtraNavBar.NavBarItem();
                    nbi.Name = mlist2[j].ModuName;
                    nbi.Tag = mlist2[j];
                    nbi.Caption = mlist2[j].ModuName;
                    nbi.SmallImage = ((ImageList)nbctSystem.SmallImages).Images[mlist2[j].IconName];
                    nbi.Hint = mlist2[j].Sequence.ToString();
                    nbctSystem.Items.Add(nbi);
                    nbg.ItemLinks.Add(nbi);
                }
                nbctSystem.Groups.Add(nbg);
                nbctSystem.Refresh();
            }
        }
Example #16
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.ToolTipSeparatorItem toolTipSeparatorItem1 = new DevExpress.Utils.ToolTipSeparatorItem();
     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();
     DevExpress.Utils.ToolTipSeparatorItem toolTipSeparatorItem2 = new DevExpress.Utils.ToolTipSeparatorItem();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem4 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip3 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem5 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem3 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.ToolTipSeparatorItem toolTipSeparatorItem3 = new DevExpress.Utils.ToolTipSeparatorItem();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem6 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.XtraEditors.TileItemElement tileItemElement1 = new DevExpress.XtraEditors.TileItemElement();
     DevExpress.XtraEditors.TileItemElement tileItemElement2 = new DevExpress.XtraEditors.TileItemElement();
     DevExpress.XtraEditors.TileItemElement tileItemElement3 = new DevExpress.XtraEditors.TileItemElement();
     DevExpress.XtraEditors.TileItemElement tileItemElement4 = new DevExpress.XtraEditors.TileItemElement();
     DevExpress.XtraEditors.TileItemElement tileItemElement5 = new DevExpress.XtraEditors.TileItemElement();
     DevExpress.XtraEditors.TileItemElement tileItemElement6 = new DevExpress.XtraEditors.TileItemElement();
     DevExpress.XtraEditors.TileItemElement tileItemElement7 = new DevExpress.XtraEditors.TileItemElement();
     DevExpress.Utils.SuperToolTip superToolTip4 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem7 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem4 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.ToolTipSeparatorItem toolTipSeparatorItem4 = new DevExpress.Utils.ToolTipSeparatorItem();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem8 = new DevExpress.Utils.ToolTipTitleItem();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMain));
     this.ribbonControl1 = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.lblDatabaseName = new DevExpress.XtraBars.BarStaticItem();
     this.lblUsername = new DevExpress.XtraBars.BarStaticItem();
     this.lblLoginTime = new DevExpress.XtraBars.BarStaticItem();
     this.barStaticItem4 = new DevExpress.XtraBars.BarStaticItem();
     this.barStaticItem5 = new DevExpress.XtraBars.BarStaticItem();
     this.barStaticItem6 = new DevExpress.XtraBars.BarStaticItem();
     this.lblLoginDate = new DevExpress.XtraBars.BarStaticItem();
     this.barStaticItem8 = new DevExpress.XtraBars.BarStaticItem();
     this.barStaticItem7 = new DevExpress.XtraBars.BarStaticItem();
     this.lblComputerName = new DevExpress.XtraBars.BarStaticItem();
     this.skinRibbonGalleryBarItem1 = new DevExpress.XtraBars.SkinRibbonGalleryBarItem();
     this.barStaticItem9 = new DevExpress.XtraBars.BarStaticItem();
     this.barCheckItem3 = new DevExpress.XtraBars.BarCheckItem();
     this.barCheckItem4 = new DevExpress.XtraBars.BarCheckItem();
     this.barStaticItem10 = new DevExpress.XtraBars.BarStaticItem();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
     this.b_code = new DevExpress.XtraBars.BarStaticItem();
     this.btnRefresh = new DevExpress.XtraBars.BarButtonItem();
     this.barStaticItem2 = new DevExpress.XtraBars.BarStaticItem();
     this.lblWorkDate = new DevExpress.XtraBars.BarStaticItem();
     this.barStaticItem11 = new DevExpress.XtraBars.BarStaticItem();
     this.lblUserID = new DevExpress.XtraBars.BarStaticItem();
     this.barStaticItem3 = new DevExpress.XtraBars.BarStaticItem();
     this.lblServer = new DevExpress.XtraBars.BarStaticItem();
     this.ribbonPage8 = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup3 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPage16 = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup2 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup1 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPage1 = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPage2 = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.repositoryItemToggleSwitch1 = new DevExpress.XtraEditors.Repository.RepositoryItemToggleSwitch();
     this.ribbonStatusBar1 = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.tileNavSubItem16 = new DevExpress.XtraBars.Navigation.TileNavSubItem();
     this.tileNavSubItem17 = new DevExpress.XtraBars.Navigation.TileNavSubItem();
     this.tileNavSubItem18 = new DevExpress.XtraBars.Navigation.TileNavSubItem();
     this.tileNavSubItem19 = new DevExpress.XtraBars.Navigation.TileNavSubItem();
     this.tileNavSubItem20 = new DevExpress.XtraBars.Navigation.TileNavSubItem();
     this.tileNavSubItem21 = new DevExpress.XtraBars.Navigation.TileNavSubItem();
     this.tileNavSubItem22 = new DevExpress.XtraBars.Navigation.TileNavSubItem();
     this.backstageViewTabItem1 = new DevExpress.XtraBars.Ribbon.BackstageViewTabItem();
     this.navBarItem1 = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItem45 = new DevExpress.XtraNavBar.NavBarItem();
     this.frmModulesList = new DevExpress.XtraNavBar.NavBarItem();
     this.frmaddUsers = new DevExpress.XtraNavBar.NavBarItem();
     this.frmUserRights = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarGroup2 = new DevExpress.XtraNavBar.NavBarGroup();
     this.frmGeneralSettings = new DevExpress.XtraNavBar.NavBarItem();
     this.frmEmailManager = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarGroup3 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarGroup4 = new DevExpress.XtraNavBar.NavBarGroup();
     this.frmOpenRSS = new DevExpress.XtraNavBar.NavBarItem();
     this.frmOpenRssStock = new DevExpress.XtraNavBar.NavBarItem();
     this.frmReturnSummary = new DevExpress.XtraNavBar.NavBarItem();
     this.frmOpenDSS = new DevExpress.XtraNavBar.NavBarItem();
     this.frmMPOSSync = new DevExpress.XtraNavBar.NavBarItem();
     this.frmSelectSummary = new DevExpress.XtraNavBar.NavBarItem();
     this.frmSaleInvoiceGeneration = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarGroup5 = new DevExpress.XtraNavBar.NavBarGroup();
     this.frmPurchaseOrder = new DevExpress.XtraNavBar.NavBarItem();
     this.frmGRN = new DevExpress.XtraNavBar.NavBarItem();
     this.frmPurchaseInvoice = new DevExpress.XtraNavBar.NavBarItem();
     this.frmDeliveryChallan = new DevExpress.XtraNavBar.NavBarItem();
     this.frmPurchaseReturn = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarGroup6 = new DevExpress.XtraNavBar.NavBarGroup();
     this.frmTown = new DevExpress.XtraNavBar.NavBarItem();
     this.frmOurCompanyGroups = new DevExpress.XtraNavBar.NavBarItem();
     this.frmCustomers = new DevExpress.XtraNavBar.NavBarItem();
     this.frmProducts = new DevExpress.XtraNavBar.NavBarItem();
     this.frmCompanyGroup = new DevExpress.XtraNavBar.NavBarItem();
     this.frmEmployeeTargets = new DevExpress.XtraNavBar.NavBarItem();
     this.frmProductGroup = new DevExpress.XtraNavBar.NavBarItem();
     this.frmVendorEmployees = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarGroup7 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarGroup8 = new DevExpress.XtraNavBar.NavBarGroup();
     this.frmHoldScan = new DevExpress.XtraNavBar.NavBarItem();
     this.frmBatchCorrection = new DevExpress.XtraNavBar.NavBarItem();
     this.frmIntimations = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItem2 = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarGroup9 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarGroup10 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarGroup11 = new DevExpress.XtraNavBar.NavBarGroup();
     this.Administration = new DevExpress.XtraNavBar.NavBarItem();
     this.Financials = new DevExpress.XtraNavBar.NavBarItem();
     this.Accounts = new DevExpress.XtraNavBar.NavBarItem();
     this.Claims = new DevExpress.XtraNavBar.NavBarItem();
     this.Sales = new DevExpress.XtraNavBar.NavBarItem();
     this.navbrPurchasing = new DevExpress.XtraNavBar.NavBarItem();
     this.navbrPartners = new DevExpress.XtraNavBar.NavBarItem();
     this.navbrBanking = new DevExpress.XtraNavBar.NavBarItem();
     this.navbrInventory = new DevExpress.XtraNavBar.NavBarItem();
     this.navbrHumanResource = new DevExpress.XtraNavBar.NavBarItem();
     this.navbrFleetnSupply = new DevExpress.XtraNavBar.NavBarItem();
     this.navbrInstitution = new DevExpress.XtraNavBar.NavBarItem();
     this.navbrGeneralStore = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarControl1 = new DevExpress.XtraNavBar.NavBarControl();
     this.navBarGroup12 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarGroup1 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarGroup13 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarGroup14 = new DevExpress.XtraNavBar.NavBarGroup();
     this.button1 = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemToggleSwitch1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControl1)).BeginInit();
     this.SuspendLayout();
     //
     // ribbonControl1
     //
     this.ribbonControl1.ExpandCollapseItem.Id = 0;
     this.ribbonControl1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.ribbonControl1.ExpandCollapseItem,
     this.lblDatabaseName,
     this.lblUsername,
     this.lblLoginTime,
     this.barStaticItem4,
     this.barStaticItem5,
     this.barStaticItem6,
     this.lblLoginDate,
     this.barStaticItem8,
     this.barStaticItem7,
     this.lblComputerName,
     this.skinRibbonGalleryBarItem1,
     this.barStaticItem9,
     this.barCheckItem3,
     this.barCheckItem4,
     this.barStaticItem10,
     this.barButtonItem1,
     this.barStaticItem1,
     this.b_code,
     this.btnRefresh,
     this.barStaticItem2,
     this.lblWorkDate,
     this.barStaticItem11,
     this.lblUserID,
     this.barStaticItem3,
     this.lblServer});
     this.ribbonControl1.Location = new System.Drawing.Point(0, 0);
     this.ribbonControl1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.ribbonControl1.MaxItemId = 27;
     this.ribbonControl1.Name = "ribbonControl1";
     this.ribbonControl1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
     this.ribbonPage8,
     this.ribbonPage16,
     this.ribbonPage1,
     this.ribbonPage2});
     this.ribbonControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemToggleSwitch1});
     this.ribbonControl1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonControlStyle.Office2013;
     this.ribbonControl1.ShowApplicationButton = DevExpress.Utils.DefaultBoolean.False;
     this.ribbonControl1.ShowFullScreenButton = DevExpress.Utils.DefaultBoolean.False;
     this.ribbonControl1.ShowToolbarCustomizeItem = false;
     this.ribbonControl1.Size = new System.Drawing.Size(1190, 147);
     this.ribbonControl1.StatusBar = this.ribbonStatusBar1;
     this.ribbonControl1.Toolbar.ShowCustomizeItem = false;
     this.ribbonControl1.ToolbarLocation = DevExpress.XtraBars.Ribbon.RibbonQuickAccessToolbarLocation.Hidden;
     //
     // lblDatabaseName
     //
     this.lblDatabaseName.Caption = "lblErp";
     this.lblDatabaseName.Id = 133;
     this.lblDatabaseName.Name = "lblDatabaseName";
     this.lblDatabaseName.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // lblUsername
     //
     this.lblUsername.Caption = "u_name";
     this.lblUsername.Id = 134;
     this.lblUsername.Name = "lblUsername";
     this.lblUsername.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // lblLoginTime
     //
     this.lblLoginTime.Caption = "logintime";
     this.lblLoginTime.Id = 135;
     this.lblLoginTime.Name = "lblLoginTime";
     this.lblLoginTime.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // barStaticItem4
     //
     this.barStaticItem4.Caption = "Login User :"******"Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.barStaticItem4.ItemAppearance.Normal.Options.UseFont = true;
     this.barStaticItem4.Name = "barStaticItem4";
     this.barStaticItem4.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // barStaticItem5
     //
     this.barStaticItem5.Caption = "Database :";
     this.barStaticItem5.Id = 139;
     this.barStaticItem5.ItemAppearance.Normal.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.barStaticItem5.ItemAppearance.Normal.Options.UseFont = true;
     this.barStaticItem5.Name = "barStaticItem5";
     this.barStaticItem5.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // barStaticItem6
     //
     this.barStaticItem6.Caption = "Login Time :";
     this.barStaticItem6.Id = 140;
     this.barStaticItem6.ItemAppearance.Normal.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.barStaticItem6.ItemAppearance.Normal.Options.UseFont = true;
     this.barStaticItem6.Name = "barStaticItem6";
     this.barStaticItem6.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // lblLoginDate
     //
     this.lblLoginDate.Caption = "logindate";
     this.lblLoginDate.Id = 141;
     this.lblLoginDate.Name = "lblLoginDate";
     this.lblLoginDate.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // barStaticItem8
     //
     this.barStaticItem8.Caption = "Login At :";
     this.barStaticItem8.Id = 142;
     this.barStaticItem8.ItemAppearance.Normal.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.barStaticItem8.ItemAppearance.Normal.Options.UseFont = true;
     this.barStaticItem8.Name = "barStaticItem8";
     this.barStaticItem8.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // barStaticItem7
     //
     this.barStaticItem7.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barStaticItem7.Caption = "Computer Name :";
     this.barStaticItem7.Id = 143;
     this.barStaticItem7.ItemAppearance.Normal.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.barStaticItem7.ItemAppearance.Normal.Options.UseFont = true;
     this.barStaticItem7.Name = "barStaticItem7";
     this.barStaticItem7.TextAlignment = System.Drawing.StringAlignment.Near;
     this.barStaticItem7.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // lblComputerName
     //
     this.lblComputerName.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.lblComputerName.Caption = "c_name";
     this.lblComputerName.Id = 145;
     this.lblComputerName.Name = "lblComputerName";
     this.lblComputerName.TextAlignment = System.Drawing.StringAlignment.Near;
     this.lblComputerName.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // skinRibbonGalleryBarItem1
     //
     this.skinRibbonGalleryBarItem1.Caption = "skinRibbonGalleryBarItem1";
     //
     //
     //
     this.skinRibbonGalleryBarItem1.Gallery.ShowItemText = true;
     this.skinRibbonGalleryBarItem1.Id = 3;
     this.skinRibbonGalleryBarItem1.Name = "skinRibbonGalleryBarItem1";
     //
     // barStaticItem9
     //
     this.barStaticItem9.Caption = "Pane Style : ";
     this.barStaticItem9.Id = 6;
     this.barStaticItem9.Name = "barStaticItem9";
     this.barStaticItem9.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // barCheckItem3
     //
     this.barCheckItem3.Caption = "Explorer View";
     this.barCheckItem3.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
     this.barCheckItem3.Checked = true;
     this.barCheckItem3.Id = 14;
     this.barCheckItem3.Name = "barCheckItem3";
     superToolTip1.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipTitleItem1.Text = "What\'s Explorer View?";
     toolTipItem1.LeftIndent = 6;
     toolTipItem1.Text = "In <b>Explorer View</b> all groups are arranged one under another which provide t" +
     "he facility to expand / collapse each group individually.";
     toolTipTitleItem2.LeftIndent = 6;
     toolTipTitleItem2.Text = "ERP - Babar Medicine Company Lahore";
     superToolTip1.Items.Add(toolTipTitleItem1);
     superToolTip1.Items.Add(toolTipItem1);
     superToolTip1.Items.Add(toolTipSeparatorItem1);
     superToolTip1.Items.Add(toolTipTitleItem2);
     this.barCheckItem3.SuperTip = superToolTip1;
     this.barCheckItem3.CheckedChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.barCheckItem3_CheckedChanged);
     //
     // barCheckItem4
     //
     this.barCheckItem4.Caption = "Navigation View";
     this.barCheckItem4.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
     this.barCheckItem4.Id = 15;
     this.barCheckItem4.Name = "barCheckItem4";
     superToolTip2.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipTitleItem3.Text = "What\'s Navigation View?";
     toolTipItem2.LeftIndent = 6;
     toolTipItem2.Text = "In <b>Navigation View</b> all groups are arranged one under another with one grou" +
     "p always expanded and this view provides the facility to expand / shrink whole <" +
     "b>Navigation Bar</b>.";
     toolTipTitleItem4.LeftIndent = 6;
     toolTipTitleItem4.Text = "ERP - Babar Medicine Company Lahore";
     superToolTip2.Items.Add(toolTipTitleItem3);
     superToolTip2.Items.Add(toolTipItem2);
     superToolTip2.Items.Add(toolTipSeparatorItem2);
     superToolTip2.Items.Add(toolTipTitleItem4);
     this.barCheckItem4.SuperTip = superToolTip2;
     this.barCheckItem4.CheckedChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.barCheckItem4_CheckedChanged);
     //
     // barStaticItem10
     //
     this.barStaticItem10.Caption = "Explorer View";
     this.barStaticItem10.Id = 16;
     this.barStaticItem10.ItemAppearance.Normal.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.barStaticItem10.ItemAppearance.Normal.Options.UseFont = true;
     this.barStaticItem10.Name = "barStaticItem10";
     this.barStaticItem10.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "Color Mixer";
     this.barButtonItem1.Glyph = global::ERPGUI.Properties.Resources.colorpicker;
     this.barButtonItem1.Id = 17;
     this.barButtonItem1.Name = "barButtonItem1";
     this.barButtonItem1.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)(((DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText)
     | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     superToolTip3.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipTitleItem5.Text = "What is Color Mixer?";
     toolTipItem3.LeftIndent = 6;
     toolTipItem3.Text = "<b>Color Mixer</b> gives you the functionality to apply your desireable color to " +
     "whole application and you can also set the <b>Brightness</b> of application.";
     toolTipTitleItem6.LeftIndent = 6;
     toolTipTitleItem6.Text = "ERP - Babar Medicine Company Lahore";
     superToolTip3.Items.Add(toolTipTitleItem5);
     superToolTip3.Items.Add(toolTipItem3);
     superToolTip3.Items.Add(toolTipSeparatorItem3);
     superToolTip3.Items.Add(toolTipTitleItem6);
     this.barButtonItem1.SuperTip = superToolTip3;
     this.barButtonItem1.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem1_ItemClick);
     //
     // barStaticItem1
     //
     this.barStaticItem1.Caption = "Branch :";
     this.barStaticItem1.Id = 18;
     this.barStaticItem1.ItemAppearance.Normal.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.barStaticItem1.ItemAppearance.Normal.Options.UseFont = true;
     this.barStaticItem1.Name = "barStaticItem1";
     this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // b_code
     //
     this.b_code.Caption = "b_code";
     this.b_code.Id = 19;
     this.b_code.Name = "b_code";
     this.b_code.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // btnRefresh
     //
     this.btnRefresh.Caption = "Refresh";
     this.btnRefresh.Glyph = global::ERPGUI.Properties.Resources.refresh_32x32;
     this.btnRefresh.Id = 20;
     this.btnRefresh.Name = "btnRefresh";
     this.btnRefresh.RibbonStyle = ((DevExpress.XtraBars.Ribbon.RibbonItemStyles)(((DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText)
     | DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText)));
     this.btnRefresh.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnRefresh_ItemClick);
     //
     // barStaticItem2
     //
     this.barStaticItem2.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barStaticItem2.Caption = "Work Date :";
     this.barStaticItem2.Id = 21;
     this.barStaticItem2.ItemAppearance.Normal.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.barStaticItem2.ItemAppearance.Normal.Options.UseFont = true;
     this.barStaticItem2.Name = "barStaticItem2";
     this.barStaticItem2.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // lblWorkDate
     //
     this.lblWorkDate.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.lblWorkDate.Caption = "date";
     this.lblWorkDate.Id = 22;
     this.lblWorkDate.Name = "lblWorkDate";
     this.lblWorkDate.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // barStaticItem11
     //
     this.barStaticItem11.Caption = "Username :"******"Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.barStaticItem11.ItemAppearance.Normal.Options.UseFont = true;
     this.barStaticItem11.Name = "barStaticItem11";
     this.barStaticItem11.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // lblUserID
     //
     this.lblUserID.Caption = "id";
     this.lblUserID.Id = 24;
     this.lblUserID.Name = "lblUserID";
     this.lblUserID.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // barStaticItem3
     //
     this.barStaticItem3.Caption = "Server :";
     this.barStaticItem3.Id = 25;
     this.barStaticItem3.ItemAppearance.Normal.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.barStaticItem3.ItemAppearance.Normal.Options.UseFont = true;
     this.barStaticItem3.Name = "barStaticItem3";
     this.barStaticItem3.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // lblServer
     //
     this.lblServer.Caption = "Server";
     this.lblServer.Id = 26;
     this.lblServer.Name = "lblServer";
     this.lblServer.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // ribbonPage8
     //
     this.ribbonPage8.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.ribbonPage8.Appearance.Options.UseFont = true;
     this.ribbonPage8.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.ribbonPageGroup3});
     this.ribbonPage8.Name = "ribbonPage8";
     this.ribbonPage8.Text = "File";
     //
     // ribbonPageGroup3
     //
     this.ribbonPageGroup3.ItemLinks.Add(this.btnRefresh);
     this.ribbonPageGroup3.Name = "ribbonPageGroup3";
     //
     // ribbonPage16
     //
     this.ribbonPage16.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.ribbonPageGroup2,
     this.ribbonPageGroup1});
     this.ribbonPage16.Name = "ribbonPage16";
     this.ribbonPage16.Text = "View";
     //
     // ribbonPageGroup2
     //
     this.ribbonPageGroup2.AllowTextClipping = false;
     this.ribbonPageGroup2.ItemLinks.Add(this.skinRibbonGalleryBarItem1);
     this.ribbonPageGroup2.ItemLinks.Add(this.barButtonItem1);
     this.ribbonPageGroup2.Name = "ribbonPageGroup2";
     this.ribbonPageGroup2.Text = "Themes";
     //
     // ribbonPageGroup1
     //
     this.ribbonPageGroup1.AllowTextClipping = false;
     this.ribbonPageGroup1.ItemLinks.Add(this.barCheckItem3);
     this.ribbonPageGroup1.ItemLinks.Add(this.barCheckItem4);
     this.ribbonPageGroup1.Name = "ribbonPageGroup1";
     this.ribbonPageGroup1.Text = "Switch Pane Style";
     //
     // ribbonPage1
     //
     this.ribbonPage1.Name = "ribbonPage1";
     this.ribbonPage1.Text = "Help";
     //
     // ribbonPage2
     //
     this.ribbonPage2.Name = "ribbonPage2";
     //
     // repositoryItemToggleSwitch1
     //
     this.repositoryItemToggleSwitch1.AutoHeight = false;
     this.repositoryItemToggleSwitch1.Name = "repositoryItemToggleSwitch1";
     this.repositoryItemToggleSwitch1.OffText = "Explorer";
     this.repositoryItemToggleSwitch1.OnText = "Navigation";
     //
     // ribbonStatusBar1
     //
     this.ribbonStatusBar1.ItemLinks.Add(this.barStaticItem1, true);
     this.ribbonStatusBar1.ItemLinks.Add(this.b_code);
     this.ribbonStatusBar1.ItemLinks.Add(this.barStaticItem3, true);
     this.ribbonStatusBar1.ItemLinks.Add(this.lblServer);
     this.ribbonStatusBar1.ItemLinks.Add(this.barStaticItem5, true);
     this.ribbonStatusBar1.ItemLinks.Add(this.lblDatabaseName);
     this.ribbonStatusBar1.ItemLinks.Add(this.barStaticItem4, true);
     this.ribbonStatusBar1.ItemLinks.Add(this.lblUserID);
     this.ribbonStatusBar1.ItemLinks.Add(this.lblUsername);
     this.ribbonStatusBar1.ItemLinks.Add(this.barStaticItem8, true);
     this.ribbonStatusBar1.ItemLinks.Add(this.lblLoginDate);
     this.ribbonStatusBar1.ItemLinks.Add(this.lblLoginTime);
     this.ribbonStatusBar1.ItemLinks.Add(this.lblComputerName);
     this.ribbonStatusBar1.ItemLinks.Add(this.barStaticItem2, true);
     this.ribbonStatusBar1.ItemLinks.Add(this.lblWorkDate);
     this.ribbonStatusBar1.Location = new System.Drawing.Point(0, 653);
     this.ribbonStatusBar1.Name = "ribbonStatusBar1";
     this.ribbonStatusBar1.Ribbon = this.ribbonControl1;
     this.ribbonStatusBar1.Size = new System.Drawing.Size(1190, 31);
     //
     // tileNavSubItem16
     //
     this.tileNavSubItem16.Caption = "tileNavSubItem16";
     this.tileNavSubItem16.Name = "tileNavSubItem16";
     this.tileNavSubItem16.OptionsDropDown.BackColor = System.Drawing.Color.Empty;
     //
     //
     //
     this.tileNavSubItem16.Tile.DropDownOptions.BeakColor = System.Drawing.Color.Empty;
     tileItemElement1.Text = "tileNavSubItem16";
     this.tileNavSubItem16.Tile.Elements.Add(tileItemElement1);
     this.tileNavSubItem16.Tile.ItemSize = DevExpress.XtraBars.Navigation.TileBarItemSize.Default;
     this.tileNavSubItem16.Tile.Name = "tileBarItem25";
     //
     // tileNavSubItem17
     //
     this.tileNavSubItem17.Caption = "tileNavSubItem17";
     this.tileNavSubItem17.Name = "tileNavSubItem17";
     this.tileNavSubItem17.OptionsDropDown.BackColor = System.Drawing.Color.Empty;
     //
     //
     //
     this.tileNavSubItem17.Tile.DropDownOptions.BeakColor = System.Drawing.Color.Empty;
     tileItemElement2.Text = "tileNavSubItem17";
     this.tileNavSubItem17.Tile.Elements.Add(tileItemElement2);
     this.tileNavSubItem17.Tile.ItemSize = DevExpress.XtraBars.Navigation.TileBarItemSize.Default;
     this.tileNavSubItem17.Tile.Name = "tileBarItem26";
     //
     // tileNavSubItem18
     //
     this.tileNavSubItem18.Caption = "tileNavSubItem18";
     this.tileNavSubItem18.Name = "tileNavSubItem18";
     this.tileNavSubItem18.OptionsDropDown.BackColor = System.Drawing.Color.Empty;
     //
     //
     //
     this.tileNavSubItem18.Tile.DropDownOptions.BeakColor = System.Drawing.Color.Empty;
     tileItemElement3.Text = "tileNavSubItem18";
     this.tileNavSubItem18.Tile.Elements.Add(tileItemElement3);
     this.tileNavSubItem18.Tile.ItemSize = DevExpress.XtraBars.Navigation.TileBarItemSize.Default;
     this.tileNavSubItem18.Tile.Name = "tileBarItem27";
     //
     // tileNavSubItem19
     //
     this.tileNavSubItem19.Caption = "tileNavSubItem19";
     this.tileNavSubItem19.Name = "tileNavSubItem19";
     this.tileNavSubItem19.OptionsDropDown.BackColor = System.Drawing.Color.Empty;
     //
     //
     //
     this.tileNavSubItem19.Tile.DropDownOptions.BeakColor = System.Drawing.Color.Empty;
     tileItemElement4.Text = "tileNavSubItem19";
     this.tileNavSubItem19.Tile.Elements.Add(tileItemElement4);
     this.tileNavSubItem19.Tile.ItemSize = DevExpress.XtraBars.Navigation.TileBarItemSize.Default;
     this.tileNavSubItem19.Tile.Name = "tileBarItem28";
     //
     // tileNavSubItem20
     //
     this.tileNavSubItem20.Caption = "tileNavSubItem20";
     this.tileNavSubItem20.Name = "tileNavSubItem20";
     this.tileNavSubItem20.OptionsDropDown.BackColor = System.Drawing.Color.Empty;
     //
     //
     //
     this.tileNavSubItem20.Tile.DropDownOptions.BeakColor = System.Drawing.Color.Empty;
     tileItemElement5.Text = "tileNavSubItem20";
     this.tileNavSubItem20.Tile.Elements.Add(tileItemElement5);
     this.tileNavSubItem20.Tile.ItemSize = DevExpress.XtraBars.Navigation.TileBarItemSize.Default;
     this.tileNavSubItem20.Tile.Name = "tileBarItem29";
     //
     // tileNavSubItem21
     //
     this.tileNavSubItem21.Caption = "tileNavSubItem21";
     this.tileNavSubItem21.Name = "tileNavSubItem21";
     this.tileNavSubItem21.OptionsDropDown.BackColor = System.Drawing.Color.Empty;
     //
     //
     //
     this.tileNavSubItem21.Tile.DropDownOptions.BeakColor = System.Drawing.Color.Empty;
     tileItemElement6.Text = "tileNavSubItem21";
     this.tileNavSubItem21.Tile.Elements.Add(tileItemElement6);
     this.tileNavSubItem21.Tile.ItemSize = DevExpress.XtraBars.Navigation.TileBarItemSize.Default;
     this.tileNavSubItem21.Tile.Name = "tileBarItem30";
     //
     // tileNavSubItem22
     //
     this.tileNavSubItem22.Caption = "tileNavSubItem22";
     this.tileNavSubItem22.Name = "tileNavSubItem22";
     this.tileNavSubItem22.OptionsDropDown.BackColor = System.Drawing.Color.Empty;
     //
     //
     //
     this.tileNavSubItem22.Tile.DropDownOptions.BeakColor = System.Drawing.Color.Empty;
     tileItemElement7.Text = "tileNavSubItem22";
     this.tileNavSubItem22.Tile.Elements.Add(tileItemElement7);
     this.tileNavSubItem22.Tile.ItemSize = DevExpress.XtraBars.Navigation.TileBarItemSize.Default;
     this.tileNavSubItem22.Tile.Name = "tileBarItem31";
     //
     // backstageViewTabItem1
     //
     this.backstageViewTabItem1.Caption = "backstageViewTabItem1";
     this.backstageViewTabItem1.Name = "backstageViewTabItem1";
     this.backstageViewTabItem1.Selected = false;
     //
     // navBarItem1
     //
     this.navBarItem1.Caption = "Near Expiry Batches";
     this.navBarItem1.Name = "navBarItem1";
     //
     // navBarItem45
     //
     this.navBarItem45.Caption = "navBarItem45";
     this.navBarItem45.Name = "navBarItem45";
     //
     // frmModulesList
     //
     this.frmModulesList.Caption = "Modules List";
     this.frmModulesList.Name = "frmModulesList";
     this.frmModulesList.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.OpenForm_LinkClicked);
     //
     // frmaddUsers
     //
     this.frmaddUsers.Caption = "Add User";
     this.frmaddUsers.Name = "frmaddUsers";
     this.frmaddUsers.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.OpenForm_LinkClicked);
     //
     // frmUserRights
     //
     this.frmUserRights.Caption = "Users Security";
     this.frmUserRights.Name = "frmUserRights";
     this.frmUserRights.LinkPressed += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.OpenForm_LinkClicked);
     //
     // navBarGroup2
     //
     this.navBarGroup2.Caption = "Administration";
     this.navBarGroup2.Expanded = true;
     this.navBarGroup2.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.frmModulesList),
     new DevExpress.XtraNavBar.NavBarItemLink(this.frmaddUsers),
     new DevExpress.XtraNavBar.NavBarItemLink(this.frmUserRights),
     new DevExpress.XtraNavBar.NavBarItemLink(this.frmGeneralSettings),
     new DevExpress.XtraNavBar.NavBarItemLink(this.frmEmailManager)});
     this.navBarGroup2.Name = "navBarGroup2";
     this.navBarGroup2.SmallImage = global::ERPGUI.Properties.Resources.login_key_copy;
     superToolTip4.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     toolTipTitleItem7.Text = "What\'s in Administration?";
     toolTipItem4.LeftIndent = 6;
     toolTipItem4.Text = "All tasks related to system <b>Administrator</b> are under this section. ";
     toolTipTitleItem8.LeftIndent = 6;
     toolTipTitleItem8.Text = "ERP - Babar Medicine Company Lahore";
     superToolTip4.Items.Add(toolTipTitleItem7);
     superToolTip4.Items.Add(toolTipItem4);
     superToolTip4.Items.Add(toolTipSeparatorItem4);
     superToolTip4.Items.Add(toolTipTitleItem8);
     this.navBarGroup2.SuperTip = superToolTip4;
     //
     // frmGeneralSettings
     //
     this.frmGeneralSettings.Caption = "General Settings";
     this.frmGeneralSettings.Name = "frmGeneralSettings";
     this.frmGeneralSettings.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.OpenForm_LinkClicked);
     //
     // frmEmailManager
     //
     this.frmEmailManager.Caption = "Email Manager";
     this.frmEmailManager.Name = "frmEmailManager";
     this.frmEmailManager.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.frmEmailManager_LinkClicked);
     //
     // navBarGroup3
     //
     this.navBarGroup3.Caption = "Financials";
     this.navBarGroup3.Name = "navBarGroup3";
     this.navBarGroup3.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup3.SmallImage")));
     //
     // navBarGroup4
     //
     this.navBarGroup4.Caption = "Sales A/R";
     this.navBarGroup4.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.frmOpenRSS),
     new DevExpress.XtraNavBar.NavBarItemLink(this.frmOpenRssStock),
     new DevExpress.XtraNavBar.NavBarItemLink(this.frmReturnSummary),
     new DevExpress.XtraNavBar.NavBarItemLink(this.frmOpenDSS),
     new DevExpress.XtraNavBar.NavBarItemLink(this.frmMPOSSync),
     new DevExpress.XtraNavBar.NavBarItemLink(this.frmSelectSummary),
     new DevExpress.XtraNavBar.NavBarItemLink(this.frmSaleInvoiceGeneration)});
     this.navBarGroup4.Name = "navBarGroup4";
     this.navBarGroup4.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup4.SmallImage")));
     //
     // frmOpenRSS
     //
     this.frmOpenRSS.Caption = "Open Rss";
     this.frmOpenRSS.Name = "frmOpenRSS";
     this.frmOpenRSS.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.frmOpenRss_LinkClicked);
     //
     // frmOpenRssStock
     //
     this.frmOpenRssStock.Caption = "Open Rss Stock";
     this.frmOpenRssStock.Name = "frmOpenRssStock";
     this.frmOpenRssStock.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.frmOpenRss_LinkClicked);
     //
     // frmReturnSummary
     //
     this.frmReturnSummary.Caption = "Sale Return";
     this.frmReturnSummary.Name = "frmReturnSummary";
     this.frmReturnSummary.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.OpenForm_LinkClicked);
     //
     // frmOpenDSS
     //
     this.frmOpenDSS.Caption = "Open Dss";
     this.frmOpenDSS.Name = "frmOpenDSS";
     this.frmOpenDSS.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.OpenForm_LinkClicked);
     //
     // frmMPOSSync
     //
     this.frmMPOSSync.Caption = "Sync Devices";
     this.frmMPOSSync.Name = "frmMPOSSync";
     this.frmMPOSSync.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.OpenForm_LinkClicked);
     //
     // frmSelectSummary
     //
     this.frmSelectSummary.Caption = "Sale Invoice";
     this.frmSelectSummary.Name = "frmSelectSummary";
     this.frmSelectSummary.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.OpenForm_LinkClicked);
     //
     // frmSaleInvoiceGeneration
     //
     this.frmSaleInvoiceGeneration.Caption = "Auto Sale Invoice";
     this.frmSaleInvoiceGeneration.Name = "frmSaleInvoiceGeneration";
     this.frmSaleInvoiceGeneration.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.OpenForm_LinkClicked);
     //
     // navBarGroup5
     //
     this.navBarGroup5.Caption = "Purchasing A/P";
     this.navBarGroup5.Expanded = true;
     this.navBarGroup5.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.frmPurchaseOrder),
     new DevExpress.XtraNavBar.NavBarItemLink(this.frmGRN),
     new DevExpress.XtraNavBar.NavBarItemLink(this.frmPurchaseInvoice),
     new DevExpress.XtraNavBar.NavBarItemLink(this.frmDeliveryChallan),
     new DevExpress.XtraNavBar.NavBarItemLink(this.frmPurchaseReturn)});
     this.navBarGroup5.Name = "navBarGroup5";
     this.navBarGroup5.SmallImage = global::ERPGUI.Properties.Resources.cart__2_;
     //
     // frmPurchaseOrder
     //
     this.frmPurchaseOrder.Caption = "Purchase Order";
     this.frmPurchaseOrder.Name = "frmPurchaseOrder";
     this.frmPurchaseOrder.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.OpenForm_LinkClicked);
     //
     // frmGRN
     //
     this.frmGRN.Caption = "Goods Receipt Note";
     this.frmGRN.Name = "frmGRN";
     this.frmGRN.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.OpenForm_LinkClicked);
     //
     // frmPurchaseInvoice
     //
     this.frmPurchaseInvoice.Caption = "Purchase Invoice";
     this.frmPurchaseInvoice.Name = "frmPurchaseInvoice";
     this.frmPurchaseInvoice.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.OpenForm_LinkClicked);
     //
     // frmDeliveryChallan
     //
     this.frmDeliveryChallan.Caption = "Delivery Challan";
     this.frmDeliveryChallan.Name = "frmDeliveryChallan";
     this.frmDeliveryChallan.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.OpenForm_LinkClicked);
     //
     // frmPurchaseReturn
     //
     this.frmPurchaseReturn.Caption = "Purchase Return";
     this.frmPurchaseReturn.Name = "frmPurchaseReturn";
     this.frmPurchaseReturn.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.OpenForm_LinkClicked);
     //
     // navBarGroup6
     //
     this.navBarGroup6.Caption = "Business Partners";
     this.navBarGroup6.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.frmTown),
     new DevExpress.XtraNavBar.NavBarItemLink(this.frmOurCompanyGroups),
     new DevExpress.XtraNavBar.NavBarItemLink(this.frmCustomers),
     new DevExpress.XtraNavBar.NavBarItemLink(this.frmProducts),
     new DevExpress.XtraNavBar.NavBarItemLink(this.frmCompanyGroup),
     new DevExpress.XtraNavBar.NavBarItemLink(this.frmEmployeeTargets),
     new DevExpress.XtraNavBar.NavBarItemLink(this.frmProductGroup),
     new DevExpress.XtraNavBar.NavBarItemLink(this.frmVendorEmployees)});
     this.navBarGroup6.Name = "navBarGroup6";
     this.navBarGroup6.SmallImage = global::ERPGUI.Properties.Resources.handshake1;
     //
     // frmTown
     //
     this.frmTown.Caption = "Areas Defination";
     this.frmTown.Name = "frmTown";
     this.frmTown.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.OpenForm_LinkClicked);
     //
     // frmOurCompanyGroups
     //
     this.frmOurCompanyGroups.Caption = "Our Company Groups";
     this.frmOurCompanyGroups.Name = "frmOurCompanyGroups";
     this.frmOurCompanyGroups.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.OpenForm_LinkClicked);
     //
     // frmCustomers
     //
     this.frmCustomers.Caption = "Customers";
     this.frmCustomers.Name = "frmCustomers";
     this.frmCustomers.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.OpenForm_LinkClicked);
     //
     // frmProducts
     //
     this.frmProducts.Caption = "Products";
     this.frmProducts.Name = "frmProducts";
     this.frmProducts.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.OpenForm_LinkClicked);
     //
     // frmCompanyGroup
     //
     this.frmCompanyGroup.Caption = "Company Groups";
     this.frmCompanyGroup.Name = "frmCompanyGroup";
     this.frmCompanyGroup.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.OpenForm_LinkClicked);
     //
     // frmEmployeeTargets
     //
     this.frmEmployeeTargets.Caption = "Targets";
     this.frmEmployeeTargets.Name = "frmEmployeeTargets";
     this.frmEmployeeTargets.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.OpenForm_LinkClicked);
     //
     // frmProductGroup
     //
     this.frmProductGroup.Caption = "Product Grouping";
     this.frmProductGroup.Name = "frmProductGroup";
     this.frmProductGroup.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.OpenForm_LinkClicked);
     //
     // frmVendorEmployees
     //
     this.frmVendorEmployees.Caption = "Compnies Employee";
     this.frmVendorEmployees.Name = "frmVendorEmployees";
     this.frmVendorEmployees.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.OpenForm_LinkClicked);
     //
     // navBarGroup7
     //
     this.navBarGroup7.Caption = "Banking";
     this.navBarGroup7.Name = "navBarGroup7";
     this.navBarGroup7.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup7.SmallImage")));
     //
     // navBarGroup8
     //
     this.navBarGroup8.Caption = "Inventory";
     this.navBarGroup8.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.frmHoldScan),
     new DevExpress.XtraNavBar.NavBarItemLink(this.frmBatchCorrection),
     new DevExpress.XtraNavBar.NavBarItemLink(this.frmIntimations),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem2)});
     this.navBarGroup8.Name = "navBarGroup8";
     this.navBarGroup8.SmallImage = global::ERPGUI.Properties.Resources.sssss;
     //
     // frmHoldScan
     //
     this.frmHoldScan.Caption = "Hold Scan";
     this.frmHoldScan.Name = "frmHoldScan";
     this.frmHoldScan.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.frmHoldScan_LinkClicked);
     //
     // frmBatchCorrection
     //
     this.frmBatchCorrection.Caption = "Batch Correction";
     this.frmBatchCorrection.Name = "frmBatchCorrection";
     this.frmBatchCorrection.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.OpenForm_LinkClicked);
     //
     // frmIntimations
     //
     this.frmIntimations.Caption = "Intimation";
     this.frmIntimations.Name = "frmIntimations";
     this.frmIntimations.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.OpenForm_LinkClicked);
     //
     // navBarItem2
     //
     this.navBarItem2.Caption = "Auto Product Change";
     this.navBarItem2.Name = "navBarItem2";
     this.navBarItem2.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.OpenForm_LinkClicked);
     //
     // navBarGroup9
     //
     this.navBarGroup9.Caption = "Human Resource";
     this.navBarGroup9.Expanded = true;
     this.navBarGroup9.Name = "navBarGroup9";
     this.navBarGroup9.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup9.SmallImage")));
     //
     // navBarGroup10
     //
     this.navBarGroup10.Caption = "Fleets & Supply";
     this.navBarGroup10.Expanded = true;
     this.navBarGroup10.Name = "navBarGroup10";
     this.navBarGroup10.SmallImage = global::ERPGUI.Properties.Resources.truck_16x16;
     //
     // navBarGroup11
     //
     this.navBarGroup11.Caption = "Reports";
     this.navBarGroup11.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.Administration),
     new DevExpress.XtraNavBar.NavBarItemLink(this.Financials),
     new DevExpress.XtraNavBar.NavBarItemLink(this.Accounts),
     new DevExpress.XtraNavBar.NavBarItemLink(this.Claims),
     new DevExpress.XtraNavBar.NavBarItemLink(this.Sales),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navbrPurchasing),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navbrPartners),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navbrBanking),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navbrInventory),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navbrHumanResource),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navbrFleetnSupply),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navbrInstitution),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navbrGeneralStore)});
     this.navBarGroup11.Name = "navBarGroup11";
     this.navBarGroup11.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup11.SmallImage")));
     //
     // Administration
     //
     this.Administration.Caption = "Administration";
     this.Administration.Name = "Administration";
     this.Administration.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.reportopen_LinkClicked);
     //
     // Financials
     //
     this.Financials.Caption = "Financials";
     this.Financials.Name = "Financials";
     this.Financials.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.reportopen_LinkClicked);
     //
     // Accounts
     //
     this.Accounts.Caption = "Accounts";
     this.Accounts.Name = "Accounts";
     this.Accounts.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.reportopen_LinkClicked);
     //
     // Claims
     //
     this.Claims.Caption = "Claims";
     this.Claims.Name = "Claims";
     this.Claims.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.reportopen_LinkClicked);
     //
     // Sales
     //
     this.Sales.Caption = "Sales A/R";
     this.Sales.Name = "Sales";
     this.Sales.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.reportopen_LinkClicked);
     //
     // navbrPurchasing
     //
     this.navbrPurchasing.Caption = "Purchasing A/P";
     this.navbrPurchasing.Name = "navbrPurchasing";
     this.navbrPurchasing.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.reportopen_LinkClicked);
     //
     // navbrPartners
     //
     this.navbrPartners.Caption = "Business Partners";
     this.navbrPartners.Name = "navbrPartners";
     this.navbrPartners.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.reportopen_LinkClicked);
     //
     // navbrBanking
     //
     this.navbrBanking.Caption = "Banking";
     this.navbrBanking.Name = "navbrBanking";
     this.navbrBanking.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.reportopen_LinkClicked);
     //
     // navbrInventory
     //
     this.navbrInventory.Caption = "Inventory";
     this.navbrInventory.Name = "navbrInventory";
     this.navbrInventory.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.reportopen_LinkClicked);
     //
     // navbrHumanResource
     //
     this.navbrHumanResource.Caption = "Human Resource";
     this.navbrHumanResource.Name = "navbrHumanResource";
     this.navbrHumanResource.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.reportopen_LinkClicked);
     //
     // navbrFleetnSupply
     //
     this.navbrFleetnSupply.Caption = "Fleets & Supply";
     this.navbrFleetnSupply.Name = "navbrFleetnSupply";
     this.navbrFleetnSupply.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.reportopen_LinkClicked);
     //
     // navbrInstitution
     //
     this.navbrInstitution.Caption = "Institution";
     this.navbrInstitution.Name = "navbrInstitution";
     this.navbrInstitution.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.reportopen_LinkClicked);
     //
     // navbrGeneralStore
     //
     this.navbrGeneralStore.Caption = "General Store";
     this.navbrGeneralStore.Name = "navbrGeneralStore";
     this.navbrGeneralStore.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.reportopen_LinkClicked);
     //
     // navBarControl1
     //
     this.navBarControl1.ActiveGroup = this.navBarGroup2;
     this.navBarControl1.Dock = System.Windows.Forms.DockStyle.Left;
     this.navBarControl1.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
     this.navBarGroup2,
     this.navBarGroup3,
     this.navBarGroup12,
     this.navBarGroup1,
     this.navBarGroup4,
     this.navBarGroup5,
     this.navBarGroup6,
     this.navBarGroup7,
     this.navBarGroup8,
     this.navBarGroup9,
     this.navBarGroup10,
     this.navBarGroup13,
     this.navBarGroup14,
     this.navBarGroup11});
     this.navBarControl1.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
     this.navBarItem1,
     this.navBarItem45,
     this.frmModulesList,
     this.frmaddUsers,
     this.frmUserRights,
     this.Administration,
     this.frmTown,
     this.Financials,
     this.Accounts,
     this.Claims,
     this.Sales,
     this.navbrPurchasing,
     this.navbrPartners,
     this.navbrBanking,
     this.navbrInventory,
     this.navbrHumanResource,
     this.navbrFleetnSupply,
     this.navbrInstitution,
     this.navbrGeneralStore,
     this.frmOurCompanyGroups,
     this.frmCustomers,
     this.frmProducts,
     this.frmCompanyGroup,
     this.frmGeneralSettings,
     this.frmEmployeeTargets,
     this.frmProductGroup,
     this.frmVendorEmployees,
     this.frmPurchaseOrder,
     this.frmGRN,
     this.frmPurchaseInvoice,
     this.frmDeliveryChallan,
     this.frmPurchaseReturn,
     this.frmHoldScan,
     this.frmOpenRSS,
     this.frmOpenRssStock,
     this.frmReturnSummary,
     this.frmOpenDSS,
     this.frmMPOSSync,
     this.frmBatchCorrection,
     this.frmIntimations,
     this.navBarItem2,
     this.frmSelectSummary,
     this.frmSaleInvoiceGeneration,
     this.frmEmailManager});
     this.navBarControl1.Location = new System.Drawing.Point(0, 147);
     this.navBarControl1.Name = "navBarControl1";
     this.navBarControl1.OptionsNavPane.ExpandedWidth = 170;
     this.navBarControl1.PaintStyleKind = DevExpress.XtraNavBar.NavBarViewKind.ExplorerBar;
     this.navBarControl1.Size = new System.Drawing.Size(170, 506);
     this.navBarControl1.StoreDefaultPaintStyleName = true;
     this.navBarControl1.TabIndex = 3;
     this.navBarControl1.Text = "navBarControl1";
     //
     // navBarGroup12
     //
     this.navBarGroup12.Caption = "Accounts";
     this.navBarGroup12.Expanded = true;
     this.navBarGroup12.Name = "navBarGroup12";
     this.navBarGroup12.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup12.SmallImage")));
     //
     // navBarGroup1
     //
     this.navBarGroup1.Caption = "Claims";
     this.navBarGroup1.Name = "navBarGroup1";
     this.navBarGroup1.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup1.SmallImage")));
     //
     // navBarGroup13
     //
     this.navBarGroup13.Caption = "Institution";
     this.navBarGroup13.Name = "navBarGroup13";
     this.navBarGroup13.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup13.SmallImage")));
     //
     // navBarGroup14
     //
     this.navBarGroup14.Caption = "General Store";
     this.navBarGroup14.Name = "navBarGroup14";
     this.navBarGroup14.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup14.SmallImage")));
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(341, 90);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(75, 23);
     this.button1.TabIndex = 11;
     this.button1.Text = "Lock";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // frmMain
     //
     this.AllowFormGlass = DevExpress.Utils.DefaultBoolean.True;
     this.Appearance.BackColor = System.Drawing.Color.LightYellow;
     this.Appearance.BackColor2 = System.Drawing.Color.Olive;
     this.Appearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
     this.Appearance.Options.UseBackColor = true;
     this.Appearance.Options.UseBorderColor = true;
     this.Appearance.Options.UseFont = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackgroundImageLayoutStore = System.Windows.Forms.ImageLayout.Center;
     this.BackgroundImageStore = global::ERPGUI.Properties.Resources.bmc2;
     this.ClientSize = new System.Drawing.Size(1190, 684);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.navBarControl1);
     this.Controls.Add(this.ribbonStatusBar1);
     this.Controls.Add(this.ribbonControl1);
     this.Font = new System.Drawing.Font("Tahoma", 8F);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.InactiveGlowColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(255)))));
     this.IsMdiContainer = true;
     this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.Name = "frmMain";
     this.Ribbon = this.ribbonControl1;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.StatusBar = this.ribbonStatusBar1;
     this.Text = "ERP - Babar Medicine Company Lahore";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmMain_FormClosing);
     this.Load += new System.EventHandler(this.frmMain_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemToggleSwitch1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControl1)).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();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainFrm));
     this.barManagerMain = new DevExpress.XtraBars.BarManager(this.components);
     this.barUp = new DevExpress.XtraBars.Bar();
     this.barSubItemFile = new DevExpress.XtraBars.BarSubItem();
     this.mbConnection = new DevExpress.XtraBars.BarButtonItem();
     this.mbExit = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItemView = new DevExpress.XtraBars.BarSubItem();
     this.mbCode = new DevExpress.XtraBars.BarButtonItem();
     this.mbData = new DevExpress.XtraBars.BarButtonItem();
     this.mbQuery = new DevExpress.XtraBars.BarButtonItem();
     this.mbReport = new DevExpress.XtraBars.BarButtonItem();
     this.mbPriv = new DevExpress.XtraBars.BarButtonItem();
     this.mbResult = new DevExpress.XtraBars.BarButtonItem();
     this.mbSkins = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItemWindows = new DevExpress.XtraBars.BarSubItem();
     this.mbcascade = new DevExpress.XtraBars.BarButtonItem();
     this.mbtileVertical = new DevExpress.XtraBars.BarButtonItem();
     this.mbtileHorizontal = new DevExpress.XtraBars.BarButtonItem();
     this.mbcloseAll = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItemHelp = new DevExpress.XtraBars.BarSubItem();
     this.mbIndex = new DevExpress.XtraBars.BarButtonItem();
     this.mbAboutUs = new DevExpress.XtraBars.BarButtonItem();
     this.barDown = new DevExpress.XtraBars.Bar();
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.dockManagerMain = new DevExpress.XtraBars.Docking.DockManager(this.components);
     this.DPSkins = new DevExpress.XtraBars.Docking.DockPanel();
     this.controlContainer6 = new DevExpress.XtraBars.Docking.ControlContainer();
     this.galleryControlSkins = new DevExpress.XtraBars.Ribbon.GalleryControl();
     this.galleryControlClient1 = new DevExpress.XtraBars.Ribbon.GalleryControlClient();
     this.DPResult = new DevExpress.XtraBars.Docking.DockPanel();
     this.controlContainer5 = new DevExpress.XtraBars.Docking.ControlContainer();
     this.Logging = new System.Windows.Forms.RichTextBox();
     this.DPPriv = new DevExpress.XtraBars.Docking.DockPanel();
     this.controlContainer4 = new DevExpress.XtraBars.Docking.ControlContainer();
     this.navBarControlPriv = new DevExpress.XtraNavBar.NavBarControl();
     this.navBarGroup3 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarItemTimeRoles = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemTimeRoleDetial = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemTimeUsers = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemTimeUserRoles = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemTimeAppOptions = new DevExpress.XtraNavBar.NavBarItem();
     this.imageCollection32 = new DevExpress.Utils.ImageCollection(this.components);
     this.panelContainer1 = new DevExpress.XtraBars.Docking.DockPanel();
     this.DPData = new DevExpress.XtraBars.Docking.DockPanel();
     this.controlContainer1 = new DevExpress.XtraBars.Docking.ControlContainer();
     this.navBarControlData = new DevExpress.XtraNavBar.NavBarControl();
     this.navBarGroup2 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarItemServiceQueryTBLWared = new DevExpress.XtraNavBar.NavBarItem();
     this.DPCode = new DevExpress.XtraBars.Docking.DockPanel();
     this.dockPanel1_Container = new DevExpress.XtraBars.Docking.ControlContainer();
     this.navBarControlCode = new DevExpress.XtraNavBar.NavBarControl();
     this.navBarGroup1 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarItemServiceQueryCDEdara = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemServiceQueryCDserviceType = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemServiceQueryCDReply = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemServiceQueryCDSyndicate = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemServiceQueryCDSubCommitte = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemServiceQueryCDAttatech = new DevExpress.XtraNavBar.NavBarItem();
     this.DPQuery = new DevExpress.XtraBars.Docking.DockPanel();
     this.controlContainer2 = new DevExpress.XtraBars.Docking.ControlContainer();
     this.navBarControlQry = new DevExpress.XtraNavBar.NavBarControl();
     this.navBarGroup5 = new DevExpress.XtraNavBar.NavBarGroup();
     this.DPReport = new DevExpress.XtraBars.Docking.DockPanel();
     this.controlContainer3 = new DevExpress.XtraBars.Docking.ControlContainer();
     this.navBarControlReport = new DevExpress.XtraNavBar.NavBarControl();
     this.navBarGroup6 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarItemTimeDeployRpt = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarGroup4 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarGroup7 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarGroup8 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarGroup9 = new DevExpress.XtraNavBar.NavBarGroup();
     this.barEditItem1 = new DevExpress.XtraBars.BarEditItem();
     this.repositoryItemComboBoxSkins = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.repositoryItemLookUpEditasase_code = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     ((System.ComponentModel.ISupportInitialize)(this.barManagerMain)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManagerMain)).BeginInit();
     this.DPSkins.SuspendLayout();
     this.controlContainer6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.galleryControlSkins)).BeginInit();
     this.galleryControlSkins.SuspendLayout();
     this.DPResult.SuspendLayout();
     this.controlContainer5.SuspendLayout();
     this.DPPriv.SuspendLayout();
     this.controlContainer4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlPriv)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection32)).BeginInit();
     this.panelContainer1.SuspendLayout();
     this.DPData.SuspendLayout();
     this.controlContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlData)).BeginInit();
     this.DPCode.SuspendLayout();
     this.dockPanel1_Container.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlCode)).BeginInit();
     this.DPQuery.SuspendLayout();
     this.controlContainer2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlQry)).BeginInit();
     this.DPReport.SuspendLayout();
     this.controlContainer3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlReport)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBoxSkins)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditasase_code)).BeginInit();
     this.SuspendLayout();
     //
     // barManagerMain
     //
     this.barManagerMain.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.barUp,
     this.barDown});
     this.barManagerMain.DockControls.Add(this.barDockControlTop);
     this.barManagerMain.DockControls.Add(this.barDockControlBottom);
     this.barManagerMain.DockControls.Add(this.barDockControlLeft);
     this.barManagerMain.DockControls.Add(this.barDockControlRight);
     this.barManagerMain.DockManager = this.dockManagerMain;
     this.barManagerMain.Form = this;
     this.barManagerMain.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.barSubItemFile,
     this.barSubItemView,
     this.barSubItemHelp,
     this.mbConnection,
     this.mbExit,
     this.mbCode,
     this.mbData,
     this.mbQuery,
     this.mbReport,
     this.mbPriv,
     this.mbAboutUs,
     this.mbIndex,
     this.barEditItem1,
     this.mbResult,
     this.mbSkins,
     this.barSubItemWindows,
     this.mbcascade,
     this.mbtileVertical,
     this.mbtileHorizontal,
     this.mbcloseAll});
     this.barManagerMain.MainMenu = this.barUp;
     this.barManagerMain.MaxItemId = 28;
     this.barManagerMain.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemComboBoxSkins,
     this.repositoryItemLookUpEditasase_code});
     this.barManagerMain.StatusBar = this.barDown;
     this.barManagerMain.TransparentEditors = true;
     //
     // barUp
     //
     this.barUp.BarName = "Main menu";
     this.barUp.DockCol = 0;
     this.barUp.DockRow = 0;
     this.barUp.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.barUp.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItemFile),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItemView),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItemWindows),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItemHelp)});
     this.barUp.OptionsBar.MultiLine = true;
     this.barUp.OptionsBar.UseWholeRow = true;
     this.barUp.Text = "Main menu";
     //
     // barSubItemFile
     //
     this.barSubItemFile.Caption = "ملف";
     this.barSubItemFile.Glyph = ((System.Drawing.Image)(resources.GetObject("barSubItemFile.Glyph")));
     this.barSubItemFile.Id = 0;
     this.barSubItemFile.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.mbConnection, DevExpress.XtraBars.BarItemPaintStyle.Standard),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbExit)});
     this.barSubItemFile.Name = "barSubItemFile";
     this.barSubItemFile.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // mbConnection
     //
     this.mbConnection.Caption = "الغاء الاتصال";
     this.mbConnection.Glyph = ((System.Drawing.Image)(resources.GetObject("mbConnection.Glyph")));
     this.mbConnection.Id = 3;
     this.mbConnection.Name = "mbConnection";
     this.mbConnection.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbConnection_ItemClick);
     //
     // mbExit
     //
     this.mbExit.Caption = "خروج";
     this.mbExit.Glyph = global::ServiceQuery.Properties.Resources.Exit;
     this.mbExit.Id = 4;
     this.mbExit.Name = "mbExit";
     this.mbExit.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbExit_ItemClick);
     //
     // barSubItemView
     //
     this.barSubItemView.Caption = "عرض";
     this.barSubItemView.Glyph = ((System.Drawing.Image)(resources.GetObject("barSubItemView.Glyph")));
     this.barSubItemView.Id = 1;
     this.barSubItemView.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.mbCode),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbData),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbQuery),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbReport),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbPriv),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbResult),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbSkins)});
     this.barSubItemView.Name = "barSubItemView";
     this.barSubItemView.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barSubItemView.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // mbCode
     //
     this.mbCode.Caption = "اكواد";
     this.mbCode.Glyph = ((System.Drawing.Image)(resources.GetObject("mbCode.Glyph")));
     this.mbCode.Id = 5;
     this.mbCode.Name = "mbCode";
     this.mbCode.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbCode_ItemClick);
     //
     // mbData
     //
     this.mbData.Caption = "ادخال بيانات";
     this.mbData.Glyph = ((System.Drawing.Image)(resources.GetObject("mbData.Glyph")));
     this.mbData.Id = 6;
     this.mbData.Name = "mbData";
     this.mbData.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbData_ItemClick);
     //
     // mbQuery
     //
     this.mbQuery.Caption = "استعلامات";
     this.mbQuery.Glyph = ((System.Drawing.Image)(resources.GetObject("mbQuery.Glyph")));
     this.mbQuery.Id = 7;
     this.mbQuery.Name = "mbQuery";
     this.mbQuery.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbQuery_ItemClick);
     //
     // mbReport
     //
     this.mbReport.Caption = "تقارير";
     this.mbReport.Glyph = global::ServiceQuery.Properties.Resources.Print;
     this.mbReport.Id = 8;
     this.mbReport.Name = "mbReport";
     this.mbReport.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbReport_ItemClick);
     //
     // mbPriv
     //
     this.mbPriv.Caption = "صلاحيات";
     this.mbPriv.Glyph = ((System.Drawing.Image)(resources.GetObject("mbPriv.Glyph")));
     this.mbPriv.Id = 9;
     this.mbPriv.Name = "mbPriv";
     this.mbPriv.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbPriv_ItemClick);
     //
     // mbResult
     //
     this.mbResult.Caption = "نتائج العمليات";
     this.mbResult.Glyph = global::ServiceQuery.Properties.Resources.info16;
     this.mbResult.Id = 20;
     this.mbResult.Name = "mbResult";
     this.mbResult.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbResult_ItemClick);
     //
     // mbSkins
     //
     this.mbSkins.Caption = "الاشكال";
     this.mbSkins.Glyph = global::ServiceQuery.Properties.Resources.Skins;
     this.mbSkins.Id = 21;
     this.mbSkins.Name = "mbSkins";
     this.mbSkins.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbSkins_ItemClick);
     //
     // barSubItemWindows
     //
     this.barSubItemWindows.Caption = "النوافذ";
     this.barSubItemWindows.Glyph = ((System.Drawing.Image)(resources.GetObject("barSubItemWindows.Glyph")));
     this.barSubItemWindows.Id = 22;
     this.barSubItemWindows.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.mbcascade),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbtileVertical),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbtileHorizontal),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbcloseAll)});
     this.barSubItemWindows.Name = "barSubItemWindows";
     this.barSubItemWindows.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barSubItemWindows.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // mbcascade
     //
     this.mbcascade.Caption = "ترتيب النوافذ";
     this.mbcascade.Glyph = ((System.Drawing.Image)(resources.GetObject("mbcascade.Glyph")));
     this.mbcascade.Id = 23;
     this.mbcascade.Name = "mbcascade";
     this.mbcascade.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbcascade_ItemClick);
     //
     // mbtileVertical
     //
     this.mbtileVertical.Caption = "العناوين رأسي";
     this.mbtileVertical.Glyph = ((System.Drawing.Image)(resources.GetObject("mbtileVertical.Glyph")));
     this.mbtileVertical.Id = 24;
     this.mbtileVertical.Name = "mbtileVertical";
     this.mbtileVertical.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbtileVertical_ItemClick);
     //
     // mbtileHorizontal
     //
     this.mbtileHorizontal.Caption = "العناوين افقي";
     this.mbtileHorizontal.Glyph = ((System.Drawing.Image)(resources.GetObject("mbtileHorizontal.Glyph")));
     this.mbtileHorizontal.Id = 25;
     this.mbtileHorizontal.Name = "mbtileHorizontal";
     this.mbtileHorizontal.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbtileHorizontal_ItemClick);
     //
     // mbcloseAll
     //
     this.mbcloseAll.Caption = "اغلاق الكل";
     this.mbcloseAll.Glyph = ((System.Drawing.Image)(resources.GetObject("mbcloseAll.Glyph")));
     this.mbcloseAll.Id = 26;
     this.mbcloseAll.Name = "mbcloseAll";
     this.mbcloseAll.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbcloseAll_ItemClick);
     //
     // barSubItemHelp
     //
     this.barSubItemHelp.Caption = "مساعده";
     this.barSubItemHelp.Glyph = ((System.Drawing.Image)(resources.GetObject("barSubItemHelp.Glyph")));
     this.barSubItemHelp.Id = 2;
     this.barSubItemHelp.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.mbIndex),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbAboutUs)});
     this.barSubItemHelp.Name = "barSubItemHelp";
     this.barSubItemHelp.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barSubItemHelp.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // mbIndex
     //
     this.mbIndex.Caption = "كتاب المساعده";
     this.mbIndex.Glyph = global::ServiceQuery.Properties.Resources.Index;
     this.mbIndex.Id = 11;
     this.mbIndex.Name = "mbIndex";
     //
     // mbAboutUs
     //
     this.mbAboutUs.Caption = "عن البرنامج";
     this.mbAboutUs.Glyph = global::ServiceQuery.Properties.Resources.About;
     this.mbAboutUs.Id = 10;
     this.mbAboutUs.Name = "mbAboutUs";
     this.mbAboutUs.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbAboutUs_ItemClick);
     //
     // barDown
     //
     this.barDown.BarName = "Status bar";
     this.barDown.CanDockStyle = DevExpress.XtraBars.BarCanDockStyle.Bottom;
     this.barDown.DockCol = 0;
     this.barDown.DockRow = 0;
     this.barDown.DockStyle = DevExpress.XtraBars.BarDockStyle.Bottom;
     this.barDown.OptionsBar.AllowQuickCustomization = false;
     this.barDown.OptionsBar.DrawDragBorder = false;
     this.barDown.OptionsBar.MultiLine = true;
     this.barDown.OptionsBar.UseWholeRow = true;
     this.barDown.Text = "Status bar";
     //
     // 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(984, 24);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 639);
     this.barDockControlBottom.Size = new System.Drawing.Size(984, 23);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.CausesValidation = false;
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 24);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 615);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(984, 24);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 615);
     //
     // dockManagerMain
     //
     this.dockManagerMain.DockingOptions.ShowCaptionImage = true;
     this.dockManagerMain.DockMode = DevExpress.XtraBars.Docking.Helpers.DockMode.Standard;
     this.dockManagerMain.Form = this;
     this.dockManagerMain.HiddenPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
     this.DPSkins,
     this.DPPriv,
     this.DPQuery,
     this.DPReport});
     this.dockManagerMain.MenuManager = this.barManagerMain;
     this.dockManagerMain.RootPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
     this.DPResult,
     this.panelContainer1});
     this.dockManagerMain.TopZIndexControls.AddRange(new string[] {
     "DevExpress.XtraBars.BarDockControl",
     "DevExpress.XtraBars.StandaloneBarDockControl",
     "System.Windows.Forms.StatusBar",
     "DevExpress.XtraBars.Ribbon.RibbonStatusBar",
     "DevExpress.XtraBars.Ribbon.RibbonControl"});
     //
     // DPSkins
     //
     this.DPSkins.Controls.Add(this.controlContainer6);
     this.DPSkins.Dock = DevExpress.XtraBars.Docking.DockingStyle.Bottom;
     this.DPSkins.FloatVertical = true;
     this.DPSkins.ID = new System.Guid("5d027091-716e-4480-919f-6381f5702c5a");
     this.DPSkins.Location = new System.Drawing.Point(0, 529);
     this.DPSkins.Name = "DPSkins";
     this.DPSkins.OriginalSize = new System.Drawing.Size(198, 110);
     this.DPSkins.SavedDock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.DPSkins.SavedIndex = 0;
     this.DPSkins.SavedParent = this.DPResult;
     this.DPSkins.SavedTabbed = true;
     this.DPSkins.Size = new System.Drawing.Size(984, 110);
     this.DPSkins.TabsScroll = true;
     this.DPSkins.Text = "الاشكال";
     this.DPSkins.Visibility = DevExpress.XtraBars.Docking.DockVisibility.Hidden;
     //
     // controlContainer6
     //
     this.controlContainer6.Controls.Add(this.galleryControlSkins);
     this.controlContainer6.Location = new System.Drawing.Point(4, 23);
     this.controlContainer6.Name = "controlContainer6";
     this.controlContainer6.Size = new System.Drawing.Size(976, 83);
     this.controlContainer6.TabIndex = 0;
     //
     // galleryControlSkins
     //
     this.galleryControlSkins.Controls.Add(this.galleryControlClient1);
     this.galleryControlSkins.DesignGalleryGroupIndex = 0;
     this.galleryControlSkins.DesignGalleryItemIndex = 0;
     this.galleryControlSkins.Dock = System.Windows.Forms.DockStyle.Fill;
     this.galleryControlSkins.Location = new System.Drawing.Point(0, 0);
     this.galleryControlSkins.Name = "galleryControlSkins";
     this.galleryControlSkins.Size = new System.Drawing.Size(976, 83);
     this.galleryControlSkins.TabIndex = 0;
     this.galleryControlSkins.Text = "الاشكال";
     //
     // galleryControlClient1
     //
     this.galleryControlClient1.GalleryControl = this.galleryControlSkins;
     this.galleryControlClient1.Location = new System.Drawing.Point(2, 2);
     this.galleryControlClient1.Size = new System.Drawing.Size(955, 79);
     //
     // DPResult
     //
     this.DPResult.Controls.Add(this.controlContainer5);
     this.DPResult.Dock = DevExpress.XtraBars.Docking.DockingStyle.Bottom;
     this.DPResult.FloatVertical = true;
     this.DPResult.ID = new System.Guid("abdfe4d0-1d6a-4f6b-abc2-985fb9d484f3");
     this.DPResult.Location = new System.Drawing.Point(0, 503);
     this.DPResult.Name = "DPResult";
     this.DPResult.OriginalSize = new System.Drawing.Size(200, 136);
     this.DPResult.Size = new System.Drawing.Size(984, 136);
     this.DPResult.Text = "نتائج العمليات";
     //
     // controlContainer5
     //
     this.controlContainer5.Controls.Add(this.Logging);
     this.controlContainer5.Location = new System.Drawing.Point(4, 23);
     this.controlContainer5.Name = "controlContainer5";
     this.controlContainer5.Size = new System.Drawing.Size(976, 109);
     this.controlContainer5.TabIndex = 0;
     //
     // Logging
     //
     this.Logging.Dock = System.Windows.Forms.DockStyle.Fill;
     this.Logging.Location = new System.Drawing.Point(0, 0);
     this.Logging.Name = "Logging";
     this.Logging.ReadOnly = true;
     this.Logging.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.Logging.Size = new System.Drawing.Size(976, 109);
     this.Logging.TabIndex = 0;
     this.Logging.Text = "";
     this.Logging.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.Logging_MouseDoubleClick);
     //
     // DPPriv
     //
     this.DPPriv.Controls.Add(this.controlContainer4);
     this.DPPriv.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.DPPriv.ID = new System.Guid("bb5d67bf-41ea-4082-a2e5-532afce242b2");
     this.DPPriv.Location = new System.Drawing.Point(4, 23);
     this.DPPriv.Name = "DPPriv";
     this.DPPriv.OriginalSize = new System.Drawing.Size(192, 451);
     this.DPPriv.SavedDock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.DPPriv.SavedIndex = 2;
     this.DPPriv.SavedParent = this.panelContainer1;
     this.DPPriv.SavedTabbed = true;
     this.DPPriv.Size = new System.Drawing.Size(192, 561);
     this.DPPriv.TabsScroll = true;
     this.DPPriv.TabText = "الصلاحيات";
     this.DPPriv.Text = "الصلاحيات";
     this.DPPriv.Visibility = DevExpress.XtraBars.Docking.DockVisibility.Hidden;
     //
     // controlContainer4
     //
     this.controlContainer4.Controls.Add(this.navBarControlPriv);
     this.controlContainer4.Location = new System.Drawing.Point(0, 0);
     this.controlContainer4.Name = "controlContainer4";
     this.controlContainer4.Size = new System.Drawing.Size(192, 561);
     this.controlContainer4.TabIndex = 0;
     //
     // navBarControlPriv
     //
     this.navBarControlPriv.ActiveGroup = this.navBarGroup3;
     this.navBarControlPriv.Dock = System.Windows.Forms.DockStyle.Fill;
     this.navBarControlPriv.ExplorerBarShowGroupButtons = false;
     this.navBarControlPriv.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
     this.navBarGroup3});
     this.navBarControlPriv.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
     this.navBarItemTimeRoles,
     this.navBarItemTimeUsers,
     this.navBarItemTimeUserRoles,
     this.navBarItemTimeRoleDetial,
     this.navBarItemTimeAppOptions});
     this.navBarControlPriv.LargeImages = this.imageCollection32;
     this.navBarControlPriv.Location = new System.Drawing.Point(0, 0);
     this.navBarControlPriv.Name = "navBarControlPriv";
     this.navBarControlPriv.OptionsNavPane.ExpandedWidth = 192;
     this.navBarControlPriv.Size = new System.Drawing.Size(192, 561);
     this.navBarControlPriv.SmallImages = this.imageCollection32;
     this.navBarControlPriv.StoreDefaultPaintStyleName = true;
     this.navBarControlPriv.TabIndex = 9;
     this.navBarControlPriv.Text = "navBarControl1";
     this.navBarControlPriv.Visible = false;
     //
     // navBarGroup3
     //
     this.navBarGroup3.Caption = "";
     this.navBarGroup3.Expanded = true;
     this.navBarGroup3.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemTimeRoles),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemTimeRoleDetial),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemTimeUsers),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemTimeUserRoles),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemTimeAppOptions)});
     this.navBarGroup3.LargeImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup3.LargeImage")));
     this.navBarGroup3.Name = "navBarGroup3";
     this.navBarGroup3.NavigationPaneVisible = false;
     this.navBarGroup3.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup3.SmallImage")));
     //
     // navBarItemTimeRoles
     //
     this.navBarItemTimeRoles.Caption = "الصلاحيات";
     this.navBarItemTimeRoles.LargeImageIndex = 0;
     this.navBarItemTimeRoles.Name = "navBarItemTimeRoles";
     this.navBarItemTimeRoles.SmallImageIndex = 0;
     this.navBarItemTimeRoles.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemEditorRoleFrm_LinkClicked);
     //
     // navBarItemTimeRoleDetial
     //
     this.navBarItemTimeRoleDetial.Caption = "تفاصيل الصلاحيات";
     this.navBarItemTimeRoleDetial.LargeImageIndex = 3;
     this.navBarItemTimeRoleDetial.Name = "navBarItemTimeRoleDetial";
     this.navBarItemTimeRoleDetial.SmallImageIndex = 3;
     this.navBarItemTimeRoleDetial.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemRoleDetial_LinkClicked);
     //
     // navBarItemTimeUsers
     //
     this.navBarItemTimeUsers.Caption = "المستخدمين";
     this.navBarItemTimeUsers.LargeImageIndex = 1;
     this.navBarItemTimeUsers.Name = "navBarItemTimeUsers";
     this.navBarItemTimeUsers.SmallImageIndex = 1;
     this.navBarItemTimeUsers.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemUsers_LinkClicked);
     //
     // navBarItemTimeUserRoles
     //
     this.navBarItemTimeUserRoles.Caption = "صلاحيات المستخدمين";
     this.navBarItemTimeUserRoles.LargeImageIndex = 2;
     this.navBarItemTimeUserRoles.Name = "navBarItemTimeUserRoles";
     this.navBarItemTimeUserRoles.SmallImageIndex = 2;
     this.navBarItemTimeUserRoles.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemUserRoles_LinkClicked);
     //
     // navBarItemTimeAppOptions
     //
     this.navBarItemTimeAppOptions.Caption = "خيارات البرنامج";
     this.navBarItemTimeAppOptions.LargeImageIndex = 6;
     this.navBarItemTimeAppOptions.Name = "navBarItemTimeAppOptions";
     this.navBarItemTimeAppOptions.SmallImageIndex = 6;
     this.navBarItemTimeAppOptions.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemAppOptions_LinkClicked);
     //
     // imageCollection32
     //
     this.imageCollection32.ImageSize = new System.Drawing.Size(32, 32);
     this.imageCollection32.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imageCollection32.ImageStream")));
     this.imageCollection32.Images.SetKeyName(0, "Roles.png");
     this.imageCollection32.Images.SetKeyName(1, "Users.png");
     this.imageCollection32.Images.SetKeyName(2, "UserRoles.png");
     this.imageCollection32.Images.SetKeyName(3, "RoleDetial.png");
     this.imageCollection32.Images.SetKeyName(4, "Reports.png");
     this.imageCollection32.Images.SetKeyName(5, "DeployRpt.png");
     this.imageCollection32.Images.SetKeyName(6, "AppOptions.png");
     //
     // panelContainer1
     //
     this.panelContainer1.ActiveChild = this.DPCode;
     this.panelContainer1.Appearance.Options.UseTextOptions = true;
     this.panelContainer1.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.NoWrap;
     this.panelContainer1.Controls.Add(this.DPCode);
     this.panelContainer1.Controls.Add(this.DPData);
     this.panelContainer1.Dock = DevExpress.XtraBars.Docking.DockingStyle.Left;
     this.panelContainer1.FloatVertical = true;
     this.panelContainer1.ID = new System.Guid("f4ff1062-9a77-404f-9187-cec889fb9ba4");
     this.panelContainer1.Location = new System.Drawing.Point(0, 24);
     this.panelContainer1.Name = "panelContainer1";
     this.panelContainer1.OriginalSize = new System.Drawing.Size(200, 200);
     this.panelContainer1.Size = new System.Drawing.Size(200, 479);
     this.panelContainer1.Tabbed = true;
     this.panelContainer1.TabsScroll = true;
     this.panelContainer1.Text = "panelContainer1";
     //
     // DPData
     //
     this.DPData.Controls.Add(this.controlContainer1);
     this.DPData.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.DPData.ID = new System.Guid("5a92e67b-e3d2-4e9c-a354-47ff59337c78");
     this.DPData.Location = new System.Drawing.Point(4, 23);
     this.DPData.Name = "DPData";
     this.DPData.OriginalSize = new System.Drawing.Size(192, 561);
     this.DPData.Size = new System.Drawing.Size(192, 425);
     this.DPData.TabStop = false;
     this.DPData.TabText = "ادخال البيانات";
     this.DPData.Text = "ادخال البيانات";
     //
     // controlContainer1
     //
     this.controlContainer1.Controls.Add(this.navBarControlData);
     this.controlContainer1.Location = new System.Drawing.Point(0, 0);
     this.controlContainer1.Name = "controlContainer1";
     this.controlContainer1.Size = new System.Drawing.Size(192, 425);
     this.controlContainer1.TabIndex = 0;
     //
     // navBarControlData
     //
     this.navBarControlData.ActiveGroup = this.navBarGroup2;
     this.navBarControlData.Dock = System.Windows.Forms.DockStyle.Fill;
     this.navBarControlData.ExplorerBarShowGroupButtons = false;
     this.navBarControlData.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
     this.navBarGroup2});
     this.navBarControlData.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
     this.navBarItemServiceQueryTBLWared});
     this.navBarControlData.LargeImages = this.imageCollection32;
     this.navBarControlData.Location = new System.Drawing.Point(0, 0);
     this.navBarControlData.Name = "navBarControlData";
     this.navBarControlData.OptionsNavPane.ExpandedWidth = 192;
     this.navBarControlData.Size = new System.Drawing.Size(192, 425);
     this.navBarControlData.SmallImages = this.imageCollection32;
     this.navBarControlData.StoreDefaultPaintStyleName = true;
     this.navBarControlData.TabIndex = 9;
     this.navBarControlData.Text = "navBarControl1";
     //
     // navBarGroup2
     //
     this.navBarGroup2.Caption = "";
     this.navBarGroup2.Expanded = true;
     this.navBarGroup2.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemServiceQueryTBLWared)});
     this.navBarGroup2.LargeImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup2.LargeImage")));
     this.navBarGroup2.Name = "navBarGroup2";
     this.navBarGroup2.NavigationPaneVisible = false;
     this.navBarGroup2.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup2.SmallImage")));
     //
     // navBarItemServiceQueryTBLWared
     //
     this.navBarItemServiceQueryTBLWared.Caption = "الوارد";
     this.navBarItemServiceQueryTBLWared.LargeImageIndex = 23;
     this.navBarItemServiceQueryTBLWared.Name = "navBarItemServiceQueryTBLWared";
     this.navBarItemServiceQueryTBLWared.SmallImageIndex = 23;
     this.navBarItemServiceQueryTBLWared.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemServiceQueryTBLWared_LinkClicked);
     //
     // DPCode
     //
     this.DPCode.Controls.Add(this.dockPanel1_Container);
     this.DPCode.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.DPCode.ID = new System.Guid("1cfd6550-8070-4cff-ad59-cba8d2680fa9");
     this.DPCode.Location = new System.Drawing.Point(4, 23);
     this.DPCode.Name = "DPCode";
     this.DPCode.OriginalSize = new System.Drawing.Size(192, 561);
     this.DPCode.Size = new System.Drawing.Size(192, 425);
     this.DPCode.TabsScroll = true;
     this.DPCode.TabText = "الاكواد";
     this.DPCode.Text = "الاكواد";
     //
     // dockPanel1_Container
     //
     this.dockPanel1_Container.Controls.Add(this.navBarControlCode);
     this.dockPanel1_Container.Location = new System.Drawing.Point(0, 0);
     this.dockPanel1_Container.Name = "dockPanel1_Container";
     this.dockPanel1_Container.Size = new System.Drawing.Size(192, 425);
     this.dockPanel1_Container.TabIndex = 0;
     //
     // navBarControlCode
     //
     this.navBarControlCode.ActiveGroup = this.navBarGroup1;
     this.navBarControlCode.Dock = System.Windows.Forms.DockStyle.Fill;
     this.navBarControlCode.ExplorerBarShowGroupButtons = false;
     this.navBarControlCode.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
     this.navBarGroup1});
     this.navBarControlCode.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
     this.navBarItemServiceQueryCDEdara,
     this.navBarItemServiceQueryCDserviceType,
     this.navBarItemServiceQueryCDReply,
     this.navBarItemServiceQueryCDSyndicate,
     this.navBarItemServiceQueryCDSubCommitte,
     this.navBarItemServiceQueryCDAttatech});
     this.navBarControlCode.LargeImages = this.imageCollection32;
     this.navBarControlCode.Location = new System.Drawing.Point(0, 0);
     this.navBarControlCode.Name = "navBarControlCode";
     this.navBarControlCode.OptionsNavPane.ExpandedWidth = 192;
     this.navBarControlCode.Size = new System.Drawing.Size(192, 425);
     this.navBarControlCode.SmallImages = this.imageCollection32;
     this.navBarControlCode.StoreDefaultPaintStyleName = true;
     this.navBarControlCode.TabIndex = 8;
     //
     // navBarGroup1
     //
     this.navBarGroup1.Caption = "";
     this.navBarGroup1.Expanded = true;
     this.navBarGroup1.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemServiceQueryCDEdara),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemServiceQueryCDserviceType),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemServiceQueryCDReply),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemServiceQueryCDSyndicate),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemServiceQueryCDSubCommitte),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemServiceQueryCDAttatech)});
     this.navBarGroup1.LargeImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup1.LargeImage")));
     this.navBarGroup1.Name = "navBarGroup1";
     this.navBarGroup1.NavigationPaneVisible = false;
     this.navBarGroup1.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup1.SmallImage")));
     //
     // navBarItemServiceQueryCDEdara
     //
     this.navBarItemServiceQueryCDEdara.Caption = "الادارات";
     this.navBarItemServiceQueryCDEdara.LargeImageIndex = 7;
     this.navBarItemServiceQueryCDEdara.Name = "navBarItemServiceQueryCDEdara";
     this.navBarItemServiceQueryCDEdara.SmallImageIndex = 7;
     this.navBarItemServiceQueryCDEdara.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemServiceQueryCDEdara_LinkClicked);
     //
     // navBarItemServiceQueryCDserviceType
     //
     this.navBarItemServiceQueryCDserviceType.Caption = "انواع الخدمات";
     this.navBarItemServiceQueryCDserviceType.LargeImageIndex = 8;
     this.navBarItemServiceQueryCDserviceType.Name = "navBarItemServiceQueryCDserviceType";
     this.navBarItemServiceQueryCDserviceType.SmallImageIndex = 8;
     this.navBarItemServiceQueryCDserviceType.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemServiceQueryCDserviceType_LinkClicked);
     //
     // navBarItemServiceQueryCDReply
     //
     this.navBarItemServiceQueryCDReply.Caption = "الرد";
     this.navBarItemServiceQueryCDReply.LargeImageIndex = 9;
     this.navBarItemServiceQueryCDReply.Name = "navBarItemServiceQueryCDReply";
     this.navBarItemServiceQueryCDReply.SmallImageIndex = 9;
     this.navBarItemServiceQueryCDReply.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemServiceQueryCDReply_LinkClicked);
     //
     // navBarItemServiceQueryCDSyndicate
     //
     this.navBarItemServiceQueryCDSyndicate.Caption = "النقابات الفرعية";
     this.navBarItemServiceQueryCDSyndicate.LargeImageIndex = 10;
     this.navBarItemServiceQueryCDSyndicate.Name = "navBarItemServiceQueryCDSyndicate";
     this.navBarItemServiceQueryCDSyndicate.SmallImageIndex = 10;
     this.navBarItemServiceQueryCDSyndicate.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemServiceQueryCDSyndicate_LinkClicked);
     //
     // navBarItemServiceQueryCDSubCommitte
     //
     this.navBarItemServiceQueryCDSubCommitte.Caption = "اللجان النقابية";
     this.navBarItemServiceQueryCDSubCommitte.Name = "navBarItemServiceQueryCDSubCommitte";
     this.navBarItemServiceQueryCDSubCommitte.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemServiceQueryCDSubCommitte_LinkClicked);
     //
     // navBarItemServiceQueryCDAttatech
     //
     this.navBarItemServiceQueryCDAttatech.Caption = "المرفقات";
     this.navBarItemServiceQueryCDAttatech.Name = "navBarItemServiceQueryCDAttatech";
     this.navBarItemServiceQueryCDAttatech.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemServiceQueryCDAttatech_LinkClicked);
     //
     // DPQuery
     //
     this.DPQuery.Controls.Add(this.controlContainer2);
     this.DPQuery.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.DPQuery.ID = new System.Guid("d8711011-1b74-442f-bb9b-8102c8bf9f50");
     this.DPQuery.Location = new System.Drawing.Point(4, 23);
     this.DPQuery.Name = "DPQuery";
     this.DPQuery.OriginalSize = new System.Drawing.Size(192, 451);
     this.DPQuery.SavedDock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.DPQuery.SavedIndex = 0;
     this.DPQuery.SavedParent = this.DPReport;
     this.DPQuery.SavedTabbed = true;
     this.DPQuery.Size = new System.Drawing.Size(192, 561);
     this.DPQuery.TabsScroll = true;
     this.DPQuery.Text = "استعلامات";
     this.DPQuery.Visibility = DevExpress.XtraBars.Docking.DockVisibility.Hidden;
     //
     // controlContainer2
     //
     this.controlContainer2.Controls.Add(this.navBarControlQry);
     this.controlContainer2.Location = new System.Drawing.Point(0, 0);
     this.controlContainer2.Name = "controlContainer2";
     this.controlContainer2.Size = new System.Drawing.Size(192, 561);
     this.controlContainer2.TabIndex = 0;
     //
     // navBarControlQry
     //
     this.navBarControlQry.ActiveGroup = this.navBarGroup5;
     this.navBarControlQry.Dock = System.Windows.Forms.DockStyle.Fill;
     this.navBarControlQry.ExplorerBarShowGroupButtons = false;
     this.navBarControlQry.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
     this.navBarGroup5});
     this.navBarControlQry.LargeImages = this.imageCollection32;
     this.navBarControlQry.Location = new System.Drawing.Point(0, 0);
     this.navBarControlQry.Name = "navBarControlQry";
     this.navBarControlQry.OptionsNavPane.ExpandedWidth = 192;
     this.navBarControlQry.Size = new System.Drawing.Size(192, 561);
     this.navBarControlQry.SmallImages = this.imageCollection32;
     this.navBarControlQry.StoreDefaultPaintStyleName = true;
     this.navBarControlQry.TabIndex = 9;
     this.navBarControlQry.Text = "navBarControl1";
     this.navBarControlQry.Visible = false;
     //
     // navBarGroup5
     //
     this.navBarGroup5.Caption = "";
     this.navBarGroup5.Expanded = true;
     this.navBarGroup5.LargeImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup5.LargeImage")));
     this.navBarGroup5.Name = "navBarGroup5";
     this.navBarGroup5.NavigationPaneVisible = false;
     this.navBarGroup5.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup5.SmallImage")));
     //
     // DPReport
     //
     this.DPReport.Controls.Add(this.controlContainer3);
     this.DPReport.Dock = DevExpress.XtraBars.Docking.DockingStyle.Right;
     this.DPReport.ID = new System.Guid("f2617492-8043-4778-ba8c-8e62a8a6d465");
     this.DPReport.Location = new System.Drawing.Point(784, 24);
     this.DPReport.Name = "DPReport";
     this.DPReport.OriginalSize = new System.Drawing.Size(200, 200);
     this.DPReport.SavedDock = DevExpress.XtraBars.Docking.DockingStyle.Right;
     this.DPReport.SavedIndex = 1;
     this.DPReport.Size = new System.Drawing.Size(200, 615);
     this.DPReport.TabsScroll = true;
     this.DPReport.TabText = "تقارير";
     this.DPReport.Text = "تقارير";
     this.DPReport.Visibility = DevExpress.XtraBars.Docking.DockVisibility.Hidden;
     //
     // controlContainer3
     //
     this.controlContainer3.Controls.Add(this.navBarControlReport);
     this.controlContainer3.Location = new System.Drawing.Point(4, 23);
     this.controlContainer3.Name = "controlContainer3";
     this.controlContainer3.Size = new System.Drawing.Size(192, 588);
     this.controlContainer3.TabIndex = 0;
     //
     // navBarControlReport
     //
     this.navBarControlReport.ActiveGroup = this.navBarGroup6;
     this.navBarControlReport.Dock = System.Windows.Forms.DockStyle.Fill;
     this.navBarControlReport.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
     this.navBarGroup6,
     this.navBarGroup4,
     this.navBarGroup7,
     this.navBarGroup8,
     this.navBarGroup9});
     this.navBarControlReport.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
     this.navBarItemTimeDeployRpt});
     this.navBarControlReport.LargeImages = this.imageCollection32;
     this.navBarControlReport.Location = new System.Drawing.Point(0, 0);
     this.navBarControlReport.Name = "navBarControlReport";
     this.navBarControlReport.OptionsNavPane.ExpandedWidth = 192;
     this.navBarControlReport.Size = new System.Drawing.Size(192, 588);
     this.navBarControlReport.SmallImages = this.imageCollection32;
     this.navBarControlReport.TabIndex = 9;
     this.navBarControlReport.Text = "navBarControl1";
     this.navBarControlReport.View = new DevExpress.XtraNavBar.ViewInfo.StandardSkinExplorerBarViewInfoRegistrator("DevExpress Style");
     this.navBarControlReport.Visible = false;
     //
     // navBarGroup6
     //
     this.navBarGroup6.Caption = "تنصيب التقارير";
     this.navBarGroup6.Expanded = true;
     this.navBarGroup6.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemTimeDeployRpt)});
     this.navBarGroup6.Name = "navBarGroup6";
     //
     // navBarItemTimeDeployRpt
     //
     this.navBarItemTimeDeployRpt.Caption = "تنصيب التقارير";
     this.navBarItemTimeDeployRpt.LargeImageIndex = 5;
     this.navBarItemTimeDeployRpt.Name = "navBarItemTimeDeployRpt";
     this.navBarItemTimeDeployRpt.SmallImageIndex = 5;
     this.navBarItemTimeDeployRpt.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemDeployRpt_LinkClicked);
     //
     // navBarGroup4
     //
     this.navBarGroup4.Caption = "تقارير 1";
     this.navBarGroup4.LargeImage = global::ServiceQuery.Properties.Resources.Print;
     this.navBarGroup4.Name = "navBarGroup4";
     this.navBarGroup4.NavigationPaneVisible = false;
     this.navBarGroup4.SmallImage = global::ServiceQuery.Properties.Resources.Print;
     //
     // navBarGroup7
     //
     this.navBarGroup7.Caption = "تقارير 2";
     this.navBarGroup7.LargeImage = global::ServiceQuery.Properties.Resources.Print;
     this.navBarGroup7.Name = "navBarGroup7";
     this.navBarGroup7.SmallImage = global::ServiceQuery.Properties.Resources.Print;
     //
     // navBarGroup8
     //
     this.navBarGroup8.Caption = "تقارير 3";
     this.navBarGroup8.LargeImage = global::ServiceQuery.Properties.Resources.Print;
     this.navBarGroup8.Name = "navBarGroup8";
     this.navBarGroup8.SmallImage = global::ServiceQuery.Properties.Resources.Print;
     //
     // navBarGroup9
     //
     this.navBarGroup9.Caption = "تقارير 4";
     this.navBarGroup9.LargeImage = global::ServiceQuery.Properties.Resources.Print;
     this.navBarGroup9.Name = "navBarGroup9";
     this.navBarGroup9.SmallImage = global::ServiceQuery.Properties.Resources.Print;
     //
     // barEditItem1
     //
     this.barEditItem1.Edit = null;
     this.barEditItem1.Id = 17;
     this.barEditItem1.Name = "barEditItem1";
     //
     // repositoryItemComboBoxSkins
     //
     this.repositoryItemComboBoxSkins.AutoHeight = false;
     this.repositoryItemComboBoxSkins.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemComboBoxSkins.Name = "repositoryItemComboBoxSkins";
     //
     // repositoryItemLookUpEditasase_code
     //
     this.repositoryItemLookUpEditasase_code.Appearance.Options.UseTextOptions = true;
     this.repositoryItemLookUpEditasase_code.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.repositoryItemLookUpEditasase_code.AutoHeight = false;
     this.repositoryItemLookUpEditasase_code.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.OK)});
     this.repositoryItemLookUpEditasase_code.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("asase_year", "العام الدراسي", 50, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Center),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("SCHOOL", "اسم المدرسه", 50, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Center)});
     this.repositoryItemLookUpEditasase_code.DisplayMember = "asase_year";
     this.repositoryItemLookUpEditasase_code.DropDownRows = 10;
     this.repositoryItemLookUpEditasase_code.Name = "repositoryItemLookUpEditasase_code";
     this.repositoryItemLookUpEditasase_code.NullText = "اختار عام دراسي";
     this.repositoryItemLookUpEditasase_code.NullValuePrompt = "اختار عام دراسي";
     this.repositoryItemLookUpEditasase_code.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemLookUpEditasase_code.UseParentBackground = true;
     this.repositoryItemLookUpEditasase_code.ValueMember = "asase_code";
     //
     // MainFrm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(984, 662);
     this.Controls.Add(this.panelContainer1);
     this.Controls.Add(this.DPResult);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.IsMdiContainer = true;
     this.Name = "MainFrm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Service Query";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainFrm_FormClosing);
     this.Load += new System.EventHandler(this.MainFrm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.barManagerMain)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManagerMain)).EndInit();
     this.DPSkins.ResumeLayout(false);
     this.controlContainer6.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.galleryControlSkins)).EndInit();
     this.galleryControlSkins.ResumeLayout(false);
     this.DPResult.ResumeLayout(false);
     this.controlContainer5.ResumeLayout(false);
     this.DPPriv.ResumeLayout(false);
     this.controlContainer4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlPriv)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection32)).EndInit();
     this.panelContainer1.ResumeLayout(false);
     this.DPData.ResumeLayout(false);
     this.controlContainer1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlData)).EndInit();
     this.DPCode.ResumeLayout(false);
     this.dockPanel1_Container.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlCode)).EndInit();
     this.DPQuery.ResumeLayout(false);
     this.controlContainer2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlQry)).EndInit();
     this.DPReport.ResumeLayout(false);
     this.controlContainer3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlReport)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBoxSkins)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditasase_code)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RoleDetialFrm));
     this.groupControlSelect = new DevExpress.XtraEditors.GroupControl();
     this.LUEItems = new DevExpress.XtraEditors.LookUpEdit();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.dockManagerMain = new DevExpress.XtraBars.Docking.DockManager(this.components);
     this.pnlContainerMain = new DevExpress.XtraBars.Docking.DockPanel();
     this.DPCode = new DevExpress.XtraBars.Docking.DockPanel();
     this.dockPanel1_Container = new DevExpress.XtraBars.Docking.ControlContainer();
     this.navBarControlCode = new DevExpress.XtraNavBar.NavBarControl();
     this.navBarGroup1 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarItemStuCDMarahel = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemStuCDAlsofof = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemStuCDEFasl = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemStuCDAlokobat = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemStuCDColekeyat = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemStuCDDyana = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemStucdEyab_code = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemStuCDGov = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemStuCDHaletalked = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemStuCDHealth_office = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemStuCDJop = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemStuCDLogatcode = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemStuCDEltataem_code = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemStuCDGamaat_alnashat = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemStuCDMantaka = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemStuCDMarakez = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemStuCDMawad = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemStuCDnationalty = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemStuCDQualification = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemStuCDEqamaType = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemStuCDSaltalkaraba = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemStuCDRelativeCode = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemStuCDTakasosat = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemStuCDAlanshata = new DevExpress.XtraNavBar.NavBarItem();
     this.imageCollection32 = new DevExpress.Utils.ImageCollection(this.components);
     this.DPData = new DevExpress.XtraBars.Docking.DockPanel();
     this.dockPanel2_Container = new DevExpress.XtraBars.Docking.ControlContainer();
     this.navBarControlData = new DevExpress.XtraNavBar.NavBarControl();
     this.navBarGroup2 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarItemStuCD_Asase = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemStustudent_t = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemStustu_haletalked = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemStustu_logatcode = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemStustu_colekeyat = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemStustu_alokobat = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemStustu_almawaheb = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemStustu_eyab = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemStuTBLstudent = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemStustu_ezn = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemStustu_takasosat = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemStustu_fatherCall = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemStustu_gamaat_alnashat = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemStustu_nashat = new DevExpress.XtraNavBar.NavBarItem();
     this.DPPriv = new DevExpress.XtraBars.Docking.DockPanel();
     this.dockPanel3_Container = new DevExpress.XtraBars.Docking.ControlContainer();
     this.navBarControlPriv = new DevExpress.XtraNavBar.NavBarControl();
     this.navBarGroup3 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarItemStuRoles = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemStuRoleDetial = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemStuUsers = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemStuUserRoles = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemStuAppOptions = new DevExpress.XtraNavBar.NavBarItem();
     this.DPQuery = new DevExpress.XtraBars.Docking.DockPanel();
     this.dockPanel4_Container = new DevExpress.XtraBars.Docking.ControlContainer();
     this.navBarControlQry = new DevExpress.XtraNavBar.NavBarControl();
     this.navBarGroup5 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarItemStuQryStudentContacts = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemStuQryStudentInfo = new DevExpress.XtraNavBar.NavBarItem();
     this.DPReport = new DevExpress.XtraBars.Docking.DockPanel();
     this.dockPanel5_Container = new DevExpress.XtraBars.Docking.ControlContainer();
     this.navBarControlReport = new DevExpress.XtraNavBar.NavBarControl();
     this.navBarGroup6 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarItemStuDeployRpt = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarGroup4 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarGroup7 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarGroup8 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarGroup9 = new DevExpress.XtraNavBar.NavBarGroup();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.CEUpdate = new DevExpress.XtraEditors.CheckEdit();
     this.CESelect = new DevExpress.XtraEditors.CheckEdit();
     this.CEDelete = new DevExpress.XtraEditors.CheckEdit();
     this.CEInsert = new DevExpress.XtraEditors.CheckEdit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlSelect)).BeginInit();
     this.groupControlSelect.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LUEItems.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManagerMain)).BeginInit();
     this.pnlContainerMain.SuspendLayout();
     this.DPCode.SuspendLayout();
     this.dockPanel1_Container.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlCode)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection32)).BeginInit();
     this.DPData.SuspendLayout();
     this.dockPanel2_Container.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlData)).BeginInit();
     this.DPPriv.SuspendLayout();
     this.dockPanel3_Container.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlPriv)).BeginInit();
     this.DPQuery.SuspendLayout();
     this.dockPanel4_Container.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlQry)).BeginInit();
     this.DPReport.SuspendLayout();
     this.dockPanel5_Container.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlReport)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.CEUpdate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.CESelect.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.CEDelete.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.CEInsert.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // groupControlSelect
     //
     this.groupControlSelect.AppearanceCaption.Options.UseTextOptions = true;
     this.groupControlSelect.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.groupControlSelect.Controls.Add(this.LUEItems);
     this.groupControlSelect.Controls.Add(this.labelControl1);
     this.groupControlSelect.Dock = System.Windows.Forms.DockStyle.Top;
     this.groupControlSelect.Location = new System.Drawing.Point(0, 0);
     this.groupControlSelect.Name = "groupControlSelect";
     this.groupControlSelect.Size = new System.Drawing.Size(334, 59);
     this.groupControlSelect.TabIndex = 2;
     this.groupControlSelect.Text = "جميع السماحيات";
     //
     // LUEItems
     //
     this.LUEItems.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.LUEItems.Location = new System.Drawing.Point(61, 28);
     this.LUEItems.Name = "LUEItems";
     this.LUEItems.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LUEItems.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("RoleName", "اسم السماحيه", 20, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Center),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("RoleDesc", "تعليق", 20, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Center)});
     this.LUEItems.Properties.NullText = "";
     this.LUEItems.Size = new System.Drawing.Size(147, 20);
     this.LUEItems.TabIndex = 0;
     this.LUEItems.EditValueChanged += new System.EventHandler(this.LUEItems_EditValueChanged);
     //
     // labelControl1
     //
     this.labelControl1.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl1.Location = new System.Drawing.Point(214, 31);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(60, 13);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "اختر سماحيه";
     //
     // dockManagerMain
     //
     this.dockManagerMain.DockingOptions.ShowCaptionImage = true;
     this.dockManagerMain.DockMode = DevExpress.XtraBars.Docking.Helpers.DockMode.Standard;
     this.dockManagerMain.Form = this;
     this.dockManagerMain.RootPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
     this.pnlContainerMain});
     this.dockManagerMain.TopZIndexControls.AddRange(new string[] {
     "DevExpress.XtraBars.BarDockControl",
     "DevExpress.XtraBars.StandaloneBarDockControl",
     "System.Windows.Forms.StatusBar",
     "DevExpress.XtraBars.Ribbon.RibbonStatusBar",
     "DevExpress.XtraBars.Ribbon.RibbonControl"});
     //
     // pnlContainerMain
     //
     this.pnlContainerMain.ActiveChild = this.DPCode;
     this.pnlContainerMain.Controls.Add(this.DPCode);
     this.pnlContainerMain.Controls.Add(this.DPData);
     this.pnlContainerMain.Controls.Add(this.DPPriv);
     this.pnlContainerMain.Controls.Add(this.DPQuery);
     this.pnlContainerMain.Controls.Add(this.DPReport);
     this.pnlContainerMain.Dock = DevExpress.XtraBars.Docking.DockingStyle.Bottom;
     this.pnlContainerMain.FloatSize = new System.Drawing.Size(336, 404);
     this.pnlContainerMain.FloatVertical = true;
     this.pnlContainerMain.ID = new System.Guid("a1818170-f437-4f2f-b8be-29961c00921c");
     this.pnlContainerMain.Location = new System.Drawing.Point(0, 142);
     this.pnlContainerMain.Name = "pnlContainerMain";
     this.pnlContainerMain.OriginalSize = new System.Drawing.Size(200, 470);
     this.pnlContainerMain.Size = new System.Drawing.Size(334, 470);
     this.pnlContainerMain.Tabbed = true;
     this.pnlContainerMain.Text = "panelContainer1";
     //
     // DPCode
     //
     this.DPCode.Controls.Add(this.dockPanel1_Container);
     this.DPCode.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.DPCode.FloatSize = new System.Drawing.Size(336, 404);
     this.DPCode.FloatVertical = true;
     this.DPCode.ID = new System.Guid("5caa9054-017c-40dd-8832-9c116b8b0c2e");
     this.DPCode.Location = new System.Drawing.Point(4, 23);
     this.DPCode.Name = "DPCode";
     this.DPCode.OriginalSize = new System.Drawing.Size(200, 200);
     this.DPCode.Size = new System.Drawing.Size(326, 416);
     this.DPCode.Text = "الاكواد";
     //
     // dockPanel1_Container
     //
     this.dockPanel1_Container.Controls.Add(this.navBarControlCode);
     this.dockPanel1_Container.Location = new System.Drawing.Point(0, 0);
     this.dockPanel1_Container.Name = "dockPanel1_Container";
     this.dockPanel1_Container.Size = new System.Drawing.Size(326, 416);
     this.dockPanel1_Container.TabIndex = 0;
     //
     // navBarControlCode
     //
     this.navBarControlCode.ActiveGroup = this.navBarGroup1;
     this.navBarControlCode.Dock = System.Windows.Forms.DockStyle.Fill;
     this.navBarControlCode.ExplorerBarShowGroupButtons = false;
     this.navBarControlCode.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
     this.navBarGroup1});
     this.navBarControlCode.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
     this.navBarItemStuCDMarahel,
     this.navBarItemStuCDAlsofof,
     this.navBarItemStuCDEFasl,
     this.navBarItemStuCDAlokobat,
     this.navBarItemStuCDColekeyat,
     this.navBarItemStuCDDyana,
     this.navBarItemStucdEyab_code,
     this.navBarItemStuCDGov,
     this.navBarItemStuCDHaletalked,
     this.navBarItemStuCDHealth_office,
     this.navBarItemStuCDJop,
     this.navBarItemStuCDLogatcode,
     this.navBarItemStuCDEltataem_code,
     this.navBarItemStuCDGamaat_alnashat,
     this.navBarItemStuCDMantaka,
     this.navBarItemStuCDMarakez,
     this.navBarItemStuCDMawad,
     this.navBarItemStuCDnationalty,
     this.navBarItemStuCDQualification,
     this.navBarItemStuCDEqamaType,
     this.navBarItemStuCDSaltalkaraba,
     this.navBarItemStuCDRelativeCode,
     this.navBarItemStuCDTakasosat,
     this.navBarItemStuCDAlanshata});
     this.navBarControlCode.Location = new System.Drawing.Point(0, 0);
     this.navBarControlCode.Name = "navBarControlCode";
     this.navBarControlCode.OptionsNavPane.ExpandedWidth = 192;
     this.navBarControlCode.Size = new System.Drawing.Size(326, 416);
     this.navBarControlCode.SmallImages = this.imageCollection32;
     this.navBarControlCode.StoreDefaultPaintStyleName = true;
     this.navBarControlCode.TabIndex = 10;
     //
     // navBarGroup1
     //
     this.navBarGroup1.Caption = "";
     this.navBarGroup1.Expanded = true;
     this.navBarGroup1.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemStuCDMarahel),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemStuCDAlsofof),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemStuCDEFasl),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemStuCDAlokobat),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemStuCDColekeyat),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemStuCDDyana),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemStucdEyab_code),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemStuCDGov),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemStuCDHaletalked),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemStuCDHealth_office),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemStuCDJop),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemStuCDLogatcode),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemStuCDEltataem_code),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemStuCDGamaat_alnashat),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemStuCDMantaka),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemStuCDMarakez),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemStuCDMawad),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemStuCDnationalty),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemStuCDQualification),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemStuCDEqamaType),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemStuCDSaltalkaraba),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemStuCDRelativeCode),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemStuCDTakasosat),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemStuCDAlanshata)});
     this.navBarGroup1.LargeImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup1.LargeImage")));
     this.navBarGroup1.Name = "navBarGroup1";
     this.navBarGroup1.NavigationPaneVisible = false;
     this.navBarGroup1.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup1.SmallImage")));
     //
     // navBarItemStuCDMarahel
     //
     this.navBarItemStuCDMarahel.Caption = "المراحل";
     this.navBarItemStuCDMarahel.LargeImageIndex = 0;
     this.navBarItemStuCDMarahel.Name = "navBarItemStuCDMarahel";
     this.navBarItemStuCDMarahel.SmallImageIndex = 0;
     this.navBarItemStuCDMarahel.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemStuCDAlsofof
     //
     this.navBarItemStuCDAlsofof.Caption = "الصفوف";
     this.navBarItemStuCDAlsofof.LargeImageIndex = 1;
     this.navBarItemStuCDAlsofof.Name = "navBarItemStuCDAlsofof";
     this.navBarItemStuCDAlsofof.SmallImageIndex = 1;
     this.navBarItemStuCDAlsofof.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemStuCDEFasl
     //
     this.navBarItemStuCDEFasl.Caption = "الفصول";
     this.navBarItemStuCDEFasl.LargeImageIndex = 2;
     this.navBarItemStuCDEFasl.Name = "navBarItemStuCDEFasl";
     this.navBarItemStuCDEFasl.SmallImageIndex = 2;
     this.navBarItemStuCDEFasl.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemStuCDAlokobat
     //
     this.navBarItemStuCDAlokobat.Caption = "العقوبات";
     this.navBarItemStuCDAlokobat.LargeImageIndex = 3;
     this.navBarItemStuCDAlokobat.Name = "navBarItemStuCDAlokobat";
     this.navBarItemStuCDAlokobat.SmallImageIndex = 3;
     this.navBarItemStuCDAlokobat.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemStuCDColekeyat
     //
     this.navBarItemStuCDColekeyat.Caption = "سلوكيات";
     this.navBarItemStuCDColekeyat.LargeImageIndex = 4;
     this.navBarItemStuCDColekeyat.Name = "navBarItemStuCDColekeyat";
     this.navBarItemStuCDColekeyat.SmallImageIndex = 4;
     this.navBarItemStuCDColekeyat.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemStuCDDyana
     //
     this.navBarItemStuCDDyana.Caption = "الديانه";
     this.navBarItemStuCDDyana.LargeImageIndex = 5;
     this.navBarItemStuCDDyana.Name = "navBarItemStuCDDyana";
     this.navBarItemStuCDDyana.SmallImageIndex = 5;
     this.navBarItemStuCDDyana.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemStucdEyab_code
     //
     this.navBarItemStucdEyab_code.Caption = "انواع الغياب";
     this.navBarItemStucdEyab_code.LargeImageIndex = 6;
     this.navBarItemStucdEyab_code.Name = "navBarItemStucdEyab_code";
     this.navBarItemStucdEyab_code.SmallImageIndex = 6;
     this.navBarItemStucdEyab_code.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemStuCDGov
     //
     this.navBarItemStuCDGov.Caption = "المحافظات";
     this.navBarItemStuCDGov.LargeImageIndex = 7;
     this.navBarItemStuCDGov.Name = "navBarItemStuCDGov";
     this.navBarItemStuCDGov.SmallImageIndex = 7;
     this.navBarItemStuCDGov.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemStuCDHaletalked
     //
     this.navBarItemStuCDHaletalked.Caption = "القيد";
     this.navBarItemStuCDHaletalked.LargeImageIndex = 8;
     this.navBarItemStuCDHaletalked.Name = "navBarItemStuCDHaletalked";
     this.navBarItemStuCDHaletalked.SmallImageIndex = 8;
     this.navBarItemStuCDHaletalked.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemStuCDHealth_office
     //
     this.navBarItemStuCDHealth_office.Caption = "مكاتب الصحه";
     this.navBarItemStuCDHealth_office.LargeImageIndex = 9;
     this.navBarItemStuCDHealth_office.Name = "navBarItemStuCDHealth_office";
     this.navBarItemStuCDHealth_office.SmallImageIndex = 9;
     this.navBarItemStuCDHealth_office.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemStuCDJop
     //
     this.navBarItemStuCDJop.Caption = "الوظائف";
     this.navBarItemStuCDJop.LargeImageIndex = 10;
     this.navBarItemStuCDJop.Name = "navBarItemStuCDJop";
     this.navBarItemStuCDJop.SmallImageIndex = 10;
     this.navBarItemStuCDJop.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemStuCDLogatcode
     //
     this.navBarItemStuCDLogatcode.Caption = "اللغات";
     this.navBarItemStuCDLogatcode.LargeImageIndex = 11;
     this.navBarItemStuCDLogatcode.Name = "navBarItemStuCDLogatcode";
     this.navBarItemStuCDLogatcode.SmallImageIndex = 11;
     this.navBarItemStuCDLogatcode.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemStuCDEltataem_code
     //
     this.navBarItemStuCDEltataem_code.Caption = "التطعيمات";
     this.navBarItemStuCDEltataem_code.LargeImageIndex = 12;
     this.navBarItemStuCDEltataem_code.Name = "navBarItemStuCDEltataem_code";
     this.navBarItemStuCDEltataem_code.SmallImageIndex = 12;
     this.navBarItemStuCDEltataem_code.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemStuCDGamaat_alnashat
     //
     this.navBarItemStuCDGamaat_alnashat.Caption = "الجماعات";
     this.navBarItemStuCDGamaat_alnashat.LargeImageIndex = 13;
     this.navBarItemStuCDGamaat_alnashat.Name = "navBarItemStuCDGamaat_alnashat";
     this.navBarItemStuCDGamaat_alnashat.SmallImageIndex = 13;
     this.navBarItemStuCDGamaat_alnashat.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemStuCDMantaka
     //
     this.navBarItemStuCDMantaka.Caption = "المناطق";
     this.navBarItemStuCDMantaka.LargeImageIndex = 14;
     this.navBarItemStuCDMantaka.Name = "navBarItemStuCDMantaka";
     this.navBarItemStuCDMantaka.SmallImageIndex = 14;
     this.navBarItemStuCDMantaka.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemStuCDMarakez
     //
     this.navBarItemStuCDMarakez.Caption = "المراكز";
     this.navBarItemStuCDMarakez.LargeImageIndex = 15;
     this.navBarItemStuCDMarakez.Name = "navBarItemStuCDMarakez";
     this.navBarItemStuCDMarakez.SmallImageIndex = 15;
     this.navBarItemStuCDMarakez.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemStuCDMawad
     //
     this.navBarItemStuCDMawad.Caption = "المواد";
     this.navBarItemStuCDMawad.LargeImageIndex = 16;
     this.navBarItemStuCDMawad.Name = "navBarItemStuCDMawad";
     this.navBarItemStuCDMawad.SmallImageIndex = 16;
     this.navBarItemStuCDMawad.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemStuCDnationalty
     //
     this.navBarItemStuCDnationalty.Caption = "الجنسيات";
     this.navBarItemStuCDnationalty.LargeImageIndex = 17;
     this.navBarItemStuCDnationalty.Name = "navBarItemStuCDnationalty";
     this.navBarItemStuCDnationalty.SmallImageIndex = 17;
     this.navBarItemStuCDnationalty.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemStuCDQualification
     //
     this.navBarItemStuCDQualification.Caption = "المؤهلات";
     this.navBarItemStuCDQualification.LargeImageIndex = 18;
     this.navBarItemStuCDQualification.Name = "navBarItemStuCDQualification";
     this.navBarItemStuCDQualification.SmallImageIndex = 18;
     this.navBarItemStuCDQualification.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemStuCDEqamaType
     //
     this.navBarItemStuCDEqamaType.Caption = "اناوع الاقامه";
     this.navBarItemStuCDEqamaType.LargeImageIndex = 24;
     this.navBarItemStuCDEqamaType.Name = "navBarItemStuCDEqamaType";
     this.navBarItemStuCDEqamaType.SmallImageIndex = 24;
     this.navBarItemStuCDEqamaType.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemStuCDSaltalkaraba
     //
     this.navBarItemStuCDSaltalkaraba.Caption = "صلة القرابه";
     this.navBarItemStuCDSaltalkaraba.LargeImageIndex = 29;
     this.navBarItemStuCDSaltalkaraba.Name = "navBarItemStuCDSaltalkaraba";
     this.navBarItemStuCDSaltalkaraba.SmallImageIndex = 29;
     this.navBarItemStuCDSaltalkaraba.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemStuCDRelativeCode
     //
     this.navBarItemStuCDRelativeCode.Caption = "الاخوه و الاقارب";
     this.navBarItemStuCDRelativeCode.LargeImageIndex = 30;
     this.navBarItemStuCDRelativeCode.Name = "navBarItemStuCDRelativeCode";
     this.navBarItemStuCDRelativeCode.SmallImageIndex = 30;
     this.navBarItemStuCDRelativeCode.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemStuCDTakasosat
     //
     this.navBarItemStuCDTakasosat.Caption = "التخصصات";
     this.navBarItemStuCDTakasosat.LargeImageIndex = 32;
     this.navBarItemStuCDTakasosat.Name = "navBarItemStuCDTakasosat";
     this.navBarItemStuCDTakasosat.SmallImageIndex = 32;
     this.navBarItemStuCDTakasosat.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemStuCDAlanshata
     //
     this.navBarItemStuCDAlanshata.Caption = "الانشطه الرياضيه";
     this.navBarItemStuCDAlanshata.LargeImageIndex = 37;
     this.navBarItemStuCDAlanshata.Name = "navBarItemStuCDAlanshata";
     this.navBarItemStuCDAlanshata.SmallImageIndex = 37;
     this.navBarItemStuCDAlanshata.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // imageCollection32
     //
     this.imageCollection32.ImageSize = new System.Drawing.Size(32, 32);
     this.imageCollection32.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imageCollection32.ImageStream")));
     this.imageCollection32.Images.SetKeyName(0, "CDMarahel.png");
     this.imageCollection32.Images.SetKeyName(1, "CDAlsofof.png");
     this.imageCollection32.Images.SetKeyName(2, "CDEFasl.png");
     this.imageCollection32.Images.SetKeyName(3, "CDAlokobat.png");
     this.imageCollection32.Images.SetKeyName(4, "CDColekeyat.png");
     this.imageCollection32.Images.SetKeyName(5, "CDDyana.png");
     this.imageCollection32.Images.SetKeyName(6, "cdEyab_code.png");
     this.imageCollection32.Images.SetKeyName(7, "CDGov.png");
     this.imageCollection32.Images.SetKeyName(8, "CDHaletalked.png");
     this.imageCollection32.Images.SetKeyName(9, "CDHealth_office.png");
     this.imageCollection32.Images.SetKeyName(10, "CDJop.png");
     this.imageCollection32.Images.SetKeyName(11, "CDLogatcode.png");
     this.imageCollection32.Images.SetKeyName(12, "CDEltataem_code.png");
     this.imageCollection32.Images.SetKeyName(13, "CDGamaat_alnashat.png");
     this.imageCollection32.Images.SetKeyName(14, "CDMantaka.png");
     this.imageCollection32.Images.SetKeyName(15, "CDMarakez.png");
     this.imageCollection32.Images.SetKeyName(16, "CDMawad.png");
     this.imageCollection32.Images.SetKeyName(17, "CDnationalty.png");
     this.imageCollection32.Images.SetKeyName(18, "CDQualification.png");
     this.imageCollection32.Images.SetKeyName(19, "CD_Asase.png");
     this.imageCollection32.Images.SetKeyName(20, "student_t.png");
     this.imageCollection32.Images.SetKeyName(21, "stu_haletalked.png");
     this.imageCollection32.Images.SetKeyName(22, "stu_logatcode.png");
     this.imageCollection32.Images.SetKeyName(23, "stu_colekeyat.png");
     this.imageCollection32.Images.SetKeyName(24, "CDEqamaType.png");
     this.imageCollection32.Images.SetKeyName(25, "stu_alokobat.png");
     this.imageCollection32.Images.SetKeyName(26, "stu_almawaheb.png");
     this.imageCollection32.Images.SetKeyName(27, "stu_eyab.png");
     this.imageCollection32.Images.SetKeyName(28, "TBLstudent.png");
     this.imageCollection32.Images.SetKeyName(29, "CDSaltalkaraba.png");
     this.imageCollection32.Images.SetKeyName(30, "CDRelativeCode.png");
     this.imageCollection32.Images.SetKeyName(31, "stu_ezn.png");
     this.imageCollection32.Images.SetKeyName(32, "CDTakasosat.png");
     this.imageCollection32.Images.SetKeyName(33, "stu_takasosat.png");
     this.imageCollection32.Images.SetKeyName(34, "stu_fatherCall.png");
     this.imageCollection32.Images.SetKeyName(35, "stu_gamaat_alnashat.png");
     this.imageCollection32.Images.SetKeyName(36, "stu_nashat.png");
     this.imageCollection32.Images.SetKeyName(37, "CDAlanshata.png");
     this.imageCollection32.Images.SetKeyName(38, "QryStudentContacts.png");
     this.imageCollection32.Images.SetKeyName(39, "QryStudentInfo.png");
     this.imageCollection32.Images.SetKeyName(40, "Roles.png");
     this.imageCollection32.Images.SetKeyName(41, "Users.png");
     this.imageCollection32.Images.SetKeyName(42, "UserRoles.png");
     this.imageCollection32.Images.SetKeyName(43, "RoleDetial.png");
     this.imageCollection32.Images.SetKeyName(44, "Reports.png");
     this.imageCollection32.Images.SetKeyName(45, "DeployRpt.png");
     this.imageCollection32.Images.SetKeyName(46, "AppOptions.png");
     //
     // DPData
     //
     this.DPData.Controls.Add(this.dockPanel2_Container);
     this.DPData.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.DPData.FloatSize = new System.Drawing.Size(336, 404);
     this.DPData.ID = new System.Guid("a97e3d69-dc1d-4cf2-8b60-8d961607e006");
     this.DPData.Location = new System.Drawing.Point(4, 23);
     this.DPData.Name = "DPData";
     this.DPData.OriginalSize = new System.Drawing.Size(200, 200);
     this.DPData.Size = new System.Drawing.Size(326, 416);
     this.DPData.Text = "بيانات الادخال";
     //
     // dockPanel2_Container
     //
     this.dockPanel2_Container.Controls.Add(this.navBarControlData);
     this.dockPanel2_Container.Location = new System.Drawing.Point(0, 0);
     this.dockPanel2_Container.Name = "dockPanel2_Container";
     this.dockPanel2_Container.Size = new System.Drawing.Size(326, 416);
     this.dockPanel2_Container.TabIndex = 0;
     //
     // navBarControlData
     //
     this.navBarControlData.ActiveGroup = this.navBarGroup2;
     this.navBarControlData.Dock = System.Windows.Forms.DockStyle.Fill;
     this.navBarControlData.ExplorerBarShowGroupButtons = false;
     this.navBarControlData.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
     this.navBarGroup2});
     this.navBarControlData.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
     this.navBarItemStuCD_Asase,
     this.navBarItemStustudent_t,
     this.navBarItemStustu_haletalked,
     this.navBarItemStustu_logatcode,
     this.navBarItemStustu_colekeyat,
     this.navBarItemStustu_alokobat,
     this.navBarItemStustu_almawaheb,
     this.navBarItemStustu_eyab,
     this.navBarItemStuTBLstudent,
     this.navBarItemStustu_ezn,
     this.navBarItemStustu_takasosat,
     this.navBarItemStustu_fatherCall,
     this.navBarItemStustu_gamaat_alnashat,
     this.navBarItemStustu_nashat});
     this.navBarControlData.Location = new System.Drawing.Point(0, 0);
     this.navBarControlData.Name = "navBarControlData";
     this.navBarControlData.OptionsNavPane.ExpandedWidth = 192;
     this.navBarControlData.Size = new System.Drawing.Size(326, 416);
     this.navBarControlData.SmallImages = this.imageCollection32;
     this.navBarControlData.StoreDefaultPaintStyleName = true;
     this.navBarControlData.TabIndex = 10;
     this.navBarControlData.Text = "navBarControl1";
     //
     // navBarGroup2
     //
     this.navBarGroup2.Caption = "";
     this.navBarGroup2.Expanded = true;
     this.navBarGroup2.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemStuCD_Asase),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemStustudent_t),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemStustu_haletalked),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemStustu_logatcode),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemStustu_colekeyat),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemStustu_alokobat),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemStustu_almawaheb),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemStustu_eyab),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemStuTBLstudent),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemStustu_ezn),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemStustu_takasosat),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemStustu_fatherCall),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemStustu_gamaat_alnashat),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemStustu_nashat)});
     this.navBarGroup2.LargeImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup2.LargeImage")));
     this.navBarGroup2.Name = "navBarGroup2";
     this.navBarGroup2.NavigationPaneVisible = false;
     this.navBarGroup2.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup2.SmallImage")));
     //
     // navBarItemStuCD_Asase
     //
     this.navBarItemStuCD_Asase.Caption = "العام الدراسي";
     this.navBarItemStuCD_Asase.LargeImageIndex = 19;
     this.navBarItemStuCD_Asase.Name = "navBarItemStuCD_Asase";
     this.navBarItemStuCD_Asase.SmallImageIndex = 19;
     this.navBarItemStuCD_Asase.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemStustudent_t
     //
     this.navBarItemStustudent_t.Caption = "قوائم الفصول";
     this.navBarItemStustudent_t.LargeImageIndex = 20;
     this.navBarItemStustudent_t.Name = "navBarItemStustudent_t";
     this.navBarItemStustudent_t.SmallImageIndex = 20;
     this.navBarItemStustudent_t.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemStustu_haletalked
     //
     this.navBarItemStustu_haletalked.Caption = "حالة القيد";
     this.navBarItemStustu_haletalked.LargeImageIndex = 21;
     this.navBarItemStustu_haletalked.Name = "navBarItemStustu_haletalked";
     this.navBarItemStustu_haletalked.SmallImageIndex = 21;
     this.navBarItemStustu_haletalked.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemStustu_logatcode
     //
     this.navBarItemStustu_logatcode.Caption = "لغات التلاميذ";
     this.navBarItemStustu_logatcode.LargeImageIndex = 22;
     this.navBarItemStustu_logatcode.Name = "navBarItemStustu_logatcode";
     this.navBarItemStustu_logatcode.SmallImageIndex = 22;
     this.navBarItemStustu_logatcode.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemStustu_colekeyat
     //
     this.navBarItemStustu_colekeyat.Caption = "السلوكيات";
     this.navBarItemStustu_colekeyat.LargeImageIndex = 23;
     this.navBarItemStustu_colekeyat.Name = "navBarItemStustu_colekeyat";
     this.navBarItemStustu_colekeyat.SmallImageIndex = 23;
     this.navBarItemStustu_colekeyat.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemStustu_alokobat
     //
     this.navBarItemStustu_alokobat.Caption = "سجل العقوبات";
     this.navBarItemStustu_alokobat.LargeImageIndex = 25;
     this.navBarItemStustu_alokobat.Name = "navBarItemStustu_alokobat";
     this.navBarItemStustu_alokobat.SmallImageIndex = 25;
     this.navBarItemStustu_alokobat.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemStustu_almawaheb
     //
     this.navBarItemStustu_almawaheb.Caption = "المواهب";
     this.navBarItemStustu_almawaheb.LargeImageIndex = 26;
     this.navBarItemStustu_almawaheb.Name = "navBarItemStustu_almawaheb";
     this.navBarItemStustu_almawaheb.SmallImageIndex = 26;
     this.navBarItemStustu_almawaheb.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemStustu_eyab
     //
     this.navBarItemStustu_eyab.Caption = "الغياب اليومي";
     this.navBarItemStustu_eyab.LargeImageIndex = 27;
     this.navBarItemStustu_eyab.Name = "navBarItemStustu_eyab";
     this.navBarItemStustu_eyab.SmallImageIndex = 27;
     this.navBarItemStustu_eyab.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemStuTBLstudent
     //
     this.navBarItemStuTBLstudent.Caption = "بيانات التلاميذ - الطلاب";
     this.navBarItemStuTBLstudent.LargeImageIndex = 28;
     this.navBarItemStuTBLstudent.Name = "navBarItemStuTBLstudent";
     this.navBarItemStuTBLstudent.SmallImageIndex = 28;
     this.navBarItemStuTBLstudent.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemStustu_ezn
     //
     this.navBarItemStustu_ezn.Caption = "اذونات الخروج";
     this.navBarItemStustu_ezn.LargeImageIndex = 31;
     this.navBarItemStustu_ezn.Name = "navBarItemStustu_ezn";
     this.navBarItemStustu_ezn.SmallImageIndex = 31;
     this.navBarItemStustu_ezn.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemStustu_takasosat
     //
     this.navBarItemStustu_takasosat.Caption = "تخصصات الطلاب";
     this.navBarItemStustu_takasosat.LargeImageIndex = 33;
     this.navBarItemStustu_takasosat.Name = "navBarItemStustu_takasosat";
     this.navBarItemStustu_takasosat.SmallImageIndex = 33;
     this.navBarItemStustu_takasosat.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemStustu_fatherCall
     //
     this.navBarItemStustu_fatherCall.Caption = "استدعائات ولي الامر";
     this.navBarItemStustu_fatherCall.LargeImageIndex = 34;
     this.navBarItemStustu_fatherCall.Name = "navBarItemStustu_fatherCall";
     this.navBarItemStustu_fatherCall.SmallImageIndex = 34;
     this.navBarItemStustu_fatherCall.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemStustu_gamaat_alnashat
     //
     this.navBarItemStustu_gamaat_alnashat.Caption = "جماعات نشاط الطلاب";
     this.navBarItemStustu_gamaat_alnashat.LargeImageIndex = 35;
     this.navBarItemStustu_gamaat_alnashat.Name = "navBarItemStustu_gamaat_alnashat";
     this.navBarItemStustu_gamaat_alnashat.SmallImageIndex = 35;
     this.navBarItemStustu_gamaat_alnashat.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemStustu_nashat
     //
     this.navBarItemStustu_nashat.Caption = "النشاط الرياضي";
     this.navBarItemStustu_nashat.LargeImageIndex = 36;
     this.navBarItemStustu_nashat.Name = "navBarItemStustu_nashat";
     this.navBarItemStustu_nashat.SmallImageIndex = 36;
     this.navBarItemStustu_nashat.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // DPPriv
     //
     this.DPPriv.Controls.Add(this.dockPanel3_Container);
     this.DPPriv.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.DPPriv.FloatSize = new System.Drawing.Size(336, 404);
     this.DPPriv.ID = new System.Guid("b33c2bb1-0f13-44de-a2c5-b51aa242b097");
     this.DPPriv.Location = new System.Drawing.Point(4, 23);
     this.DPPriv.Name = "DPPriv";
     this.DPPriv.OriginalSize = new System.Drawing.Size(200, 200);
     this.DPPriv.Size = new System.Drawing.Size(326, 416);
     this.DPPriv.Text = "السماحيات";
     //
     // dockPanel3_Container
     //
     this.dockPanel3_Container.Controls.Add(this.navBarControlPriv);
     this.dockPanel3_Container.Location = new System.Drawing.Point(0, 0);
     this.dockPanel3_Container.Name = "dockPanel3_Container";
     this.dockPanel3_Container.Size = new System.Drawing.Size(326, 416);
     this.dockPanel3_Container.TabIndex = 0;
     //
     // navBarControlPriv
     //
     this.navBarControlPriv.ActiveGroup = this.navBarGroup3;
     this.navBarControlPriv.Dock = System.Windows.Forms.DockStyle.Fill;
     this.navBarControlPriv.ExplorerBarShowGroupButtons = false;
     this.navBarControlPriv.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
     this.navBarGroup3});
     this.navBarControlPriv.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
     this.navBarItemStuRoles,
     this.navBarItemStuUsers,
     this.navBarItemStuUserRoles,
     this.navBarItemStuRoleDetial,
     this.navBarItemStuAppOptions});
     this.navBarControlPriv.Location = new System.Drawing.Point(0, 0);
     this.navBarControlPriv.Name = "navBarControlPriv";
     this.navBarControlPriv.OptionsNavPane.ExpandedWidth = 192;
     this.navBarControlPriv.Size = new System.Drawing.Size(326, 416);
     this.navBarControlPriv.SmallImages = this.imageCollection32;
     this.navBarControlPriv.StoreDefaultPaintStyleName = true;
     this.navBarControlPriv.TabIndex = 10;
     this.navBarControlPriv.Text = "navBarControl1";
     //
     // navBarGroup3
     //
     this.navBarGroup3.Caption = "";
     this.navBarGroup3.Expanded = true;
     this.navBarGroup3.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemStuRoles),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemStuRoleDetial),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemStuUsers),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemStuUserRoles),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemStuAppOptions)});
     this.navBarGroup3.LargeImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup3.LargeImage")));
     this.navBarGroup3.Name = "navBarGroup3";
     this.navBarGroup3.NavigationPaneVisible = false;
     this.navBarGroup3.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup3.SmallImage")));
     //
     // navBarItemStuRoles
     //
     this.navBarItemStuRoles.Caption = "الصلاحيات";
     this.navBarItemStuRoles.LargeImageIndex = 40;
     this.navBarItemStuRoles.Name = "navBarItemStuRoles";
     this.navBarItemStuRoles.SmallImageIndex = 40;
     this.navBarItemStuRoles.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemStuRoleDetial
     //
     this.navBarItemStuRoleDetial.Caption = "تفاصيل الصلاحيات";
     this.navBarItemStuRoleDetial.LargeImageIndex = 43;
     this.navBarItemStuRoleDetial.Name = "navBarItemStuRoleDetial";
     this.navBarItemStuRoleDetial.SmallImageIndex = 43;
     this.navBarItemStuRoleDetial.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemStuUsers
     //
     this.navBarItemStuUsers.Caption = "المستخدمين";
     this.navBarItemStuUsers.LargeImageIndex = 41;
     this.navBarItemStuUsers.Name = "navBarItemStuUsers";
     this.navBarItemStuUsers.SmallImageIndex = 41;
     this.navBarItemStuUsers.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemStuUserRoles
     //
     this.navBarItemStuUserRoles.Caption = "صلاحيات المستخدمين";
     this.navBarItemStuUserRoles.LargeImageIndex = 42;
     this.navBarItemStuUserRoles.Name = "navBarItemStuUserRoles";
     this.navBarItemStuUserRoles.SmallImageIndex = 42;
     this.navBarItemStuUserRoles.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemStuAppOptions
     //
     this.navBarItemStuAppOptions.Caption = "خيارات البرنامج";
     this.navBarItemStuAppOptions.LargeImageIndex = 46;
     this.navBarItemStuAppOptions.Name = "navBarItemStuAppOptions";
     this.navBarItemStuAppOptions.SmallImageIndex = 46;
     this.navBarItemStuAppOptions.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // DPQuery
     //
     this.DPQuery.Controls.Add(this.dockPanel4_Container);
     this.DPQuery.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.DPQuery.FloatSize = new System.Drawing.Size(336, 404);
     this.DPQuery.ID = new System.Guid("cfb45d3d-befd-4cb4-8549-091360f328d0");
     this.DPQuery.Location = new System.Drawing.Point(4, 23);
     this.DPQuery.Name = "DPQuery";
     this.DPQuery.OriginalSize = new System.Drawing.Size(200, 200);
     this.DPQuery.Size = new System.Drawing.Size(326, 416);
     this.DPQuery.Text = "الاستعلامات";
     //
     // dockPanel4_Container
     //
     this.dockPanel4_Container.Controls.Add(this.navBarControlQry);
     this.dockPanel4_Container.Location = new System.Drawing.Point(0, 0);
     this.dockPanel4_Container.Name = "dockPanel4_Container";
     this.dockPanel4_Container.Size = new System.Drawing.Size(326, 416);
     this.dockPanel4_Container.TabIndex = 0;
     //
     // navBarControlQry
     //
     this.navBarControlQry.ActiveGroup = this.navBarGroup5;
     this.navBarControlQry.Dock = System.Windows.Forms.DockStyle.Fill;
     this.navBarControlQry.ExplorerBarShowGroupButtons = false;
     this.navBarControlQry.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
     this.navBarGroup5});
     this.navBarControlQry.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
     this.navBarItemStuQryStudentContacts,
     this.navBarItemStuQryStudentInfo});
     this.navBarControlQry.Location = new System.Drawing.Point(0, 0);
     this.navBarControlQry.Name = "navBarControlQry";
     this.navBarControlQry.OptionsNavPane.ExpandedWidth = 192;
     this.navBarControlQry.Size = new System.Drawing.Size(326, 416);
     this.navBarControlQry.SmallImages = this.imageCollection32;
     this.navBarControlQry.StoreDefaultPaintStyleName = true;
     this.navBarControlQry.TabIndex = 10;
     this.navBarControlQry.Text = "navBarControl1";
     //
     // navBarGroup5
     //
     this.navBarGroup5.Caption = "";
     this.navBarGroup5.Expanded = true;
     this.navBarGroup5.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemStuQryStudentContacts),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemStuQryStudentInfo)});
     this.navBarGroup5.LargeImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup5.LargeImage")));
     this.navBarGroup5.Name = "navBarGroup5";
     this.navBarGroup5.NavigationPaneVisible = false;
     this.navBarGroup5.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup5.SmallImage")));
     //
     // navBarItemStuQryStudentContacts
     //
     this.navBarItemStuQryStudentContacts.Caption = "بيانات الاتصال";
     this.navBarItemStuQryStudentContacts.LargeImageIndex = 38;
     this.navBarItemStuQryStudentContacts.Name = "navBarItemStuQryStudentContacts";
     this.navBarItemStuQryStudentContacts.SmallImageIndex = 38;
     this.navBarItemStuQryStudentContacts.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemStuQryStudentInfo
     //
     this.navBarItemStuQryStudentInfo.Caption = "بيانات الطلاب";
     this.navBarItemStuQryStudentInfo.LargeImageIndex = 39;
     this.navBarItemStuQryStudentInfo.Name = "navBarItemStuQryStudentInfo";
     this.navBarItemStuQryStudentInfo.SmallImageIndex = 39;
     this.navBarItemStuQryStudentInfo.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // DPReport
     //
     this.DPReport.Controls.Add(this.dockPanel5_Container);
     this.DPReport.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.DPReport.FloatSize = new System.Drawing.Size(336, 404);
     this.DPReport.ID = new System.Guid("0f036360-d6ff-485c-9f5f-15222cfa0e5f");
     this.DPReport.Location = new System.Drawing.Point(4, 23);
     this.DPReport.Name = "DPReport";
     this.DPReport.OriginalSize = new System.Drawing.Size(200, 200);
     this.DPReport.Size = new System.Drawing.Size(326, 416);
     this.DPReport.Text = "التقارير";
     //
     // dockPanel5_Container
     //
     this.dockPanel5_Container.Controls.Add(this.navBarControlReport);
     this.dockPanel5_Container.Location = new System.Drawing.Point(0, 0);
     this.dockPanel5_Container.Name = "dockPanel5_Container";
     this.dockPanel5_Container.Size = new System.Drawing.Size(326, 416);
     this.dockPanel5_Container.TabIndex = 0;
     //
     // navBarControlReport
     //
     this.navBarControlReport.ActiveGroup = this.navBarGroup6;
     this.navBarControlReport.Dock = System.Windows.Forms.DockStyle.Fill;
     this.navBarControlReport.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
     this.navBarGroup6,
     this.navBarGroup4,
     this.navBarGroup7,
     this.navBarGroup8,
     this.navBarGroup9});
     this.navBarControlReport.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
     this.navBarItemStuDeployRpt});
     this.navBarControlReport.LargeImages = this.imageCollection32;
     this.navBarControlReport.Location = new System.Drawing.Point(0, 0);
     this.navBarControlReport.Name = "navBarControlReport";
     this.navBarControlReport.OptionsNavPane.ExpandedWidth = 192;
     this.navBarControlReport.Size = new System.Drawing.Size(326, 416);
     this.navBarControlReport.SmallImages = this.imageCollection32;
     this.navBarControlReport.TabIndex = 10;
     this.navBarControlReport.Text = "navBarControl1";
     this.navBarControlReport.View = new DevExpress.XtraNavBar.ViewInfo.StandardSkinExplorerBarViewInfoRegistrator("DevExpress Style");
     //
     // navBarGroup6
     //
     this.navBarGroup6.Caption = "تنصيب التقارير";
     this.navBarGroup6.Expanded = true;
     this.navBarGroup6.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemStuDeployRpt)});
     this.navBarGroup6.Name = "navBarGroup6";
     //
     // navBarItemStuDeployRpt
     //
     this.navBarItemStuDeployRpt.Caption = "تنصيب التقارير";
     this.navBarItemStuDeployRpt.LargeImageIndex = 45;
     this.navBarItemStuDeployRpt.Name = "navBarItemStuDeployRpt";
     this.navBarItemStuDeployRpt.SmallImageIndex = 45;
     this.navBarItemStuDeployRpt.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarGroup4
     //
     this.navBarGroup4.Caption = "قوائم الفصول والسجلات";
     this.navBarGroup4.LargeImage = global::Student.Properties.Resources.Print;
     this.navBarGroup4.Name = "navBarGroup4";
     this.navBarGroup4.NavigationPaneVisible = false;
     this.navBarGroup4.SmallImage = global::Student.Properties.Resources.Print;
     //
     // navBarGroup7
     //
     this.navBarGroup7.Caption = "تقارير الغياب والمتابعة";
     this.navBarGroup7.LargeImage = global::Student.Properties.Resources.Print;
     this.navBarGroup7.Name = "navBarGroup7";
     this.navBarGroup7.SmallImage = global::Student.Properties.Resources.Print;
     //
     // navBarGroup8
     //
     this.navBarGroup8.Caption = "احصائيات";
     this.navBarGroup8.LargeImage = global::Student.Properties.Resources.Print;
     this.navBarGroup8.Name = "navBarGroup8";
     this.navBarGroup8.SmallImage = global::Student.Properties.Resources.Print;
     //
     // navBarGroup9
     //
     this.navBarGroup9.Caption = "تقارير عامة";
     this.navBarGroup9.LargeImage = global::Student.Properties.Resources.Print;
     this.navBarGroup9.Name = "navBarGroup9";
     this.navBarGroup9.SmallImage = global::Student.Properties.Resources.Print;
     //
     // groupControl2
     //
     this.groupControl2.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.groupControl2.AppearanceCaption.Options.UseTextOptions = true;
     this.groupControl2.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.groupControl2.Controls.Add(this.CEUpdate);
     this.groupControl2.Controls.Add(this.CESelect);
     this.groupControl2.Controls.Add(this.CEDelete);
     this.groupControl2.Controls.Add(this.CEInsert);
     this.groupControl2.Location = new System.Drawing.Point(47, 65);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(240, 73);
     this.groupControl2.TabIndex = 5;
     this.groupControl2.Text = "عناصر السماح";
     //
     // CEUpdate
     //
     this.CEUpdate.Location = new System.Drawing.Point(21, 49);
     this.CEUpdate.Name = "CEUpdate";
     this.CEUpdate.Properties.Caption = "تعديل";
     this.CEUpdate.Size = new System.Drawing.Size(75, 19);
     this.CEUpdate.TabIndex = 0;
     //
     // CESelect
     //
     this.CESelect.Location = new System.Drawing.Point(21, 24);
     this.CESelect.Name = "CESelect";
     this.CESelect.Properties.Caption = "عرض";
     this.CESelect.Size = new System.Drawing.Size(75, 19);
     this.CESelect.TabIndex = 0;
     //
     // CEDelete
     //
     this.CEDelete.Location = new System.Drawing.Point(144, 49);
     this.CEDelete.Name = "CEDelete";
     this.CEDelete.Properties.Caption = "حذف";
     this.CEDelete.Size = new System.Drawing.Size(75, 19);
     this.CEDelete.TabIndex = 0;
     //
     // CEInsert
     //
     this.CEInsert.Location = new System.Drawing.Point(144, 24);
     this.CEInsert.Name = "CEInsert";
     this.CEInsert.Properties.Caption = "اضافه";
     this.CEInsert.Size = new System.Drawing.Size(75, 19);
     this.CEInsert.TabIndex = 0;
     //
     // RoleDetialFrm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(334, 612);
     this.Controls.Add(this.groupControl2);
     this.Controls.Add(this.groupControlSelect);
     this.Controls.Add(this.pnlContainerMain);
     this.Name = "RoleDetialFrm";
     this.Text = "محتويات السماحيات";
     this.Load += new System.EventHandler(this.EditorRoleMenuFrm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.groupControlSelect)).EndInit();
     this.groupControlSelect.ResumeLayout(false);
     this.groupControlSelect.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LUEItems.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManagerMain)).EndInit();
     this.pnlContainerMain.ResumeLayout(false);
     this.DPCode.ResumeLayout(false);
     this.dockPanel1_Container.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlCode)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection32)).EndInit();
     this.DPData.ResumeLayout(false);
     this.dockPanel2_Container.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlData)).EndInit();
     this.DPPriv.ResumeLayout(false);
     this.dockPanel3_Container.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlPriv)).EndInit();
     this.DPQuery.ResumeLayout(false);
     this.dockPanel4_Container.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlQry)).EndInit();
     this.DPReport.ResumeLayout(false);
     this.dockPanel5_Container.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlReport)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.CEUpdate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.CESelect.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.CEDelete.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.CEInsert.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Example #19
0
        private void mainNav_ActiveGroupChanged(object sender, DevExpress.XtraNavBar.NavBarGroupEventArgs e)
        {
            if (cancellingnavchange) return;

            // We are changing selected navigation, check if there are any unsaved changes before moving on
            if (CurrentNavigation == groupMediaTree)
            {
                if (SaveCurrentMovie() == DialogResult.Cancel)
                {
                    cancellingnavchange = true;
                    mainNav.ActiveGroup = groupMediaTree;
                    cancellingnavchange = false;
                    return;
                }
            }
            if (CurrentNavigation == groupBioData)
            {
                if (SaveCurrentBioData() == DialogResult.Cancel)
                {
                    cancellingnavchange = true;
                    mainNav.ActiveGroup = groupBioData;
                    cancellingnavchange = false;
                    return;
                }
            }
            if (CurrentNavigation == groupGenresMetadata)
            {
                if (SaveCurrentGenreMetaData() == DialogResult.Cancel)
                {
                    cancellingnavchange = true;
                    mainNav.ActiveGroup = groupGenresMetadata;
                    cancellingnavchange = false;
                    return;
                }
            }

            _loading = true;
            ToggleSaveState(false);

            CurrentNavigation = e.Group;

            if (e.Group == groupMetadata)
                LoadMetadata();

            if (e.Group == groupImport)
                LoadImporters();

            if (e.Group == groupMediaTree)
            {
                PopulateMediaTree();

                LoadMovies();
                PopulateMovieListV2(SelectedTreeRoot);

                splitContainerDetails.Panel2.Controls["bioDataEditor"].Visible = false;
                splitContainerDetails.Panel2.Controls["genreMetaDataEditor"].Visible = false;
                splitContainerDetails.Panel2.Controls["titlesListView"].Visible = false;
                splitContainerDetails.Panel2.Controls["titleEditor"].Visible = true;

                splitContainerDetails.PanelVisibility = SplitPanelVisibility.Both;
            }

            if (e.Group == groupBioData)
            {
                if (lbBioData.Items.Count == 0)
                {
                    // Only load the once
                    lbBioData.Items.AddRange(TitleCollectionManager.GetAllBioDatas().OrderBy(b => b.FullName).ToArray());
                }
                splitContainerDetails.Panel2.Controls["titleEditor"].Visible = false;
                splitContainerDetails.Panel2.Controls["genreMetaDataEditor"].Visible = false;
                splitContainerDetails.Panel2.Controls["titlesListView"].Visible = false;
                splitContainerDetails.Panel2.Controls["bioDataEditor"].Visible = true;

                bioDataEditor.RefreshEditor();

                SetWindowsTitleBioData();

                if (OMLEngine.Settings.OMLSettings.DBEAlwaysShowTitleList == true)
                {
                    splitContainerDetails.PanelVisibility = SplitPanelVisibility.Both;
                }
                else
                {
                    splitContainerDetails.PanelVisibility = SplitPanelVisibility.Panel2;
                }
            }

            if (e.Group == groupGenresMetadata)
            {
                if (lbGenreMetadata.Items.Count == 0)
                {
                    // Only load the once
                    lbGenreMetadata.Items.AddRange(TitleCollectionManager.GetAllGenreMetaDatas().OrderBy(g => g.Name).ToArray());
                }
                splitContainerDetails.Panel2.Controls["titleEditor"].Visible = false;
                splitContainerDetails.Panel2.Controls["bioDataEditor"].Visible = false;
                splitContainerDetails.Panel2.Controls["titlesListView"].Visible = false;
                splitContainerDetails.Panel2.Controls["genreMetaDataEditor"].Visible = true;

                genreMetaDataEditor.RefreshEditor();

                SetWindowsTitleGenreMetaData();
                if (OMLEngine.Settings.OMLSettings.DBEAlwaysShowTitleList == true)
                {
                    splitContainerDetails.PanelVisibility = SplitPanelVisibility.Both;
                }
                else
                {
                    splitContainerDetails.PanelVisibility = SplitPanelVisibility.Panel2;
                }
            }

            if (e.Group == groupTags)
            {
                lbTags.Items.Clear();
                lbTags.Items.AddRange(TitleCollectionManager.GetAllTagsList().OrderBy(g => g).ToArray());

                splitContainerDetails.Panel2.Controls["titleEditor"].Visible = false;
                splitContainerDetails.Panel2.Controls["bioDataEditor"].Visible = false;
                splitContainerDetails.Panel2.Controls["genreMetaDataEditor"].Visible = false;
                splitContainerDetails.Panel2.Controls["titlesListView"].Visible = true;

                if (OMLEngine.Settings.OMLSettings.DBEAlwaysShowTitleList == true)
                {
                    splitContainerDetails.PanelVisibility = SplitPanelVisibility.Both;
                }
                else
                {
                    splitContainerDetails.PanelVisibility = SplitPanelVisibility.Panel2;
                }
            }
            _loading = 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(frmDanhBaQL));
     this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
     this.bar2 = new DevExpress.XtraBars.Bar();
     this.barButtonItemThemNhom = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemXoaNhom = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemSuaNhom = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemDoiTenNhom = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemThemNguoiLL = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemXoaNguoiLL = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemSuaNguoiLL = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemLuu = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemKhongLuu = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemIn = new DevExpress.XtraBars.BarButtonItem();
     this.standaloneBarDockControl1 = new DevExpress.XtraBars.StandaloneBarDockControl();
     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.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.gridControlThongtin = new DevExpress.XtraGrid.GridControl();
     this.gridViewThongtin = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.ID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.cot_name = new DevExpress.XtraGrid.Columns.GridColumn();
     this.cot_diachi = new DevExpress.XtraGrid.Columns.GridColumn();
     this.cot_dienthoai = new DevExpress.XtraGrid.Columns.GridColumn();
     this.cot_cmnd = new DevExpress.XtraGrid.Columns.GridColumn();
     this.cot_fax = new DevExpress.XtraGrid.Columns.GridColumn();
     this.cot_nguoidaidien = new DevExpress.XtraGrid.Columns.GridColumn();
     this.cot_chucvu = new DevExpress.XtraGrid.Columns.GridColumn();
     this.cot_bophan = new DevExpress.XtraGrid.Columns.GridColumn();
     this.cot_loaidanhba = new DevExpress.XtraGrid.Columns.GridColumn();
     this.cot_taikhoan = new DevExpress.XtraGrid.Columns.GridColumn();
     this.cot_email = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.navBarControl1 = new DevExpress.XtraNavBar.NavBarControl();
     this.navBarGroup1 = new DevExpress.XtraNavBar.NavBarGroup();
     this.splitterControl1 = new DevExpress.XtraEditors.SplitterControl();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlThongtin)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewThongtin)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     this.SuspendLayout();
     //
     // barManager1
     //
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     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.barButtonItemThemNhom,
     this.barButtonItemXoaNhom,
     this.barButtonItemDoiTenNhom,
     this.barButtonItemThemNguoiLL,
     this.barButtonItemXoaNguoiLL,
     this.barButtonItemSuaNguoiLL,
     this.barButtonItemIn,
     this.barButtonItemLuu,
     this.barButtonItemKhongLuu,
     this.barButtonItemSuaNhom});
     this.barManager1.MaxItemId = 12;
     //
     // bar2
     //
     this.bar2.BarName = "Main menu";
     this.bar2.DockCol = 0;
     this.bar2.DockRow = 0;
     this.bar2.DockStyle = DevExpress.XtraBars.BarDockStyle.Standalone;
     this.bar2.FloatLocation = new System.Drawing.Point(60, 179);
     this.bar2.FloatSize = new System.Drawing.Size(675, 24);
     this.bar2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barButtonItemThemNhom, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barButtonItemXoaNhom, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemSuaNhom),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barButtonItemDoiTenNhom, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barButtonItemThemNguoiLL, "", true, true, true, 0, null, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barButtonItemXoaNguoiLL, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barButtonItemSuaNguoiLL, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barButtonItemLuu, "", true, true, true, 0, null, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barButtonItemKhongLuu, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barButtonItemIn, "", true, true, true, 0, null, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph)});
     this.bar2.OptionsBar.AllowQuickCustomization = false;
     this.bar2.OptionsBar.DrawDragBorder = false;
     this.bar2.OptionsBar.RotateWhenVertical = false;
     this.bar2.OptionsBar.UseWholeRow = true;
     this.bar2.StandaloneBarDockControl = this.standaloneBarDockControl1;
     this.bar2.Text = "Main menu";
     //
     // barButtonItemThemNhom
     //
     this.barButtonItemThemNhom.Caption = "&Thêm nhóm";
     this.barButtonItemThemNhom.Id = 0;
     this.barButtonItemThemNhom.Name = "barButtonItemThemNhom";
     this.barButtonItemThemNhom.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemThemNhom_ItemClick);
     //
     // barButtonItemXoaNhom
     //
     this.barButtonItemXoaNhom.Caption = "&Xóa nhóm";
     this.barButtonItemXoaNhom.Id = 1;
     this.barButtonItemXoaNhom.Name = "barButtonItemXoaNhom";
     this.barButtonItemXoaNhom.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemXoaNhom_ItemClick);
     //
     // barButtonItemSuaNhom
     //
     this.barButtonItemSuaNhom.Caption = "&Sửa nhóm";
     this.barButtonItemSuaNhom.Id = 11;
     this.barButtonItemSuaNhom.Name = "barButtonItemSuaNhom";
     this.barButtonItemSuaNhom.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItemSuaNhom.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemSuaNhom_ItemClick);
     //
     // barButtonItemDoiTenNhom
     //
     this.barButtonItemDoiTenNhom.Caption = "Đổi tên &nhóm";
     this.barButtonItemDoiTenNhom.Id = 2;
     this.barButtonItemDoiTenNhom.Name = "barButtonItemDoiTenNhom";
     this.barButtonItemDoiTenNhom.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemDoiTenNhom_ItemClick);
     //
     // barButtonItemThemNguoiLL
     //
     this.barButtonItemThemNguoiLL.Caption = "T&hêm người liên lạc";
     this.barButtonItemThemNguoiLL.Id = 3;
     this.barButtonItemThemNguoiLL.Name = "barButtonItemThemNguoiLL";
     this.barButtonItemThemNguoiLL.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemThemNguoiLL_ItemClick);
     //
     // barButtonItemXoaNguoiLL
     //
     this.barButtonItemXoaNguoiLL.Caption = "Xó&a người liên lạc";
     this.barButtonItemXoaNguoiLL.Id = 4;
     this.barButtonItemXoaNguoiLL.Name = "barButtonItemXoaNguoiLL";
     this.barButtonItemXoaNguoiLL.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemXoaNguoiLL_ItemClick);
     //
     // barButtonItemSuaNguoiLL
     //
     this.barButtonItemSuaNguoiLL.Caption = "Sửa n&gười liên lạc";
     this.barButtonItemSuaNguoiLL.Id = 5;
     this.barButtonItemSuaNguoiLL.Name = "barButtonItemSuaNguoiLL";
     this.barButtonItemSuaNguoiLL.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemSuaNguoiLL_ItemClick);
     //
     // barButtonItemLuu
     //
     this.barButtonItemLuu.Caption = "&Lưu";
     this.barButtonItemLuu.Id = 9;
     this.barButtonItemLuu.Name = "barButtonItemLuu";
     this.barButtonItemLuu.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemLuu_ItemClick);
     //
     // barButtonItemKhongLuu
     //
     this.barButtonItemKhongLuu.Caption = "&Không Lưu";
     this.barButtonItemKhongLuu.Id = 10;
     this.barButtonItemKhongLuu.Name = "barButtonItemKhongLuu";
     this.barButtonItemKhongLuu.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemKhongLuu_ItemClick);
     //
     // barButtonItemIn
     //
     this.barButtonItemIn.Caption = "In";
     this.barButtonItemIn.Id = 7;
     this.barButtonItemIn.Name = "barButtonItemIn";
     //
     // standaloneBarDockControl1
     //
     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(804, 30);
     this.standaloneBarDockControl1.Text = "standaloneBarDockControl1";
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "customer_size.gif");
     //
     // gridControlThongtin
     //
     this.gridControlThongtin.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlThongtin.BackgroundImage")));
     this.gridControlThongtin.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlThongtin.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlThongtin.EmbeddedNavigator.Buttons.Append.Visible = false;
     this.gridControlThongtin.EmbeddedNavigator.Buttons.CancelEdit.Visible = false;
     this.gridControlThongtin.EmbeddedNavigator.Buttons.Edit.Visible = false;
     this.gridControlThongtin.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
     this.gridControlThongtin.EmbeddedNavigator.Buttons.First.Visible = false;
     this.gridControlThongtin.EmbeddedNavigator.Buttons.Last.Visible = false;
     this.gridControlThongtin.EmbeddedNavigator.Buttons.Next.Visible = false;
     this.gridControlThongtin.EmbeddedNavigator.Buttons.NextPage.Visible = false;
     this.gridControlThongtin.EmbeddedNavigator.Buttons.Prev.Visible = false;
     this.gridControlThongtin.EmbeddedNavigator.Buttons.PrevPage.Visible = false;
     this.gridControlThongtin.EmbeddedNavigator.Buttons.Remove.Visible = false;
     this.gridControlThongtin.EmbeddedNavigator.TextStringFormat = "Tổng số mẩu tin: {1}";
     this.gridControlThongtin.Location = new System.Drawing.Point(2, 2);
     this.gridControlThongtin.MainView = this.gridViewThongtin;
     this.gridControlThongtin.Name = "gridControlThongtin";
     this.gridControlThongtin.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemTextEdit1});
     this.gridControlThongtin.Size = new System.Drawing.Size(598, 479);
     this.gridControlThongtin.TabIndex = 5;
     this.gridControlThongtin.UseEmbeddedNavigator = true;
     this.gridControlThongtin.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewThongtin});
     //
     // gridViewThongtin
     //
     this.gridViewThongtin.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewThongtin.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewThongtin.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.ID,
     this.cot_name,
     this.cot_diachi,
     this.cot_dienthoai,
     this.cot_cmnd,
     this.cot_fax,
     this.cot_nguoidaidien,
     this.cot_chucvu,
     this.cot_bophan,
     this.cot_loaidanhba,
     this.cot_taikhoan,
     this.cot_email});
     this.gridViewThongtin.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridViewThongtin.GridControl = this.gridControlThongtin;
     this.gridViewThongtin.GroupPanelText = "Chi tiết danh bạ";
     this.gridViewThongtin.IndicatorWidth = 40;
     this.gridViewThongtin.Name = "gridViewThongtin";
     this.gridViewThongtin.OptionsBehavior.Editable = false;
     this.gridViewThongtin.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewThongtin.OptionsLayout.Columns.StoreAllOptions = true;
     this.gridViewThongtin.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewThongtin.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewThongtin.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridViewThongtin.OptionsView.ColumnAutoWidth = false;
     this.gridViewThongtin.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewThongtin.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewThongtin.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
     this.gridViewThongtin.OptionsView.ShowDetailButtons = false;
     this.gridViewThongtin.OptionsView.ShowGroupedColumns = true;
     this.gridViewThongtin.OptionsView.ShowGroupPanel = false;
     this.gridViewThongtin.OptionsView.ShowViewCaption = true;
     this.gridViewThongtin.ViewCaption = "DANH BẠ ĐỊA CHỈ";
     this.gridViewThongtin.DoubleClick += new System.EventHandler(this.gridViewThongtin_DoubleClick);
     this.gridViewThongtin.ValidateRow += new DevExpress.XtraGrid.Views.Base.ValidateRowEventHandler(this.gridViewThongtin_ValidateRow);
     //
     // ID
     //
     this.ID.Caption = "ID";
     this.ID.Name = "ID";
     this.ID.Width = 23;
     //
     // cot_name
     //
     this.cot_name.Caption = "Tên";
     this.cot_name.Name = "cot_name";
     this.cot_name.Visible = true;
     this.cot_name.VisibleIndex = 0;
     this.cot_name.Width = 30;
     //
     // cot_diachi
     //
     this.cot_diachi.Caption = "Địa chỉ";
     this.cot_diachi.Name = "cot_diachi";
     this.cot_diachi.Visible = true;
     this.cot_diachi.VisibleIndex = 3;
     this.cot_diachi.Width = 44;
     //
     // cot_dienthoai
     //
     this.cot_dienthoai.Caption = "Điện thoại";
     this.cot_dienthoai.Name = "cot_dienthoai";
     this.cot_dienthoai.Visible = true;
     this.cot_dienthoai.VisibleIndex = 7;
     this.cot_dienthoai.Width = 61;
     //
     // cot_cmnd
     //
     this.cot_cmnd.Caption = "CMND";
     this.cot_cmnd.Name = "cot_cmnd";
     this.cot_cmnd.Visible = true;
     this.cot_cmnd.VisibleIndex = 6;
     this.cot_cmnd.Width = 41;
     //
     // cot_fax
     //
     this.cot_fax.Caption = "FAX";
     this.cot_fax.Name = "cot_fax";
     this.cot_fax.Visible = true;
     this.cot_fax.VisibleIndex = 8;
     this.cot_fax.Width = 31;
     //
     // cot_nguoidaidien
     //
     this.cot_nguoidaidien.Caption = "Người đại diện";
     this.cot_nguoidaidien.Name = "cot_nguoidaidien";
     this.cot_nguoidaidien.Visible = true;
     this.cot_nguoidaidien.VisibleIndex = 5;
     this.cot_nguoidaidien.Width = 80;
     //
     // cot_chucvu
     //
     this.cot_chucvu.Caption = "Chức vụ";
     this.cot_chucvu.Name = "cot_chucvu";
     this.cot_chucvu.Visible = true;
     this.cot_chucvu.VisibleIndex = 2;
     this.cot_chucvu.Width = 52;
     //
     // cot_bophan
     //
     this.cot_bophan.Caption = "Bộ phận";
     this.cot_bophan.Name = "cot_bophan";
     this.cot_bophan.Visible = true;
     this.cot_bophan.VisibleIndex = 1;
     this.cot_bophan.Width = 51;
     //
     // cot_loaidanhba
     //
     this.cot_loaidanhba.Caption = "Loại danh bạ";
     this.cot_loaidanhba.Name = "cot_loaidanhba";
     this.cot_loaidanhba.Visible = true;
     this.cot_loaidanhba.VisibleIndex = 10;
     this.cot_loaidanhba.Width = 73;
     //
     // cot_taikhoan
     //
     this.cot_taikhoan.Caption = "Tài Khoản";
     this.cot_taikhoan.Name = "cot_taikhoan";
     this.cot_taikhoan.Visible = true;
     this.cot_taikhoan.VisibleIndex = 9;
     this.cot_taikhoan.Width = 59;
     //
     // cot_email
     //
     this.cot_email.Caption = "Email";
     this.cot_email.Name = "cot_email";
     this.cot_email.Visible = true;
     this.cot_email.VisibleIndex = 4;
     this.cot_email.Width = 36;
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.Mask.IgnoreMaskBlank = false;
     this.repositoryItemTextEdit1.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
     this.repositoryItemTextEdit1.Mask.SaveLiteral = false;
     this.repositoryItemTextEdit1.Mask.ShowPlaceHolders = false;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     //
     // navBarControl1
     //
     this.navBarControl1.ActiveGroup = this.navBarGroup1;
     this.navBarControl1.AllowSelectedLink = true;
     this.navBarControl1.ContentButtonHint = null;
     this.navBarControl1.Dock = System.Windows.Forms.DockStyle.Left;
     this.navBarControl1.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
     this.navBarGroup1});
     this.navBarControl1.Location = new System.Drawing.Point(0, 30);
     this.navBarControl1.Name = "navBarControl1";
     this.navBarControl1.OptionsNavPane.ExpandedWidth = 140;
     this.navBarControl1.OptionsNavPane.ShowOverflowPanel = false;
     this.navBarControl1.OptionsNavPane.ShowSplitter = false;
     this.navBarControl1.Size = new System.Drawing.Size(196, 483);
     this.navBarControl1.TabIndex = 6;
     this.navBarControl1.Text = "navBarControl1";
     this.navBarControl1.View = new DevExpress.XtraNavBar.ViewInfo.SkinNavigationPaneViewInfoRegistrator();
     this.navBarControl1.SelectedLinkChanged += new DevExpress.XtraNavBar.ViewInfo.NavBarSelectedLinkChangedEventHandler(this.navBarControl1_SelectedLinkChanged);
     //
     // navBarGroup1
     //
     this.navBarGroup1.Caption = "Nhóm danh bạ";
     this.navBarGroup1.Expanded = true;
     this.navBarGroup1.GroupStyle = DevExpress.XtraNavBar.NavBarGroupStyle.LargeIconsText;
     this.navBarGroup1.Name = "navBarGroup1";
     this.navBarGroup1.NavigationPaneVisible = false;
     //
     // splitterControl1
     //
     this.splitterControl1.Location = new System.Drawing.Point(196, 30);
     this.splitterControl1.Name = "splitterControl1";
     this.splitterControl1.Size = new System.Drawing.Size(6, 483);
     this.splitterControl1.TabIndex = 13;
     this.splitterControl1.TabStop = false;
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.gridControlThongtin);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl1.Location = new System.Drawing.Point(202, 30);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(602, 483);
     this.panelControl1.TabIndex = 15;
     //
     // frmDanhBaQL
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(804, 513);
     this.Controls.Add(this.panelControl1);
     this.Controls.Add(this.splitterControl1);
     this.Controls.Add(this.navBarControl1);
     this.Controls.Add(this.standaloneBarDockControl1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.KeyPreview = true;
     this.Name = "frmDanhBaQL";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "Danh bạ địa chỉ";
     this.Load += new System.EventHandler(this.frmDanhba_Load);
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlThongtin)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewThongtin)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #21
0
        private void ShowProj(DataTable projdt)
        {
            nbcProj.Groups.Clear();
            nbcProj.Items.Clear();
            DataRow[] rows = projdt.Select(string.Format("ProjectManager='{0}' ", string.Empty));
            foreach (DataRow row in rows)
            {
                DevExpress.XtraNavBar.NavBarGroup nbg = new DevExpress.XtraNavBar.NavBarGroup();
                nbg.Name = row["ProjectName"].ToString();
                nbg.Tag = DataConverter.RowToObject<Project>(row);
                nbg.Caption = row["ProjectName"].ToString();
                nbg.LargeImage =imageList2.Images[0];
                nbg.Hint = row["ProjectName"].ToString();
                DataRow[] childrows = projdt.Select(string.Format("ProjectManager='{0}'", row["UID"].ToString()));
                foreach (DataRow itemrow in childrows)
                {

                    DevExpress.XtraNavBar.NavBarItem nbi = new DevExpress.XtraNavBar.NavBarItem();
                    nbi.Name = itemrow["ProjectName"].ToString();
                    nbi.Tag = DataConverter.RowToObject<Project>(itemrow);
                    nbi.Caption = itemrow["ProjectName"].ToString();
                    nbi.SmallImage = imageList3.Images[3];
                    nbi.Hint = itemrow["ProjectName"].ToString();
                    nbcProj.Items.Add(nbi);
                    nbg.ItemLinks.Add(nbi);
                }
                nbcProj.Groups.Add(nbg);
                nbcProj.Refresh();
            }
        }
Example #22
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.navBarControl1 = new DevExpress.XtraNavBar.NavBarControl();
     this.navBarGroup1 = new DevExpress.XtraNavBar.NavBarGroup();
     this.nbiCharts = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiGrid = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiLayoutAndEditors = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiPivot = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiPrintPreviewBars = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiPrintPreviewRibbon = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiReportDesigner = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiScheduler = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiTreeList = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiWizard = new DevExpress.XtraNavBar.NavBarItem();
     this.gridControl1 = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.nbiRichEdit = new DevExpress.XtraNavBar.NavBarItem();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     this.SuspendLayout();
     //
     // navBarControl1
     //
     this.navBarControl1.ActiveGroup = this.navBarGroup1;
     this.navBarControl1.ContentButtonHint = null;
     this.navBarControl1.Dock = System.Windows.Forms.DockStyle.Left;
     this.navBarControl1.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
     this.navBarGroup1});
     this.navBarControl1.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
     this.nbiGrid,
     this.nbiCharts,
     this.nbiScheduler,
     this.nbiLayoutAndEditors,
     this.nbiReportDesigner,
     this.nbiWizard,
     this.nbiPrintPreviewRibbon,
     this.nbiPrintPreviewBars,
     this.nbiPivot,
     this.nbiTreeList,
     this.nbiRichEdit});
     this.navBarControl1.Location = new System.Drawing.Point(0, 0);
     this.navBarControl1.Name = "navBarControl1";
     this.navBarControl1.OptionsNavPane.ExpandedWidth = 142;
     this.navBarControl1.Size = new System.Drawing.Size(230, 393);
     this.navBarControl1.TabIndex = 2;
     this.navBarControl1.Text = "navBarControl1";
     this.navBarControl1.View = new DevExpress.XtraNavBar.ViewInfo.NavigationPaneViewInfoRegistrator();
     //
     // navBarGroup1
     //
     this.navBarGroup1.Caption = "navBarGroup1";
     this.navBarGroup1.Expanded = true;
     this.navBarGroup1.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiCharts),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiGrid),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiLayoutAndEditors),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiPivot),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiPrintPreviewBars),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiPrintPreviewRibbon),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiReportDesigner),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiRichEdit),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiScheduler),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiTreeList),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiWizard)});
     this.navBarGroup1.Name = "navBarGroup1";
     //
     // nbiCharts
     //
     this.nbiCharts.Caption = "Charts";
     this.nbiCharts.Name = "nbiCharts";
     this.nbiCharts.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiCharts_LinkClicked);
     //
     // nbiGrid
     //
     this.nbiGrid.Caption = "Grid";
     this.nbiGrid.Name = "nbiGrid";
     this.nbiGrid.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiGrid_LinkClicked);
     //
     // nbiLayoutAndEditors
     //
     this.nbiLayoutAndEditors.Caption = "Layout & Editors & SpellChecker";
     this.nbiLayoutAndEditors.Name = "nbiLayoutAndEditors";
     this.nbiLayoutAndEditors.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiLayoutAndEditors_LinkClicked);
     //
     // nbiPivot
     //
     this.nbiPivot.Caption = "PivotGrid";
     this.nbiPivot.Name = "nbiPivot";
     this.nbiPivot.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiPivot_LinkClicked);
     //
     // nbiPrintPreviewBars
     //
     this.nbiPrintPreviewBars.Caption = "Print Preview with XtraBars";
     this.nbiPrintPreviewBars.Name = "nbiPrintPreviewBars";
     this.nbiPrintPreviewBars.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiPrintPreviewBars_LinkClicked);
     //
     // nbiPrintPreviewRibbon
     //
     this.nbiPrintPreviewRibbon.Caption = "Print Preview with Ribbon";
     this.nbiPrintPreviewRibbon.Name = "nbiPrintPreviewRibbon";
     this.nbiPrintPreviewRibbon.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiPrintPreviewRibbon_LinkClicked);
     //
     // nbiReportDesigner
     //
     this.nbiReportDesigner.Caption = "Report Designer";
     this.nbiReportDesigner.Name = "nbiReportDesigner";
     this.nbiReportDesigner.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiReportDesigner_LinkClicked);
     //
     // nbiScheduler
     //
     this.nbiScheduler.Caption = "Scheduler";
     this.nbiScheduler.Name = "nbiScheduler";
     this.nbiScheduler.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiScheduler_LinkClicked);
     //
     // nbiTreeList
     //
     this.nbiTreeList.Caption = "TreeList";
     this.nbiTreeList.Name = "nbiTreeList";
     this.nbiTreeList.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiTreeList_LinkClicked);
     //
     // nbiWizard
     //
     this.nbiWizard.Caption = "Wizard";
     this.nbiWizard.Name = "nbiWizard";
     this.nbiWizard.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiWizard_LinkClicked);
     //
     // gridControl1
     //
     this.gridControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControl1.Location = new System.Drawing.Point(230, 0);
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name = "gridControl1";
     this.gridControl1.Size = new System.Drawing.Size(492, 393);
     this.gridControl1.TabIndex = 3;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     //
     // gridView1
     //
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name = "gridView1";
     //
     // nbiRichEdit
     //
     this.nbiRichEdit.Caption = "RichEdit";
     this.nbiRichEdit.Name = "nbiRichEdit";
     this.nbiRichEdit.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiRichEdit_LinkClicked);
     //
     // FormMain
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(722, 393);
     this.Controls.Add(this.gridControl1);
     this.Controls.Add(this.navBarControl1);
     this.Name = "FormMain";
     this.Text = "Form1";
     this.Load += new System.EventHandler(this.FormMain_Load);
     ((System.ComponentModel.ISupportInitialize)(this.navBarControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     this.ResumeLayout(false);
 }
Example #23
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.splitContainerControl_Sms = new DevExpress.XtraEditors.SplitContainerControl();
     this.navBarControl1            = new DevExpress.XtraNavBar.NavBarControl();
     this.navBarGroup_SmsMenu       = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarItem_SendNewSms     = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItem_ReceiveBox     = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItem_PhoneNum       = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItem_Template       = new DevExpress.XtraNavBar.NavBarItem();
     this.editTemplate1             = new CPTT.WinUI.Panels.EditTemplate();
     this.sendedSmsBox1             = new CPTT.WinUI.Panels.SendedSmsBox();
     this.smsReceiveBox1            = new CPTT.WinUI.Panels.SmsReceiveBox();
     this.phoneNum1         = new PhoneNum();
     this.sendNewSms1       = new CPTT.WinUI.Panels.SendNewSms();
     this.paneCaption_Title = new CPTT.WinUI.Panels.PaneCaption();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl_Sms)).BeginInit();
     this.splitContainerControl_Sms.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControl1)).BeginInit();
     this.SuspendLayout();
     //
     // splitContainerControl_Sms
     //
     this.splitContainerControl_Sms.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl_Sms.Location = new System.Drawing.Point(0, 0);
     this.splitContainerControl_Sms.Name     = "splitContainerControl_Sms";
     this.splitContainerControl_Sms.Panel1.Controls.Add(this.navBarControl1);
     this.splitContainerControl_Sms.Panel1.Text = "splitContainerControl1_Panel1";
     this.splitContainerControl_Sms.Panel2.Controls.Add(this.editTemplate1);
     this.splitContainerControl_Sms.Panel2.Controls.Add(this.sendedSmsBox1);
     this.splitContainerControl_Sms.Panel2.Controls.Add(this.smsReceiveBox1);
     this.splitContainerControl_Sms.Panel2.Controls.Add(this.sendNewSms1);
     this.splitContainerControl_Sms.Panel2.Controls.Add(this.phoneNum1);
     this.splitContainerControl_Sms.Panel2.Controls.Add(this.paneCaption_Title);
     this.splitContainerControl_Sms.Panel2.Text      = "splitContainerControl1_Panel2";
     this.splitContainerControl_Sms.Size             = new System.Drawing.Size(772, 540);
     this.splitContainerControl_Sms.SplitterPosition = 155;
     this.splitContainerControl_Sms.TabIndex         = 0;
     this.splitContainerControl_Sms.Text             = "splitContainerControl1";
     //
     // navBarControl1
     //
     this.navBarControl1.ActiveGroup = this.navBarGroup_SmsMenu;
     this.navBarControl1.AllowDrop   = true;
     this.navBarControl1.Dock        = System.Windows.Forms.DockStyle.Top;
     this.navBarControl1.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
         this.navBarGroup_SmsMenu
     });
     this.navBarControl1.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
         this.navBarItem_SendNewSms,
         this.navBarItem_ReceiveBox,
         this.navBarItem_PhoneNum,
         this.navBarItem_Template
     });
     this.navBarControl1.Location = new System.Drawing.Point(0, 0);
     this.navBarControl1.Name     = "navBarControl1";
     this.navBarControl1.Size     = new System.Drawing.Size(149, 184);
     this.navBarControl1.TabIndex = 0;
     this.navBarControl1.Text     = "navBarControl1";
     //
     // navBarGroup_SmsMenu
     //
     this.navBarGroup_SmsMenu.Caption    = "²Ù×÷²Ëµ¥";
     this.navBarGroup_SmsMenu.Expanded   = true;
     this.navBarGroup_SmsMenu.GroupStyle = DevExpress.XtraNavBar.NavBarGroupStyle.SmallIconsList;
     this.navBarGroup_SmsMenu.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
         new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem_SendNewSms),
         new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem_ReceiveBox),
         new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem_PhoneNum),
         new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem_Template)
     });
     this.navBarGroup_SmsMenu.Name = "navBarGroup_SmsMenu";
     //
     // navBarItem_SendNewSms
     //
     this.navBarItem_SendNewSms.Caption      = "·¢ËÍжÌÐÅ";
     this.navBarItem_SendNewSms.Name         = "navBarItem_SendNewSms";
     this.navBarItem_SendNewSms.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_SendNewSms_LinkClicked);
     //
     // navBarItem_ReceiveBox
     //
     this.navBarItem_ReceiveBox.Caption      = "ÊÕ¼þÏä";
     this.navBarItem_ReceiveBox.Name         = "navBarItem_ReceiveBox";
     this.navBarItem_ReceiveBox.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_ReceiveBox_LinkClicked);
     //
     // navBarItem_PhoneNum
     //
     this.navBarItem_PhoneNum.Caption      = "ºÅÂë²¾";
     this.navBarItem_PhoneNum.Name         = "navBarItem_PhoneNum";
     this.navBarItem_PhoneNum.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_PhoneNum_LinkClicked);
     //
     // navBarItem_Template
     //
     this.navBarItem_Template.Caption      = "Ä£°å±à¼­";
     this.navBarItem_Template.Name         = "navBarItem_Template";
     this.navBarItem_Template.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_Template_LinkClicked);
     //
     // editTemplate1
     //
     this.editTemplate1.Appearance.BackColor            = System.Drawing.Color.WhiteSmoke;
     this.editTemplate1.Appearance.Options.UseBackColor = true;
     this.editTemplate1.Location = new System.Drawing.Point(240, 232);
     this.editTemplate1.Name     = "editTemplate1";
     this.editTemplate1.Size     = new System.Drawing.Size(144, 128);
     this.editTemplate1.TabIndex = 15;
     this.editTemplate1.Visible  = false;
     //
     // sendedSmsBox1
     //
     this.sendedSmsBox1.Appearance.BackColor            = System.Drawing.Color.WhiteSmoke;
     this.sendedSmsBox1.Appearance.Options.UseBackColor = true;
     this.sendedSmsBox1.Location = new System.Drawing.Point(400, 64);
     this.sendedSmsBox1.Name     = "sendedSmsBox1";
     this.sendedSmsBox1.Size     = new System.Drawing.Size(144, 128);
     this.sendedSmsBox1.TabIndex = 13;
     this.sendedSmsBox1.Visible  = false;
     //
     // smsReceiveBox1
     //
     this.smsReceiveBox1.Appearance.BackColor            = System.Drawing.Color.WhiteSmoke;
     this.smsReceiveBox1.Appearance.Options.UseBackColor = true;
     this.smsReceiveBox1.Location = new System.Drawing.Point(240, 64);
     this.smsReceiveBox1.Name     = "smsReceiveBox1";
     this.smsReceiveBox1.Size     = new System.Drawing.Size(144, 128);
     this.smsReceiveBox1.TabIndex = 12;
     this.smsReceiveBox1.Visible  = false;
     //
     // phoneNum1
     //
     this.phoneNum1.Appearance.BackColor            = System.Drawing.Color.WhiteSmoke;
     this.phoneNum1.Appearance.Options.UseBackColor = true;
     this.phoneNum1.Location = new System.Drawing.Point(72, 264);
     this.phoneNum1.Name     = "phoneNum1";
     this.phoneNum1.Size     = new System.Drawing.Size(144, 128);
     this.phoneNum1.TabIndex = 11;
     this.phoneNum1.Visible  = false;
     //
     // sendNewSms1
     //
     this.sendNewSms1.Appearance.BackColor            = System.Drawing.Color.WhiteSmoke;
     this.sendNewSms1.Appearance.Options.UseBackColor = true;
     this.sendNewSms1.Location = new System.Drawing.Point(72, 64);
     this.sendNewSms1.Name     = "sendNewSms1";
     this.sendNewSms1.Size     = new System.Drawing.Size(144, 128);
     this.sendNewSms1.TabIndex = 11;
     this.sendNewSms1.Visible  = false;
     //
     // paneCaption_Title
     //
     this.paneCaption_Title.AllowActive = false;
     this.paneCaption_Title.AntiAlias   = false;
     this.paneCaption_Title.Caption     = "·¢ËÍжÌÐÅ";
     this.paneCaption_Title.Dock        = System.Windows.Forms.DockStyle.Top;
     this.paneCaption_Title.Font        = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold);
     this.paneCaption_Title.InactiveGradientHighColor = System.Drawing.Color.DimGray;
     this.paneCaption_Title.InactiveGradientLowColor  = System.Drawing.Color.LightGray;
     this.paneCaption_Title.Location = new System.Drawing.Point(0, 0);
     this.paneCaption_Title.Name     = "paneCaption_Title";
     this.paneCaption_Title.Size     = new System.Drawing.Size(607, 28);
     this.paneCaption_Title.TabIndex = 10;
     //
     // SmsInfo
     //
     this.Appearance.BackColor            = System.Drawing.Color.WhiteSmoke;
     this.Appearance.Options.UseBackColor = true;
     this.Controls.Add(this.splitContainerControl_Sms);
     this.Name = "SmsInfo";
     this.Size = new System.Drawing.Size(772, 540);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl_Sms)).EndInit();
     this.splitContainerControl_Sms.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.navBarControl1)).EndInit();
     this.ResumeLayout(false);
 }
Example #24
0
        private void AddItem()
        {
            nbcMeun.Items.Clear();
            DataRow[] rows = smmprogTable.Select(string.Format("parentid='{0}' and ProgType='{1}'", string.Empty, "m"));
            IList list = SysService.GetList("SelectSmmprogByMeIco", null);
            DataTable dt_list = DataConverter.ToDataTable(list);
            nbcMeun.LargeImages = ImageListRes.GetimageList(28, dt_list);
            IList list2 = SysService.GetList("SelectSmmprogByFormIco", null);
            DataTable dt_list2 = DataConverter.ToDataTable(list2);
            nbcMeun.SmallImages = ImageListRes.GetimageList(22, dt_list2);
            foreach (DataRow row in rows)
            {

                DevExpress.XtraNavBar.NavBarGroup nbg = new DevExpress.XtraNavBar.NavBarGroup();
                nbg.Name = row["progname"].ToString();
                nbg.Tag = DataConverter.RowToObject<Smmprog>(row);
                nbg.Caption = row["progname"].ToString();
                nbg.Hint = row["progname"].ToString();
                nbg.LargeImage = ((ImageList)nbcMeun.LargeImages).Images[row["ProgIco"].ToString()];

                DataRow[] childrows = smmprogTable.Select(string.Format("parentid='{0}' and ProgType='{1}'", row["progid"].ToString(),"m"));
                foreach (DataRow itemrow in childrows)
                {
                    VsmdgroupProg smdgroup2 = new VsmdgroupProg();
                    smdgroup2 = MIS.GetProgRight(itemrow["ProgId"].ToString(), MIS.ProgUID);
                    if (smdgroup2 != null && Convert.ToInt32(smdgroup2.run) <= 0)
                        continue;
                    DevExpress.XtraNavBar.NavBarItem nbi = new DevExpress.XtraNavBar.NavBarItem();
                    nbi.Name = itemrow["progname"].ToString();
                    nbi.Tag = DataConverter.RowToObject<Smmprog>(itemrow);
                    nbi.Caption = itemrow["progname"].ToString();
                    nbi.SmallImage = ((ImageList)nbcMeun.SmallImages).Images[itemrow["ProgIco"].ToString()];
                    nbi.Hint = itemrow["progname"].ToString();
                    nbcMeun.Items.Add(nbi);
                    nbg.ItemLinks.Add(nbi);
                }
                nbcMeun.Groups.Add(nbg);
                nbcMeun.Refresh();
            }
        }
Example #25
0
 /// <summary> 
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
     this.navBarControl1 = new DevExpress.XtraNavBar.NavBarControl();
     this.navBarGroup1 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarItem4 = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItem5 = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItem6 = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItem7 = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItem8 = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItem9 = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItem10 = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarGroup2 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarItem12 = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemReformReView = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemReviewOptionApprove = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemHearingNotice = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemPutDown = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemHearingInform = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemWritServiceReceipt = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEnquireQuestion = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemPutOnRecord = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemNoticeOfEnquiry = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemInterrogationRecord = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemExplorationRecord = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemSampling = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemAppraisalEntrust = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemSaveEvidenceAudit = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemSaveEvidenceNotice = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemSaveEvidenceProceAudit = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemSaveEvidenceProceDecide = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemPunishmentDiscussRecord = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemCaseCancel = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemInCaseOfTable = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItem1 = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItem2 = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItem3 = new DevExpress.XtraNavBar.NavBarItem();
     this.header1 = new Maleos.Controls.Header();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
     this.splitContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControl1)).BeginInit();
     this.SuspendLayout();
     //
     // splitContainerControl1
     //
     this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl1.Location = new System.Drawing.Point(0, 75);
     this.splitContainerControl1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.splitContainerControl1.Name = "splitContainerControl1";
     this.splitContainerControl1.Padding = new System.Windows.Forms.Padding(17, 0, 17, 15);
     this.splitContainerControl1.Panel1.Controls.Add(this.navBarControl1);
     this.splitContainerControl1.Panel1.Text = "Panel1";
     this.splitContainerControl1.Panel2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
     this.splitContainerControl1.Panel2.Text = "Panel2";
     this.splitContainerControl1.Size = new System.Drawing.Size(982, 476);
     this.splitContainerControl1.SplitterPosition = 220;
     this.splitContainerControl1.TabIndex = 5;
     this.splitContainerControl1.Text = "splitContainerControl1";
     //
     // navBarControl1
     //
     this.navBarControl1.ActiveGroup = this.navBarGroup1;
     this.navBarControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.navBarControl1.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.navBarControl1.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
     this.navBarGroup1,
     this.navBarGroup2});
     this.navBarControl1.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
     this.navBarItemReformReView,
     this.navBarItemReviewOptionApprove,
     this.navBarItemHearingNotice,
     this.navBarItemPutDown,
     this.navBarItemHearingInform,
     this.navBarItemWritServiceReceipt,
     this.navBarItemEnquireQuestion,
     this.navBarItemPutOnRecord,
     this.navBarItemNoticeOfEnquiry,
     this.navBarItemInterrogationRecord,
     this.navBarItemExplorationRecord,
     this.navBarItemSampling,
     this.navBarItemAppraisalEntrust,
     this.navBarItemSaveEvidenceAudit,
     this.navBarItemSaveEvidenceNotice,
     this.navBarItemSaveEvidenceProceAudit,
     this.navBarItemSaveEvidenceProceDecide,
     this.navBarItemPunishmentDiscussRecord,
     this.navBarItemCaseCancel,
     this.navBarItemInCaseOfTable,
     this.navBarItem1,
     this.navBarItem2,
     this.navBarItem3,
     this.navBarItem4,
     this.navBarItem5,
     this.navBarItem6,
     this.navBarItem7,
     this.navBarItem8,
     this.navBarItem9,
     this.navBarItem10,
     this.navBarItem12});
     this.navBarControl1.Location = new System.Drawing.Point(0, 0);
     this.navBarControl1.Name = "navBarControl1";
     this.navBarControl1.OptionsNavPane.ExpandedWidth = 220;
     this.navBarControl1.Size = new System.Drawing.Size(220, 461);
     this.navBarControl1.TabIndex = 0;
     this.navBarControl1.Text = "案件移送";
     //
     // navBarGroup1
     //
     this.navBarGroup1.Caption = "危化品名录";
     this.navBarGroup1.Expanded = true;
     this.navBarGroup1.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem4),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem5),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem6),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem7),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem8),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem9),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem10)});
     this.navBarGroup1.Name = "navBarGroup1";
     //
     // navBarItem4
     //
     this.navBarItem4.Caption = "爆炸品";
     this.navBarItem4.Name = "navBarItem4";
     this.navBarItem4.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem4_LinkClicked);
     //
     // navBarItem5
     //
     this.navBarItem5.Caption = "压缩气体和液化气体";
     this.navBarItem5.Name = "navBarItem5";
     this.navBarItem5.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem5_LinkClicked);
     //
     // navBarItem6
     //
     this.navBarItem6.Caption = "易燃液体";
     this.navBarItem6.Name = "navBarItem6";
     this.navBarItem6.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem6_LinkClicked);
     //
     // navBarItem7
     //
     this.navBarItem7.Caption = "易燃固体、自燃物品和遇湿易燃物品";
     this.navBarItem7.Name = "navBarItem7";
     this.navBarItem7.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem7_LinkClicked);
     //
     // navBarItem8
     //
     this.navBarItem8.Caption = "氧化剂和有机过氧化物";
     this.navBarItem8.Name = "navBarItem8";
     this.navBarItem8.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem8_LinkClicked);
     //
     // navBarItem9
     //
     this.navBarItem9.Caption = "毒害品和感染性物品";
     this.navBarItem9.Name = "navBarItem9";
     this.navBarItem9.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem9_LinkClicked);
     //
     // navBarItem10
     //
     this.navBarItem10.Caption = "腐蚀品";
     this.navBarItem10.Name = "navBarItem10";
     this.navBarItem10.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem10_LinkClicked);
     //
     // navBarGroup2
     //
     this.navBarGroup2.Caption = "剧毒化学品目录";
     this.navBarGroup2.Expanded = true;
     this.navBarGroup2.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem12)});
     this.navBarGroup2.Name = "navBarGroup2";
     //
     // navBarItem12
     //
     this.navBarItem12.Caption = "剧毒化学品目录";
     this.navBarItem12.Name = "navBarItem12";
     this.navBarItem12.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem12_LinkClicked);
     //
     // navBarItemReformReView
     //
     this.navBarItemReformReView.Caption = "整改复查意见书";
     this.navBarItemReformReView.Name = "navBarItemReformReView";
     //
     // navBarItemReviewOptionApprove
     //
     this.navBarItemReviewOptionApprove.Caption = "复查意见审批表";
     this.navBarItemReviewOptionApprove.Name = "navBarItemReviewOptionApprove";
     //
     // navBarItemHearingNotice
     //
     this.navBarItemHearingNotice.Caption = "听证会通知书";
     this.navBarItemHearingNotice.Name = "navBarItemHearingNotice";
     //
     // navBarItemPutDown
     //
     this.navBarItemPutDown.Caption = "听证笔录";
     this.navBarItemPutDown.Name = "navBarItemPutDown";
     //
     // navBarItemHearingInform
     //
     this.navBarItemHearingInform.Caption = "听证会报告书";
     this.navBarItemHearingInform.Name = "navBarItemHearingInform";
     //
     // navBarItemWritServiceReceipt
     //
     this.navBarItemWritServiceReceipt.Caption = "文书送达回执";
     this.navBarItemWritServiceReceipt.Name = "navBarItemWritServiceReceipt";
     //
     // navBarItemEnquireQuestion
     //
     this.navBarItemEnquireQuestion.Caption = "询问笔录(收集相关证据)";
     this.navBarItemEnquireQuestion.Name = "navBarItemEnquireQuestion";
     //
     // navBarItemPutOnRecord
     //
     this.navBarItemPutOnRecord.Caption = "立案审批表";
     this.navBarItemPutOnRecord.Name = "navBarItemPutOnRecord";
     //
     // navBarItemNoticeOfEnquiry
     //
     this.navBarItemNoticeOfEnquiry.Caption = "询问通知书";
     this.navBarItemNoticeOfEnquiry.Name = "navBarItemNoticeOfEnquiry";
     //
     // navBarItemInterrogationRecord
     //
     this.navBarItemInterrogationRecord.Caption = "询问笔录";
     this.navBarItemInterrogationRecord.Name = "navBarItemInterrogationRecord";
     //
     // navBarItemExplorationRecord
     //
     this.navBarItemExplorationRecord.Caption = "勘验笔录";
     this.navBarItemExplorationRecord.Name = "navBarItemExplorationRecord";
     //
     // navBarItemSampling
     //
     this.navBarItemSampling.Caption = "抽样取证凭证";
     this.navBarItemSampling.Name = "navBarItemSampling";
     //
     // navBarItemAppraisalEntrust
     //
     this.navBarItemAppraisalEntrust.Caption = "鉴定委托书";
     this.navBarItemAppraisalEntrust.Name = "navBarItemAppraisalEntrust";
     //
     // navBarItemSaveEvidenceAudit
     //
     this.navBarItemSaveEvidenceAudit.Caption = "先行登记保存证据审批表";
     this.navBarItemSaveEvidenceAudit.Name = "navBarItemSaveEvidenceAudit";
     //
     // navBarItemSaveEvidenceNotice
     //
     this.navBarItemSaveEvidenceNotice.Caption = "先行登记保存证据通知书";
     this.navBarItemSaveEvidenceNotice.Name = "navBarItemSaveEvidenceNotice";
     //
     // navBarItemSaveEvidenceProceAudit
     //
     this.navBarItemSaveEvidenceProceAudit.Caption = "先行登记保存证据处理审批表";
     this.navBarItemSaveEvidenceProceAudit.Name = "navBarItemSaveEvidenceProceAudit";
     //
     // navBarItemSaveEvidenceProceDecide
     //
     this.navBarItemSaveEvidenceProceDecide.Caption = "先行登记保存证据处理决定书";
     this.navBarItemSaveEvidenceProceDecide.Name = "navBarItemSaveEvidenceProceDecide";
     //
     // navBarItemPunishmentDiscussRecord
     //
     this.navBarItemPunishmentDiscussRecord.Caption = "行政处罚集体讨论记录";
     this.navBarItemPunishmentDiscussRecord.Name = "navBarItemPunishmentDiscussRecord";
     //
     // navBarItemCaseCancel
     //
     this.navBarItemCaseCancel.Caption = "案件终止(撤销)审批表";
     this.navBarItemCaseCancel.Name = "navBarItemCaseCancel";
     //
     // navBarItemInCaseOfTable
     //
     this.navBarItemInCaseOfTable.Caption = "案件处理呈批表";
     this.navBarItemInCaseOfTable.Name = "navBarItemInCaseOfTable";
     //
     // navBarItem1
     //
     this.navBarItem1.Caption = "案件移送审批表";
     this.navBarItem1.Name = "navBarItem1";
     //
     // navBarItem2
     //
     this.navBarItem2.Caption = "案件移送书";
     this.navBarItem2.Name = "navBarItem2";
     //
     // navBarItem3
     //
     this.navBarItem3.Caption = "navBarItem3";
     this.navBarItem3.Name = "navBarItem3";
     //
     // header1
     //
     this.header1.Appearance.BackColor = System.Drawing.Color.White;
     this.header1.Appearance.Options.UseBackColor = true;
     this.header1.Dock = System.Windows.Forms.DockStyle.Top;
     this.header1.Location = new System.Drawing.Point(0, 0);
     this.header1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.header1.Name = "header1";
     this.header1.Size = new System.Drawing.Size(982, 75);
     this.header1.TabIndex = 4;
     this.header1.Title = "台州市安监移动执法系统";
     this.header1.BackEvent += new System.EventHandler(this.header1_BackEvent);
     //
     // ChemicalsList
     //
     this.Appearance.BackColor = System.Drawing.Color.White;
     this.Appearance.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Appearance.Options.UseBackColor = true;
     this.Appearance.Options.UseFont = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.splitContainerControl1);
     this.Controls.Add(this.header1);
     this.Name = "ChemicalsList";
     this.Size = new System.Drawing.Size(982, 551);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
     this.splitContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.navBarControl1)).EndInit();
     this.ResumeLayout(false);
 }
Example #26
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
 /// 此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(MainForm));
     this.navBarControl1 = new DevExpress.XtraNavBar.NavBarControl();
     this.groExit        = new DevExpress.XtraNavBar.NavBarGroup();
     this.lkExit         = new DevExpress.XtraNavBar.NavBarItem();
     this.lkReturn       = new DevExpress.XtraNavBar.NavBarItem();
     this.groData        = new DevExpress.XtraNavBar.NavBarGroup();
     this.lkBook         = new DevExpress.XtraNavBar.NavBarItem();
     this.lkUser         = new DevExpress.XtraNavBar.NavBarItem();
     this.lkReader       = new DevExpress.XtraNavBar.NavBarItem();
     this.lkPublishing   = new DevExpress.XtraNavBar.NavBarItem();
     this.groOther       = new DevExpress.XtraNavBar.NavBarGroup();
     this.lkQuery        = new DevExpress.XtraNavBar.NavBarItem();
     this.lkBorrowback   = new DevExpress.XtraNavBar.NavBarItem();
     this.splitter       = new System.Windows.Forms.Splitter();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControl1)).BeginInit();
     this.SuspendLayout();
     //
     // navBarControl1
     //
     this.navBarControl1.ActiveGroup = this.groExit;
     this.navBarControl1.AllowDrop   = true;
     this.navBarControl1.Cursor      = System.Windows.Forms.Cursors.Hand;
     this.navBarControl1.Dock        = System.Windows.Forms.DockStyle.Left;
     this.navBarControl1.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
         this.groData,
         this.groOther,
         this.groExit
     });
     this.navBarControl1.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
         this.lkReader,
         this.lkPublishing,
         this.lkBook,
         this.lkUser,
         this.lkBorrowback,
         this.lkQuery,
         this.lkExit,
         this.lkReturn
     });
     this.navBarControl1.Location = new System.Drawing.Point(0, 0);
     this.navBarControl1.Name     = "navBarControl1";
     this.navBarControl1.Size     = new System.Drawing.Size(140, 525);
     this.navBarControl1.Styles.AddReplace("Button", new DevExpress.Utils.ViewStyleEx("Button", "NavBarControl", "", true, false, false, DevExpress.Utils.HorzAlignment.Center, DevExpress.Utils.VertAlignment.Center, null, System.Drawing.SystemColors.ControlLight, System.Drawing.SystemColors.ControlText, System.Drawing.Color.Empty, System.Drawing.Drawing2D.LinearGradientMode.Horizontal));
     this.navBarControl1.TabIndex = 19;
     this.navBarControl1.Text     = "navBarControl1";
     this.navBarControl1.View     = new DevExpress.XtraNavBar.ViewInfo.AdvExplorerBarViewInfoRegistrator();
     //
     // groExit
     //
     this.groExit.Caption  = "退出系统";
     this.groExit.Expanded = true;
     this.groExit.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
         new DevExpress.XtraNavBar.NavBarItemLink(this.lkReturn),
         new DevExpress.XtraNavBar.NavBarItemLink(this.lkExit)
     });
     this.groExit.Name = "groExit";
     //
     // lkExit
     //
     this.lkExit.Caption      = "退出系统";
     this.lkExit.LargeImage   = ((System.Drawing.Image)(resources.GetObject("lkExit.LargeImage")));
     this.lkExit.Name         = "lkExit";
     this.lkExit.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.ExitApplication);
     //
     // lkReturn
     //
     this.lkReturn.Caption      = "返回登录";
     this.lkReturn.LargeImage   = ((System.Drawing.Image)(resources.GetObject("lkReturn.LargeImage")));
     this.lkReturn.Name         = "lkReturn";
     this.lkReturn.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.Return);
     //
     // groData
     //
     this.groData.Caption  = "数据维护";
     this.groData.Expanded = true;
     this.groData.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
         new DevExpress.XtraNavBar.NavBarItemLink(this.lkBook),
         new DevExpress.XtraNavBar.NavBarItemLink(this.lkUser),
         new DevExpress.XtraNavBar.NavBarItemLink(this.lkReader),
         new DevExpress.XtraNavBar.NavBarItemLink(this.lkPublishing)
     });
     this.groData.Name = "groData";
     //
     // lkBook
     //
     this.lkBook.Caption      = "图书信息";
     this.lkBook.LargeImage   = ((System.Drawing.Image)(resources.GetObject("lkBook.LargeImage")));
     this.lkBook.Name         = "lkBook";
     this.lkBook.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.ShowBook);
     //
     // lkUser
     //
     this.lkUser.Caption      = "用户信息";
     this.lkUser.LargeImage   = ((System.Drawing.Image)(resources.GetObject("lkUser.LargeImage")));
     this.lkUser.Name         = "lkUser";
     this.lkUser.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.ShowUser);
     //
     // lkReader
     //
     this.lkReader.Caption      = "读者信息";
     this.lkReader.LargeImage   = ((System.Drawing.Image)(resources.GetObject("lkReader.LargeImage")));
     this.lkReader.Name         = "lkReader";
     this.lkReader.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.ShowReader);
     //
     // lkPublishing
     //
     this.lkPublishing.Caption      = "出版社信息";
     this.lkPublishing.LargeImage   = ((System.Drawing.Image)(resources.GetObject("lkPublishing.LargeImage")));
     this.lkPublishing.Name         = "lkPublishing";
     this.lkPublishing.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.ShowPublishing);
     //
     // groOther
     //
     this.groOther.Caption  = "其他功能";
     this.groOther.Expanded = true;
     this.groOther.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
         new DevExpress.XtraNavBar.NavBarItemLink(this.lkQuery),
         new DevExpress.XtraNavBar.NavBarItemLink(this.lkBorrowback)
     });
     this.groOther.Name = "groOther";
     //
     // lkQuery
     //
     this.lkQuery.Caption      = "综合查询";
     this.lkQuery.LargeImage   = ((System.Drawing.Image)(resources.GetObject("lkQuery.LargeImage")));
     this.lkQuery.Name         = "lkQuery";
     this.lkQuery.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.ShowQuery);
     //
     // lkBorrowback
     //
     this.lkBorrowback.Caption      = "读者借还书";
     this.lkBorrowback.LargeImage   = ((System.Drawing.Image)(resources.GetObject("lkBorrowback.LargeImage")));
     this.lkBorrowback.Name         = "lkBorrowback";
     this.lkBorrowback.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.ShowBorrow);
     //
     // splitter
     //
     this.splitter.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.splitter.Location    = new System.Drawing.Point(140, 0);
     this.splitter.Name        = "splitter";
     this.splitter.Size        = new System.Drawing.Size(3, 525);
     this.splitter.TabIndex    = 21;
     this.splitter.TabStop     = false;
     //
     // MainForm
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.BackColor         = System.Drawing.Color.LightBlue;
     this.ClientSize        = new System.Drawing.Size(780, 525);
     this.Controls.Add(this.splitter);
     this.Controls.Add(this.navBarControl1);
     this.Icon           = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.IsMdiContainer = true;
     this.Name           = "MainForm";
     this.StartPosition  = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text           = "图书管理信息系统";
     this.WindowState    = System.Windows.Forms.FormWindowState.Maximized;
     this.Load          += new System.EventHandler(this.MainForm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.navBarControl1)).EndInit();
     this.ResumeLayout(false);
 }
Example #27
0
		/// <summary> 
		/// Required method for Designer support - do not modify 
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			this.splitContainerControl_Sms = new DevExpress.XtraEditors.SplitContainerControl();
			this.navBarControl1 = new DevExpress.XtraNavBar.NavBarControl();
			this.navBarGroup_SmsMenu = new DevExpress.XtraNavBar.NavBarGroup();
			this.navBarItem_SendNewSms = new DevExpress.XtraNavBar.NavBarItem();
			this.navBarItem_ReceiveBox = new DevExpress.XtraNavBar.NavBarItem();
			this.navBarItem_PhoneNum = new DevExpress.XtraNavBar.NavBarItem();
			this.navBarItem_Template = new DevExpress.XtraNavBar.NavBarItem();
			this.editTemplate1 = new CPTT.WinUI.Panels.EditTemplate();
			this.sendedSmsBox1 = new CPTT.WinUI.Panels.SendedSmsBox();
			this.smsReceiveBox1 = new CPTT.WinUI.Panels.SmsReceiveBox();
			this.phoneNum1 = new PhoneNum();
			this.sendNewSms1 = new CPTT.WinUI.Panels.SendNewSms();
			this.paneCaption_Title = new CPTT.WinUI.Panels.PaneCaption();
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl_Sms)).BeginInit();
			this.splitContainerControl_Sms.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.navBarControl1)).BeginInit();
			this.SuspendLayout();
			// 
			// splitContainerControl_Sms
			// 
			this.splitContainerControl_Sms.Dock = System.Windows.Forms.DockStyle.Fill;
			this.splitContainerControl_Sms.Location = new System.Drawing.Point(0, 0);
			this.splitContainerControl_Sms.Name = "splitContainerControl_Sms";
			this.splitContainerControl_Sms.Panel1.Controls.Add(this.navBarControl1);
			this.splitContainerControl_Sms.Panel1.Text = "splitContainerControl1_Panel1";
			this.splitContainerControl_Sms.Panel2.Controls.Add(this.editTemplate1);
			this.splitContainerControl_Sms.Panel2.Controls.Add(this.sendedSmsBox1);
			this.splitContainerControl_Sms.Panel2.Controls.Add(this.smsReceiveBox1);
			this.splitContainerControl_Sms.Panel2.Controls.Add(this.sendNewSms1);
			this.splitContainerControl_Sms.Panel2.Controls.Add(this.phoneNum1);
			this.splitContainerControl_Sms.Panel2.Controls.Add(this.paneCaption_Title);
			this.splitContainerControl_Sms.Panel2.Text = "splitContainerControl1_Panel2";
			this.splitContainerControl_Sms.Size = new System.Drawing.Size(772, 540);
			this.splitContainerControl_Sms.SplitterPosition = 155;
			this.splitContainerControl_Sms.TabIndex = 0;
			this.splitContainerControl_Sms.Text = "splitContainerControl1";
			// 
			// navBarControl1
			// 
			this.navBarControl1.ActiveGroup = this.navBarGroup_SmsMenu;
			this.navBarControl1.AllowDrop = true;
			this.navBarControl1.Dock = System.Windows.Forms.DockStyle.Top;
			this.navBarControl1.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
																							this.navBarGroup_SmsMenu});
			this.navBarControl1.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
																						  this.navBarItem_SendNewSms,
																						  this.navBarItem_ReceiveBox,
																						  this.navBarItem_PhoneNum,
																						  this.navBarItem_Template});
			this.navBarControl1.Location = new System.Drawing.Point(0, 0);
			this.navBarControl1.Name = "navBarControl1";
			this.navBarControl1.Size = new System.Drawing.Size(149, 184);
			this.navBarControl1.TabIndex = 0;
			this.navBarControl1.Text = "navBarControl1";
			// 
			// navBarGroup_SmsMenu
			// 
			this.navBarGroup_SmsMenu.Caption = "²Ù×÷²Ëµ¥";
			this.navBarGroup_SmsMenu.Expanded = true;
			this.navBarGroup_SmsMenu.GroupStyle = DevExpress.XtraNavBar.NavBarGroupStyle.SmallIconsList;
			this.navBarGroup_SmsMenu.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
																									   new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem_SendNewSms),
																									   new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem_ReceiveBox),
																									   new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem_PhoneNum),
																									   new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem_Template)});
			this.navBarGroup_SmsMenu.Name = "navBarGroup_SmsMenu";
			// 
			// navBarItem_SendNewSms
			// 
			this.navBarItem_SendNewSms.Caption = "·¢ËÍжÌÐÅ";
			this.navBarItem_SendNewSms.Name = "navBarItem_SendNewSms";
			this.navBarItem_SendNewSms.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_SendNewSms_LinkClicked);
			// 
			// navBarItem_ReceiveBox
			// 
			this.navBarItem_ReceiveBox.Caption = "ÊÕ¼þÏä";
			this.navBarItem_ReceiveBox.Name = "navBarItem_ReceiveBox";
			this.navBarItem_ReceiveBox.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_ReceiveBox_LinkClicked);
			// 
			// navBarItem_PhoneNum
			// 
			this.navBarItem_PhoneNum.Caption = "ºÅÂë²¾";
			this.navBarItem_PhoneNum.Name = "navBarItem_PhoneNum";
			this.navBarItem_PhoneNum.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_PhoneNum_LinkClicked);
			// 
			// navBarItem_Template
			// 
			this.navBarItem_Template.Caption = "Ä£°å±à¼­";
			this.navBarItem_Template.Name = "navBarItem_Template";
			this.navBarItem_Template.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_Template_LinkClicked);
			// 
			// editTemplate1
			// 
			this.editTemplate1.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
			this.editTemplate1.Appearance.Options.UseBackColor = true;
			this.editTemplate1.Location = new System.Drawing.Point(240, 232);
			this.editTemplate1.Name = "editTemplate1";
			this.editTemplate1.Size = new System.Drawing.Size(144, 128);
			this.editTemplate1.TabIndex = 15;
			this.editTemplate1.Visible = false;
			// 
			// sendedSmsBox1
			// 
			this.sendedSmsBox1.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
			this.sendedSmsBox1.Appearance.Options.UseBackColor = true;
			this.sendedSmsBox1.Location = new System.Drawing.Point(400, 64);
			this.sendedSmsBox1.Name = "sendedSmsBox1";
			this.sendedSmsBox1.Size = new System.Drawing.Size(144, 128);
			this.sendedSmsBox1.TabIndex = 13;
			this.sendedSmsBox1.Visible = false;
			// 
			// smsReceiveBox1
			// 
			this.smsReceiveBox1.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
			this.smsReceiveBox1.Appearance.Options.UseBackColor = true;
			this.smsReceiveBox1.Location = new System.Drawing.Point(240, 64);
			this.smsReceiveBox1.Name = "smsReceiveBox1";
			this.smsReceiveBox1.Size = new System.Drawing.Size(144, 128);
			this.smsReceiveBox1.TabIndex = 12;
			this.smsReceiveBox1.Visible = false;
			// 
			// phoneNum1
			// 
			this.phoneNum1.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
			this.phoneNum1.Appearance.Options.UseBackColor = true;
			this.phoneNum1.Location = new System.Drawing.Point(72, 264);
			this.phoneNum1.Name = "phoneNum1";
			this.phoneNum1.Size = new System.Drawing.Size(144, 128);
			this.phoneNum1.TabIndex = 11;
			this.phoneNum1.Visible = false;
			// 
			// sendNewSms1
			// 
			this.sendNewSms1.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
			this.sendNewSms1.Appearance.Options.UseBackColor = true;
			this.sendNewSms1.Location = new System.Drawing.Point(72, 64);
			this.sendNewSms1.Name = "sendNewSms1";
			this.sendNewSms1.Size = new System.Drawing.Size(144, 128);
			this.sendNewSms1.TabIndex = 11;
			this.sendNewSms1.Visible = false;
			// 
			// paneCaption_Title
			// 
			this.paneCaption_Title.AllowActive = false;
			this.paneCaption_Title.AntiAlias = false;
			this.paneCaption_Title.Caption = "·¢ËÍжÌÐÅ";
			this.paneCaption_Title.Dock = System.Windows.Forms.DockStyle.Top;
			this.paneCaption_Title.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold);
			this.paneCaption_Title.InactiveGradientHighColor = System.Drawing.Color.DimGray;
			this.paneCaption_Title.InactiveGradientLowColor = System.Drawing.Color.LightGray;
			this.paneCaption_Title.Location = new System.Drawing.Point(0, 0);
			this.paneCaption_Title.Name = "paneCaption_Title";
			this.paneCaption_Title.Size = new System.Drawing.Size(607, 28);
			this.paneCaption_Title.TabIndex = 10;
			// 
			// SmsInfo
			// 
			this.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
			this.Appearance.Options.UseBackColor = true;
			this.Controls.Add(this.splitContainerControl_Sms);
			this.Name = "SmsInfo";
			this.Size = new System.Drawing.Size(772, 540);
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl_Sms)).EndInit();
			this.splitContainerControl_Sms.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.navBarControl1)).EndInit();
			this.ResumeLayout(false);

		}
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RoleDetialFrm));
     this.groupControlSelect = new DevExpress.XtraEditors.GroupControl();
     this.LUEItems = new DevExpress.XtraEditors.LookUpEdit();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.dockManagerMain = new DevExpress.XtraBars.Docking.DockManager(this.components);
     this.pnlContainerMain = new DevExpress.XtraBars.Docking.DockPanel();
     this.DPReport = new DevExpress.XtraBars.Docking.DockPanel();
     this.dockPanel5_Container = new DevExpress.XtraBars.Docking.ControlContainer();
     this.imageCollection32 = new DevExpress.Utils.ImageCollection(this.components);
     this.DPCode = new DevExpress.XtraBars.Docking.DockPanel();
     this.dockPanel1_Container = new DevExpress.XtraBars.Docking.ControlContainer();
     this.navBarControlCode = new DevExpress.XtraNavBar.NavBarControl();
     this.navBarGroup1 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarItemEmpCD_AsaseEmp = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCD_EmpState = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCD_JobDescription = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCD_EmpJob = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCD_Department = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCD_Subject = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCD_QualifiedPlace = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCDQualification = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCD_Specialization = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCD_MaritalStatus = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCD_Courses = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCDPlaceTraining = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCD_AgazaType = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCDTakdeer = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCD_EznType = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCD_GzaaType = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCD_GehaGazaa = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCD_EmpTIME = new DevExpress.XtraNavBar.NavBarItem();
     this.DPData = new DevExpress.XtraBars.Docking.DockPanel();
     this.dockPanel2_Container = new DevExpress.XtraBars.Docking.ControlContainer();
     this.navBarControlData = new DevExpress.XtraNavBar.NavBarControl();
     this.navBarGroup2 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarItemEmpTBL_Emp = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpEmp_Moaahel = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpEMP_agazat = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpEMP_Later = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpEMP_ezn = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpEMP_gzaat = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpEMP_training = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpEMP_TAMEEN = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpEMP_report = new DevExpress.XtraNavBar.NavBarItem();
     this.DPPriv = new DevExpress.XtraBars.Docking.DockPanel();
     this.dockPanel3_Container = new DevExpress.XtraBars.Docking.ControlContainer();
     this.navBarControlPriv = new DevExpress.XtraNavBar.NavBarControl();
     this.navBarGroup3 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarItemEmpRoles = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpRoleDetial = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpUsers = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpUserRoles = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpAppOptions = new DevExpress.XtraNavBar.NavBarItem();
     this.DPQuery = new DevExpress.XtraBars.Docking.DockPanel();
     this.dockPanel4_Container = new DevExpress.XtraBars.Docking.ControlContainer();
     this.navBarControlQry = new DevExpress.XtraNavBar.NavBarControl();
     this.navBarGroup5 = new DevExpress.XtraNavBar.NavBarGroup();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.CEUpdate = new DevExpress.XtraEditors.CheckEdit();
     this.CESelect = new DevExpress.XtraEditors.CheckEdit();
     this.CEDelete = new DevExpress.XtraEditors.CheckEdit();
     this.CEInsert = new DevExpress.XtraEditors.CheckEdit();
     this.navBarControlReport = new DevExpress.XtraNavBar.NavBarControl();
     this.navBarGroup4 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarItemEmpXRepEmpAddress = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpXRepEmpagazat = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpXRepEmpAll = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpXRepEmpDetail = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarGroup7 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarGroup8 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarGroup9 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarItemEmpDeployRpt = new DevExpress.XtraNavBar.NavBarItem();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlSelect)).BeginInit();
     this.groupControlSelect.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LUEItems.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManagerMain)).BeginInit();
     this.pnlContainerMain.SuspendLayout();
     this.DPReport.SuspendLayout();
     this.dockPanel5_Container.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection32)).BeginInit();
     this.DPCode.SuspendLayout();
     this.dockPanel1_Container.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlCode)).BeginInit();
     this.DPData.SuspendLayout();
     this.dockPanel2_Container.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlData)).BeginInit();
     this.DPPriv.SuspendLayout();
     this.dockPanel3_Container.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlPriv)).BeginInit();
     this.DPQuery.SuspendLayout();
     this.dockPanel4_Container.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlQry)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.CEUpdate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.CESelect.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.CEDelete.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.CEInsert.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlReport)).BeginInit();
     this.SuspendLayout();
     //
     // groupControlSelect
     //
     this.groupControlSelect.AppearanceCaption.Options.UseTextOptions = true;
     this.groupControlSelect.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.groupControlSelect.Controls.Add(this.LUEItems);
     this.groupControlSelect.Controls.Add(this.labelControl1);
     this.groupControlSelect.Dock = System.Windows.Forms.DockStyle.Top;
     this.groupControlSelect.Location = new System.Drawing.Point(0, 0);
     this.groupControlSelect.Name = "groupControlSelect";
     this.groupControlSelect.Size = new System.Drawing.Size(334, 59);
     this.groupControlSelect.TabIndex = 2;
     this.groupControlSelect.Text = "جميع السماحيات";
     //
     // LUEItems
     //
     this.LUEItems.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.LUEItems.Location = new System.Drawing.Point(61, 28);
     this.LUEItems.Name = "LUEItems";
     this.LUEItems.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LUEItems.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("RoleName", "اسم السماحيه", 20, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Center),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("RoleDesc", "تعليق", 20, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Center)});
     this.LUEItems.Properties.NullText = "";
     this.LUEItems.Size = new System.Drawing.Size(147, 20);
     this.LUEItems.TabIndex = 0;
     this.LUEItems.EditValueChanged += new System.EventHandler(this.LUEItems_EditValueChanged);
     //
     // labelControl1
     //
     this.labelControl1.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl1.Location = new System.Drawing.Point(214, 31);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(60, 13);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "اختر سماحيه";
     //
     // dockManagerMain
     //
     this.dockManagerMain.DockingOptions.ShowCaptionImage = true;
     this.dockManagerMain.DockMode = DevExpress.XtraBars.Docking.Helpers.DockMode.Standard;
     this.dockManagerMain.Form = this;
     this.dockManagerMain.RootPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
     this.pnlContainerMain});
     this.dockManagerMain.TopZIndexControls.AddRange(new string[] {
     "DevExpress.XtraBars.BarDockControl",
     "DevExpress.XtraBars.StandaloneBarDockControl",
     "System.Windows.Forms.StatusBar",
     "DevExpress.XtraBars.Ribbon.RibbonStatusBar",
     "DevExpress.XtraBars.Ribbon.RibbonControl"});
     //
     // pnlContainerMain
     //
     this.pnlContainerMain.ActiveChild = this.DPReport;
     this.pnlContainerMain.Controls.Add(this.DPCode);
     this.pnlContainerMain.Controls.Add(this.DPData);
     this.pnlContainerMain.Controls.Add(this.DPPriv);
     this.pnlContainerMain.Controls.Add(this.DPQuery);
     this.pnlContainerMain.Controls.Add(this.DPReport);
     this.pnlContainerMain.Dock = DevExpress.XtraBars.Docking.DockingStyle.Bottom;
     this.pnlContainerMain.FloatSize = new System.Drawing.Size(336, 404);
     this.pnlContainerMain.FloatVertical = true;
     this.pnlContainerMain.ID = new System.Guid("a1818170-f437-4f2f-b8be-29961c00921c");
     this.pnlContainerMain.Location = new System.Drawing.Point(0, 142);
     this.pnlContainerMain.Name = "pnlContainerMain";
     this.pnlContainerMain.OriginalSize = new System.Drawing.Size(200, 470);
     this.pnlContainerMain.Size = new System.Drawing.Size(334, 470);
     this.pnlContainerMain.Tabbed = true;
     this.pnlContainerMain.Text = "panelContainer1";
     //
     // DPReport
     //
     this.DPReport.Controls.Add(this.dockPanel5_Container);
     this.DPReport.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.DPReport.FloatSize = new System.Drawing.Size(336, 404);
     this.DPReport.ID = new System.Guid("0f036360-d6ff-485c-9f5f-15222cfa0e5f");
     this.DPReport.Location = new System.Drawing.Point(4, 23);
     this.DPReport.Name = "DPReport";
     this.DPReport.OriginalSize = new System.Drawing.Size(200, 200);
     this.DPReport.Size = new System.Drawing.Size(326, 416);
     this.DPReport.Text = "التقارير";
     //
     // dockPanel5_Container
     //
     this.dockPanel5_Container.Controls.Add(this.navBarControlReport);
     this.dockPanel5_Container.Location = new System.Drawing.Point(0, 0);
     this.dockPanel5_Container.Name = "dockPanel5_Container";
     this.dockPanel5_Container.Size = new System.Drawing.Size(326, 416);
     this.dockPanel5_Container.TabIndex = 0;
     //
     // imageCollection32
     //
     this.imageCollection32.ImageSize = new System.Drawing.Size(32, 32);
     this.imageCollection32.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imageCollection32.ImageStream")));
     this.imageCollection32.Images.SetKeyName(0, "Roles.png");
     this.imageCollection32.Images.SetKeyName(1, "Users.png");
     this.imageCollection32.Images.SetKeyName(2, "UserRoles.png");
     this.imageCollection32.Images.SetKeyName(3, "RoleDetial.png");
     this.imageCollection32.Images.SetKeyName(4, "Reports.png");
     this.imageCollection32.Images.SetKeyName(5, "DeployRpt.png");
     this.imageCollection32.Images.SetKeyName(6, "AppOptions.png");
     this.imageCollection32.Images.SetKeyName(7, "CD_AsaseEmp.png");
     this.imageCollection32.Images.SetKeyName(8, "CD_EmpState.png");
     this.imageCollection32.Images.SetKeyName(9, "CD_JobDescription.png");
     this.imageCollection32.Images.SetKeyName(10, "CD_EmpJob.png");
     this.imageCollection32.Images.SetKeyName(11, "CD_Department.png");
     this.imageCollection32.Images.SetKeyName(12, "CD_Subject.png");
     this.imageCollection32.Images.SetKeyName(13, "CD_QualifiedPlace.png");
     this.imageCollection32.Images.SetKeyName(14, "CDQualification.png");
     this.imageCollection32.Images.SetKeyName(15, "CD_Specialization.png");
     this.imageCollection32.Images.SetKeyName(16, "CD_MaritalStatus.png");
     this.imageCollection32.Images.SetKeyName(17, "CD_Courses.png");
     this.imageCollection32.Images.SetKeyName(18, "CDPlaceTraining.png");
     this.imageCollection32.Images.SetKeyName(19, "CD_AgazaType.png");
     this.imageCollection32.Images.SetKeyName(20, "TBL_Emp.png");
     this.imageCollection32.Images.SetKeyName(21, "CDTakdeer.png");
     this.imageCollection32.Images.SetKeyName(22, "CD_EznType.png");
     this.imageCollection32.Images.SetKeyName(23, "CD_GzaaType.png");
     this.imageCollection32.Images.SetKeyName(24, "CD_GehaGazaa.png");
     this.imageCollection32.Images.SetKeyName(25, "Emp_Moaahel.png");
     this.imageCollection32.Images.SetKeyName(26, "EMP_agazat.png");
     this.imageCollection32.Images.SetKeyName(27, "EMP_Later.png");
     this.imageCollection32.Images.SetKeyName(28, "EMP_ezn.png");
     this.imageCollection32.Images.SetKeyName(29, "EMP_gzaat.png");
     this.imageCollection32.Images.SetKeyName(30, "EMP_training.png");
     this.imageCollection32.Images.SetKeyName(31, "EMP_TAMEEN.png");
     this.imageCollection32.Images.SetKeyName(32, "EMP_report.png");
     this.imageCollection32.Images.SetKeyName(33, "CD_EmpTIME.png");
     //
     // DPCode
     //
     this.DPCode.Controls.Add(this.dockPanel1_Container);
     this.DPCode.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.DPCode.FloatSize = new System.Drawing.Size(336, 404);
     this.DPCode.FloatVertical = true;
     this.DPCode.ID = new System.Guid("5caa9054-017c-40dd-8832-9c116b8b0c2e");
     this.DPCode.Location = new System.Drawing.Point(4, 23);
     this.DPCode.Name = "DPCode";
     this.DPCode.OriginalSize = new System.Drawing.Size(200, 200);
     this.DPCode.Size = new System.Drawing.Size(326, 416);
     this.DPCode.Text = "الاكواد";
     //
     // dockPanel1_Container
     //
     this.dockPanel1_Container.Controls.Add(this.navBarControlCode);
     this.dockPanel1_Container.Location = new System.Drawing.Point(0, 0);
     this.dockPanel1_Container.Name = "dockPanel1_Container";
     this.dockPanel1_Container.Size = new System.Drawing.Size(326, 416);
     this.dockPanel1_Container.TabIndex = 0;
     //
     // navBarControlCode
     //
     this.navBarControlCode.ActiveGroup = this.navBarGroup1;
     this.navBarControlCode.Dock = System.Windows.Forms.DockStyle.Fill;
     this.navBarControlCode.ExplorerBarShowGroupButtons = false;
     this.navBarControlCode.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
     this.navBarGroup1});
     this.navBarControlCode.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
     this.navBarItemEmpCD_AsaseEmp,
     this.navBarItemEmpCD_EmpState,
     this.navBarItemEmpCD_JobDescription,
     this.navBarItemEmpCD_EmpJob,
     this.navBarItemEmpCD_Department,
     this.navBarItemEmpCD_Subject,
     this.navBarItemEmpCDQualification,
     this.navBarItemEmpCD_QualifiedPlace,
     this.navBarItemEmpCD_Specialization,
     this.navBarItemEmpCD_MaritalStatus,
     this.navBarItemEmpCD_Courses,
     this.navBarItemEmpCDPlaceTraining,
     this.navBarItemEmpCD_AgazaType,
     this.navBarItemEmpCDTakdeer,
     this.navBarItemEmpCD_EznType,
     this.navBarItemEmpCD_GzaaType,
     this.navBarItemEmpCD_GehaGazaa,
     this.navBarItemEmpCD_EmpTIME});
     this.navBarControlCode.LargeImages = this.imageCollection32;
     this.navBarControlCode.Location = new System.Drawing.Point(0, 0);
     this.navBarControlCode.Name = "navBarControlCode";
     this.navBarControlCode.OptionsNavPane.ExpandedWidth = 192;
     this.navBarControlCode.Size = new System.Drawing.Size(326, 416);
     this.navBarControlCode.SmallImages = this.imageCollection32;
     this.navBarControlCode.StoreDefaultPaintStyleName = true;
     this.navBarControlCode.TabIndex = 9;
     //
     // navBarGroup1
     //
     this.navBarGroup1.Caption = "";
     this.navBarGroup1.Expanded = true;
     this.navBarGroup1.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_AsaseEmp),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_EmpState),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_JobDescription),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_EmpJob),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_Department),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_Subject),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_QualifiedPlace),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCDQualification),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_Specialization),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_MaritalStatus),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_Courses),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCDPlaceTraining),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_AgazaType),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCDTakdeer),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_EznType),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_GzaaType),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_GehaGazaa),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_EmpTIME)});
     this.navBarGroup1.LargeImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup1.LargeImage")));
     this.navBarGroup1.Name = "navBarGroup1";
     this.navBarGroup1.NavigationPaneVisible = false;
     this.navBarGroup1.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup1.SmallImage")));
     //
     // navBarItemEmpCD_AsaseEmp
     //
     this.navBarItemEmpCD_AsaseEmp.Caption = "تحديد العام الدراسي";
     this.navBarItemEmpCD_AsaseEmp.LargeImageIndex = 7;
     this.navBarItemEmpCD_AsaseEmp.Name = "navBarItemEmpCD_AsaseEmp";
     this.navBarItemEmpCD_AsaseEmp.SmallImageIndex = 7;
     this.navBarItemEmpCD_AsaseEmp.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemEmpCD_EmpState
     //
     this.navBarItemEmpCD_EmpState.Caption = "الحاله الوظيفيه";
     this.navBarItemEmpCD_EmpState.LargeImageIndex = 8;
     this.navBarItemEmpCD_EmpState.Name = "navBarItemEmpCD_EmpState";
     this.navBarItemEmpCD_EmpState.SmallImageIndex = 8;
     this.navBarItemEmpCD_EmpState.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemEmpCD_JobDescription
     //
     this.navBarItemEmpCD_JobDescription.Caption = "الوصف الوظيفي";
     this.navBarItemEmpCD_JobDescription.LargeImageIndex = 9;
     this.navBarItemEmpCD_JobDescription.Name = "navBarItemEmpCD_JobDescription";
     this.navBarItemEmpCD_JobDescription.SmallImageIndex = 9;
     this.navBarItemEmpCD_JobDescription.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemEmpCD_EmpJob
     //
     this.navBarItemEmpCD_EmpJob.Caption = "وظائف العاملين";
     this.navBarItemEmpCD_EmpJob.LargeImageIndex = 10;
     this.navBarItemEmpCD_EmpJob.Name = "navBarItemEmpCD_EmpJob";
     this.navBarItemEmpCD_EmpJob.SmallImageIndex = 10;
     this.navBarItemEmpCD_EmpJob.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemEmpCD_Department
     //
     this.navBarItemEmpCD_Department.Caption = "الاقسام";
     this.navBarItemEmpCD_Department.LargeImageIndex = 11;
     this.navBarItemEmpCD_Department.Name = "navBarItemEmpCD_Department";
     this.navBarItemEmpCD_Department.SmallImageIndex = 11;
     this.navBarItemEmpCD_Department.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemEmpCD_Subject
     //
     this.navBarItemEmpCD_Subject.Caption = "المواد";
     this.navBarItemEmpCD_Subject.LargeImageIndex = 12;
     this.navBarItemEmpCD_Subject.Name = "navBarItemEmpCD_Subject";
     this.navBarItemEmpCD_Subject.SmallImageIndex = 12;
     this.navBarItemEmpCD_Subject.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemEmpCD_QualifiedPlace
     //
     this.navBarItemEmpCD_QualifiedPlace.Caption = "جهة المؤهل";
     this.navBarItemEmpCD_QualifiedPlace.LargeImageIndex = 13;
     this.navBarItemEmpCD_QualifiedPlace.Name = "navBarItemEmpCD_QualifiedPlace";
     this.navBarItemEmpCD_QualifiedPlace.SmallImageIndex = 13;
     this.navBarItemEmpCD_QualifiedPlace.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemEmpCDQualification
     //
     this.navBarItemEmpCDQualification.Caption = "المؤهلات";
     this.navBarItemEmpCDQualification.LargeImageIndex = 14;
     this.navBarItemEmpCDQualification.Name = "navBarItemEmpCDQualification";
     this.navBarItemEmpCDQualification.SmallImageIndex = 14;
     this.navBarItemEmpCDQualification.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemEmpCD_Specialization
     //
     this.navBarItemEmpCD_Specialization.Caption = "تخصص المؤهل";
     this.navBarItemEmpCD_Specialization.LargeImageIndex = 15;
     this.navBarItemEmpCD_Specialization.Name = "navBarItemEmpCD_Specialization";
     this.navBarItemEmpCD_Specialization.SmallImageIndex = 15;
     this.navBarItemEmpCD_Specialization.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemEmpCD_MaritalStatus
     //
     this.navBarItemEmpCD_MaritalStatus.Caption = "الحالة الاجتماعية";
     this.navBarItemEmpCD_MaritalStatus.LargeImageIndex = 16;
     this.navBarItemEmpCD_MaritalStatus.Name = "navBarItemEmpCD_MaritalStatus";
     this.navBarItemEmpCD_MaritalStatus.SmallImageIndex = 16;
     this.navBarItemEmpCD_MaritalStatus.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemEmpCD_Courses
     //
     this.navBarItemEmpCD_Courses.Caption = "الدورات التدريبية";
     this.navBarItemEmpCD_Courses.LargeImageIndex = 17;
     this.navBarItemEmpCD_Courses.Name = "navBarItemEmpCD_Courses";
     this.navBarItemEmpCD_Courses.SmallImageIndex = 17;
     this.navBarItemEmpCD_Courses.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemEmpCDPlaceTraining
     //
     this.navBarItemEmpCDPlaceTraining.Caption = "جهات التدريب";
     this.navBarItemEmpCDPlaceTraining.LargeImageIndex = 18;
     this.navBarItemEmpCDPlaceTraining.Name = "navBarItemEmpCDPlaceTraining";
     this.navBarItemEmpCDPlaceTraining.SmallImageIndex = 18;
     this.navBarItemEmpCDPlaceTraining.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemEmpCD_AgazaType
     //
     this.navBarItemEmpCD_AgazaType.Caption = "انواع الغياب";
     this.navBarItemEmpCD_AgazaType.LargeImageIndex = 19;
     this.navBarItemEmpCD_AgazaType.Name = "navBarItemEmpCD_AgazaType";
     this.navBarItemEmpCD_AgazaType.SmallImageIndex = 19;
     this.navBarItemEmpCD_AgazaType.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemEmpCDTakdeer
     //
     this.navBarItemEmpCDTakdeer.Caption = "اكواد التقديرات";
     this.navBarItemEmpCDTakdeer.LargeImageIndex = 21;
     this.navBarItemEmpCDTakdeer.Name = "navBarItemEmpCDTakdeer";
     this.navBarItemEmpCDTakdeer.SmallImageIndex = 21;
     this.navBarItemEmpCDTakdeer.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemEmpCD_EznType
     //
     this.navBarItemEmpCD_EznType.Caption = "انواع الاذن";
     this.navBarItemEmpCD_EznType.LargeImageIndex = 22;
     this.navBarItemEmpCD_EznType.Name = "navBarItemEmpCD_EznType";
     this.navBarItemEmpCD_EznType.SmallImageIndex = 22;
     this.navBarItemEmpCD_EznType.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemEmpCD_GzaaType
     //
     this.navBarItemEmpCD_GzaaType.Caption = "انواع الجزاءات";
     this.navBarItemEmpCD_GzaaType.LargeImageIndex = 23;
     this.navBarItemEmpCD_GzaaType.Name = "navBarItemEmpCD_GzaaType";
     this.navBarItemEmpCD_GzaaType.SmallImageIndex = 23;
     this.navBarItemEmpCD_GzaaType.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemEmpCD_GehaGazaa
     //
     this.navBarItemEmpCD_GehaGazaa.Caption = "جهة الجزاء";
     this.navBarItemEmpCD_GehaGazaa.LargeImageIndex = 24;
     this.navBarItemEmpCD_GehaGazaa.Name = "navBarItemEmpCD_GehaGazaa";
     this.navBarItemEmpCD_GehaGazaa.SmallImageIndex = 24;
     this.navBarItemEmpCD_GehaGazaa.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemEmpCD_EmpTIME
     //
     this.navBarItemEmpCD_EmpTIME.Caption = "اوقات العاملين";
     this.navBarItemEmpCD_EmpTIME.LargeImageIndex = 33;
     this.navBarItemEmpCD_EmpTIME.Name = "navBarItemEmpCD_EmpTIME";
     this.navBarItemEmpCD_EmpTIME.SmallImageIndex = 33;
     this.navBarItemEmpCD_EmpTIME.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // DPData
     //
     this.DPData.Controls.Add(this.dockPanel2_Container);
     this.DPData.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.DPData.FloatSize = new System.Drawing.Size(336, 404);
     this.DPData.ID = new System.Guid("a97e3d69-dc1d-4cf2-8b60-8d961607e006");
     this.DPData.Location = new System.Drawing.Point(4, 23);
     this.DPData.Name = "DPData";
     this.DPData.OriginalSize = new System.Drawing.Size(200, 200);
     this.DPData.Size = new System.Drawing.Size(326, 416);
     this.DPData.Text = "بيانات الادخال";
     //
     // dockPanel2_Container
     //
     this.dockPanel2_Container.Controls.Add(this.navBarControlData);
     this.dockPanel2_Container.Location = new System.Drawing.Point(0, 0);
     this.dockPanel2_Container.Name = "dockPanel2_Container";
     this.dockPanel2_Container.Size = new System.Drawing.Size(326, 416);
     this.dockPanel2_Container.TabIndex = 0;
     //
     // navBarControlData
     //
     this.navBarControlData.ActiveGroup = this.navBarGroup2;
     this.navBarControlData.Dock = System.Windows.Forms.DockStyle.Fill;
     this.navBarControlData.ExplorerBarShowGroupButtons = false;
     this.navBarControlData.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
     this.navBarGroup2});
     this.navBarControlData.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
     this.navBarItemEmpTBL_Emp,
     this.navBarItemEmpEmp_Moaahel,
     this.navBarItemEmpEMP_agazat,
     this.navBarItemEmpEMP_Later,
     this.navBarItemEmpEMP_ezn,
     this.navBarItemEmpEMP_gzaat,
     this.navBarItemEmpEMP_training,
     this.navBarItemEmpEMP_TAMEEN,
     this.navBarItemEmpEMP_report});
     this.navBarControlData.LargeImages = this.imageCollection32;
     this.navBarControlData.Location = new System.Drawing.Point(0, 0);
     this.navBarControlData.Name = "navBarControlData";
     this.navBarControlData.OptionsNavPane.ExpandedWidth = 192;
     this.navBarControlData.Size = new System.Drawing.Size(326, 416);
     this.navBarControlData.SmallImages = this.imageCollection32;
     this.navBarControlData.StoreDefaultPaintStyleName = true;
     this.navBarControlData.TabIndex = 10;
     this.navBarControlData.Text = "navBarControl1";
     //
     // navBarGroup2
     //
     this.navBarGroup2.Caption = "";
     this.navBarGroup2.Expanded = true;
     this.navBarGroup2.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpTBL_Emp),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpEmp_Moaahel),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpEMP_agazat),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpEMP_Later),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpEMP_ezn),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpEMP_gzaat),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpEMP_training),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpEMP_TAMEEN),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpEMP_report)});
     this.navBarGroup2.LargeImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup2.LargeImage")));
     this.navBarGroup2.Name = "navBarGroup2";
     this.navBarGroup2.NavigationPaneVisible = false;
     this.navBarGroup2.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup2.SmallImage")));
     //
     // navBarItemEmpTBL_Emp
     //
     this.navBarItemEmpTBL_Emp.Caption = "بيانات العاملين";
     this.navBarItemEmpTBL_Emp.LargeImageIndex = 20;
     this.navBarItemEmpTBL_Emp.Name = "navBarItemEmpTBL_Emp";
     this.navBarItemEmpTBL_Emp.SmallImageIndex = 20;
     this.navBarItemEmpTBL_Emp.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemEmpEmp_Moaahel
     //
     this.navBarItemEmpEmp_Moaahel.Caption = "مؤهلات اثناء الخدمة";
     this.navBarItemEmpEmp_Moaahel.LargeImageIndex = 25;
     this.navBarItemEmpEmp_Moaahel.Name = "navBarItemEmpEmp_Moaahel";
     this.navBarItemEmpEmp_Moaahel.SmallImageIndex = 25;
     this.navBarItemEmpEmp_Moaahel.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemEmpEMP_agazat
     //
     this.navBarItemEmpEMP_agazat.Caption = "الغياب والاجازات";
     this.navBarItemEmpEMP_agazat.LargeImageIndex = 26;
     this.navBarItemEmpEMP_agazat.Name = "navBarItemEmpEMP_agazat";
     this.navBarItemEmpEMP_agazat.SmallImageIndex = 26;
     this.navBarItemEmpEMP_agazat.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemEmpEMP_Later
     //
     this.navBarItemEmpEMP_Later.Caption = "التأخير";
     this.navBarItemEmpEMP_Later.LargeImageIndex = 27;
     this.navBarItemEmpEMP_Later.Name = "navBarItemEmpEMP_Later";
     this.navBarItemEmpEMP_Later.SmallImageIndex = 27;
     this.navBarItemEmpEMP_Later.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemEmpEMP_ezn
     //
     this.navBarItemEmpEMP_ezn.Caption = "اذونات الموظفين";
     this.navBarItemEmpEMP_ezn.LargeImageIndex = 28;
     this.navBarItemEmpEMP_ezn.Name = "navBarItemEmpEMP_ezn";
     this.navBarItemEmpEMP_ezn.SmallImageIndex = 28;
     this.navBarItemEmpEMP_ezn.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemEmpEMP_gzaat
     //
     this.navBarItemEmpEMP_gzaat.Caption = "الجزاءات";
     this.navBarItemEmpEMP_gzaat.LargeImageIndex = 29;
     this.navBarItemEmpEMP_gzaat.Name = "navBarItemEmpEMP_gzaat";
     this.navBarItemEmpEMP_gzaat.SmallImageIndex = 29;
     this.navBarItemEmpEMP_gzaat.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemEmpEMP_training
     //
     this.navBarItemEmpEMP_training.Caption = "البرامج التدريبية";
     this.navBarItemEmpEMP_training.LargeImageIndex = 30;
     this.navBarItemEmpEMP_training.Name = "navBarItemEmpEMP_training";
     this.navBarItemEmpEMP_training.SmallImageIndex = 30;
     this.navBarItemEmpEMP_training.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemEmpEMP_TAMEEN
     //
     this.navBarItemEmpEMP_TAMEEN.Caption = "التأمين الصحي";
     this.navBarItemEmpEMP_TAMEEN.LargeImageIndex = 31;
     this.navBarItemEmpEMP_TAMEEN.Name = "navBarItemEmpEMP_TAMEEN";
     this.navBarItemEmpEMP_TAMEEN.SmallImageIndex = 31;
     this.navBarItemEmpEMP_TAMEEN.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemEmpEMP_report
     //
     this.navBarItemEmpEMP_report.Caption = "التقارير السنوية";
     this.navBarItemEmpEMP_report.LargeImageIndex = 32;
     this.navBarItemEmpEMP_report.Name = "navBarItemEmpEMP_report";
     this.navBarItemEmpEMP_report.SmallImageIndex = 32;
     this.navBarItemEmpEMP_report.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // DPPriv
     //
     this.DPPriv.Controls.Add(this.dockPanel3_Container);
     this.DPPriv.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.DPPriv.FloatSize = new System.Drawing.Size(336, 404);
     this.DPPriv.ID = new System.Guid("b33c2bb1-0f13-44de-a2c5-b51aa242b097");
     this.DPPriv.Location = new System.Drawing.Point(4, 23);
     this.DPPriv.Name = "DPPriv";
     this.DPPriv.OriginalSize = new System.Drawing.Size(200, 200);
     this.DPPriv.Size = new System.Drawing.Size(326, 416);
     this.DPPriv.Text = "السماحيات";
     //
     // dockPanel3_Container
     //
     this.dockPanel3_Container.Controls.Add(this.navBarControlPriv);
     this.dockPanel3_Container.Location = new System.Drawing.Point(0, 0);
     this.dockPanel3_Container.Name = "dockPanel3_Container";
     this.dockPanel3_Container.Size = new System.Drawing.Size(326, 416);
     this.dockPanel3_Container.TabIndex = 0;
     //
     // navBarControlPriv
     //
     this.navBarControlPriv.ActiveGroup = this.navBarGroup3;
     this.navBarControlPriv.Dock = System.Windows.Forms.DockStyle.Fill;
     this.navBarControlPriv.ExplorerBarShowGroupButtons = false;
     this.navBarControlPriv.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
     this.navBarGroup3});
     this.navBarControlPriv.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
     this.navBarItemEmpRoles,
     this.navBarItemEmpUsers,
     this.navBarItemEmpUserRoles,
     this.navBarItemEmpRoleDetial,
     this.navBarItemEmpAppOptions});
     this.navBarControlPriv.LargeImages = this.imageCollection32;
     this.navBarControlPriv.Location = new System.Drawing.Point(0, 0);
     this.navBarControlPriv.Name = "navBarControlPriv";
     this.navBarControlPriv.OptionsNavPane.ExpandedWidth = 192;
     this.navBarControlPriv.Size = new System.Drawing.Size(326, 416);
     this.navBarControlPriv.SmallImages = this.imageCollection32;
     this.navBarControlPriv.StoreDefaultPaintStyleName = true;
     this.navBarControlPriv.TabIndex = 10;
     this.navBarControlPriv.Text = "navBarControl1";
     //
     // navBarGroup3
     //
     this.navBarGroup3.Caption = "";
     this.navBarGroup3.Expanded = true;
     this.navBarGroup3.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpRoles),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpRoleDetial),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpUsers),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpUserRoles),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpAppOptions)});
     this.navBarGroup3.LargeImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup3.LargeImage")));
     this.navBarGroup3.Name = "navBarGroup3";
     this.navBarGroup3.NavigationPaneVisible = false;
     this.navBarGroup3.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup3.SmallImage")));
     //
     // navBarItemEmpRoles
     //
     this.navBarItemEmpRoles.Caption = "الصلاحيات";
     this.navBarItemEmpRoles.LargeImageIndex = 0;
     this.navBarItemEmpRoles.Name = "navBarItemEmpRoles";
     this.navBarItemEmpRoles.SmallImageIndex = 0;
     this.navBarItemEmpRoles.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemEmpRoleDetial
     //
     this.navBarItemEmpRoleDetial.Caption = "تفاصيل الصلاحيات";
     this.navBarItemEmpRoleDetial.LargeImageIndex = 3;
     this.navBarItemEmpRoleDetial.Name = "navBarItemEmpRoleDetial";
     this.navBarItemEmpRoleDetial.SmallImageIndex = 3;
     this.navBarItemEmpRoleDetial.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemEmpUsers
     //
     this.navBarItemEmpUsers.Caption = "المستخدمين";
     this.navBarItemEmpUsers.LargeImageIndex = 1;
     this.navBarItemEmpUsers.Name = "navBarItemEmpUsers";
     this.navBarItemEmpUsers.SmallImageIndex = 1;
     this.navBarItemEmpUsers.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemEmpUserRoles
     //
     this.navBarItemEmpUserRoles.Caption = "صلاحيات المستخدمين";
     this.navBarItemEmpUserRoles.LargeImageIndex = 2;
     this.navBarItemEmpUserRoles.Name = "navBarItemEmpUserRoles";
     this.navBarItemEmpUserRoles.SmallImageIndex = 2;
     this.navBarItemEmpUserRoles.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemEmpAppOptions
     //
     this.navBarItemEmpAppOptions.Caption = "خيارات البرنامج";
     this.navBarItemEmpAppOptions.LargeImageIndex = 6;
     this.navBarItemEmpAppOptions.Name = "navBarItemEmpAppOptions";
     this.navBarItemEmpAppOptions.SmallImageIndex = 6;
     this.navBarItemEmpAppOptions.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // DPQuery
     //
     this.DPQuery.Controls.Add(this.dockPanel4_Container);
     this.DPQuery.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.DPQuery.FloatSize = new System.Drawing.Size(336, 404);
     this.DPQuery.ID = new System.Guid("cfb45d3d-befd-4cb4-8549-091360f328d0");
     this.DPQuery.Location = new System.Drawing.Point(4, 23);
     this.DPQuery.Name = "DPQuery";
     this.DPQuery.OriginalSize = new System.Drawing.Size(200, 200);
     this.DPQuery.Size = new System.Drawing.Size(326, 416);
     this.DPQuery.Text = "الاستعلامات";
     //
     // dockPanel4_Container
     //
     this.dockPanel4_Container.Controls.Add(this.navBarControlQry);
     this.dockPanel4_Container.Location = new System.Drawing.Point(0, 0);
     this.dockPanel4_Container.Name = "dockPanel4_Container";
     this.dockPanel4_Container.Size = new System.Drawing.Size(326, 416);
     this.dockPanel4_Container.TabIndex = 0;
     //
     // navBarControlQry
     //
     this.navBarControlQry.ActiveGroup = this.navBarGroup5;
     this.navBarControlQry.Dock = System.Windows.Forms.DockStyle.Fill;
     this.navBarControlQry.ExplorerBarShowGroupButtons = false;
     this.navBarControlQry.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
     this.navBarGroup5});
     this.navBarControlQry.Location = new System.Drawing.Point(0, 0);
     this.navBarControlQry.Name = "navBarControlQry";
     this.navBarControlQry.OptionsNavPane.ExpandedWidth = 192;
     this.navBarControlQry.Size = new System.Drawing.Size(326, 416);
     this.navBarControlQry.StoreDefaultPaintStyleName = true;
     this.navBarControlQry.TabIndex = 10;
     this.navBarControlQry.Text = "navBarControl1";
     //
     // navBarGroup5
     //
     this.navBarGroup5.Caption = "";
     this.navBarGroup5.Expanded = true;
     this.navBarGroup5.LargeImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup5.LargeImage")));
     this.navBarGroup5.Name = "navBarGroup5";
     this.navBarGroup5.NavigationPaneVisible = false;
     this.navBarGroup5.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup5.SmallImage")));
     //
     // groupControl2
     //
     this.groupControl2.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.groupControl2.AppearanceCaption.Options.UseTextOptions = true;
     this.groupControl2.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.groupControl2.Controls.Add(this.CEUpdate);
     this.groupControl2.Controls.Add(this.CESelect);
     this.groupControl2.Controls.Add(this.CEDelete);
     this.groupControl2.Controls.Add(this.CEInsert);
     this.groupControl2.Location = new System.Drawing.Point(47, 65);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(240, 73);
     this.groupControl2.TabIndex = 5;
     this.groupControl2.Text = "عناصر السماح";
     //
     // CEUpdate
     //
     this.CEUpdate.Location = new System.Drawing.Point(21, 49);
     this.CEUpdate.Name = "CEUpdate";
     this.CEUpdate.Properties.Caption = "تعديل";
     this.CEUpdate.Size = new System.Drawing.Size(75, 19);
     this.CEUpdate.TabIndex = 0;
     //
     // CESelect
     //
     this.CESelect.Location = new System.Drawing.Point(21, 24);
     this.CESelect.Name = "CESelect";
     this.CESelect.Properties.Caption = "عرض";
     this.CESelect.Size = new System.Drawing.Size(75, 19);
     this.CESelect.TabIndex = 0;
     //
     // CEDelete
     //
     this.CEDelete.Location = new System.Drawing.Point(144, 49);
     this.CEDelete.Name = "CEDelete";
     this.CEDelete.Properties.Caption = "حذف";
     this.CEDelete.Size = new System.Drawing.Size(75, 19);
     this.CEDelete.TabIndex = 0;
     //
     // CEInsert
     //
     this.CEInsert.Location = new System.Drawing.Point(144, 24);
     this.CEInsert.Name = "CEInsert";
     this.CEInsert.Properties.Caption = "اضافه";
     this.CEInsert.Size = new System.Drawing.Size(75, 19);
     this.CEInsert.TabIndex = 0;
     //
     // navBarControlReport
     //
     this.navBarControlReport.ActiveGroup = this.navBarGroup4;
     this.navBarControlReport.Dock = System.Windows.Forms.DockStyle.Fill;
     this.navBarControlReport.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
     this.navBarGroup4,
     this.navBarGroup7,
     this.navBarGroup8,
     this.navBarGroup9});
     this.navBarControlReport.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
     this.navBarItemEmpDeployRpt,
     this.navBarItemEmpXRepEmpAddress,
     this.navBarItemEmpXRepEmpagazat,
     this.navBarItemEmpXRepEmpAll,
     this.navBarItemEmpXRepEmpDetail});
     this.navBarControlReport.LargeImages = this.imageCollection32;
     this.navBarControlReport.Location = new System.Drawing.Point(0, 0);
     this.navBarControlReport.Name = "navBarControlReport";
     this.navBarControlReport.OptionsNavPane.ExpandedWidth = 326;
     this.navBarControlReport.Size = new System.Drawing.Size(326, 416);
     this.navBarControlReport.SmallImages = this.imageCollection32;
     this.navBarControlReport.TabIndex = 10;
     this.navBarControlReport.Text = "navBarControl1";
     this.navBarControlReport.View = new DevExpress.XtraNavBar.ViewInfo.StandardSkinExplorerBarViewInfoRegistrator("DevExpress Style");
     //
     // navBarGroup4
     //
     this.navBarGroup4.Caption = "تقارير 1";
     this.navBarGroup4.Expanded = true;
     this.navBarGroup4.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpXRepEmpAddress),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpXRepEmpagazat),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpXRepEmpAll),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpXRepEmpDetail)});
     this.navBarGroup4.LargeImage = global::Employee.Properties.Resources.Print;
     this.navBarGroup4.Name = "navBarGroup4";
     this.navBarGroup4.NavigationPaneVisible = false;
     this.navBarGroup4.SmallImage = global::Employee.Properties.Resources.Print;
     //
     // navBarItemEmpXRepEmpAddress
     //
     this.navBarItemEmpXRepEmpAddress.Caption = "سجل العناوين";
     this.navBarItemEmpXRepEmpAddress.LargeImageIndex = 4;
     this.navBarItemEmpXRepEmpAddress.Name = "navBarItemEmpXRepEmpAddress";
     this.navBarItemEmpXRepEmpAddress.SmallImageIndex = 4;
     this.navBarItemEmpXRepEmpAddress.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemEmpXRepEmpagazat
     //
     this.navBarItemEmpXRepEmpagazat.Caption = "غياب العاملين";
     this.navBarItemEmpXRepEmpagazat.LargeImageIndex = 4;
     this.navBarItemEmpXRepEmpagazat.Name = "navBarItemEmpXRepEmpagazat";
     this.navBarItemEmpXRepEmpagazat.SmallImageIndex = 4;
     this.navBarItemEmpXRepEmpagazat.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemEmpXRepEmpAll
     //
     this.navBarItemEmpXRepEmpAll.Caption = "سجل شئون العاملين";
     this.navBarItemEmpXRepEmpAll.LargeImageIndex = 4;
     this.navBarItemEmpXRepEmpAll.Name = "navBarItemEmpXRepEmpAll";
     this.navBarItemEmpXRepEmpAll.SmallImageIndex = 4;
     this.navBarItemEmpXRepEmpAll.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemEmpXRepEmpDetail
     //
     this.navBarItemEmpXRepEmpDetail.Caption = "بيان حاله";
     this.navBarItemEmpXRepEmpDetail.LargeImageIndex = 4;
     this.navBarItemEmpXRepEmpDetail.Name = "navBarItemEmpXRepEmpDetail";
     this.navBarItemEmpXRepEmpDetail.SmallImageIndex = 4;
     this.navBarItemEmpXRepEmpDetail.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarGroup7
     //
     this.navBarGroup7.Caption = "تقارير 2";
     this.navBarGroup7.LargeImage = global::Employee.Properties.Resources.Print;
     this.navBarGroup7.Name = "navBarGroup7";
     this.navBarGroup7.SmallImage = global::Employee.Properties.Resources.Print;
     //
     // navBarGroup8
     //
     this.navBarGroup8.Caption = "تقارير 3";
     this.navBarGroup8.LargeImage = global::Employee.Properties.Resources.Print;
     this.navBarGroup8.Name = "navBarGroup8";
     this.navBarGroup8.SmallImage = global::Employee.Properties.Resources.Print;
     //
     // navBarGroup9
     //
     this.navBarGroup9.Caption = "تقارير 4";
     this.navBarGroup9.LargeImage = global::Employee.Properties.Resources.Print;
     this.navBarGroup9.Name = "navBarGroup9";
     this.navBarGroup9.SmallImage = global::Employee.Properties.Resources.Print;
     //
     // navBarItemEmpDeployRpt
     //
     this.navBarItemEmpDeployRpt.Caption = "تنصيب التقارير";
     this.navBarItemEmpDeployRpt.LargeImageIndex = 5;
     this.navBarItemEmpDeployRpt.Name = "navBarItemEmpDeployRpt";
     this.navBarItemEmpDeployRpt.SmallImageIndex = 5;
     //
     // RoleDetialFrm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(334, 612);
     this.Controls.Add(this.groupControl2);
     this.Controls.Add(this.groupControlSelect);
     this.Controls.Add(this.pnlContainerMain);
     this.Name = "RoleDetialFrm";
     this.Text = "محتويات السماحيات";
     this.Load += new System.EventHandler(this.EditorRoleMenuFrm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.groupControlSelect)).EndInit();
     this.groupControlSelect.ResumeLayout(false);
     this.groupControlSelect.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LUEItems.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManagerMain)).EndInit();
     this.pnlContainerMain.ResumeLayout(false);
     this.DPReport.ResumeLayout(false);
     this.dockPanel5_Container.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection32)).EndInit();
     this.DPCode.ResumeLayout(false);
     this.dockPanel1_Container.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlCode)).EndInit();
     this.DPData.ResumeLayout(false);
     this.dockPanel2_Container.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlData)).EndInit();
     this.DPPriv.ResumeLayout(false);
     this.dockPanel3_Container.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlPriv)).EndInit();
     this.DPQuery.ResumeLayout(false);
     this.dockPanel4_Container.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlQry)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.CEUpdate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.CESelect.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.CEDelete.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.CEInsert.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlReport)).EndInit();
     this.ResumeLayout(false);
 }
Example #29
0
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
     this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
     this.navBarControl1         = new DevExpress.XtraNavBar.NavBarControl();
     this.navBarGroup1           = new DevExpress.XtraNavBar.NavBarGroup();
     this.nbiTemplateLib         = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiPipeLib             = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiTempLib             = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarGroup2           = new DevExpress.XtraNavBar.NavBarGroup();
     this.nbiColorLib            = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiModelLib            = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiTextureLib          = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarSeparatorItem2   = new DevExpress.XtraNavBar.NavBarSeparatorItem();
     this.nbiCatalogLib          = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiTopoLib             = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarSeparatorItem3   = new DevExpress.XtraNavBar.NavBarSeparatorItem();
     this.nbiSyncPipeLib         = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarGroup3           = new DevExpress.XtraNavBar.NavBarGroup();
     this.nbiDefaultField        = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiFacilityClass       = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarGroup4           = new DevExpress.XtraNavBar.NavBarGroup();
     this.nbiImportData          = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiPipeSet             = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiTopoCreate          = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiAuto3DCreate        = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarSeparatorItem1   = new DevExpress.XtraNavBar.NavBarSeparatorItem();
     this.nbiShow3DPipe          = new DevExpress.XtraNavBar.NavBarItem();
     this.ucContainer            = new DevExpress.XtraEditors.PanelControl();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
     this.splitContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ucContainer)).BeginInit();
     this.SuspendLayout();
     //
     // 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.navBarControl1);
     this.splitContainerControl1.Panel1.Text = "Panel1";
     this.splitContainerControl1.Panel2.Controls.Add(this.ucContainer);
     this.splitContainerControl1.Panel2.Text      = "Panel2";
     this.splitContainerControl1.Size             = new System.Drawing.Size(819, 519);
     this.splitContainerControl1.SplitterPosition = 191;
     this.splitContainerControl1.TabIndex         = 0;
     this.splitContainerControl1.Text             = "splitContainerControl1";
     //
     // navBarControl1
     //
     this.navBarControl1.ActiveGroup = this.navBarGroup1;
     this.navBarControl1.Appearance.ButtonHotTracked.ForeColor            = System.Drawing.Color.Red;
     this.navBarControl1.Appearance.ButtonHotTracked.Options.UseForeColor = true;
     this.navBarControl1.Appearance.ButtonPressed.ForeColor                    = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.navBarControl1.Appearance.ButtonPressed.Options.UseForeColor         = true;
     this.navBarControl1.Appearance.GroupHeaderActive.ForeColor                = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.navBarControl1.Appearance.GroupHeaderActive.Options.UseForeColor     = true;
     this.navBarControl1.Appearance.GroupHeaderHotTracked.ForeColor            = System.Drawing.Color.Red;
     this.navBarControl1.Appearance.GroupHeaderHotTracked.Options.UseForeColor = true;
     this.navBarControl1.Appearance.GroupHeaderPressed.ForeColor               = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.navBarControl1.Appearance.GroupHeaderPressed.Options.UseForeColor    = true;
     this.navBarControl1.Appearance.ItemActive.ForeColor                = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.navBarControl1.Appearance.ItemActive.Options.UseForeColor     = true;
     this.navBarControl1.Appearance.ItemHotTracked.ForeColor            = System.Drawing.Color.Red;
     this.navBarControl1.Appearance.ItemHotTracked.Options.UseForeColor = true;
     this.navBarControl1.Appearance.ItemPressed.ForeColor               = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.navBarControl1.Appearance.ItemPressed.Options.UseForeColor    = true;
     this.navBarControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.navBarControl1.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.navBarControl1.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
         this.navBarGroup1,
         this.navBarGroup2,
         this.navBarGroup3,
         this.navBarGroup4
     });
     this.navBarControl1.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
         this.nbiTemplateLib,
         this.nbiPipeLib,
         this.nbiColorLib,
         this.nbiModelLib,
         this.nbiTextureLib,
         this.nbiTopoLib,
         this.nbiDefaultField,
         this.nbiFacilityClass,
         this.nbiImportData,
         this.nbiPipeSet,
         this.nbiTopoCreate,
         this.nbiAuto3DCreate,
         this.navBarSeparatorItem1,
         this.nbiShow3DPipe,
         this.nbiCatalogLib,
         this.navBarSeparatorItem2,
         this.navBarSeparatorItem3,
         this.nbiSyncPipeLib,
         this.nbiTempLib
     });
     this.navBarControl1.Location = new System.Drawing.Point(0, 0);
     this.navBarControl1.Name     = "navBarControl1";
     this.navBarControl1.OptionsNavPane.ExpandedWidth = 191;
     this.navBarControl1.Size     = new System.Drawing.Size(191, 519);
     this.navBarControl1.TabIndex = 0;
     this.navBarControl1.Text     = "navBarControl1";
     //
     // navBarGroup1
     //
     this.navBarGroup1.Appearance.Image = ((System.Drawing.Image)(resources.GetObject("navBarGroup1.Appearance.Image")));
     this.navBarGroup1.Caption          = "数据源管理";
     this.navBarGroup1.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
         new DevExpress.XtraNavBar.NavBarItemLink(this.nbiTemplateLib),
         new DevExpress.XtraNavBar.NavBarItemLink(this.nbiPipeLib),
         new DevExpress.XtraNavBar.NavBarItemLink(this.nbiTempLib)
     });
     this.navBarGroup1.LargeImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup1.LargeImage")));
     this.navBarGroup1.Name       = "navBarGroup1";
     //
     // nbiTemplateLib
     //
     this.nbiTemplateLib.Caption      = "模板数据库";
     this.nbiTemplateLib.LargeImage   = ((System.Drawing.Image)(resources.GetObject("nbiTemplateLib.LargeImage")));
     this.nbiTemplateLib.Name         = "nbiTemplateLib";
     this.nbiTemplateLib.SmallImage   = ((System.Drawing.Image)(resources.GetObject("nbiTemplateLib.SmallImage")));
     this.nbiTemplateLib.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiTemplateLib_LinkClicked);
     //
     // nbiPipeLib
     //
     this.nbiPipeLib.Caption      = "管线数据库";
     this.nbiPipeLib.Name         = "nbiPipeLib";
     this.nbiPipeLib.SmallImage   = ((System.Drawing.Image)(resources.GetObject("nbiPipeLib.SmallImage")));
     this.nbiPipeLib.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiPipeLib_LinkClicked);
     //
     // nbiTempLib
     //
     this.nbiTempLib.Caption      = "临时数据库";
     this.nbiTempLib.Name         = "nbiTempLib";
     this.nbiTempLib.SmallImage   = ((System.Drawing.Image)(resources.GetObject("nbiTempLib.SmallImage")));
     this.nbiTempLib.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiTempLib_LinkClicked);
     //
     // navBarGroup2
     //
     this.navBarGroup2.Caption = "模板库管理";
     this.navBarGroup2.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
         new DevExpress.XtraNavBar.NavBarItemLink(this.nbiColorLib),
         new DevExpress.XtraNavBar.NavBarItemLink(this.nbiModelLib),
         new DevExpress.XtraNavBar.NavBarItemLink(this.nbiTextureLib),
         new DevExpress.XtraNavBar.NavBarItemLink(this.navBarSeparatorItem2),
         new DevExpress.XtraNavBar.NavBarItemLink(this.nbiCatalogLib),
         new DevExpress.XtraNavBar.NavBarItemLink(this.nbiTopoLib),
         new DevExpress.XtraNavBar.NavBarItemLink(this.navBarSeparatorItem3),
         new DevExpress.XtraNavBar.NavBarItemLink(this.nbiSyncPipeLib)
     });
     this.navBarGroup2.LargeImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup2.LargeImage")));
     this.navBarGroup2.Name       = "navBarGroup2";
     //
     // nbiColorLib
     //
     this.nbiColorLib.Caption      = "颜色库管理";
     this.nbiColorLib.Name         = "nbiColorLib";
     this.nbiColorLib.SmallImage   = ((System.Drawing.Image)(resources.GetObject("nbiColorLib.SmallImage")));
     this.nbiColorLib.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiColorLib_LinkClicked);
     //
     // nbiModelLib
     //
     this.nbiModelLib.Caption      = "模型库管理";
     this.nbiModelLib.Name         = "nbiModelLib";
     this.nbiModelLib.SmallImage   = ((System.Drawing.Image)(resources.GetObject("nbiModelLib.SmallImage")));
     this.nbiModelLib.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiModelLib_LinkClicked);
     //
     // nbiTextureLib
     //
     this.nbiTextureLib.Caption      = "纹理库管理";
     this.nbiTextureLib.Name         = "nbiTextureLib";
     this.nbiTextureLib.SmallImage   = ((System.Drawing.Image)(resources.GetObject("nbiTextureLib.SmallImage")));
     this.nbiTextureLib.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiTextureLib_LinkClicked);
     //
     // navBarSeparatorItem2
     //
     this.navBarSeparatorItem2.CanDrag         = false;
     this.navBarSeparatorItem2.Enabled         = false;
     this.navBarSeparatorItem2.Hint            = null;
     this.navBarSeparatorItem2.LargeImageIndex = 0;
     this.navBarSeparatorItem2.LargeImageSize  = new System.Drawing.Size(0, 0);
     this.navBarSeparatorItem2.Name            = "navBarSeparatorItem2";
     this.navBarSeparatorItem2.SmallImageIndex = 0;
     this.navBarSeparatorItem2.SmallImageSize  = new System.Drawing.Size(0, 0);
     //
     // nbiCatalogLib
     //
     this.nbiCatalogLib.Caption      = "目录树管理";
     this.nbiCatalogLib.Name         = "nbiCatalogLib";
     this.nbiCatalogLib.SmallImage   = ((System.Drawing.Image)(resources.GetObject("nbiCatalogLib.SmallImage")));
     this.nbiCatalogLib.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiCatalogLib_LinkClicked);
     //
     // nbiTopoLib
     //
     this.nbiTopoLib.Caption      = "拓扑层管理";
     this.nbiTopoLib.Name         = "nbiTopoLib";
     this.nbiTopoLib.SmallImage   = ((System.Drawing.Image)(resources.GetObject("nbiTopoLib.SmallImage")));
     this.nbiTopoLib.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiTopoLib_LinkClicked);
     //
     // navBarSeparatorItem3
     //
     this.navBarSeparatorItem3.CanDrag         = false;
     this.navBarSeparatorItem3.Enabled         = false;
     this.navBarSeparatorItem3.Hint            = null;
     this.navBarSeparatorItem3.LargeImageIndex = 0;
     this.navBarSeparatorItem3.LargeImageSize  = new System.Drawing.Size(0, 0);
     this.navBarSeparatorItem3.Name            = "navBarSeparatorItem3";
     this.navBarSeparatorItem3.SmallImageIndex = 0;
     this.navBarSeparatorItem3.SmallImageSize  = new System.Drawing.Size(0, 0);
     //
     // nbiSyncPipeLib
     //
     this.nbiSyncPipeLib.Caption      = "同步管线库设施类";
     this.nbiSyncPipeLib.Name         = "nbiSyncPipeLib";
     this.nbiSyncPipeLib.SmallImage   = ((System.Drawing.Image)(resources.GetObject("nbiSyncPipeLib.SmallImage")));
     this.nbiSyncPipeLib.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiSyncPipeLib_LinkClicked);
     //
     // navBarGroup3
     //
     this.navBarGroup3.Caption = "管线库配置";
     this.navBarGroup3.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
         new DevExpress.XtraNavBar.NavBarItemLink(this.nbiDefaultField),
         new DevExpress.XtraNavBar.NavBarItemLink(this.nbiFacilityClass)
     });
     this.navBarGroup3.LargeImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup3.LargeImage")));
     this.navBarGroup3.Name       = "navBarGroup3";
     this.navBarGroup3.Visible    = false;
     //
     // nbiDefaultField
     //
     this.nbiDefaultField.Caption    = "默认字段设置";
     this.nbiDefaultField.Name       = "nbiDefaultField";
     this.nbiDefaultField.SmallImage = ((System.Drawing.Image)(resources.GetObject("nbiDefaultField.SmallImage")));
     //
     // nbiFacilityClass
     //
     this.nbiFacilityClass.Caption    = "设施类配置";
     this.nbiFacilityClass.Name       = "nbiFacilityClass";
     this.nbiFacilityClass.SmallImage = ((System.Drawing.Image)(resources.GetObject("nbiFacilityClass.SmallImage")));
     //
     // navBarGroup4
     //
     this.navBarGroup4.Caption  = "管线三维化";
     this.navBarGroup4.Expanded = true;
     this.navBarGroup4.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
         new DevExpress.XtraNavBar.NavBarItemLink(this.nbiImportData),
         new DevExpress.XtraNavBar.NavBarItemLink(this.nbiPipeSet),
         new DevExpress.XtraNavBar.NavBarItemLink(this.nbiTopoCreate),
         new DevExpress.XtraNavBar.NavBarItemLink(this.nbiAuto3DCreate),
         new DevExpress.XtraNavBar.NavBarItemLink(this.navBarSeparatorItem1),
         new DevExpress.XtraNavBar.NavBarItemLink(this.nbiShow3DPipe)
     });
     this.navBarGroup4.LargeImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup4.LargeImage")));
     this.navBarGroup4.Name       = "navBarGroup4";
     //
     // nbiImportData
     //
     this.nbiImportData.Caption      = "数据导入";
     this.nbiImportData.Name         = "nbiImportData";
     this.nbiImportData.SmallImage   = ((System.Drawing.Image)(resources.GetObject("nbiImportData.SmallImage")));
     this.nbiImportData.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiImportData_LinkClicked);
     //
     // nbiPipeSet
     //
     this.nbiPipeSet.Caption      = "管线指定";
     this.nbiPipeSet.Name         = "nbiPipeSet";
     this.nbiPipeSet.SmallImage   = ((System.Drawing.Image)(resources.GetObject("nbiPipeSet.SmallImage")));
     this.nbiPipeSet.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiPipeSet_LinkClicked);
     //
     // nbiTopoCreate
     //
     this.nbiTopoCreate.Caption      = "拓扑创建";
     this.nbiTopoCreate.Name         = "nbiTopoCreate";
     this.nbiTopoCreate.SmallImage   = ((System.Drawing.Image)(resources.GetObject("nbiTopoCreate.SmallImage")));
     this.nbiTopoCreate.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiTopoCreate_LinkClicked);
     //
     // nbiAuto3DCreate
     //
     this.nbiAuto3DCreate.Caption      = "自动三维化";
     this.nbiAuto3DCreate.Name         = "nbiAuto3DCreate";
     this.nbiAuto3DCreate.SmallImage   = ((System.Drawing.Image)(resources.GetObject("nbiAuto3DCreate.SmallImage")));
     this.nbiAuto3DCreate.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiAuto3DCreate_LinkClicked);
     //
     // navBarSeparatorItem1
     //
     this.navBarSeparatorItem1.CanDrag         = false;
     this.navBarSeparatorItem1.Enabled         = false;
     this.navBarSeparatorItem1.Hint            = null;
     this.navBarSeparatorItem1.LargeImageIndex = 0;
     this.navBarSeparatorItem1.LargeImageSize  = new System.Drawing.Size(0, 0);
     this.navBarSeparatorItem1.Name            = "navBarSeparatorItem1";
     this.navBarSeparatorItem1.SmallImageIndex = 0;
     this.navBarSeparatorItem1.SmallImageSize  = new System.Drawing.Size(0, 0);
     //
     // nbiShow3DPipe
     //
     this.nbiShow3DPipe.Caption      = "结果展示";
     this.nbiShow3DPipe.Name         = "nbiShow3DPipe";
     this.nbiShow3DPipe.SmallImage   = ((System.Drawing.Image)(resources.GetObject("nbiShow3DPipe.SmallImage")));
     this.nbiShow3DPipe.LinkPressed += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiShow3DPipe_LinkPressed);
     //
     // ucContainer
     //
     this.ucContainer.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.ucContainer.Location = new System.Drawing.Point(0, 0);
     this.ucContainer.Name     = "ucContainer";
     this.ucContainer.Size     = new System.Drawing.Size(623, 519);
     this.ucContainer.TabIndex = 0;
     //
     // MainForm
     //
     this.ClientSize = new System.Drawing.Size(819, 519);
     this.Controls.Add(this.splitContainerControl1);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name          = "MainForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "三维管线生成工具";
     this.FormClosed   += new System.Windows.Forms.FormClosedEventHandler(this.MainForm_FormClosed);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
     this.splitContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.navBarControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ucContainer)).EndInit();
     this.ResumeLayout(false);
 }
Example #30
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.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(MainForm));
			this.barManager_Main = new DevExpress.XtraBars.BarManager();
			this.barMain = new DevExpress.XtraBars.Bar();
			this.barSubItem_System = new DevExpress.XtraBars.BarSubItem();
			this.barButtonItem_PrintSetting = new DevExpress.XtraBars.BarButtonItem();
			this.barButtonItem_Logout = new DevExpress.XtraBars.BarButtonItem();
			this.barButtonItem_Exit = new DevExpress.XtraBars.BarButtonItem();
			this.barSubItem_Tools = new DevExpress.XtraBars.BarSubItem();
			this.barButtonItem_CustomDefine = new DevExpress.XtraBars.BarButtonItem();
			this.barButtonItem_CarDataSynch = new DevExpress.XtraBars.BarButtonItem();
			this.barButtonItem_Options = new DevExpress.XtraBars.BarButtonItem();
			this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
			this.barSubItem_Windows = new DevExpress.XtraBars.BarSubItem();
			this.barButtonItem_DutyInfo = new DevExpress.XtraBars.BarButtonItem();
			this.barSubItem_Style = new DevExpress.XtraBars.BarSubItem();
			this.barButtonItem_DefaultSkin = new DevExpress.XtraBars.BarButtonItem();
			this.barButtonItem_WinXPSkin = new DevExpress.XtraBars.BarButtonItem();
			this.barButtonItem_OfficeXP = new DevExpress.XtraBars.BarButtonItem();
			this.barButtonItem_Office2000 = new DevExpress.XtraBars.BarButtonItem();
			this.barButtonItem_Office2003 = new DevExpress.XtraBars.BarButtonItem();
			this.barSubItem_Help = new DevExpress.XtraBars.BarSubItem();
			this.barButtonItem_Help = new DevExpress.XtraBars.BarButtonItem();
			this.barButtonItem_About = new DevExpress.XtraBars.BarButtonItem();
			this.barToolBar = new DevExpress.XtraBars.Bar();
			this.barStatus = new DevExpress.XtraBars.Bar();
			this.barStaticItem_Ready = new DevExpress.XtraBars.BarStaticItem();
			this.barStaticItem_SystemInfo = new DevExpress.XtraBars.BarStaticItem();
			this.barStaticItem_SystemDate = new DevExpress.XtraBars.BarStaticItem();
			this.barStaticItem_Custom = 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.dockManager_CurrentStuCheckInfo = new DevExpress.XtraBars.Docking.DockManager();
			this.hideContainerRight = new DevExpress.XtraBars.Docking.AutoHideContainer();
			this.currentStuCheckInfo = new DevExpress.XtraBars.Docking.DockPanel();
			this.dockPanel1_Container = new DevExpress.XtraBars.Docking.ControlContainer();
			this.imageList_ToolBarIcon = new System.Windows.Forms.ImageList(this.components);
			this.pictureBox_Border = new System.Windows.Forms.PictureBox();
			this.navBarControl_Main = new DevExpress.XtraNavBar.NavBarControl();
			this.navBarGroup_GardenInfo = new DevExpress.XtraNavBar.NavBarGroup();
			this.navBarItem_GardenInfo = new DevExpress.XtraNavBar.NavBarItem();
			this.navBarGroup_TeacherInfo = new DevExpress.XtraNavBar.NavBarGroup();
			this.navBarItem_TeaBaseInfo = new DevExpress.XtraNavBar.NavBarItem();
			this.navBarItem_TeaDutyInfo = new DevExpress.XtraNavBar.NavBarItem();
			this.navBarGroup_StudentInfo = new DevExpress.XtraNavBar.NavBarGroup();
			this.navBarItem_StuBaseInfo = new DevExpress.XtraNavBar.NavBarItem();
			this.navBarItem_StuDutyInfo = new DevExpress.XtraNavBar.NavBarItem();
			this.navBarItem_RealTimeInfo = new DevExpress.XtraNavBar.NavBarItem();
			this.navBarItem_StuHealth = new DevExpress.XtraNavBar.NavBarItem();
			this.navBarItem_StuVisit = new DevExpress.XtraNavBar.NavBarItem();
			this.navBarGroup_GardenAffair = new DevExpress.XtraNavBar.NavBarGroup();
			this.navBarItem_CardManagement = new DevExpress.XtraNavBar.NavBarItem();
			this.navBarItem_Finance = new DevExpress.XtraNavBar.NavBarItem();
			this.navBarItem_SMSInfo = new DevExpress.XtraNavBar.NavBarItem();
			this.navBarItem_AffairNotify = new DevExpress.XtraNavBar.NavBarItem();
            this.navBarItem_Camera = new DevExpress.XtraNavBar.NavBarItem();
			this.splitterControlMain = new DevExpress.XtraEditors.SplitterControl();
			this.paneCaption_Title = new CPTT.WinUI.Panels.PaneCaption();
			this.pictureBox_BackLogo = new System.Windows.Forms.PictureBox();
			this.panelControl_Center = new DevExpress.XtraEditors.PanelControl();
			this.nutritionManagement1 = new CPTT.WinUI.Panels.NutritionManagement();
			this.finanManagement1 = new CPTT.WinUI.Panels.FinanManagement();
			this.realtimeInfo_Teacher1 = new CPTT.WinUI.Panels.RealtimeInfo_Teacher();
			this.smsInfo1 = new CPTT.WinUI.Panels.SmsInfo();
//			this.gardenInfo1 = new CPTT.WinUI.Panels.GardenInfo();
//			this.teacherOnDutyInfo1 = new CPTT.WinUI.Panels.TeacherOnDutyInfo();
			this.studentVisitInfo1 = new CPTT.WinUI.Panels.StudentVisitInfo();
			this.realtimeInfo1 = new CPTT.WinUI.Panels.RealtimeInfo();
			this.teacherBaseInfo1 = new CPTT.WinUI.Panels.TeacherBaseInfo();
			this.studentBaseInfo1 = new CPTT.WinUI.Panels.StudentBaseInfo();
            this.cameraPanel = new CPTT.WinUI.Panels.Camera();
			this.studentMorningCheckInfo1 = new CPTT.WinUI.Panels.StudentMorningCheckInfo();
			this.cardManagement2 = new CPTT.WinUI.Panels.CardManagement();
			this.realTimeWindows = new CPTT.WinUI.Panels.RealTimeWindows(this);
			this.transactionReminding1 = new CPTT.WinUI.Panels.TransactionReminding();
			this.notifyIcon_MainForm = new System.Windows.Forms.NotifyIcon(this.components);
			this.contextMenu_NotifyIcon = new System.Windows.Forms.ContextMenu();
			this.menuItem_ShowMainForm = new System.Windows.Forms.MenuItem();
			this.menuItem_Exit = new System.Windows.Forms.MenuItem();
			this.navBarItem_RealtimeInfo_Teacher = new DevExpress.XtraNavBar.NavBarItem();
			this.timerSynSession = new System.Timers.Timer();
			((System.ComponentModel.ISupportInitialize)(this.timerSynSession)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.barManager_Main)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dockManager_CurrentStuCheckInfo)).BeginInit();
			this.hideContainerRight.SuspendLayout();
			this.currentStuCheckInfo.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.navBarControl_Main)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl_Center)).BeginInit();
			this.panelControl_Center.SuspendLayout();
			this.SuspendLayout();
			// 
			// barManager_Main
			// 
			this.barManager_Main.AllowCustomization = false;
			this.barManager_Main.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
																				 this.barMain,
																				 this.barToolBar,
																				 this.barStatus});
			this.barManager_Main.DockControls.Add(this.barDockControlTop);
			this.barManager_Main.DockControls.Add(this.barDockControlBottom);
			this.barManager_Main.DockControls.Add(this.barDockControlLeft);
			this.barManager_Main.DockControls.Add(this.barDockControlRight);
			this.barManager_Main.DockManager = this.dockManager_CurrentStuCheckInfo;
			this.barManager_Main.Form = this;
			this.barManager_Main.Images = this.imageList_ToolBarIcon;
			this.barManager_Main.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
																					  this.barSubItem_System,
																					  this.barButtonItem_Exit,
																					  this.barSubItem_Windows,
																					  this.barSubItem_Style,
																					  this.barSubItem_Tools,
																					  this.barSubItem_Help,
																					  this.barButtonItem_Logout,
																					  this.barButtonItem_DutyInfo,
																					  this.barButtonItem_Help,
																					  this.barButtonItem_About,
																					  this.barStaticItem_SystemInfo,
																					  this.barStaticItem_SystemDate,
																					  this.barStaticItem_Custom,
																					  this.barButtonItem_CarDataSynch,
																					  this.barButtonItem_Options,
																					  this.barButtonItem_DefaultSkin,
																					  this.barButtonItem_WinXPSkin,
																					  this.barButtonItem_OfficeXP,
																					  this.barButtonItem_Office2000,
																					  this.barButtonItem_Office2003,
																					  this.barStaticItem_Ready,
																					  this.barButtonItem_CustomDefine,
																					  this.barButtonItem_PrintSetting,
																					  this.barButtonItem1});
			this.barManager_Main.LargeImages = this.imageList_ToolBarIcon;
			this.barManager_Main.MainMenu = this.barMain;
			this.barManager_Main.MaxItemId = 32;
			this.barManager_Main.StatusBar = this.barStatus;
			// 
			// barMain
			// 
			this.barMain.BarName = "主菜单";
			this.barMain.DockCol = 0;
			this.barMain.DockRow = 0;
			this.barMain.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
			this.barMain.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
																								 new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barSubItem_System, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
																								 new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barSubItem_Tools, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
																								 new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barSubItem_Windows, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
																								 new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barSubItem_Help, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph)});
			this.barMain.OptionsBar.AllowQuickCustomization = false;
			this.barMain.OptionsBar.MultiLine = true;
			this.barMain.OptionsBar.UseWholeRow = true;
			this.barMain.Text = "主菜单";
			// 
			// barSubItem_System
			// 
			this.barSubItem_System.Caption = "系统(&S)";
			this.barSubItem_System.Id = 0;
			this.barSubItem_System.ImageIndex = 6;
			this.barSubItem_System.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
																										   new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_PrintSetting),
																										   new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_Logout),
																										   new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_Exit)});
			this.barSubItem_System.Name = "barSubItem_System";
			// 
			// barButtonItem_PrintSetting
			// 
			this.barButtonItem_PrintSetting.Caption = "打印设置";
			this.barButtonItem_PrintSetting.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem_PrintSetting.Glyph")));
			this.barButtonItem_PrintSetting.Id = 29;
			this.barButtonItem_PrintSetting.Name = "barButtonItem_PrintSetting";
			this.barButtonItem_PrintSetting.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
			// 
			// barButtonItem_Logout
			// 
			this.barButtonItem_Logout.Caption = "注销(&O)";
			this.barButtonItem_Logout.Hint = "注销";
			this.barButtonItem_Logout.Id = 10;
			this.barButtonItem_Logout.ImageIndex = 7;
			this.barButtonItem_Logout.Name = "barButtonItem_Logout";
			this.barButtonItem_Logout.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_Logout_ItemClick);
			// 
			// barButtonItem_Exit
			// 
			this.barButtonItem_Exit.Caption = "退出(&X)";
			this.barButtonItem_Exit.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem_Exit.Glyph")));
			this.barButtonItem_Exit.Id = 2;
			this.barButtonItem_Exit.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.X));
			this.barButtonItem_Exit.Name = "barButtonItem_Exit";
			this.barButtonItem_Exit.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_Exit_ItemClick);
			// 
			// barSubItem_Tools
			// 
			this.barSubItem_Tools.Caption = "工具(&T)";
			this.barSubItem_Tools.Glyph = ((System.Drawing.Image)(resources.GetObject("barSubItem_Tools.Glyph")));
			this.barSubItem_Tools.Id = 7;
			this.barSubItem_Tools.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
																										  new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_CustomDefine),
																										  new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_CarDataSynch),
																										  new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_Options),
																										  new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem1)});
			this.barSubItem_Tools.Name = "barSubItem_Tools";
			// 
			// barButtonItem_CustomDefine
			// 
			this.barButtonItem_CustomDefine.Caption = "自定义信息维护(&C)";
			this.barButtonItem_CustomDefine.Hint = "自定义信息维护";
			this.barButtonItem_CustomDefine.Id = 28;
			this.barButtonItem_CustomDefine.ImageIndex = 10;
			this.barButtonItem_CustomDefine.Name = "barButtonItem_CustomDefine";
			this.barButtonItem_CustomDefine.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_CustomDefine_ItemClick);
			// 
			// barButtonItem_CarDataSynch
			// 
			this.barButtonItem_CarDataSynch.Caption = "车载机数据同步(&Y)";
			this.barButtonItem_CarDataSynch.Hint = "车载机数据同步";
			this.barButtonItem_CarDataSynch.Id = 20;
			this.barButtonItem_CarDataSynch.ImageIndex = 11;
			this.barButtonItem_CarDataSynch.Name = "barButtonItem_CarDataSynch";
			this.barButtonItem_CarDataSynch.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
			// 
			// barButtonItem_Options
			// 
			this.barButtonItem_Options.Caption = "选项(&O)";
			this.barButtonItem_Options.Id = 21;
			this.barButtonItem_Options.ImageIndex = 15;
			this.barButtonItem_Options.Name = "barButtonItem_Options";
			this.barButtonItem_Options.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_Options_ItemClick);
			// 
			// barButtonItem1
			// 
			this.barButtonItem1.Caption = "硬件配置管理(&K)";
			this.barButtonItem1.Id = 31;
			this.barButtonItem1.ImageIndex = 11;
			this.barButtonItem1.Name = "barButtonItem1";
			this.barButtonItem1.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem1_ItemClick);
			// 
			// barSubItem_Windows
			// 
			this.barSubItem_Windows.Caption = "窗口(&W)";
			this.barSubItem_Windows.Id = 3;
			this.barSubItem_Windows.ImageIndex = 13;
			this.barSubItem_Windows.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
																											new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_DutyInfo),
																											new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem_Style)});
			this.barSubItem_Windows.Name = "barSubItem_Windows";
			// 
			// barButtonItem_DutyInfo
			// 
			this.barButtonItem_DutyInfo.Caption = "实时出勤信息窗口(&D)";
			this.barButtonItem_DutyInfo.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem_DutyInfo.Glyph")));
			this.barButtonItem_DutyInfo.Hint = "实时晨检出勤窗口";
			this.barButtonItem_DutyInfo.Id = 11;
			this.barButtonItem_DutyInfo.ImageIndex = 8;
			this.barButtonItem_DutyInfo.Name = "barButtonItem_DutyInfo";
			this.barButtonItem_DutyInfo.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_DutyInfo_ItemClick);
			// 
			// barSubItem_Style
			// 
			this.barSubItem_Style.Caption = "窗体风格(&S)";
			this.barSubItem_Style.Id = 6;
			this.barSubItem_Style.ImageIndex = 8;
			this.barSubItem_Style.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
																										  new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_DefaultSkin),
																										  new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_WinXPSkin),
																										  new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_OfficeXP),
																										  new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_Office2000),
																										  new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_Office2003)});
			this.barSubItem_Style.Name = "barSubItem_Style";
			// 
			// barButtonItem_DefaultSkin
			// 
			this.barButtonItem_DefaultSkin.Caption = "默认";
			this.barButtonItem_DefaultSkin.Id = 22;
			this.barButtonItem_DefaultSkin.Name = "barButtonItem_DefaultSkin";
			this.barButtonItem_DefaultSkin.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_DefaultSkin_ItemClick);
			// 
			// barButtonItem_WinXPSkin
			// 
			this.barButtonItem_WinXPSkin.Caption = "Windows XP";
			this.barButtonItem_WinXPSkin.Id = 23;
			this.barButtonItem_WinXPSkin.ImageIndex = 0;
			this.barButtonItem_WinXPSkin.Name = "barButtonItem_WinXPSkin";
			this.barButtonItem_WinXPSkin.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_WinXPSkin_ItemClick);
			// 
			// barButtonItem_OfficeXP
			// 
			this.barButtonItem_OfficeXP.Caption = "Office XP";
			this.barButtonItem_OfficeXP.Id = 24;
			this.barButtonItem_OfficeXP.ImageIndex = 1;
			this.barButtonItem_OfficeXP.Name = "barButtonItem_OfficeXP";
			this.barButtonItem_OfficeXP.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_OfficeXP_ItemClick);
			// 
			// barButtonItem_Office2000
			// 
			this.barButtonItem_Office2000.Caption = "Office 2000";
			this.barButtonItem_Office2000.Id = 25;
			this.barButtonItem_Office2000.ImageIndex = 2;
			this.barButtonItem_Office2000.Name = "barButtonItem_Office2000";
			this.barButtonItem_Office2000.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_Office2000_ItemClick);
			// 
			// barButtonItem_Office2003
			// 
			this.barButtonItem_Office2003.Caption = "Office 2003";
			this.barButtonItem_Office2003.Id = 26;
			this.barButtonItem_Office2003.ImageIndex = 3;
			this.barButtonItem_Office2003.Name = "barButtonItem_Office2003";
			this.barButtonItem_Office2003.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_Office2003_ItemClick);
			// 
			// barSubItem_Help
			// 
			this.barSubItem_Help.Caption = "帮助(&H)";
			this.barSubItem_Help.Id = 8;
			this.barSubItem_Help.ImageIndex = 4;
			this.barSubItem_Help.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
																										 new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_Help),
																										 new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_About)});
			this.barSubItem_Help.Name = "barSubItem_Help";
			// 
			// barButtonItem_Help
			// 
			this.barButtonItem_Help.Caption = "系统帮助(&H)";
			this.barButtonItem_Help.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem_Help.Glyph")));
			this.barButtonItem_Help.Id = 12;
			this.barButtonItem_Help.Name = "barButtonItem_Help";
			this.barButtonItem_Help.ItemClick+=new ItemClickEventHandler(barButtonItem_Help_ItemClick);
			// 
			// barButtonItem_About
			// 
			this.barButtonItem_About.Caption = "关于创智智能晨检网络管理系统(&A)";
			this.barButtonItem_About.Id = 15;
			this.barButtonItem_About.ImageIndex = 9;
			this.barButtonItem_About.Name = "barButtonItem_About";
			this.barButtonItem_About.ItemClick+=new ItemClickEventHandler(barButtonItem_About_ItemClick);
			// 
			// barToolBar
			// 
			this.barToolBar.BarName = "辅助工具栏";
			this.barToolBar.DockCol = 0;
			this.barToolBar.DockRow = 1;
			this.barToolBar.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
			this.barToolBar.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
																									new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barButtonItem_Logout, DevExpress.XtraBars.BarItemPaintStyle.Standard),
																									new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barButtonItem_CustomDefine, "", true, true, true, 0, null, DevExpress.XtraBars.BarItemPaintStyle.Standard),
																									new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barButtonItem_CarDataSynch, DevExpress.XtraBars.BarItemPaintStyle.Standard),
																									new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barButtonItem_DutyInfo, "", true, true, true, 0, null, DevExpress.XtraBars.BarItemPaintStyle.Standard)});
			this.barToolBar.OptionsBar.AllowQuickCustomization = false;
			this.barToolBar.Text = "辅助工具栏";
			// 
			// barStatus
			// 
			this.barStatus.BarName = "状态栏";
			this.barStatus.CanDockStyle = DevExpress.XtraBars.BarCanDockStyle.Bottom;
			this.barStatus.DockCol = 0;
			this.barStatus.DockRow = 0;
			this.barStatus.DockStyle = DevExpress.XtraBars.BarDockStyle.Bottom;
			this.barStatus.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
																								   new DevExpress.XtraBars.LinkPersistInfo(this.barStaticItem_Ready, true),
																								   new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barStaticItem_SystemInfo, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
																								   new DevExpress.XtraBars.LinkPersistInfo(this.barStaticItem_SystemDate),
																								   new DevExpress.XtraBars.LinkPersistInfo(this.barStaticItem_Custom)});
			this.barStatus.OptionsBar.AllowQuickCustomization = false;
			this.barStatus.OptionsBar.DrawDragBorder = false;
			this.barStatus.OptionsBar.DrawSizeGrip = true;
			this.barStatus.OptionsBar.UseWholeRow = true;
			this.barStatus.Text = "状态栏";
			// 
			// barStaticItem_Ready
			// 
			this.barStaticItem_Ready.AutoSize = DevExpress.XtraBars.BarStaticItemSize.None;
			this.barStaticItem_Ready.Caption = "就绪";
			this.barStaticItem_Ready.Id = 27;
			this.barStaticItem_Ready.Name = "barStaticItem_Ready";
			this.barStaticItem_Ready.TextAlignment = System.Drawing.StringAlignment.Near;
			this.barStaticItem_Ready.Width = 150;
			// 
			// barStaticItem_SystemInfo
			// 
			this.barStaticItem_SystemInfo.AutoSize = DevExpress.XtraBars.BarStaticItemSize.None;
			this.barStaticItem_SystemInfo.Caption = "创智智能晨检网络管理系统"+SystemFramework.Util.PROJECT_VERSION;
			this.barStaticItem_SystemInfo.Id = 16;
			this.barStaticItem_SystemInfo.Name = "barStaticItem_SystemInfo";
			this.barStaticItem_SystemInfo.TextAlignment = System.Drawing.StringAlignment.Near;
			this.barStaticItem_SystemInfo.Width = 300;
			// 
			// barStaticItem_SystemDate
			// 
			this.barStaticItem_SystemDate.AutoSize = DevExpress.XtraBars.BarStaticItemSize.None;
			this.barStaticItem_SystemDate.Id = 18;
			this.barStaticItem_SystemDate.Name = "barStaticItem_SystemDate";
			this.barStaticItem_SystemDate.TextAlignment = System.Drawing.StringAlignment.Center;
			this.barStaticItem_SystemDate.Width = 200;
			// 
			// barStaticItem_Custom
			// 
			this.barStaticItem_Custom.AutoSize = DevExpress.XtraBars.BarStaticItemSize.Spring;
			this.barStaticItem_Custom.Id = 19;
			this.barStaticItem_Custom.Name = "barStaticItem_Custom";
			this.barStaticItem_Custom.TextAlignment = System.Drawing.StringAlignment.Near;
			this.barStaticItem_Custom.Width = 32;
			// 
			// barDockControlTop
			// 
			this.barDockControlTop.Appearance.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.barDockControlTop.Appearance.BackColor2 = System.Drawing.Color.DarkGray;
			this.barDockControlTop.Appearance.Options.UseBackColor = true;
			// 
			// dockManager_CurrentStuCheckInfo
			// 
			this.dockManager_CurrentStuCheckInfo.AutoHideContainers.AddRange(new DevExpress.XtraBars.Docking.AutoHideContainer[] {
																																	 this.hideContainerRight});
			this.dockManager_CurrentStuCheckInfo.Form = this;
			this.dockManager_CurrentStuCheckInfo.TopZIndexControls.AddRange(new string[] {
																							 "DevExpress.XtraBars.BarDockControl",
																							 "System.Windows.Forms.StatusBar"});
			// 
			// hideContainerRight
			// 
			this.hideContainerRight.Controls.Add(this.currentStuCheckInfo);
			this.hideContainerRight.Dock = System.Windows.Forms.DockStyle.Right;
			this.hideContainerRight.Location = new System.Drawing.Point(932, 52);
			this.hideContainerRight.Name = "hideContainerRight";
			this.hideContainerRight.Size = new System.Drawing.Size(20, 559);
			//
			//realTimeWindows
			//
			this.realTimeWindows.Location = new System.Drawing.Point(200,40);
			this.realTimeWindows.Name = "realTimeWindows";
			this.realTimeWindows.Size = new System.Drawing.Size(40,40);
			this.realTimeWindows.TabIndex = 4;
			this.realTimeWindows.Visible = true;
			// 
			// currentStuCheckInfo
			// 
			this.currentStuCheckInfo.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
			this.currentStuCheckInfo.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(1)), true);
			this.currentStuCheckInfo.Appearance.Options.UseBackColor = true;
			this.currentStuCheckInfo.Appearance.Options.UseFont = true;
			this.currentStuCheckInfo.BackColor = System.Drawing.Color.WhiteSmoke;
			this.currentStuCheckInfo.Controls.Add(this.dockPanel1_Container);
			this.currentStuCheckInfo.Dock = DevExpress.XtraBars.Docking.DockingStyle.Right;
			this.currentStuCheckInfo.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Strikeout, System.Drawing.GraphicsUnit.Point, ((System.Byte)(1)), true);
			this.currentStuCheckInfo.ID = new System.Guid("51b4d356-ef66-4435-8cec-78ddcc6c1c48");
			this.currentStuCheckInfo.Location = new System.Drawing.Point(0, 0);
			this.currentStuCheckInfo.Name = "currentStuCheckInfo";
			this.currentStuCheckInfo.SavedDock = DevExpress.XtraBars.Docking.DockingStyle.Right;
			this.currentStuCheckInfo.SavedIndex = 0;
			this.currentStuCheckInfo.Size = new System.Drawing.Size(200, 566);
			this.currentStuCheckInfo.Text = "实时出勤信息  ";
			this.currentStuCheckInfo.Visibility = DevExpress.XtraBars.Docking.DockVisibility.AutoHide;
			this.currentStuCheckInfo.Controls.Add(realTimeWindows);
			this.realTimeWindows.Dock = DockStyle.Fill;
			// 
			// dockPanel1_Container
			// 
			this.dockPanel1_Container.Location = new System.Drawing.Point(4, 22);
			this.dockPanel1_Container.Name = "dockPanel1_Container";
			this.dockPanel1_Container.Size = new System.Drawing.Size(192, 540);
			this.dockPanel1_Container.TabIndex = 0;
			// 
			// imageList_ToolBarIcon
			// 
			this.imageList_ToolBarIcon.ImageSize = new System.Drawing.Size(16, 16);
			this.imageList_ToolBarIcon.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList_ToolBarIcon.ImageStream")));
			this.imageList_ToolBarIcon.TransparentColor = System.Drawing.Color.Empty;
			// 
			// pictureBox_Border
			// 
			this.pictureBox_Border.Dock = System.Windows.Forms.DockStyle.Left;
			this.pictureBox_Border.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_Border.Image")));
			this.pictureBox_Border.Location = new System.Drawing.Point(0, 52);
			this.pictureBox_Border.Name = "pictureBox_Border";
			this.pictureBox_Border.Size = new System.Drawing.Size(32, 559);
			this.pictureBox_Border.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
			this.pictureBox_Border.TabIndex = 5;
			this.pictureBox_Border.TabStop = false;
			// 
			// navBarControl_Main
			// 
			this.navBarControl_Main.ActiveGroup = this.navBarGroup_GardenInfo;
			this.navBarControl_Main.AllowDrop = true;
			this.navBarControl_Main.Appearance.GroupHeaderActive.Options.UseTextOptions = true;
			this.navBarControl_Main.Appearance.GroupHeaderActive.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.navBarControl_Main.Appearance.Item.Options.UseTextOptions = true;
			this.navBarControl_Main.Appearance.Item.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.navBarControl_Main.Appearance.ItemActive.Options.UseTextOptions = true;
			this.navBarControl_Main.Appearance.ItemActive.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.navBarControl_Main.BackColor = System.Drawing.Color.WhiteSmoke;
			this.navBarControl_Main.Dock = System.Windows.Forms.DockStyle.Left;
			this.navBarControl_Main.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
																								this.navBarGroup_GardenInfo,
																								this.navBarGroup_TeacherInfo,
																								this.navBarGroup_StudentInfo,
																								this.navBarGroup_GardenAffair});
			this.navBarControl_Main.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
																							  this.navBarItem_GardenInfo,
																							  this.navBarItem_TeaBaseInfo,
																							  this.navBarItem_StuBaseInfo,
																							  this.navBarItem_TeaDutyInfo,
																							  this.navBarItem_StuDutyInfo,
																							  this.navBarItem_StuHealth,
																							  this.navBarItem_SMSInfo,
																							  this.navBarItem_AffairNotify,
																							  this.navBarItem_Finance,
																							  this.navBarItem_CardManagement,
																							  this.navBarItem_RealTimeInfo,
																							  this.navBarItem_StuVisit,
																							  this.navBarItem_RealtimeInfo_Teacher,
                                                                                              this.navBarItem_Camera});
			this.navBarControl_Main.Location = new System.Drawing.Point(32, 52);
			this.navBarControl_Main.Name = "navBarControl_Main";
			this.navBarControl_Main.Size = new System.Drawing.Size(168, 559);
			this.navBarControl_Main.TabIndex = 6;
			this.navBarControl_Main.Text = "主导航栏";
			this.navBarControl_Main.HotTrackedLinkChanged += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarControl_Main_HotTrackedLinkChanged);
			this.navBarControl_Main.MouseLeave += new System.EventHandler(this.navBarControl_Main_MouseLeave);
			// 
			// navBarGroup_GardenInfo
			// 
			this.navBarGroup_GardenInfo.Appearance.Options.UseTextOptions = true;
			this.navBarGroup_GardenInfo.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.navBarGroup_GardenInfo.AppearanceHotTracked.Options.UseTextOptions = true;
			this.navBarGroup_GardenInfo.AppearanceHotTracked.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.navBarGroup_GardenInfo.AppearancePressed.Options.UseTextOptions = true;
			this.navBarGroup_GardenInfo.AppearancePressed.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.navBarGroup_GardenInfo.Caption = "园所信息管理";
			this.navBarGroup_GardenInfo.DragDropFlags = DevExpress.XtraNavBar.NavBarDragDrop.None;
			this.navBarGroup_GardenInfo.Expanded = true;
			this.navBarGroup_GardenInfo.GroupStyle = DevExpress.XtraNavBar.NavBarGroupStyle.SmallIconsText;
			this.navBarGroup_GardenInfo.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
																										  new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem_GardenInfo)});
//			this.navBarGroup_GardenInfo.LargeImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup_GardenInfo.LargeImage")));
			this.navBarGroup_GardenInfo.Name = "navBarGroup_GardenInfo";
			// 
			// navBarItem_GardenInfo
			// 
			this.navBarItem_GardenInfo.Caption = "基本信息管理";
			this.navBarItem_GardenInfo.Name = "navBarItem_GardenInfo";
//			this.navBarItem_GardenInfo.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarItem_GardenInfo.SmallImage")));
			this.navBarItem_GardenInfo.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_GardenInfo_LinkClicked);
			// 
			// navBarGroup_TeacherInfo
			// 
			this.navBarGroup_TeacherInfo.Appearance.Options.UseTextOptions = true;
			this.navBarGroup_TeacherInfo.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.navBarGroup_TeacherInfo.Caption = "教师信息管理";
			this.navBarGroup_TeacherInfo.Expanded = true;
			this.navBarGroup_TeacherInfo.DragDropFlags = DevExpress.XtraNavBar.NavBarDragDrop.None;
			this.navBarGroup_TeacherInfo.GroupStyle = DevExpress.XtraNavBar.NavBarGroupStyle.SmallIconsText;
			this.navBarGroup_TeacherInfo.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
																										   new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem_TeaBaseInfo),
																										   new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem_RealtimeInfo_Teacher),
																										   new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem_TeaDutyInfo)});
//			this.navBarGroup_TeacherInfo.LargeImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup_TeacherInfo.LargeImage")));
			this.navBarGroup_TeacherInfo.Name = "navBarGroup_TeacherInfo";
			// 
			// navBarItem_TeaBaseInfo
			// 
			this.navBarItem_TeaBaseInfo.Caption = "基本信息管理";
			this.navBarItem_TeaBaseInfo.Name = "navBarItem_TeaBaseInfo";
//			this.navBarItem_TeaBaseInfo.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarItem_TeaBaseInfo.SmallImage")));
			this.navBarItem_TeaBaseInfo.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_TeaBaseInfo_LinkClicked);
			// 
			// navBarItem_TeaDutyInfo
			// 
			this.navBarItem_TeaDutyInfo.Caption = "出勤信息管理";
			this.navBarItem_TeaDutyInfo.Name = "navBarItem_TeaDutyInfo";
//			this.navBarItem_TeaDutyInfo.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarItem_TeaDutyInfo.SmallImage")));
			this.navBarItem_TeaDutyInfo.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_TeaDutyInfo_LinkClicked);
			// 
			// navBarGroup_StudentInfo
			// 
			this.navBarGroup_StudentInfo.Appearance.Options.UseTextOptions = true;
			this.navBarGroup_StudentInfo.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.navBarGroup_StudentInfo.Caption = "学生信息管理";
			this.navBarGroup_StudentInfo.Expanded = true;
			this.navBarGroup_StudentInfo.DragDropFlags = DevExpress.XtraNavBar.NavBarDragDrop.None;
			this.navBarGroup_StudentInfo.GroupStyle = DevExpress.XtraNavBar.NavBarGroupStyle.SmallIconsText;
			this.navBarGroup_StudentInfo.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
																										   new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem_StuBaseInfo),
																										   new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem_StuDutyInfo),
																										   new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem_RealTimeInfo),
																										   new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem_StuHealth),
																										   new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem_StuVisit)});
//			this.navBarGroup_StudentInfo.LargeImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup_StudentInfo.LargeImage")));
			this.navBarGroup_StudentInfo.Name = "navBarGroup_StudentInfo";
			// 
			// navBarItem_StuBaseInfo
			// 
			this.navBarItem_StuBaseInfo.Caption = "基本信息管理";
			this.navBarItem_StuBaseInfo.Name = "navBarItem_StuBaseInfo";
//			this.navBarItem_StuBaseInfo.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarItem_StuBaseInfo.SmallImage")));
			this.navBarItem_StuBaseInfo.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_StuBaseInfo_LinkClicked);
			// 
			// navBarItem_StuDutyInfo
			// 
			this.navBarItem_StuDutyInfo.Caption = "出勤信息管理";
			this.navBarItem_StuDutyInfo.Name = "navBarItem_StuDutyInfo";
//			this.navBarItem_StuDutyInfo.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarItem_StuDutyInfo.SmallImage")));
			this.navBarItem_StuDutyInfo.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_StuDutyInfo_LinkClicked);
			// 
			// navBarItem_RealTimeInfo
			// 
			this.navBarItem_RealTimeInfo.Caption = "实时统计信息";
			this.navBarItem_RealTimeInfo.Name = "navBarItem_RealTimeInfo";
//			this.navBarItem_RealTimeInfo.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarItem_RealTimeInfo.SmallImage")));
			this.navBarItem_RealTimeInfo.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_RealTimeInfo_LinkClicked);
			// 
			// navBarItem_StuHealth
			// 
			this.navBarItem_StuHealth.Caption = "健康保健管理";
			this.navBarItem_StuHealth.Name = "navBarItem_StuHealth";
//			this.navBarItem_StuHealth.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarItem_StuHealth.SmallImage")));
			this.navBarItem_StuHealth.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_StuHealth_LinkClicked);
			// 
			// navBarItem_StuVisit
			// 
			this.navBarItem_StuVisit.Caption = "家访信息管理";
			this.navBarItem_StuVisit.Name = "navBarItem_StuVisit";
			this.navBarItem_StuVisit.Visible = false;
			this.navBarItem_StuVisit.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_StuVisit_LinkClicked);
			// 
			// navBarGroup_GardenAffair
			// 
			this.navBarGroup_GardenAffair.Appearance.Options.UseTextOptions = true;
			this.navBarGroup_GardenAffair.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.navBarGroup_GardenAffair.Caption = "园务辅助功能";
			this.navBarGroup_GardenAffair.Expanded = true;
			this.navBarGroup_GardenAffair.DragDropFlags = DevExpress.XtraNavBar.NavBarDragDrop.None;
			this.navBarGroup_GardenAffair.GroupStyle = DevExpress.XtraNavBar.NavBarGroupStyle.SmallIconsText;
			this.navBarGroup_GardenAffair.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
																											new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem_CardManagement),
																											new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem_Finance),
																											new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem_SMSInfo),
																											new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem_AffairNotify),
                                                                                                            new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem_Camera)});
//			this.navBarGroup_GardenAffair.LargeImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup_GardenAffair.LargeImage")));
			this.navBarGroup_GardenAffair.Name = "navBarGroup_GardenAffair";
			// 
			// navBarItem_CardManagement
			// 
			this.navBarItem_CardManagement.Caption = "晨检卡管理";
			this.navBarItem_CardManagement.Name = "navBarItem_CardManagement";
//			this.navBarItem_CardManagement.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarItem_CardManagement.SmallImage")));
			this.navBarItem_CardManagement.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_CardManagement_LinkClicked);
			// 
			// navBarItem_Finance
			// 
			this.navBarItem_Finance.Caption = "财务功能";
			this.navBarItem_Finance.Name = "navBarItem_Finance";
//			this.navBarItem_Finance.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarItem_Finance.SmallImage")));
			this.navBarItem_Finance.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_Finance_LinkClicked);
			// 
			// navBarItem_SMSInfo
			// 
			this.navBarItem_SMSInfo.Caption = "短信功能";
			this.navBarItem_SMSInfo.Name = "navBarItem_SMSInfo";
//			this.navBarItem_SMSInfo.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarItem_SMSInfo.SmallImage")));
			this.navBarItem_SMSInfo.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_SMSInfo_LinkClicked);
			// 
			// navBarItem_AffairNotify
			// 
			this.navBarItem_AffairNotify.Caption = "事务提醒功能";
			this.navBarItem_AffairNotify.Name = "navBarItem_AffairNotify";
//			this.navBarItem_AffairNotify.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarItem_AffairNotify.SmallImage")));
			this.navBarItem_AffairNotify.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_AffairNotify_LinkClicked);
            // 
            // navBarItem_Camera
            // 
            this.navBarItem_Camera.Caption = "摄像监控";
            this.navBarItem_Camera.Name = "navBarItem_Camera";
            //			this.navBarItem_AffairNotify.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarItem_AffairNotify.SmallImage")));
            this.navBarItem_Camera.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_Camera_LinkClicked);

			// 
			// splitterControlMain
			// 
			this.splitterControlMain.Location = new System.Drawing.Point(200, 52);
			this.splitterControlMain.Name = "splitterControlMain";
			this.splitterControlMain.Size = new System.Drawing.Size(4, 559);
			this.splitterControlMain.TabIndex = 8;
			this.splitterControlMain.TabStop = false;
			// 
			// paneCaption_Title
			// 
			this.paneCaption_Title.AllowActive = false;
			this.paneCaption_Title.AntiAlias = false;
			this.paneCaption_Title.Caption = "客服电话:021-58455584  021-50879915 公司网址:www.shchuangzhi.com";
			this.paneCaption_Title.Dock = System.Windows.Forms.DockStyle.Top;
			this.paneCaption_Title.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Bold);
			this.paneCaption_Title.InactiveGradientHighColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.paneCaption_Title.InactiveGradientLowColor = System.Drawing.Color.DarkGray;
			this.paneCaption_Title.Location = new System.Drawing.Point(204, 52);
			this.paneCaption_Title.Name = "paneCaption_Title";
			this.paneCaption_Title.Size = new System.Drawing.Size(728, 28);
			this.paneCaption_Title.TabIndex = 9;
			// 
			// pictureBox_BackLogo
			// 
			this.pictureBox_BackLogo.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox_BackLogo.BackgroundImage")));
			this.pictureBox_BackLogo.Dock = System.Windows.Forms.DockStyle.Fill;
			this.pictureBox_BackLogo.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_BackLogo.Image")));
			this.pictureBox_BackLogo.Location = new System.Drawing.Point(204, 80);
			this.pictureBox_BackLogo.Name = "pictureBox_BackLogo";
			this.pictureBox_BackLogo.Size = new System.Drawing.Size(728, 531);
			this.pictureBox_BackLogo.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
			this.pictureBox_BackLogo.TabIndex = 17;
			this.pictureBox_BackLogo.TabStop = false;
			// 
			// panelControl_Center
			// 
//			this.panelControl_Center.Controls.Add(this.gardenInfo1);
//			this.panelControl_Center.Controls.Add(this.smsInfo1);
//			this.panelControl_Center.Controls.Add(this.teacherOnDutyInfo1);
//			this.panelControl_Center.Controls.Add(this.realtimeInfo_Teacher1);
//			this.panelControl_Center.Controls.Add(this.nutritionManagement1);
//			this.panelControl_Center.Controls.Add(this.finanManagement1);
//			this.panelControl_Center.Controls.Add(this.studentVisitInfo1);
//			this.panelControl_Center.Controls.Add(this.realtimeInfo1);
//			this.panelControl_Center.Controls.Add(this.teacherBaseInfo1);
//			this.panelControl_Center.Controls.Add(this.studentBaseInfo1);
//			this.panelControl_Center.Controls.Add(this.studentMorningCheckInfo1);
//			this.panelControl_Center.Controls.Add(this.cardManagement2);
//			this.panelControl_Center.Controls.Add(this.transactionReminding1);
			this.panelControl_Center.Dock = System.Windows.Forms.DockStyle.Fill;
			this.panelControl_Center.Location = new System.Drawing.Point(204, 80);
			this.panelControl_Center.Name = "panelControl_Center";
			this.panelControl_Center.Size = new System.Drawing.Size(728, 531);
			this.panelControl_Center.TabIndex = 25;
			this.panelControl_Center.Text = "panelControlCenter";
			this.panelControl_Center.Visible = false;
			//
			//gardenInfo1
			//
//			this.gardenInfo1.Location = new System.Drawing.Point(40,40);
//			this.gardenInfo1.Name = "gardenInfo1";
//			this.gardenInfo1.Size = new System.Drawing.Size(40,40);
//			this.gardenInfo1.TabIndex = 4;
//			this.gardenInfo1.Visible = false;
			//
			//teacherOnDutyInfo1
			//
//			this.teacherOnDutyInfo1.Location = new System.Drawing.Point(30,30);
//			this.teacherOnDutyInfo1.Name = "teacherOnDutyInfo1";
//			this.teacherOnDutyInfo1.Size = new System.Drawing.Size(30,30);
//			this.teacherOnDutyInfo1.TabIndex = 3;
//			this.teacherOnDutyInfo1.Visible = false;
			//
			//smsInfo1
			//
//			this.smsInfo1.Location = new System.Drawing.Point(50,50);
//			this.smsInfo1.Name = "smsInfo1";
//			this.smsInfo1.Size = new System.Drawing.Size(50,50);
//			this.smsInfo1.TabIndex = 6;
//			this.smsInfo1.Visible = false;
//			//
//			//realtimeInfo_Teacher1
//			//
//			this.realtimeInfo_Teacher1.Location = new System.Drawing.Point(60,60);
//			this.realtimeInfo_Teacher1.Name = "realtimeInfo_Teacher1";
//			this.realtimeInfo_Teacher1.Size = new System.Drawing.Size(60,60);
//			this.realtimeInfo_Teacher1.TabIndex = 12;
//			this.realtimeInfo_Teacher1.Visible = false;
//			//
//			// nutritionManagement1
//			// 
//			this.nutritionManagement1.Location = new System.Drawing.Point(232, 336);
//			this.nutritionManagement1.Name = "nutritionManagement1";
//			this.nutritionManagement1.Size = new System.Drawing.Size(144, 128);
//			this.nutritionManagement1.TabIndex = 10;
//			this.nutritionManagement1.Visible = false;
//			// 
//			// finanManagement1
//			// 
//			this.finanManagement1.Location = new System.Drawing.Point(264, 152);
//			this.finanManagement1.Name = "finanManagement1";
//			this.finanManagement1.Size = new System.Drawing.Size(88, 56);
//			this.finanManagement1.TabIndex = 9;
//			this.finanManagement1.Visible = false;
//			// 
//			// studentVisitInfo1
//			// 
//			this.studentVisitInfo1.Location = new System.Drawing.Point(48, 160);
//			this.studentVisitInfo1.Name = "studentVisitInfo1";
//			this.studentVisitInfo1.Size = new System.Drawing.Size(136, 120);
//			this.studentVisitInfo1.TabIndex = 8;
//			// 
//			// realtimeInfo1
//			// 
//			this.realtimeInfo1.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
//			this.realtimeInfo1.Appearance.Options.UseBackColor = true;
//			this.realtimeInfo1.Location = new System.Drawing.Point(96, 88);
//			this.realtimeInfo1.Name = "realtimeInfo1";
//			this.realtimeInfo1.Size = new System.Drawing.Size(120, 48);
//			this.realtimeInfo1.TabIndex = 7;
//			this.realtimeInfo1.Visible = false;
//			// 
//			// teacherBaseInfo1
//			// 
//			this.teacherBaseInfo1.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
//			this.teacherBaseInfo1.Appearance.Options.UseBackColor = true;
//			this.teacherBaseInfo1.Location = new System.Drawing.Point(216, 32);
//			this.teacherBaseInfo1.Name = "teacherBaseInfo1";
//			this.teacherBaseInfo1.Size = new System.Drawing.Size(136, 112);
//			this.teacherBaseInfo1.TabIndex = 1;
//			this.teacherBaseInfo1.Visible = false;
//			// 
//			// studentBaseInfo1
//			// 
//			this.studentBaseInfo1.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
//			this.studentBaseInfo1.Appearance.Options.UseBackColor = true;
//			this.studentBaseInfo1.Location = new System.Drawing.Point(384, 32);
//			this.studentBaseInfo1.Name = "studentBaseInfo1";
//			this.studentBaseInfo1.Size = new System.Drawing.Size(136, 112);
//			this.studentBaseInfo1.TabIndex = 2;
//			this.studentBaseInfo1.Visible = false;
//			// 
//			// studentMorningCheckInfo1
//			// 
//			this.studentMorningCheckInfo1.BackColor = System.Drawing.Color.WhiteSmoke;
//			this.studentMorningCheckInfo1.Location = new System.Drawing.Point(48, 32);
//			this.studentMorningCheckInfo1.Name = "studentMorningCheckInfo1";
//			this.studentMorningCheckInfo1.Size = new System.Drawing.Size(136, 112);
//			this.studentMorningCheckInfo1.TabIndex = 0;
//			this.studentMorningCheckInfo1.Visible = false;
//			// 
//			// cardManagement2
//			// 
//			this.cardManagement2.Location = new System.Drawing.Point(384, 184);
//			this.cardManagement2.Name = "cardManagement2";
//			this.cardManagement2.Size = new System.Drawing.Size(136, 112);
//			this.cardManagement2.TabIndex = 5;
//			this.cardManagement2.Visible = false;
//			// 
//			// transactionReminding1
//			// 
//			this.transactionReminding1.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
//			this.transactionReminding1.Appearance.Options.UseBackColor = true;
//			this.transactionReminding1.Location = new System.Drawing.Point(96, 88);
//			this.transactionReminding1.Name = "transactionReminding1";
//			this.transactionReminding1.Size = new System.Drawing.Size(120, 250);
//			this.transactionReminding1.TabIndex = 11;
//			this.transactionReminding1.Visible = false;
			// 
			// notifyIcon_MainForm
			// 
			this.notifyIcon_MainForm.ContextMenu = this.contextMenu_NotifyIcon;
			this.notifyIcon_MainForm.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon_MainForm.Icon")));
			this.notifyIcon_MainForm.Text = "创智智能晨检网络管理系统"+SystemFramework.Util.PROJECT_VERSION;
			this.notifyIcon_MainForm.DoubleClick += new System.EventHandler(this.notifyIcon_MainForm_DoubleClick);
			// 
			// contextMenu_NotifyIcon
			// 
			this.contextMenu_NotifyIcon.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
																								   this.menuItem_ShowMainForm,
																								   this.menuItem_Exit});
			// 
			// menuItem_ShowMainForm
			// 
			this.menuItem_ShowMainForm.Index = 0;
			this.menuItem_ShowMainForm.Text = "显示主窗体";
			this.menuItem_ShowMainForm.Click += new System.EventHandler(this.menuItem1_Click);
			// 
			// menuItem_Exit
			// 
			this.menuItem_Exit.Index = 1;
			this.menuItem_Exit.Text = "退出";
			this.menuItem_Exit.Click += new System.EventHandler(this.menuItem_Exit_Click);
			// 
			// navBarItem_RealtimeInfo_Teacher
			// 
			this.navBarItem_RealtimeInfo_Teacher.Caption = "实时统计信息";
			this.navBarItem_RealtimeInfo_Teacher.Name = "navBarItem_RealtimeInfo_Teacher";
			this.navBarItem_RealtimeInfo_Teacher.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_RealtimeInfo_Teacher_LinkClicked);
			// 
			// timerSynSession
			// 
			this.timerSynSession.Enabled = true;
			this.timerSynSession.Interval = 5000;
			this.timerSynSession.SynchronizingObject = this;
			this.timerSynSession.Elapsed += new System.Timers.ElapsedEventHandler(this.timerSynSession_Elapsed);
			// 
			// MainForm
			// 
			this.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
			this.Appearance.Options.UseBackColor = true;
			this.AutoScaleBaseSize = new System.Drawing.Size(6, 15);
			this.ClientSize = new System.Drawing.Size(952, 629);
			this.Controls.Add(this.panelControl_Center);
			this.Controls.Add(this.pictureBox_BackLogo);
			this.Controls.Add(this.paneCaption_Title);
			this.Controls.Add(this.splitterControlMain);
			this.Controls.Add(this.navBarControl_Main);
			this.Controls.Add(this.pictureBox_Border);
			this.Controls.Add(this.hideContainerRight);
			this.Controls.Add(this.barDockControlLeft);
			this.Controls.Add(this.barDockControlRight);
			this.Controls.Add(this.barDockControlBottom);
			this.Controls.Add(this.barDockControlTop);
			this.Name = "创智智能晨检网络管理系统"+SystemFramework.Util.PROJECT_VERSION;
			this.Text = "创智智能晨检网络管理系统"+SystemFramework.Util.PROJECT_VERSION;
			this.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon_MainForm.Icon")));
			this.Resize += new System.EventHandler(this.MainForm_Resize);
			this.Closing += new System.ComponentModel.CancelEventHandler(this.MainForm_Closing);
			this.Load += new System.EventHandler(this.MainForm_Load);
			((System.ComponentModel.ISupportInitialize)(this.timerSynSession)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.barManager_Main)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dockManager_CurrentStuCheckInfo)).EndInit();
			this.hideContainerRight.ResumeLayout(false);
			this.currentStuCheckInfo.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.navBarControl_Main)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl_Center)).EndInit();
			this.panelControl_Center.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(RoleDetialFrm));
     this.groupControlSelect = new DevExpress.XtraEditors.GroupControl();
     this.LUEItems = new DevExpress.XtraEditors.LookUpEdit();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.dockManagerMain = new DevExpress.XtraBars.Docking.DockManager(this.components);
     this.pnlContainerMain = new DevExpress.XtraBars.Docking.DockPanel();
     this.DPCode = new DevExpress.XtraBars.Docking.DockPanel();
     this.dockPanel1_Container = new DevExpress.XtraBars.Docking.ControlContainer();
     this.navBarControlCode = new DevExpress.XtraNavBar.NavBarControl();
     this.navBarGroup1 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarItemTimeCD_Asasetime = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemTimeCDAlhasas = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemTimeCDAlsofof = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemTimeCDEFasl = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemTimeCDDayname = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemTimeCD_HesaTime = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemTimeCDSubjectWekly = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemTimeCDPlace = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemTimeCD_EmpState = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemTimeCD_JobDescription = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemTimeCD_EmpJob = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemTimeCD_Department = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemTimeCD_Subject = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemTimeCD_QualifiedPlace = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemTimeCDQualification = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemTimeCD_Specialization = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemTimeCD_MaritalStatus = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemTimeTBL_Priority = new DevExpress.XtraNavBar.NavBarItem();
     this.imageCollection32 = new DevExpress.Utils.ImageCollection(this.components);
     this.DPData = new DevExpress.XtraBars.Docking.DockPanel();
     this.dockPanel2_Container = new DevExpress.XtraBars.Docking.ControlContainer();
     this.navBarControlData = new DevExpress.XtraNavBar.NavBarControl();
     this.navBarGroup2 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarItemTimeTBLNesab = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemTimeTBLTeacherNoDays = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemTimeTBLTeachersPlan = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemTimeTBLTimeTable = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemTimeTBLAhteaty = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemTimeTBL_Emp = new DevExpress.XtraNavBar.NavBarItem();
     this.DPPriv = new DevExpress.XtraBars.Docking.DockPanel();
     this.dockPanel3_Container = new DevExpress.XtraBars.Docking.ControlContainer();
     this.navBarControlPriv = new DevExpress.XtraNavBar.NavBarControl();
     this.navBarGroup3 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarItemTimeRoles = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemTimeRoleDetial = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemTimeUsers = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemTimeUserRoles = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemTimeAppOptions = new DevExpress.XtraNavBar.NavBarItem();
     this.DPQuery = new DevExpress.XtraBars.Docking.DockPanel();
     this.dockPanel4_Container = new DevExpress.XtraBars.Docking.ControlContainer();
     this.navBarControlQry = new DevExpress.XtraNavBar.NavBarControl();
     this.navBarGroup5 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarItemTimeQryWeekTeacherTable = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemTimeQryWeekFaslTable = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemTimeQryTblAhteaty = new DevExpress.XtraNavBar.NavBarItem();
     this.DPReport = new DevExpress.XtraBars.Docking.DockPanel();
     this.dockPanel5_Container = new DevExpress.XtraBars.Docking.ControlContainer();
     this.navBarControlReport = new DevExpress.XtraNavBar.NavBarControl();
     this.navBarGroup6 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarItemTimeDeployRpt = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarGroup4 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarGroup7 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarGroup8 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarGroup9 = new DevExpress.XtraNavBar.NavBarGroup();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.CEUpdate = new DevExpress.XtraEditors.CheckEdit();
     this.CESelect = new DevExpress.XtraEditors.CheckEdit();
     this.CEDelete = new DevExpress.XtraEditors.CheckEdit();
     this.CEInsert = new DevExpress.XtraEditors.CheckEdit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlSelect)).BeginInit();
     this.groupControlSelect.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LUEItems.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManagerMain)).BeginInit();
     this.pnlContainerMain.SuspendLayout();
     this.DPCode.SuspendLayout();
     this.dockPanel1_Container.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlCode)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection32)).BeginInit();
     this.DPData.SuspendLayout();
     this.dockPanel2_Container.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlData)).BeginInit();
     this.DPPriv.SuspendLayout();
     this.dockPanel3_Container.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlPriv)).BeginInit();
     this.DPQuery.SuspendLayout();
     this.dockPanel4_Container.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlQry)).BeginInit();
     this.DPReport.SuspendLayout();
     this.dockPanel5_Container.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlReport)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.CEUpdate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.CESelect.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.CEDelete.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.CEInsert.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // groupControlSelect
     //
     this.groupControlSelect.AppearanceCaption.Options.UseTextOptions = true;
     this.groupControlSelect.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.groupControlSelect.Controls.Add(this.LUEItems);
     this.groupControlSelect.Controls.Add(this.labelControl1);
     this.groupControlSelect.Dock = System.Windows.Forms.DockStyle.Top;
     this.groupControlSelect.Location = new System.Drawing.Point(0, 0);
     this.groupControlSelect.Name = "groupControlSelect";
     this.groupControlSelect.Size = new System.Drawing.Size(334, 59);
     this.groupControlSelect.TabIndex = 2;
     this.groupControlSelect.Text = "جميع السماحيات";
     //
     // LUEItems
     //
     this.LUEItems.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.LUEItems.Location = new System.Drawing.Point(61, 28);
     this.LUEItems.Name = "LUEItems";
     this.LUEItems.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LUEItems.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("RoleName", "اسم السماحيه", 20, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Center),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("RoleDesc", "تعليق", 20, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Center)});
     this.LUEItems.Properties.NullText = "";
     this.LUEItems.Size = new System.Drawing.Size(147, 20);
     this.LUEItems.TabIndex = 0;
     this.LUEItems.EditValueChanged += new System.EventHandler(this.LUEItems_EditValueChanged);
     //
     // labelControl1
     //
     this.labelControl1.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl1.Location = new System.Drawing.Point(214, 31);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(60, 13);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "اختر سماحيه";
     //
     // dockManagerMain
     //
     this.dockManagerMain.DockingOptions.ShowCaptionImage = true;
     this.dockManagerMain.DockMode = DevExpress.XtraBars.Docking.Helpers.DockMode.Standard;
     this.dockManagerMain.Form = this;
     this.dockManagerMain.RootPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
     this.pnlContainerMain});
     this.dockManagerMain.TopZIndexControls.AddRange(new string[] {
     "DevExpress.XtraBars.BarDockControl",
     "DevExpress.XtraBars.StandaloneBarDockControl",
     "System.Windows.Forms.StatusBar",
     "DevExpress.XtraBars.Ribbon.RibbonStatusBar",
     "DevExpress.XtraBars.Ribbon.RibbonControl"});
     //
     // pnlContainerMain
     //
     this.pnlContainerMain.ActiveChild = this.DPCode;
     this.pnlContainerMain.Controls.Add(this.DPCode);
     this.pnlContainerMain.Controls.Add(this.DPData);
     this.pnlContainerMain.Controls.Add(this.DPPriv);
     this.pnlContainerMain.Controls.Add(this.DPQuery);
     this.pnlContainerMain.Controls.Add(this.DPReport);
     this.pnlContainerMain.Dock = DevExpress.XtraBars.Docking.DockingStyle.Bottom;
     this.pnlContainerMain.FloatSize = new System.Drawing.Size(336, 404);
     this.pnlContainerMain.FloatVertical = true;
     this.pnlContainerMain.ID = new System.Guid("a1818170-f437-4f2f-b8be-29961c00921c");
     this.pnlContainerMain.Location = new System.Drawing.Point(0, 142);
     this.pnlContainerMain.Name = "pnlContainerMain";
     this.pnlContainerMain.OriginalSize = new System.Drawing.Size(200, 470);
     this.pnlContainerMain.Size = new System.Drawing.Size(334, 470);
     this.pnlContainerMain.Tabbed = true;
     this.pnlContainerMain.Text = "panelContainer1";
     //
     // DPCode
     //
     this.DPCode.Controls.Add(this.dockPanel1_Container);
     this.DPCode.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.DPCode.FloatSize = new System.Drawing.Size(336, 404);
     this.DPCode.FloatVertical = true;
     this.DPCode.ID = new System.Guid("5caa9054-017c-40dd-8832-9c116b8b0c2e");
     this.DPCode.Location = new System.Drawing.Point(4, 23);
     this.DPCode.Name = "DPCode";
     this.DPCode.OriginalSize = new System.Drawing.Size(200, 200);
     this.DPCode.Size = new System.Drawing.Size(326, 416);
     this.DPCode.Text = "الاكواد";
     //
     // dockPanel1_Container
     //
     this.dockPanel1_Container.Controls.Add(this.navBarControlCode);
     this.dockPanel1_Container.Location = new System.Drawing.Point(0, 0);
     this.dockPanel1_Container.Name = "dockPanel1_Container";
     this.dockPanel1_Container.Size = new System.Drawing.Size(326, 416);
     this.dockPanel1_Container.TabIndex = 0;
     //
     // navBarControlCode
     //
     this.navBarControlCode.ActiveGroup = this.navBarGroup1;
     this.navBarControlCode.Dock = System.Windows.Forms.DockStyle.Fill;
     this.navBarControlCode.ExplorerBarShowGroupButtons = false;
     this.navBarControlCode.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
     this.navBarGroup1});
     this.navBarControlCode.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
     this.navBarItemTimeCD_Asasetime,
     this.navBarItemTimeCDAlhasas,
     this.navBarItemTimeCDAlsofof,
     this.navBarItemTimeCDEFasl,
     this.navBarItemTimeCD_HesaTime,
     this.navBarItemTimeCDSubjectWekly,
     this.navBarItemTimeCDPlace,
     this.navBarItemTimeCDDayname,
     this.navBarItemTimeCD_EmpState,
     this.navBarItemTimeCD_JobDescription,
     this.navBarItemTimeCD_EmpJob,
     this.navBarItemTimeCD_Department,
     this.navBarItemTimeCD_Subject,
     this.navBarItemTimeCD_QualifiedPlace,
     this.navBarItemTimeCDQualification,
     this.navBarItemTimeCD_Specialization,
     this.navBarItemTimeCD_MaritalStatus,
     this.navBarItemTimeTBL_Priority});
     this.navBarControlCode.Location = new System.Drawing.Point(0, 0);
     this.navBarControlCode.Name = "navBarControlCode";
     this.navBarControlCode.OptionsNavPane.ExpandedWidth = 326;
     this.navBarControlCode.Size = new System.Drawing.Size(326, 416);
     this.navBarControlCode.SmallImages = this.imageCollection32;
     this.navBarControlCode.StoreDefaultPaintStyleName = true;
     this.navBarControlCode.TabIndex = 9;
     //
     // navBarGroup1
     //
     this.navBarGroup1.Caption = "";
     this.navBarGroup1.Expanded = true;
     this.navBarGroup1.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemTimeCD_Asasetime),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemTimeCDAlhasas),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemTimeCDAlsofof),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemTimeCDEFasl),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemTimeCDDayname),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemTimeCD_HesaTime),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemTimeCDSubjectWekly),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemTimeCDPlace),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemTimeCD_EmpState),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemTimeCD_JobDescription),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemTimeCD_EmpJob),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemTimeCD_Department),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemTimeCD_Subject),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemTimeTBL_Priority),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemTimeCD_QualifiedPlace),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemTimeCDQualification),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemTimeCD_Specialization),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemTimeCD_MaritalStatus)});
     this.navBarGroup1.LargeImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup1.LargeImage")));
     this.navBarGroup1.Name = "navBarGroup1";
     this.navBarGroup1.NavigationPaneVisible = false;
     this.navBarGroup1.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup1.SmallImage")));
     //
     // navBarItemTimeCD_Asasetime
     //
     this.navBarItemTimeCD_Asasetime.Caption = "العام الدراسي";
     this.navBarItemTimeCD_Asasetime.LargeImageIndex = 7;
     this.navBarItemTimeCD_Asasetime.Name = "navBarItemTimeCD_Asasetime";
     this.navBarItemTimeCD_Asasetime.SmallImageIndex = 7;
     this.navBarItemTimeCD_Asasetime.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemTimeCDAlhasas
     //
     this.navBarItemTimeCDAlhasas.Caption = "اكواد الحصص";
     this.navBarItemTimeCDAlhasas.LargeImageIndex = 8;
     this.navBarItemTimeCDAlhasas.Name = "navBarItemTimeCDAlhasas";
     this.navBarItemTimeCDAlhasas.SmallImageIndex = 8;
     this.navBarItemTimeCDAlhasas.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemTimeCDAlsofof
     //
     this.navBarItemTimeCDAlsofof.Caption = "اكواد الصفوف";
     this.navBarItemTimeCDAlsofof.LargeImageIndex = 9;
     this.navBarItemTimeCDAlsofof.Name = "navBarItemTimeCDAlsofof";
     this.navBarItemTimeCDAlsofof.SmallImageIndex = 9;
     this.navBarItemTimeCDAlsofof.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemTimeCDEFasl
     //
     this.navBarItemTimeCDEFasl.Caption = "اكواد الفصول";
     this.navBarItemTimeCDEFasl.LargeImageIndex = 10;
     this.navBarItemTimeCDEFasl.Name = "navBarItemTimeCDEFasl";
     this.navBarItemTimeCDEFasl.SmallImageIndex = 10;
     this.navBarItemTimeCDEFasl.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemTimeCDDayname
     //
     this.navBarItemTimeCDDayname.Caption = "الايام";
     this.navBarItemTimeCDDayname.LargeImageIndex = 27;
     this.navBarItemTimeCDDayname.Name = "navBarItemTimeCDDayname";
     this.navBarItemTimeCDDayname.SmallImageIndex = 27;
     this.navBarItemTimeCDDayname.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemTimeCD_HesaTime
     //
     this.navBarItemTimeCD_HesaTime.Caption = "مواعيد الحصص";
     this.navBarItemTimeCD_HesaTime.LargeImageIndex = 11;
     this.navBarItemTimeCD_HesaTime.Name = "navBarItemTimeCD_HesaTime";
     this.navBarItemTimeCD_HesaTime.SmallImageIndex = 11;
     this.navBarItemTimeCD_HesaTime.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemTimeCDSubjectWekly
     //
     this.navBarItemTimeCDSubjectWekly.Caption = "خطة المواد الاسبوعية";
     this.navBarItemTimeCDSubjectWekly.LargeImageIndex = 12;
     this.navBarItemTimeCDSubjectWekly.Name = "navBarItemTimeCDSubjectWekly";
     this.navBarItemTimeCDSubjectWekly.SmallImageIndex = 12;
     this.navBarItemTimeCDSubjectWekly.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemTimeCDPlace
     //
     this.navBarItemTimeCDPlace.Caption = "الاماكن";
     this.navBarItemTimeCDPlace.LargeImageIndex = 13;
     this.navBarItemTimeCDPlace.Name = "navBarItemTimeCDPlace";
     this.navBarItemTimeCDPlace.SmallImageIndex = 13;
     this.navBarItemTimeCDPlace.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemTimeCD_EmpState
     //
     this.navBarItemTimeCD_EmpState.Caption = "الحالة الوظيفية";
     this.navBarItemTimeCD_EmpState.LargeImageIndex = 14;
     this.navBarItemTimeCD_EmpState.Name = "navBarItemTimeCD_EmpState";
     this.navBarItemTimeCD_EmpState.SmallImageIndex = 14;
     this.navBarItemTimeCD_EmpState.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemTimeCD_JobDescription
     //
     this.navBarItemTimeCD_JobDescription.Caption = "الوصف الوظيفي";
     this.navBarItemTimeCD_JobDescription.LargeImageIndex = 15;
     this.navBarItemTimeCD_JobDescription.Name = "navBarItemTimeCD_JobDescription";
     this.navBarItemTimeCD_JobDescription.SmallImageIndex = 15;
     this.navBarItemTimeCD_JobDescription.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemTimeCD_EmpJob
     //
     this.navBarItemTimeCD_EmpJob.Caption = "وظائف العاملين";
     this.navBarItemTimeCD_EmpJob.LargeImageIndex = 16;
     this.navBarItemTimeCD_EmpJob.Name = "navBarItemTimeCD_EmpJob";
     this.navBarItemTimeCD_EmpJob.SmallImageIndex = 16;
     this.navBarItemTimeCD_EmpJob.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemTimeCD_Department
     //
     this.navBarItemTimeCD_Department.Caption = "الاقسام";
     this.navBarItemTimeCD_Department.LargeImageIndex = 17;
     this.navBarItemTimeCD_Department.Name = "navBarItemTimeCD_Department";
     this.navBarItemTimeCD_Department.SmallImageIndex = 17;
     this.navBarItemTimeCD_Department.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemTimeCD_Subject
     //
     this.navBarItemTimeCD_Subject.Caption = "المواد";
     this.navBarItemTimeCD_Subject.LargeImageIndex = 18;
     this.navBarItemTimeCD_Subject.Name = "navBarItemTimeCD_Subject";
     this.navBarItemTimeCD_Subject.SmallImageIndex = 18;
     this.navBarItemTimeCD_Subject.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemTimeCD_QualifiedPlace
     //
     this.navBarItemTimeCD_QualifiedPlace.Caption = "جهة الؤهل";
     this.navBarItemTimeCD_QualifiedPlace.LargeImageIndex = 19;
     this.navBarItemTimeCD_QualifiedPlace.Name = "navBarItemTimeCD_QualifiedPlace";
     this.navBarItemTimeCD_QualifiedPlace.SmallImageIndex = 19;
     this.navBarItemTimeCD_QualifiedPlace.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemTimeCDQualification
     //
     this.navBarItemTimeCDQualification.Caption = "المؤهلات";
     this.navBarItemTimeCDQualification.LargeImageIndex = 20;
     this.navBarItemTimeCDQualification.Name = "navBarItemTimeCDQualification";
     this.navBarItemTimeCDQualification.SmallImageIndex = 20;
     this.navBarItemTimeCDQualification.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemTimeCD_Specialization
     //
     this.navBarItemTimeCD_Specialization.Caption = "تخصص المؤهل";
     this.navBarItemTimeCD_Specialization.LargeImageIndex = 21;
     this.navBarItemTimeCD_Specialization.Name = "navBarItemTimeCD_Specialization";
     this.navBarItemTimeCD_Specialization.SmallImageIndex = 21;
     this.navBarItemTimeCD_Specialization.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemTimeCD_MaritalStatus
     //
     this.navBarItemTimeCD_MaritalStatus.Caption = "الحالة الاجتماعية";
     this.navBarItemTimeCD_MaritalStatus.LargeImageIndex = 22;
     this.navBarItemTimeCD_MaritalStatus.Name = "navBarItemTimeCD_MaritalStatus";
     this.navBarItemTimeCD_MaritalStatus.SmallImageIndex = 22;
     this.navBarItemTimeCD_MaritalStatus.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemTimeTBL_Priority
     //
     this.navBarItemTimeTBL_Priority.Caption = "أولويات المواد";
     this.navBarItemTimeTBL_Priority.LargeImageIndex = 31;
     this.navBarItemTimeTBL_Priority.Name = "navBarItemTimeTBL_Priority";
     this.navBarItemTimeTBL_Priority.SmallImageIndex = 31;
     this.navBarItemTimeTBL_Priority.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // imageCollection32
     //
     this.imageCollection32.ImageSize = new System.Drawing.Size(32, 32);
     this.imageCollection32.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imageCollection32.ImageStream")));
     this.imageCollection32.Images.SetKeyName(0, "Roles.png");
     this.imageCollection32.Images.SetKeyName(1, "Users.png");
     this.imageCollection32.Images.SetKeyName(2, "UserRoles.png");
     this.imageCollection32.Images.SetKeyName(3, "RoleDetial.png");
     this.imageCollection32.Images.SetKeyName(4, "Reports.png");
     this.imageCollection32.Images.SetKeyName(5, "DeployRpt.png");
     this.imageCollection32.Images.SetKeyName(6, "AppOptions.png");
     this.imageCollection32.Images.SetKeyName(7, "CD_Asasetime.png");
     this.imageCollection32.Images.SetKeyName(8, "CDAlhasas.png");
     this.imageCollection32.Images.SetKeyName(9, "CDAlsofof.png");
     this.imageCollection32.Images.SetKeyName(10, "CDEFasl.png");
     this.imageCollection32.Images.SetKeyName(11, "CD_HesaTime.png");
     this.imageCollection32.Images.SetKeyName(12, "CDSubjectWekly.png");
     this.imageCollection32.Images.SetKeyName(13, "CDPlace.png");
     this.imageCollection32.Images.SetKeyName(14, "CD_EmpState.png");
     this.imageCollection32.Images.SetKeyName(15, "CD_JobDescription.png");
     this.imageCollection32.Images.SetKeyName(16, "CD_EmpJob.png");
     this.imageCollection32.Images.SetKeyName(17, "CD_Department.png");
     this.imageCollection32.Images.SetKeyName(18, "CD_Subject.png");
     this.imageCollection32.Images.SetKeyName(19, "CD_QualifiedPlace.png");
     this.imageCollection32.Images.SetKeyName(20, "CDQualification.png");
     this.imageCollection32.Images.SetKeyName(21, "CD_Specialization.png");
     this.imageCollection32.Images.SetKeyName(22, "CD_MaritalStatus.png");
     this.imageCollection32.Images.SetKeyName(23, "TBLNesab.png");
     this.imageCollection32.Images.SetKeyName(24, "TBLTeacherNoDays.png");
     this.imageCollection32.Images.SetKeyName(25, "TBLTeachersPlan.png");
     this.imageCollection32.Images.SetKeyName(26, "TBLTimeTable.png");
     this.imageCollection32.Images.SetKeyName(27, "CDDayname.png");
     this.imageCollection32.Images.SetKeyName(28, "QryWeekFaslTable.png");
     this.imageCollection32.Images.SetKeyName(29, "TBLAhteaty.png");
     this.imageCollection32.Images.SetKeyName(30, "TBL_Emp.png");
     this.imageCollection32.Images.SetKeyName(31, "TBL_Priority.png");
     //
     // DPData
     //
     this.DPData.Controls.Add(this.dockPanel2_Container);
     this.DPData.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.DPData.FloatSize = new System.Drawing.Size(336, 404);
     this.DPData.ID = new System.Guid("a97e3d69-dc1d-4cf2-8b60-8d961607e006");
     this.DPData.Location = new System.Drawing.Point(4, 23);
     this.DPData.Name = "DPData";
     this.DPData.OriginalSize = new System.Drawing.Size(200, 200);
     this.DPData.Size = new System.Drawing.Size(326, 416);
     this.DPData.Text = "بيانات الادخال";
     //
     // dockPanel2_Container
     //
     this.dockPanel2_Container.Controls.Add(this.navBarControlData);
     this.dockPanel2_Container.Location = new System.Drawing.Point(0, 0);
     this.dockPanel2_Container.Name = "dockPanel2_Container";
     this.dockPanel2_Container.Size = new System.Drawing.Size(326, 416);
     this.dockPanel2_Container.TabIndex = 0;
     //
     // navBarControlData
     //
     this.navBarControlData.ActiveGroup = this.navBarGroup2;
     this.navBarControlData.Dock = System.Windows.Forms.DockStyle.Fill;
     this.navBarControlData.ExplorerBarShowGroupButtons = false;
     this.navBarControlData.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
     this.navBarGroup2});
     this.navBarControlData.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
     this.navBarItemTimeTBLNesab,
     this.navBarItemTimeTBLTeacherNoDays,
     this.navBarItemTimeTBLTeachersPlan,
     this.navBarItemTimeTBLTimeTable,
     this.navBarItemTimeTBLAhteaty,
     this.navBarItemTimeTBL_Emp});
     this.navBarControlData.Location = new System.Drawing.Point(0, 0);
     this.navBarControlData.Name = "navBarControlData";
     this.navBarControlData.OptionsNavPane.ExpandedWidth = 326;
     this.navBarControlData.Size = new System.Drawing.Size(326, 416);
     this.navBarControlData.SmallImages = this.imageCollection32;
     this.navBarControlData.StoreDefaultPaintStyleName = true;
     this.navBarControlData.TabIndex = 10;
     this.navBarControlData.Text = "navBarControl1";
     //
     // navBarGroup2
     //
     this.navBarGroup2.Caption = "";
     this.navBarGroup2.Expanded = true;
     this.navBarGroup2.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemTimeTBLNesab),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemTimeTBLTeacherNoDays),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemTimeTBLTeachersPlan),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemTimeTBLTimeTable),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemTimeTBLAhteaty),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemTimeTBL_Emp)});
     this.navBarGroup2.LargeImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup2.LargeImage")));
     this.navBarGroup2.Name = "navBarGroup2";
     this.navBarGroup2.NavigationPaneVisible = false;
     this.navBarGroup2.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup2.SmallImage")));
     //
     // navBarItemTimeTBLNesab
     //
     this.navBarItemTimeTBLNesab.Caption = "نصاب المدرسين";
     this.navBarItemTimeTBLNesab.LargeImageIndex = 23;
     this.navBarItemTimeTBLNesab.Name = "navBarItemTimeTBLNesab";
     this.navBarItemTimeTBLNesab.SmallImageIndex = 23;
     this.navBarItemTimeTBLNesab.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemTimeTBLTeacherNoDays
     //
     this.navBarItemTimeTBLTeacherNoDays.Caption = "ايام اجازات المدرسين";
     this.navBarItemTimeTBLTeacherNoDays.LargeImageIndex = 24;
     this.navBarItemTimeTBLTeacherNoDays.Name = "navBarItemTimeTBLTeacherNoDays";
     this.navBarItemTimeTBLTeacherNoDays.SmallImageIndex = 24;
     this.navBarItemTimeTBLTeacherNoDays.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemTimeTBLTeachersPlan
     //
     this.navBarItemTimeTBLTeachersPlan.Caption = "خطط المدرسين";
     this.navBarItemTimeTBLTeachersPlan.LargeImageIndex = 25;
     this.navBarItemTimeTBLTeachersPlan.Name = "navBarItemTimeTBLTeachersPlan";
     this.navBarItemTimeTBLTeachersPlan.SmallImageIndex = 25;
     this.navBarItemTimeTBLTeachersPlan.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemTimeTBLTimeTable
     //
     this.navBarItemTimeTBLTimeTable.Caption = "جدول الحصص";
     this.navBarItemTimeTBLTimeTable.LargeImageIndex = 26;
     this.navBarItemTimeTBLTimeTable.Name = "navBarItemTimeTBLTimeTable";
     this.navBarItemTimeTBLTimeTable.SmallImageIndex = 26;
     this.navBarItemTimeTBLTimeTable.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemTimeTBLAhteaty
     //
     this.navBarItemTimeTBLAhteaty.Caption = "الاحتياطي";
     this.navBarItemTimeTBLAhteaty.LargeImageIndex = 29;
     this.navBarItemTimeTBLAhteaty.Name = "navBarItemTimeTBLAhteaty";
     this.navBarItemTimeTBLAhteaty.SmallImageIndex = 29;
     this.navBarItemTimeTBLAhteaty.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemTimeTBL_Emp
     //
     this.navBarItemTimeTBL_Emp.Caption = "بيانات العاملين";
     this.navBarItemTimeTBL_Emp.LargeImageIndex = 30;
     this.navBarItemTimeTBL_Emp.Name = "navBarItemTimeTBL_Emp";
     this.navBarItemTimeTBL_Emp.SmallImageIndex = 30;
     this.navBarItemTimeTBL_Emp.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // DPPriv
     //
     this.DPPriv.Controls.Add(this.dockPanel3_Container);
     this.DPPriv.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.DPPriv.FloatSize = new System.Drawing.Size(336, 404);
     this.DPPriv.ID = new System.Guid("b33c2bb1-0f13-44de-a2c5-b51aa242b097");
     this.DPPriv.Location = new System.Drawing.Point(4, 23);
     this.DPPriv.Name = "DPPriv";
     this.DPPriv.OriginalSize = new System.Drawing.Size(200, 200);
     this.DPPriv.Size = new System.Drawing.Size(326, 416);
     this.DPPriv.Text = "السماحيات";
     //
     // dockPanel3_Container
     //
     this.dockPanel3_Container.Controls.Add(this.navBarControlPriv);
     this.dockPanel3_Container.Location = new System.Drawing.Point(0, 0);
     this.dockPanel3_Container.Name = "dockPanel3_Container";
     this.dockPanel3_Container.Size = new System.Drawing.Size(326, 416);
     this.dockPanel3_Container.TabIndex = 0;
     //
     // navBarControlPriv
     //
     this.navBarControlPriv.ActiveGroup = this.navBarGroup3;
     this.navBarControlPriv.Dock = System.Windows.Forms.DockStyle.Fill;
     this.navBarControlPriv.ExplorerBarShowGroupButtons = false;
     this.navBarControlPriv.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
     this.navBarGroup3});
     this.navBarControlPriv.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
     this.navBarItemTimeRoles,
     this.navBarItemTimeUsers,
     this.navBarItemTimeUserRoles,
     this.navBarItemTimeRoleDetial,
     this.navBarItemTimeAppOptions});
     this.navBarControlPriv.Location = new System.Drawing.Point(0, 0);
     this.navBarControlPriv.Name = "navBarControlPriv";
     this.navBarControlPriv.OptionsNavPane.ExpandedWidth = 326;
     this.navBarControlPriv.Size = new System.Drawing.Size(326, 416);
     this.navBarControlPriv.SmallImages = this.imageCollection32;
     this.navBarControlPriv.StoreDefaultPaintStyleName = true;
     this.navBarControlPriv.TabIndex = 10;
     this.navBarControlPriv.Text = "navBarControl1";
     //
     // navBarGroup3
     //
     this.navBarGroup3.Caption = "";
     this.navBarGroup3.Expanded = true;
     this.navBarGroup3.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemTimeRoles),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemTimeRoleDetial),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemTimeUsers),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemTimeUserRoles),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemTimeAppOptions)});
     this.navBarGroup3.LargeImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup3.LargeImage")));
     this.navBarGroup3.Name = "navBarGroup3";
     this.navBarGroup3.NavigationPaneVisible = false;
     this.navBarGroup3.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup3.SmallImage")));
     //
     // navBarItemTimeRoles
     //
     this.navBarItemTimeRoles.Caption = "الصلاحيات";
     this.navBarItemTimeRoles.LargeImageIndex = 0;
     this.navBarItemTimeRoles.Name = "navBarItemTimeRoles";
     this.navBarItemTimeRoles.SmallImageIndex = 0;
     this.navBarItemTimeRoles.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemTimeRoleDetial
     //
     this.navBarItemTimeRoleDetial.Caption = "تفاصيل الصلاحيات";
     this.navBarItemTimeRoleDetial.LargeImageIndex = 3;
     this.navBarItemTimeRoleDetial.Name = "navBarItemTimeRoleDetial";
     this.navBarItemTimeRoleDetial.SmallImageIndex = 3;
     this.navBarItemTimeRoleDetial.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemTimeUsers
     //
     this.navBarItemTimeUsers.Caption = "المستخدمين";
     this.navBarItemTimeUsers.LargeImageIndex = 1;
     this.navBarItemTimeUsers.Name = "navBarItemTimeUsers";
     this.navBarItemTimeUsers.SmallImageIndex = 1;
     this.navBarItemTimeUsers.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemTimeUserRoles
     //
     this.navBarItemTimeUserRoles.Caption = "صلاحيات المستخدمين";
     this.navBarItemTimeUserRoles.LargeImageIndex = 2;
     this.navBarItemTimeUserRoles.Name = "navBarItemTimeUserRoles";
     this.navBarItemTimeUserRoles.SmallImageIndex = 2;
     this.navBarItemTimeUserRoles.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemTimeAppOptions
     //
     this.navBarItemTimeAppOptions.Caption = "خيارات البرنامج";
     this.navBarItemTimeAppOptions.LargeImageIndex = 6;
     this.navBarItemTimeAppOptions.Name = "navBarItemTimeAppOptions";
     this.navBarItemTimeAppOptions.SmallImageIndex = 6;
     this.navBarItemTimeAppOptions.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // DPQuery
     //
     this.DPQuery.Controls.Add(this.dockPanel4_Container);
     this.DPQuery.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.DPQuery.FloatSize = new System.Drawing.Size(336, 404);
     this.DPQuery.ID = new System.Guid("cfb45d3d-befd-4cb4-8549-091360f328d0");
     this.DPQuery.Location = new System.Drawing.Point(4, 23);
     this.DPQuery.Name = "DPQuery";
     this.DPQuery.OriginalSize = new System.Drawing.Size(200, 200);
     this.DPQuery.Size = new System.Drawing.Size(326, 416);
     this.DPQuery.Text = "الاستعلامات";
     //
     // dockPanel4_Container
     //
     this.dockPanel4_Container.Controls.Add(this.navBarControlQry);
     this.dockPanel4_Container.Location = new System.Drawing.Point(0, 0);
     this.dockPanel4_Container.Name = "dockPanel4_Container";
     this.dockPanel4_Container.Size = new System.Drawing.Size(326, 416);
     this.dockPanel4_Container.TabIndex = 0;
     //
     // navBarControlQry
     //
     this.navBarControlQry.ActiveGroup = this.navBarGroup5;
     this.navBarControlQry.Dock = System.Windows.Forms.DockStyle.Fill;
     this.navBarControlQry.ExplorerBarShowGroupButtons = false;
     this.navBarControlQry.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
     this.navBarGroup5});
     this.navBarControlQry.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
     this.navBarItemTimeQryWeekTeacherTable,
     this.navBarItemTimeQryWeekFaslTable,
     this.navBarItemTimeQryTblAhteaty});
     this.navBarControlQry.Location = new System.Drawing.Point(0, 0);
     this.navBarControlQry.Name = "navBarControlQry";
     this.navBarControlQry.OptionsNavPane.ExpandedWidth = 326;
     this.navBarControlQry.Size = new System.Drawing.Size(326, 416);
     this.navBarControlQry.SmallImages = this.imageCollection32;
     this.navBarControlQry.StoreDefaultPaintStyleName = true;
     this.navBarControlQry.TabIndex = 10;
     this.navBarControlQry.Text = "navBarControl1";
     //
     // navBarGroup5
     //
     this.navBarGroup5.Caption = "";
     this.navBarGroup5.Expanded = true;
     this.navBarGroup5.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemTimeQryWeekTeacherTable),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemTimeQryWeekFaslTable),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemTimeQryTblAhteaty)});
     this.navBarGroup5.LargeImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup5.LargeImage")));
     this.navBarGroup5.Name = "navBarGroup5";
     this.navBarGroup5.NavigationPaneVisible = false;
     this.navBarGroup5.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup5.SmallImage")));
     //
     // navBarItemTimeQryWeekTeacherTable
     //
     this.navBarItemTimeQryWeekTeacherTable.Caption = "جدول المدرسين";
     this.navBarItemTimeQryWeekTeacherTable.LargeImageIndex = 23;
     this.navBarItemTimeQryWeekTeacherTable.Name = "navBarItemTimeQryWeekTeacherTable";
     this.navBarItemTimeQryWeekTeacherTable.SmallImageIndex = 23;
     this.navBarItemTimeQryWeekTeacherTable.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemTimeQryWeekFaslTable
     //
     this.navBarItemTimeQryWeekFaslTable.Caption = "جدول الفصول";
     this.navBarItemTimeQryWeekFaslTable.LargeImageIndex = 28;
     this.navBarItemTimeQryWeekFaslTable.Name = "navBarItemTimeQryWeekFaslTable";
     this.navBarItemTimeQryWeekFaslTable.SmallImageIndex = 28;
     this.navBarItemTimeQryWeekFaslTable.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarItemTimeQryTblAhteaty
     //
     this.navBarItemTimeQryTblAhteaty.Caption = "الاحتياطي";
     this.navBarItemTimeQryTblAhteaty.LargeImageIndex = 29;
     this.navBarItemTimeQryTblAhteaty.Name = "navBarItemTimeQryTblAhteaty";
     this.navBarItemTimeQryTblAhteaty.SmallImageIndex = 29;
     this.navBarItemTimeQryTblAhteaty.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // DPReport
     //
     this.DPReport.Controls.Add(this.dockPanel5_Container);
     this.DPReport.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.DPReport.FloatSize = new System.Drawing.Size(336, 404);
     this.DPReport.ID = new System.Guid("0f036360-d6ff-485c-9f5f-15222cfa0e5f");
     this.DPReport.Location = new System.Drawing.Point(4, 23);
     this.DPReport.Name = "DPReport";
     this.DPReport.OriginalSize = new System.Drawing.Size(200, 200);
     this.DPReport.Size = new System.Drawing.Size(326, 416);
     this.DPReport.Text = "التقارير";
     //
     // dockPanel5_Container
     //
     this.dockPanel5_Container.Controls.Add(this.navBarControlReport);
     this.dockPanel5_Container.Location = new System.Drawing.Point(0, 0);
     this.dockPanel5_Container.Name = "dockPanel5_Container";
     this.dockPanel5_Container.Size = new System.Drawing.Size(326, 416);
     this.dockPanel5_Container.TabIndex = 0;
     //
     // navBarControlReport
     //
     this.navBarControlReport.ActiveGroup = this.navBarGroup6;
     this.navBarControlReport.Dock = System.Windows.Forms.DockStyle.Fill;
     this.navBarControlReport.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
     this.navBarGroup6,
     this.navBarGroup4,
     this.navBarGroup7,
     this.navBarGroup8,
     this.navBarGroup9});
     this.navBarControlReport.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
     this.navBarItemTimeDeployRpt});
     this.navBarControlReport.Location = new System.Drawing.Point(0, 0);
     this.navBarControlReport.Name = "navBarControlReport";
     this.navBarControlReport.OptionsNavPane.ExpandedWidth = 326;
     this.navBarControlReport.Size = new System.Drawing.Size(326, 416);
     this.navBarControlReport.SmallImages = this.imageCollection32;
     this.navBarControlReport.TabIndex = 10;
     this.navBarControlReport.Text = "navBarControl1";
     this.navBarControlReport.View = new DevExpress.XtraNavBar.ViewInfo.StandardSkinExplorerBarViewInfoRegistrator("DevExpress Style");
     //
     // navBarGroup6
     //
     this.navBarGroup6.Caption = "تنصيب التقارير";
     this.navBarGroup6.Expanded = true;
     this.navBarGroup6.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemTimeDeployRpt)});
     this.navBarGroup6.Name = "navBarGroup6";
     //
     // navBarItemTimeDeployRpt
     //
     this.navBarItemTimeDeployRpt.Caption = "تنصيب التقارير";
     this.navBarItemTimeDeployRpt.LargeImageIndex = 5;
     this.navBarItemTimeDeployRpt.Name = "navBarItemTimeDeployRpt";
     this.navBarItemTimeDeployRpt.SmallImageIndex = 5;
     this.navBarItemTimeDeployRpt.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_LinkClicked);
     //
     // navBarGroup4
     //
     this.navBarGroup4.Caption = "تقارير 1";
     this.navBarGroup4.LargeImage = global::ServiceQuery.Properties.Resources.Print;
     this.navBarGroup4.Name = "navBarGroup4";
     this.navBarGroup4.NavigationPaneVisible = false;
     this.navBarGroup4.SmallImage = global::ServiceQuery.Properties.Resources.Print;
     //
     // navBarGroup7
     //
     this.navBarGroup7.Caption = "تقارير 2";
     this.navBarGroup7.LargeImage = global::ServiceQuery.Properties.Resources.Print;
     this.navBarGroup7.Name = "navBarGroup7";
     this.navBarGroup7.SmallImage = global::ServiceQuery.Properties.Resources.Print;
     //
     // navBarGroup8
     //
     this.navBarGroup8.Caption = "تقارير 3";
     this.navBarGroup8.LargeImage = global::ServiceQuery.Properties.Resources.Print;
     this.navBarGroup8.Name = "navBarGroup8";
     this.navBarGroup8.SmallImage = global::ServiceQuery.Properties.Resources.Print;
     //
     // navBarGroup9
     //
     this.navBarGroup9.Caption = "تقارير 4";
     this.navBarGroup9.LargeImage = global::ServiceQuery.Properties.Resources.Print;
     this.navBarGroup9.Name = "navBarGroup9";
     this.navBarGroup9.SmallImage = global::ServiceQuery.Properties.Resources.Print;
     //
     // groupControl2
     //
     this.groupControl2.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.groupControl2.AppearanceCaption.Options.UseTextOptions = true;
     this.groupControl2.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.groupControl2.Controls.Add(this.CEUpdate);
     this.groupControl2.Controls.Add(this.CESelect);
     this.groupControl2.Controls.Add(this.CEDelete);
     this.groupControl2.Controls.Add(this.CEInsert);
     this.groupControl2.Location = new System.Drawing.Point(47, 65);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(240, 73);
     this.groupControl2.TabIndex = 5;
     this.groupControl2.Text = "عناصر السماح";
     //
     // CEUpdate
     //
     this.CEUpdate.Location = new System.Drawing.Point(21, 49);
     this.CEUpdate.Name = "CEUpdate";
     this.CEUpdate.Properties.Caption = "تعديل";
     this.CEUpdate.Size = new System.Drawing.Size(75, 19);
     this.CEUpdate.TabIndex = 0;
     //
     // CESelect
     //
     this.CESelect.Location = new System.Drawing.Point(21, 24);
     this.CESelect.Name = "CESelect";
     this.CESelect.Properties.Caption = "عرض";
     this.CESelect.Size = new System.Drawing.Size(75, 19);
     this.CESelect.TabIndex = 0;
     //
     // CEDelete
     //
     this.CEDelete.Location = new System.Drawing.Point(144, 49);
     this.CEDelete.Name = "CEDelete";
     this.CEDelete.Properties.Caption = "حذف";
     this.CEDelete.Size = new System.Drawing.Size(75, 19);
     this.CEDelete.TabIndex = 0;
     //
     // CEInsert
     //
     this.CEInsert.Location = new System.Drawing.Point(144, 24);
     this.CEInsert.Name = "CEInsert";
     this.CEInsert.Properties.Caption = "اضافه";
     this.CEInsert.Size = new System.Drawing.Size(75, 19);
     this.CEInsert.TabIndex = 0;
     //
     // RoleDetialFrm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(334, 612);
     this.Controls.Add(this.groupControl2);
     this.Controls.Add(this.groupControlSelect);
     this.Controls.Add(this.pnlContainerMain);
     this.Name = "RoleDetialFrm";
     this.Text = "محتويات السماحيات";
     this.Load += new System.EventHandler(this.EditorRoleMenuFrm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.groupControlSelect)).EndInit();
     this.groupControlSelect.ResumeLayout(false);
     this.groupControlSelect.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LUEItems.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManagerMain)).EndInit();
     this.pnlContainerMain.ResumeLayout(false);
     this.DPCode.ResumeLayout(false);
     this.dockPanel1_Container.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlCode)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection32)).EndInit();
     this.DPData.ResumeLayout(false);
     this.dockPanel2_Container.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlData)).EndInit();
     this.DPPriv.ResumeLayout(false);
     this.dockPanel3_Container.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlPriv)).EndInit();
     this.DPQuery.ResumeLayout(false);
     this.dockPanel4_Container.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlQry)).EndInit();
     this.DPReport.ResumeLayout(false);
     this.dockPanel5_Container.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlReport)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.CEUpdate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.CESelect.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.CEDelete.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.CEInsert.Properties)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainFrm));
     this.barManagerMain = new DevExpress.XtraBars.BarManager(this.components);
     this.barUp = new DevExpress.XtraBars.Bar();
     this.barSubItemFile = new DevExpress.XtraBars.BarSubItem();
     this.mbConnection = new DevExpress.XtraBars.BarButtonItem();
     this.mbExit = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItemView = new DevExpress.XtraBars.BarSubItem();
     this.mbCode = new DevExpress.XtraBars.BarButtonItem();
     this.mbData = new DevExpress.XtraBars.BarButtonItem();
     this.mbQuery = new DevExpress.XtraBars.BarButtonItem();
     this.mbReport = new DevExpress.XtraBars.BarButtonItem();
     this.mbPriv = new DevExpress.XtraBars.BarButtonItem();
     this.mbResult = new DevExpress.XtraBars.BarButtonItem();
     this.mbSkins = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItemWindows = new DevExpress.XtraBars.BarSubItem();
     this.mbcascade = new DevExpress.XtraBars.BarButtonItem();
     this.mbtileVertical = new DevExpress.XtraBars.BarButtonItem();
     this.mbtileHorizontal = new DevExpress.XtraBars.BarButtonItem();
     this.mbcloseAll = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItemHelp = new DevExpress.XtraBars.BarSubItem();
     this.mbIndex = new DevExpress.XtraBars.BarButtonItem();
     this.mbAboutUs = new DevExpress.XtraBars.BarButtonItem();
     this.barEditItemasase_code = new DevExpress.XtraBars.BarEditItem();
     this.repositoryItemLookUpEditasase_code = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.barDown = new DevExpress.XtraBars.Bar();
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.dockManagerMain = new DevExpress.XtraBars.Docking.DockManager(this.components);
     this.panelContainer3 = new DevExpress.XtraBars.Docking.DockPanel();
     this.DPSkins = new DevExpress.XtraBars.Docking.DockPanel();
     this.controlContainer6 = new DevExpress.XtraBars.Docking.ControlContainer();
     this.galleryControlSkins = new DevExpress.XtraBars.Ribbon.GalleryControl();
     this.galleryControlClient1 = new DevExpress.XtraBars.Ribbon.GalleryControlClient();
     this.DPResult = new DevExpress.XtraBars.Docking.DockPanel();
     this.controlContainer5 = new DevExpress.XtraBars.Docking.ControlContainer();
     this.Logging = new System.Windows.Forms.RichTextBox();
     this.panelContainer1 = new DevExpress.XtraBars.Docking.DockPanel();
     this.DPCode = new DevExpress.XtraBars.Docking.DockPanel();
     this.dockPanel1_Container = new DevExpress.XtraBars.Docking.ControlContainer();
     this.navBarControlCode = new DevExpress.XtraNavBar.NavBarControl();
     this.navBarGroup1 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarItemEmpCD_AsaseEmp = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCD_EmpState = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCD_JobDescription = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCD_EmpJob = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCD_Department = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCD_Subject = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCD_QualifiedPlace = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCDQualification = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCD_Specialization = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCD_MaritalStatus = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCD_Courses = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCDPlaceTraining = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCD_AgazaType = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCDTakdeer = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCD_EznType = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCD_GzaaType = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCD_GehaGazaa = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpCD_EmpTIME = new DevExpress.XtraNavBar.NavBarItem();
     this.imageCollection32 = new DevExpress.Utils.ImageCollection(this.components);
     this.DPData = new DevExpress.XtraBars.Docking.DockPanel();
     this.controlContainer1 = new DevExpress.XtraBars.Docking.ControlContainer();
     this.navBarControlData = new DevExpress.XtraNavBar.NavBarControl();
     this.navBarGroup2 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarItemEmpTBL_Emp = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpEmp_Moaahel = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpEMP_agazat = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpEMP_Later = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpEMP_ezn = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpEMP_gzaat = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpEMP_training = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpEMP_TAMEEN = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpEMP_report = new DevExpress.XtraNavBar.NavBarItem();
     this.DPPriv = new DevExpress.XtraBars.Docking.DockPanel();
     this.controlContainer4 = new DevExpress.XtraBars.Docking.ControlContainer();
     this.navBarControlPriv = new DevExpress.XtraNavBar.NavBarControl();
     this.navBarGroup3 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarItemEmpRoles = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpRoleDetial = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpUsers = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpUserRoles = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpAppOptions = new DevExpress.XtraNavBar.NavBarItem();
     this.panelContainer2 = new DevExpress.XtraBars.Docking.DockPanel();
     this.DPReport = new DevExpress.XtraBars.Docking.DockPanel();
     this.controlContainer3 = new DevExpress.XtraBars.Docking.ControlContainer();
     this.navBarControlReport = new DevExpress.XtraNavBar.NavBarControl();
     this.navBarGroup4 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarItemEmpXRepEmpAddress = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpXRepEmpagazat = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemEmpXRepEmpAll = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarGroup7 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarGroup8 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarGroup9 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarItemEmpDeployRpt = new DevExpress.XtraNavBar.NavBarItem();
     this.DPQuery = new DevExpress.XtraBars.Docking.DockPanel();
     this.controlContainer2 = new DevExpress.XtraBars.Docking.ControlContainer();
     this.navBarControlQry = new DevExpress.XtraNavBar.NavBarControl();
     this.navBarGroup5 = new DevExpress.XtraNavBar.NavBarGroup();
     this.barEditItem1 = new DevExpress.XtraBars.BarEditItem();
     this.repositoryItemComboBoxSkins = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.navBarItemEmpXRepEmpDetail = new DevExpress.XtraNavBar.NavBarItem();
     ((System.ComponentModel.ISupportInitialize)(this.barManagerMain)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditasase_code)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManagerMain)).BeginInit();
     this.panelContainer3.SuspendLayout();
     this.DPSkins.SuspendLayout();
     this.controlContainer6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.galleryControlSkins)).BeginInit();
     this.galleryControlSkins.SuspendLayout();
     this.DPResult.SuspendLayout();
     this.controlContainer5.SuspendLayout();
     this.panelContainer1.SuspendLayout();
     this.DPCode.SuspendLayout();
     this.dockPanel1_Container.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlCode)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection32)).BeginInit();
     this.DPData.SuspendLayout();
     this.controlContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlData)).BeginInit();
     this.DPPriv.SuspendLayout();
     this.controlContainer4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlPriv)).BeginInit();
     this.panelContainer2.SuspendLayout();
     this.DPReport.SuspendLayout();
     this.controlContainer3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlReport)).BeginInit();
     this.DPQuery.SuspendLayout();
     this.controlContainer2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlQry)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBoxSkins)).BeginInit();
     this.SuspendLayout();
     //
     // barManagerMain
     //
     this.barManagerMain.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.barUp,
     this.barDown});
     this.barManagerMain.DockControls.Add(this.barDockControlTop);
     this.barManagerMain.DockControls.Add(this.barDockControlBottom);
     this.barManagerMain.DockControls.Add(this.barDockControlLeft);
     this.barManagerMain.DockControls.Add(this.barDockControlRight);
     this.barManagerMain.DockManager = this.dockManagerMain;
     this.barManagerMain.Form = this;
     this.barManagerMain.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.barSubItemFile,
     this.barSubItemView,
     this.barSubItemHelp,
     this.mbConnection,
     this.mbExit,
     this.mbCode,
     this.mbData,
     this.mbQuery,
     this.mbReport,
     this.mbPriv,
     this.mbAboutUs,
     this.mbIndex,
     this.barEditItem1,
     this.barEditItemasase_code,
     this.mbResult,
     this.mbSkins,
     this.barSubItemWindows,
     this.mbcascade,
     this.mbtileVertical,
     this.mbtileHorizontal,
     this.mbcloseAll});
     this.barManagerMain.MainMenu = this.barUp;
     this.barManagerMain.MaxItemId = 28;
     this.barManagerMain.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemComboBoxSkins,
     this.repositoryItemLookUpEditasase_code});
     this.barManagerMain.StatusBar = this.barDown;
     this.barManagerMain.TransparentEditors = true;
     //
     // barUp
     //
     this.barUp.BarName = "Main menu";
     this.barUp.DockCol = 0;
     this.barUp.DockRow = 0;
     this.barUp.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.barUp.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItemFile),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItemView),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItemWindows),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItemHelp),
     new DevExpress.XtraBars.LinkPersistInfo(this.barEditItemasase_code)});
     this.barUp.OptionsBar.MultiLine = true;
     this.barUp.OptionsBar.UseWholeRow = true;
     this.barUp.Text = "Main menu";
     //
     // barSubItemFile
     //
     this.barSubItemFile.Caption = "ملف";
     this.barSubItemFile.Glyph = ((System.Drawing.Image)(resources.GetObject("barSubItemFile.Glyph")));
     this.barSubItemFile.Id = 0;
     this.barSubItemFile.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.mbConnection, DevExpress.XtraBars.BarItemPaintStyle.Standard),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbExit)});
     this.barSubItemFile.Name = "barSubItemFile";
     this.barSubItemFile.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // mbConnection
     //
     this.mbConnection.Caption = "الغاء الاتصال";
     this.mbConnection.Glyph = ((System.Drawing.Image)(resources.GetObject("mbConnection.Glyph")));
     this.mbConnection.Id = 3;
     this.mbConnection.Name = "mbConnection";
     this.mbConnection.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbConnection_ItemClick);
     //
     // mbExit
     //
     this.mbExit.Caption = "خروج";
     this.mbExit.Glyph = global::Employee.Properties.Resources.Exit;
     this.mbExit.Id = 4;
     this.mbExit.Name = "mbExit";
     this.mbExit.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbExit_ItemClick);
     //
     // barSubItemView
     //
     this.barSubItemView.Caption = "عرض";
     this.barSubItemView.Glyph = ((System.Drawing.Image)(resources.GetObject("barSubItemView.Glyph")));
     this.barSubItemView.Id = 1;
     this.barSubItemView.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.mbCode),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbData),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbQuery),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbReport),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbPriv),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbResult),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbSkins)});
     this.barSubItemView.Name = "barSubItemView";
     this.barSubItemView.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // mbCode
     //
     this.mbCode.Caption = "اكواد";
     this.mbCode.Glyph = ((System.Drawing.Image)(resources.GetObject("mbCode.Glyph")));
     this.mbCode.Id = 5;
     this.mbCode.Name = "mbCode";
     this.mbCode.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbCode_ItemClick);
     //
     // mbData
     //
     this.mbData.Caption = "ادخال بيانات";
     this.mbData.Glyph = ((System.Drawing.Image)(resources.GetObject("mbData.Glyph")));
     this.mbData.Id = 6;
     this.mbData.Name = "mbData";
     this.mbData.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbData_ItemClick);
     //
     // mbQuery
     //
     this.mbQuery.Caption = "استعلامات";
     this.mbQuery.Glyph = ((System.Drawing.Image)(resources.GetObject("mbQuery.Glyph")));
     this.mbQuery.Id = 7;
     this.mbQuery.Name = "mbQuery";
     this.mbQuery.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbQuery_ItemClick);
     //
     // mbReport
     //
     this.mbReport.Caption = "تقارير";
     this.mbReport.Glyph = global::Employee.Properties.Resources.Print;
     this.mbReport.Id = 8;
     this.mbReport.Name = "mbReport";
     this.mbReport.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbReport_ItemClick);
     //
     // mbPriv
     //
     this.mbPriv.Caption = "صلاحيات";
     this.mbPriv.Glyph = ((System.Drawing.Image)(resources.GetObject("mbPriv.Glyph")));
     this.mbPriv.Id = 9;
     this.mbPriv.Name = "mbPriv";
     this.mbPriv.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbPriv_ItemClick);
     //
     // mbResult
     //
     this.mbResult.Caption = "نتائج العمليات";
     this.mbResult.Glyph = global::Employee.Properties.Resources.info16;
     this.mbResult.Id = 20;
     this.mbResult.Name = "mbResult";
     this.mbResult.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbResult_ItemClick);
     //
     // mbSkins
     //
     this.mbSkins.Caption = "الاشكال";
     this.mbSkins.Glyph = global::Employee.Properties.Resources.Skins;
     this.mbSkins.Id = 21;
     this.mbSkins.Name = "mbSkins";
     this.mbSkins.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbSkins_ItemClick);
     //
     // barSubItemWindows
     //
     this.barSubItemWindows.Caption = "النوافذ";
     this.barSubItemWindows.Glyph = ((System.Drawing.Image)(resources.GetObject("barSubItemWindows.Glyph")));
     this.barSubItemWindows.Id = 22;
     this.barSubItemWindows.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.mbcascade),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbtileVertical),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbtileHorizontal),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbcloseAll)});
     this.barSubItemWindows.Name = "barSubItemWindows";
     this.barSubItemWindows.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // mbcascade
     //
     this.mbcascade.Caption = "ترتيب النوافذ";
     this.mbcascade.Glyph = ((System.Drawing.Image)(resources.GetObject("mbcascade.Glyph")));
     this.mbcascade.Id = 23;
     this.mbcascade.Name = "mbcascade";
     this.mbcascade.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbcascade_ItemClick);
     //
     // mbtileVertical
     //
     this.mbtileVertical.Caption = "العناوين رأسي";
     this.mbtileVertical.Glyph = ((System.Drawing.Image)(resources.GetObject("mbtileVertical.Glyph")));
     this.mbtileVertical.Id = 24;
     this.mbtileVertical.Name = "mbtileVertical";
     this.mbtileVertical.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbtileVertical_ItemClick);
     //
     // mbtileHorizontal
     //
     this.mbtileHorizontal.Caption = "العناوين افقي";
     this.mbtileHorizontal.Glyph = ((System.Drawing.Image)(resources.GetObject("mbtileHorizontal.Glyph")));
     this.mbtileHorizontal.Id = 25;
     this.mbtileHorizontal.Name = "mbtileHorizontal";
     this.mbtileHorizontal.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbtileHorizontal_ItemClick);
     //
     // mbcloseAll
     //
     this.mbcloseAll.Caption = "اغلاق الكل";
     this.mbcloseAll.Glyph = ((System.Drawing.Image)(resources.GetObject("mbcloseAll.Glyph")));
     this.mbcloseAll.Id = 26;
     this.mbcloseAll.Name = "mbcloseAll";
     this.mbcloseAll.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbcloseAll_ItemClick);
     //
     // barSubItemHelp
     //
     this.barSubItemHelp.Caption = "مساعده";
     this.barSubItemHelp.Glyph = ((System.Drawing.Image)(resources.GetObject("barSubItemHelp.Glyph")));
     this.barSubItemHelp.Id = 2;
     this.barSubItemHelp.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.mbIndex),
     new DevExpress.XtraBars.LinkPersistInfo(this.mbAboutUs)});
     this.barSubItemHelp.Name = "barSubItemHelp";
     this.barSubItemHelp.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // mbIndex
     //
     this.mbIndex.Caption = "كتاب المساعده";
     this.mbIndex.Glyph = global::Employee.Properties.Resources.Index;
     this.mbIndex.Id = 11;
     this.mbIndex.Name = "mbIndex";
     //
     // mbAboutUs
     //
     this.mbAboutUs.Caption = "عن البرنامج";
     this.mbAboutUs.Glyph = global::Employee.Properties.Resources.About;
     this.mbAboutUs.Id = 10;
     this.mbAboutUs.Name = "mbAboutUs";
     this.mbAboutUs.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.mbAboutUs_ItemClick);
     //
     // barEditItemasase_code
     //
     this.barEditItemasase_code.Caption = "العام الدراسي";
     this.barEditItemasase_code.Edit = this.repositoryItemLookUpEditasase_code;
     this.barEditItemasase_code.Id = 18;
     this.barEditItemasase_code.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.F12));
     this.barEditItemasase_code.Name = "barEditItemasase_code";
     this.barEditItemasase_code.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionInMenu;
     this.barEditItemasase_code.Width = 150;
     //
     // repositoryItemLookUpEditasase_code
     //
     this.repositoryItemLookUpEditasase_code.Appearance.Options.UseTextOptions = true;
     this.repositoryItemLookUpEditasase_code.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.repositoryItemLookUpEditasase_code.AutoHeight = false;
     this.repositoryItemLookUpEditasase_code.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.OK)});
     this.repositoryItemLookUpEditasase_code.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("asase_year", "العام الدراسي", 50, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Center),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("SCHOOL", "اسم المدرسه", 50, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Center)});
     this.repositoryItemLookUpEditasase_code.DisplayMember = "asase_year";
     this.repositoryItemLookUpEditasase_code.DropDownRows = 10;
     this.repositoryItemLookUpEditasase_code.Name = "repositoryItemLookUpEditasase_code";
     this.repositoryItemLookUpEditasase_code.NullText = "اختار عام دراسي";
     this.repositoryItemLookUpEditasase_code.NullValuePrompt = "اختار عام دراسي";
     this.repositoryItemLookUpEditasase_code.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemLookUpEditasase_code.UseParentBackground = true;
     this.repositoryItemLookUpEditasase_code.ValueMember = "asase_code";
     this.repositoryItemLookUpEditasase_code.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemLookUpEditasase_code_ButtonClick);
     //
     // barDown
     //
     this.barDown.BarName = "Status bar";
     this.barDown.CanDockStyle = DevExpress.XtraBars.BarCanDockStyle.Bottom;
     this.barDown.DockCol = 0;
     this.barDown.DockRow = 0;
     this.barDown.DockStyle = DevExpress.XtraBars.BarDockStyle.Bottom;
     this.barDown.OptionsBar.AllowQuickCustomization = false;
     this.barDown.OptionsBar.DrawDragBorder = false;
     this.barDown.OptionsBar.MultiLine = true;
     this.barDown.OptionsBar.UseWholeRow = true;
     this.barDown.Text = "Status bar";
     //
     // 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(984, 24);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 639);
     this.barDockControlBottom.Size = new System.Drawing.Size(984, 23);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.CausesValidation = false;
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 24);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 615);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(984, 24);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 615);
     //
     // dockManagerMain
     //
     this.dockManagerMain.DockingOptions.ShowCaptionImage = true;
     this.dockManagerMain.DockMode = DevExpress.XtraBars.Docking.Helpers.DockMode.Standard;
     this.dockManagerMain.Form = this;
     this.dockManagerMain.MenuManager = this.barManagerMain;
     this.dockManagerMain.RootPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
     this.panelContainer3,
     this.panelContainer1,
     this.panelContainer2});
     this.dockManagerMain.TopZIndexControls.AddRange(new string[] {
     "DevExpress.XtraBars.BarDockControl",
     "DevExpress.XtraBars.StandaloneBarDockControl",
     "System.Windows.Forms.StatusBar",
     "DevExpress.XtraBars.Ribbon.RibbonStatusBar",
     "DevExpress.XtraBars.Ribbon.RibbonControl"});
     //
     // panelContainer3
     //
     this.panelContainer3.ActiveChild = this.DPSkins;
     this.panelContainer3.Appearance.Options.UseTextOptions = true;
     this.panelContainer3.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.NoWrap;
     this.panelContainer3.Controls.Add(this.DPSkins);
     this.panelContainer3.Controls.Add(this.DPResult);
     this.panelContainer3.Dock = DevExpress.XtraBars.Docking.DockingStyle.Bottom;
     this.panelContainer3.FloatVertical = true;
     this.panelContainer3.ID = new System.Guid("32f22386-9be7-4e30-adad-02dbf53b351f");
     this.panelContainer3.Location = new System.Drawing.Point(0, 529);
     this.panelContainer3.Name = "panelContainer3";
     this.panelContainer3.OriginalSize = new System.Drawing.Size(198, 110);
     this.panelContainer3.Size = new System.Drawing.Size(984, 110);
     this.panelContainer3.Tabbed = true;
     this.panelContainer3.TabsScroll = true;
     this.panelContainer3.Text = "panelContainer3";
     //
     // DPSkins
     //
     this.DPSkins.Controls.Add(this.controlContainer6);
     this.DPSkins.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.DPSkins.FloatVertical = true;
     this.DPSkins.ID = new System.Guid("5d027091-716e-4480-919f-6381f5702c5a");
     this.DPSkins.Location = new System.Drawing.Point(4, 23);
     this.DPSkins.Name = "DPSkins";
     this.DPSkins.OriginalSize = new System.Drawing.Size(200, 200);
     this.DPSkins.Size = new System.Drawing.Size(976, 56);
     this.DPSkins.TabsScroll = true;
     this.DPSkins.Text = "الاشكال";
     //
     // controlContainer6
     //
     this.controlContainer6.Controls.Add(this.galleryControlSkins);
     this.controlContainer6.Location = new System.Drawing.Point(0, 0);
     this.controlContainer6.Name = "controlContainer6";
     this.controlContainer6.Size = new System.Drawing.Size(976, 56);
     this.controlContainer6.TabIndex = 0;
     //
     // galleryControlSkins
     //
     this.galleryControlSkins.Controls.Add(this.galleryControlClient1);
     this.galleryControlSkins.DesignGalleryGroupIndex = 0;
     this.galleryControlSkins.DesignGalleryItemIndex = 0;
     this.galleryControlSkins.Dock = System.Windows.Forms.DockStyle.Fill;
     this.galleryControlSkins.Location = new System.Drawing.Point(0, 0);
     this.galleryControlSkins.Name = "galleryControlSkins";
     this.galleryControlSkins.Size = new System.Drawing.Size(976, 56);
     this.galleryControlSkins.TabIndex = 0;
     this.galleryControlSkins.Text = "الاشكال";
     //
     // galleryControlClient1
     //
     this.galleryControlClient1.GalleryControl = this.galleryControlSkins;
     this.galleryControlClient1.Location = new System.Drawing.Point(2, 2);
     this.galleryControlClient1.Size = new System.Drawing.Size(955, 52);
     //
     // DPResult
     //
     this.DPResult.Controls.Add(this.controlContainer5);
     this.DPResult.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.DPResult.FloatVertical = true;
     this.DPResult.ID = new System.Guid("abdfe4d0-1d6a-4f6b-abc2-985fb9d484f3");
     this.DPResult.Location = new System.Drawing.Point(4, 23);
     this.DPResult.Name = "DPResult";
     this.DPResult.OriginalSize = new System.Drawing.Size(200, 200);
     this.DPResult.Size = new System.Drawing.Size(976, 56);
     this.DPResult.Text = "نتائج العمليات";
     //
     // controlContainer5
     //
     this.controlContainer5.Controls.Add(this.Logging);
     this.controlContainer5.Location = new System.Drawing.Point(0, 0);
     this.controlContainer5.Name = "controlContainer5";
     this.controlContainer5.Size = new System.Drawing.Size(976, 56);
     this.controlContainer5.TabIndex = 0;
     //
     // Logging
     //
     this.Logging.Dock = System.Windows.Forms.DockStyle.Fill;
     this.Logging.Location = new System.Drawing.Point(0, 0);
     this.Logging.Name = "Logging";
     this.Logging.ReadOnly = true;
     this.Logging.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.Logging.Size = new System.Drawing.Size(976, 56);
     this.Logging.TabIndex = 0;
     this.Logging.Text = "";
     this.Logging.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.Logging_MouseDoubleClick);
     //
     // panelContainer1
     //
     this.panelContainer1.ActiveChild = this.DPCode;
     this.panelContainer1.Appearance.Options.UseTextOptions = true;
     this.panelContainer1.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.NoWrap;
     this.panelContainer1.Controls.Add(this.DPCode);
     this.panelContainer1.Controls.Add(this.DPData);
     this.panelContainer1.Controls.Add(this.DPPriv);
     this.panelContainer1.Dock = DevExpress.XtraBars.Docking.DockingStyle.Left;
     this.panelContainer1.FloatVertical = true;
     this.panelContainer1.ID = new System.Guid("f4ff1062-9a77-404f-9187-cec889fb9ba4");
     this.panelContainer1.Location = new System.Drawing.Point(0, 24);
     this.panelContainer1.Name = "panelContainer1";
     this.panelContainer1.OriginalSize = new System.Drawing.Size(200, 200);
     this.panelContainer1.Size = new System.Drawing.Size(200, 505);
     this.panelContainer1.Tabbed = true;
     this.panelContainer1.TabsScroll = true;
     this.panelContainer1.Text = "panelContainer1";
     //
     // DPCode
     //
     this.DPCode.Controls.Add(this.dockPanel1_Container);
     this.DPCode.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.DPCode.ID = new System.Guid("1cfd6550-8070-4cff-ad59-cba8d2680fa9");
     this.DPCode.Location = new System.Drawing.Point(4, 23);
     this.DPCode.Name = "DPCode";
     this.DPCode.OriginalSize = new System.Drawing.Size(192, 453);
     this.DPCode.Size = new System.Drawing.Size(192, 451);
     this.DPCode.TabsScroll = true;
     this.DPCode.TabText = "الاكواد";
     this.DPCode.Text = "الاكواد";
     //
     // dockPanel1_Container
     //
     this.dockPanel1_Container.Controls.Add(this.navBarControlCode);
     this.dockPanel1_Container.Location = new System.Drawing.Point(0, 0);
     this.dockPanel1_Container.Name = "dockPanel1_Container";
     this.dockPanel1_Container.Size = new System.Drawing.Size(192, 451);
     this.dockPanel1_Container.TabIndex = 0;
     //
     // navBarControlCode
     //
     this.navBarControlCode.ActiveGroup = this.navBarGroup1;
     this.navBarControlCode.Dock = System.Windows.Forms.DockStyle.Fill;
     this.navBarControlCode.ExplorerBarShowGroupButtons = false;
     this.navBarControlCode.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
     this.navBarGroup1});
     this.navBarControlCode.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
     this.navBarItemEmpCD_AsaseEmp,
     this.navBarItemEmpCD_EmpState,
     this.navBarItemEmpCD_JobDescription,
     this.navBarItemEmpCD_EmpJob,
     this.navBarItemEmpCD_Department,
     this.navBarItemEmpCD_Subject,
     this.navBarItemEmpCDQualification,
     this.navBarItemEmpCD_QualifiedPlace,
     this.navBarItemEmpCD_Specialization,
     this.navBarItemEmpCD_MaritalStatus,
     this.navBarItemEmpCD_Courses,
     this.navBarItemEmpCDPlaceTraining,
     this.navBarItemEmpCD_AgazaType,
     this.navBarItemEmpCDTakdeer,
     this.navBarItemEmpCD_EznType,
     this.navBarItemEmpCD_GzaaType,
     this.navBarItemEmpCD_GehaGazaa,
     this.navBarItemEmpCD_EmpTIME});
     this.navBarControlCode.LargeImages = this.imageCollection32;
     this.navBarControlCode.Location = new System.Drawing.Point(0, 0);
     this.navBarControlCode.Name = "navBarControlCode";
     this.navBarControlCode.OptionsNavPane.ExpandedWidth = 192;
     this.navBarControlCode.Size = new System.Drawing.Size(192, 451);
     this.navBarControlCode.SmallImages = this.imageCollection32;
     this.navBarControlCode.StoreDefaultPaintStyleName = true;
     this.navBarControlCode.TabIndex = 8;
     //
     // navBarGroup1
     //
     this.navBarGroup1.Caption = "";
     this.navBarGroup1.Expanded = true;
     this.navBarGroup1.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_AsaseEmp),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_EmpState),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_JobDescription),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_EmpJob),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_Department),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_Subject),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_QualifiedPlace),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCDQualification),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_Specialization),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_MaritalStatus),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_Courses),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCDPlaceTraining),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_AgazaType),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCDTakdeer),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_EznType),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_GzaaType),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_GehaGazaa),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpCD_EmpTIME)});
     this.navBarGroup1.LargeImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup1.LargeImage")));
     this.navBarGroup1.Name = "navBarGroup1";
     this.navBarGroup1.NavigationPaneVisible = false;
     this.navBarGroup1.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup1.SmallImage")));
     //
     // navBarItemEmpCD_AsaseEmp
     //
     this.navBarItemEmpCD_AsaseEmp.Caption = "تحديد العام الدراسي";
     this.navBarItemEmpCD_AsaseEmp.LargeImageIndex = 7;
     this.navBarItemEmpCD_AsaseEmp.Name = "navBarItemEmpCD_AsaseEmp";
     this.navBarItemEmpCD_AsaseEmp.SmallImageIndex = 7;
     this.navBarItemEmpCD_AsaseEmp.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemCD_AsaseEmp_LinkClicked);
     //
     // navBarItemEmpCD_EmpState
     //
     this.navBarItemEmpCD_EmpState.Caption = "الحاله الوظيفيه";
     this.navBarItemEmpCD_EmpState.LargeImageIndex = 8;
     this.navBarItemEmpCD_EmpState.Name = "navBarItemEmpCD_EmpState";
     this.navBarItemEmpCD_EmpState.SmallImageIndex = 8;
     this.navBarItemEmpCD_EmpState.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemCD_EmpState_LinkClicked);
     //
     // navBarItemEmpCD_JobDescription
     //
     this.navBarItemEmpCD_JobDescription.Caption = "الوصف الوظيفي";
     this.navBarItemEmpCD_JobDescription.LargeImageIndex = 9;
     this.navBarItemEmpCD_JobDescription.Name = "navBarItemEmpCD_JobDescription";
     this.navBarItemEmpCD_JobDescription.SmallImageIndex = 9;
     this.navBarItemEmpCD_JobDescription.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemCD_JobDescription_LinkClicked);
     //
     // navBarItemEmpCD_EmpJob
     //
     this.navBarItemEmpCD_EmpJob.Caption = "وظائف العاملين";
     this.navBarItemEmpCD_EmpJob.LargeImageIndex = 10;
     this.navBarItemEmpCD_EmpJob.Name = "navBarItemEmpCD_EmpJob";
     this.navBarItemEmpCD_EmpJob.SmallImageIndex = 10;
     this.navBarItemEmpCD_EmpJob.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemCD_EmpJob_LinkClicked);
     //
     // navBarItemEmpCD_Department
     //
     this.navBarItemEmpCD_Department.Caption = "الاقسام";
     this.navBarItemEmpCD_Department.LargeImageIndex = 11;
     this.navBarItemEmpCD_Department.Name = "navBarItemEmpCD_Department";
     this.navBarItemEmpCD_Department.SmallImageIndex = 11;
     this.navBarItemEmpCD_Department.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemCD_Department_LinkClicked);
     //
     // navBarItemEmpCD_Subject
     //
     this.navBarItemEmpCD_Subject.Caption = "المواد";
     this.navBarItemEmpCD_Subject.LargeImageIndex = 12;
     this.navBarItemEmpCD_Subject.Name = "navBarItemEmpCD_Subject";
     this.navBarItemEmpCD_Subject.SmallImageIndex = 12;
     this.navBarItemEmpCD_Subject.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemCD_Subject_LinkClicked);
     //
     // navBarItemEmpCD_QualifiedPlace
     //
     this.navBarItemEmpCD_QualifiedPlace.Caption = "جهة المؤهل";
     this.navBarItemEmpCD_QualifiedPlace.LargeImageIndex = 13;
     this.navBarItemEmpCD_QualifiedPlace.Name = "navBarItemEmpCD_QualifiedPlace";
     this.navBarItemEmpCD_QualifiedPlace.SmallImageIndex = 13;
     this.navBarItemEmpCD_QualifiedPlace.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemCD_QualifiedPlace_LinkClicked);
     //
     // navBarItemEmpCDQualification
     //
     this.navBarItemEmpCDQualification.Caption = "المؤهلات";
     this.navBarItemEmpCDQualification.LargeImageIndex = 14;
     this.navBarItemEmpCDQualification.Name = "navBarItemEmpCDQualification";
     this.navBarItemEmpCDQualification.SmallImageIndex = 14;
     this.navBarItemEmpCDQualification.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemCDQualification_LinkClicked);
     //
     // navBarItemEmpCD_Specialization
     //
     this.navBarItemEmpCD_Specialization.Caption = "تخصص المؤهل";
     this.navBarItemEmpCD_Specialization.LargeImageIndex = 15;
     this.navBarItemEmpCD_Specialization.Name = "navBarItemEmpCD_Specialization";
     this.navBarItemEmpCD_Specialization.SmallImageIndex = 15;
     this.navBarItemEmpCD_Specialization.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemCD_Specialization_LinkClicked);
     //
     // navBarItemEmpCD_MaritalStatus
     //
     this.navBarItemEmpCD_MaritalStatus.Caption = "الحالة الاجتماعية";
     this.navBarItemEmpCD_MaritalStatus.LargeImageIndex = 16;
     this.navBarItemEmpCD_MaritalStatus.Name = "navBarItemEmpCD_MaritalStatus";
     this.navBarItemEmpCD_MaritalStatus.SmallImageIndex = 16;
     this.navBarItemEmpCD_MaritalStatus.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemCD_MaritalStatus_LinkClicked);
     //
     // navBarItemEmpCD_Courses
     //
     this.navBarItemEmpCD_Courses.Caption = "الدورات التدريبية";
     this.navBarItemEmpCD_Courses.LargeImageIndex = 17;
     this.navBarItemEmpCD_Courses.Name = "navBarItemEmpCD_Courses";
     this.navBarItemEmpCD_Courses.SmallImageIndex = 17;
     this.navBarItemEmpCD_Courses.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemCD_Courses_LinkClicked);
     //
     // navBarItemEmpCDPlaceTraining
     //
     this.navBarItemEmpCDPlaceTraining.Caption = "جهات التدريب";
     this.navBarItemEmpCDPlaceTraining.LargeImageIndex = 18;
     this.navBarItemEmpCDPlaceTraining.Name = "navBarItemEmpCDPlaceTraining";
     this.navBarItemEmpCDPlaceTraining.SmallImageIndex = 18;
     this.navBarItemEmpCDPlaceTraining.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemCDPlaceTraining_LinkClicked);
     //
     // navBarItemEmpCD_AgazaType
     //
     this.navBarItemEmpCD_AgazaType.Caption = "انواع الغياب";
     this.navBarItemEmpCD_AgazaType.LargeImageIndex = 19;
     this.navBarItemEmpCD_AgazaType.Name = "navBarItemEmpCD_AgazaType";
     this.navBarItemEmpCD_AgazaType.SmallImageIndex = 19;
     this.navBarItemEmpCD_AgazaType.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemCD_AgazaType_LinkClicked);
     //
     // navBarItemEmpCDTakdeer
     //
     this.navBarItemEmpCDTakdeer.Caption = "اكواد التقديرات";
     this.navBarItemEmpCDTakdeer.LargeImageIndex = 21;
     this.navBarItemEmpCDTakdeer.Name = "navBarItemEmpCDTakdeer";
     this.navBarItemEmpCDTakdeer.SmallImageIndex = 21;
     this.navBarItemEmpCDTakdeer.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemCDTakdeer_LinkClicked);
     //
     // navBarItemEmpCD_EznType
     //
     this.navBarItemEmpCD_EznType.Caption = "انواع الاذن";
     this.navBarItemEmpCD_EznType.LargeImageIndex = 22;
     this.navBarItemEmpCD_EznType.Name = "navBarItemEmpCD_EznType";
     this.navBarItemEmpCD_EznType.SmallImageIndex = 22;
     this.navBarItemEmpCD_EznType.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemCD_EznType_LinkClicked);
     //
     // navBarItemEmpCD_GzaaType
     //
     this.navBarItemEmpCD_GzaaType.Caption = "انواع الجزاءات";
     this.navBarItemEmpCD_GzaaType.LargeImageIndex = 23;
     this.navBarItemEmpCD_GzaaType.Name = "navBarItemEmpCD_GzaaType";
     this.navBarItemEmpCD_GzaaType.SmallImageIndex = 23;
     this.navBarItemEmpCD_GzaaType.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemCD_GzaaType_LinkClicked);
     //
     // navBarItemEmpCD_GehaGazaa
     //
     this.navBarItemEmpCD_GehaGazaa.Caption = "جهة الجزاء";
     this.navBarItemEmpCD_GehaGazaa.LargeImageIndex = 24;
     this.navBarItemEmpCD_GehaGazaa.Name = "navBarItemEmpCD_GehaGazaa";
     this.navBarItemEmpCD_GehaGazaa.SmallImageIndex = 24;
     this.navBarItemEmpCD_GehaGazaa.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemCD_GehaGazaa_LinkClicked);
     //
     // navBarItemEmpCD_EmpTIME
     //
     this.navBarItemEmpCD_EmpTIME.Caption = "اوقات العاملين";
     this.navBarItemEmpCD_EmpTIME.LargeImageIndex = 33;
     this.navBarItemEmpCD_EmpTIME.Name = "navBarItemEmpCD_EmpTIME";
     this.navBarItemEmpCD_EmpTIME.SmallImageIndex = 33;
     this.navBarItemEmpCD_EmpTIME.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemCD_EmpTIME_LinkClicked);
     //
     // imageCollection32
     //
     this.imageCollection32.ImageSize = new System.Drawing.Size(32, 32);
     this.imageCollection32.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imageCollection32.ImageStream")));
     this.imageCollection32.Images.SetKeyName(0, "Roles.png");
     this.imageCollection32.Images.SetKeyName(1, "Users.png");
     this.imageCollection32.Images.SetKeyName(2, "UserRoles.png");
     this.imageCollection32.Images.SetKeyName(3, "RoleDetial.png");
     this.imageCollection32.Images.SetKeyName(4, "Reports.png");
     this.imageCollection32.Images.SetKeyName(5, "DeployRpt.png");
     this.imageCollection32.Images.SetKeyName(6, "AppOptions.png");
     this.imageCollection32.Images.SetKeyName(7, "CD_AsaseEmp.png");
     this.imageCollection32.Images.SetKeyName(8, "CD_EmpState.png");
     this.imageCollection32.Images.SetKeyName(9, "CD_JobDescription.png");
     this.imageCollection32.Images.SetKeyName(10, "CD_EmpJob.png");
     this.imageCollection32.Images.SetKeyName(11, "CD_Department.png");
     this.imageCollection32.Images.SetKeyName(12, "CD_Subject.png");
     this.imageCollection32.Images.SetKeyName(13, "CD_QualifiedPlace.png");
     this.imageCollection32.Images.SetKeyName(14, "CDQualification.png");
     this.imageCollection32.Images.SetKeyName(15, "CD_Specialization.png");
     this.imageCollection32.Images.SetKeyName(16, "CD_MaritalStatus.png");
     this.imageCollection32.Images.SetKeyName(17, "CD_Courses.png");
     this.imageCollection32.Images.SetKeyName(18, "CDPlaceTraining.png");
     this.imageCollection32.Images.SetKeyName(19, "CD_AgazaType.png");
     this.imageCollection32.Images.SetKeyName(20, "TBL_Emp.png");
     this.imageCollection32.Images.SetKeyName(21, "CDTakdeer.png");
     this.imageCollection32.Images.SetKeyName(22, "CD_EznType.png");
     this.imageCollection32.Images.SetKeyName(23, "CD_GzaaType.png");
     this.imageCollection32.Images.SetKeyName(24, "CD_GehaGazaa.png");
     this.imageCollection32.Images.SetKeyName(25, "Emp_Moaahel.png");
     this.imageCollection32.Images.SetKeyName(26, "EMP_agazat.png");
     this.imageCollection32.Images.SetKeyName(27, "EMP_Later.png");
     this.imageCollection32.Images.SetKeyName(28, "EMP_ezn.png");
     this.imageCollection32.Images.SetKeyName(29, "EMP_gzaat.png");
     this.imageCollection32.Images.SetKeyName(30, "EMP_training.png");
     this.imageCollection32.Images.SetKeyName(31, "EMP_TAMEEN.png");
     this.imageCollection32.Images.SetKeyName(32, "EMP_report.png");
     this.imageCollection32.Images.SetKeyName(33, "CD_EmpTIME.png");
     //
     // DPData
     //
     this.DPData.Controls.Add(this.controlContainer1);
     this.DPData.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.DPData.ID = new System.Guid("5a92e67b-e3d2-4e9c-a354-47ff59337c78");
     this.DPData.Location = new System.Drawing.Point(4, 23);
     this.DPData.Name = "DPData";
     this.DPData.OriginalSize = new System.Drawing.Size(192, 453);
     this.DPData.Size = new System.Drawing.Size(192, 451);
     this.DPData.TabStop = false;
     this.DPData.TabText = "ادخال البيانات";
     this.DPData.Text = "ادخال البيانات";
     //
     // controlContainer1
     //
     this.controlContainer1.Controls.Add(this.navBarControlData);
     this.controlContainer1.Location = new System.Drawing.Point(0, 0);
     this.controlContainer1.Name = "controlContainer1";
     this.controlContainer1.Size = new System.Drawing.Size(192, 451);
     this.controlContainer1.TabIndex = 0;
     //
     // navBarControlData
     //
     this.navBarControlData.ActiveGroup = this.navBarGroup2;
     this.navBarControlData.Dock = System.Windows.Forms.DockStyle.Fill;
     this.navBarControlData.ExplorerBarShowGroupButtons = false;
     this.navBarControlData.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
     this.navBarGroup2});
     this.navBarControlData.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
     this.navBarItemEmpTBL_Emp,
     this.navBarItemEmpEmp_Moaahel,
     this.navBarItemEmpEMP_agazat,
     this.navBarItemEmpEMP_Later,
     this.navBarItemEmpEMP_ezn,
     this.navBarItemEmpEMP_gzaat,
     this.navBarItemEmpEMP_training,
     this.navBarItemEmpEMP_TAMEEN,
     this.navBarItemEmpEMP_report});
     this.navBarControlData.LargeImages = this.imageCollection32;
     this.navBarControlData.Location = new System.Drawing.Point(0, 0);
     this.navBarControlData.Name = "navBarControlData";
     this.navBarControlData.OptionsNavPane.ExpandedWidth = 192;
     this.navBarControlData.Size = new System.Drawing.Size(192, 451);
     this.navBarControlData.SmallImages = this.imageCollection32;
     this.navBarControlData.StoreDefaultPaintStyleName = true;
     this.navBarControlData.TabIndex = 9;
     this.navBarControlData.Text = "navBarControl1";
     //
     // navBarGroup2
     //
     this.navBarGroup2.Caption = "";
     this.navBarGroup2.Expanded = true;
     this.navBarGroup2.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpTBL_Emp),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpEmp_Moaahel),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpEMP_agazat),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpEMP_Later),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpEMP_ezn),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpEMP_gzaat),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpEMP_training),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpEMP_TAMEEN),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpEMP_report)});
     this.navBarGroup2.LargeImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup2.LargeImage")));
     this.navBarGroup2.Name = "navBarGroup2";
     this.navBarGroup2.NavigationPaneVisible = false;
     this.navBarGroup2.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup2.SmallImage")));
     //
     // navBarItemEmpTBL_Emp
     //
     this.navBarItemEmpTBL_Emp.Caption = "بيانات العاملين";
     this.navBarItemEmpTBL_Emp.LargeImageIndex = 20;
     this.navBarItemEmpTBL_Emp.Name = "navBarItemEmpTBL_Emp";
     this.navBarItemEmpTBL_Emp.SmallImageIndex = 20;
     this.navBarItemEmpTBL_Emp.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemTBL_Emp_LinkClicked);
     //
     // navBarItemEmpEmp_Moaahel
     //
     this.navBarItemEmpEmp_Moaahel.Caption = "مؤهلات اثناء الخدمة";
     this.navBarItemEmpEmp_Moaahel.LargeImageIndex = 25;
     this.navBarItemEmpEmp_Moaahel.Name = "navBarItemEmpEmp_Moaahel";
     this.navBarItemEmpEmp_Moaahel.SmallImageIndex = 25;
     this.navBarItemEmpEmp_Moaahel.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemEmp_Moaahel_LinkClicked);
     //
     // navBarItemEmpEMP_agazat
     //
     this.navBarItemEmpEMP_agazat.Caption = "الغياب والاجازات";
     this.navBarItemEmpEMP_agazat.LargeImageIndex = 26;
     this.navBarItemEmpEMP_agazat.Name = "navBarItemEmpEMP_agazat";
     this.navBarItemEmpEMP_agazat.SmallImageIndex = 26;
     this.navBarItemEmpEMP_agazat.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemEMP_agazat_LinkClicked);
     //
     // navBarItemEmpEMP_Later
     //
     this.navBarItemEmpEMP_Later.Caption = "التأخير";
     this.navBarItemEmpEMP_Later.LargeImageIndex = 27;
     this.navBarItemEmpEMP_Later.Name = "navBarItemEmpEMP_Later";
     this.navBarItemEmpEMP_Later.SmallImageIndex = 27;
     this.navBarItemEmpEMP_Later.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemEMP_Later_LinkClicked);
     //
     // navBarItemEmpEMP_ezn
     //
     this.navBarItemEmpEMP_ezn.Caption = "اذونات الموظفين";
     this.navBarItemEmpEMP_ezn.LargeImageIndex = 28;
     this.navBarItemEmpEMP_ezn.Name = "navBarItemEmpEMP_ezn";
     this.navBarItemEmpEMP_ezn.SmallImageIndex = 28;
     this.navBarItemEmpEMP_ezn.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemEMP_ezn_LinkClicked);
     //
     // navBarItemEmpEMP_gzaat
     //
     this.navBarItemEmpEMP_gzaat.Caption = "الجزاءات";
     this.navBarItemEmpEMP_gzaat.LargeImageIndex = 29;
     this.navBarItemEmpEMP_gzaat.Name = "navBarItemEmpEMP_gzaat";
     this.navBarItemEmpEMP_gzaat.SmallImageIndex = 29;
     this.navBarItemEmpEMP_gzaat.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemEMP_gzaat_LinkClicked);
     //
     // navBarItemEmpEMP_training
     //
     this.navBarItemEmpEMP_training.Caption = "البرامج التدريبية";
     this.navBarItemEmpEMP_training.LargeImageIndex = 30;
     this.navBarItemEmpEMP_training.Name = "navBarItemEmpEMP_training";
     this.navBarItemEmpEMP_training.SmallImageIndex = 30;
     this.navBarItemEmpEMP_training.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemEMP_training_LinkClicked);
     //
     // navBarItemEmpEMP_TAMEEN
     //
     this.navBarItemEmpEMP_TAMEEN.Caption = "التأمين الصحي";
     this.navBarItemEmpEMP_TAMEEN.LargeImageIndex = 31;
     this.navBarItemEmpEMP_TAMEEN.Name = "navBarItemEmpEMP_TAMEEN";
     this.navBarItemEmpEMP_TAMEEN.SmallImageIndex = 31;
     this.navBarItemEmpEMP_TAMEEN.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemEMP_TAMEEN_LinkClicked);
     //
     // navBarItemEmpEMP_report
     //
     this.navBarItemEmpEMP_report.Caption = "التقارير السنوية";
     this.navBarItemEmpEMP_report.LargeImageIndex = 32;
     this.navBarItemEmpEMP_report.Name = "navBarItemEmpEMP_report";
     this.navBarItemEmpEMP_report.SmallImageIndex = 32;
     this.navBarItemEmpEMP_report.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemEMP_report_LinkClicked);
     //
     // DPPriv
     //
     this.DPPriv.Controls.Add(this.controlContainer4);
     this.DPPriv.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.DPPriv.ID = new System.Guid("bb5d67bf-41ea-4082-a2e5-532afce242b2");
     this.DPPriv.Location = new System.Drawing.Point(4, 23);
     this.DPPriv.Name = "DPPriv";
     this.DPPriv.OriginalSize = new System.Drawing.Size(192, 453);
     this.DPPriv.Size = new System.Drawing.Size(192, 451);
     this.DPPriv.TabsScroll = true;
     this.DPPriv.TabText = "الصلاحيات";
     this.DPPriv.Text = "الصلاحيات";
     //
     // controlContainer4
     //
     this.controlContainer4.Controls.Add(this.navBarControlPriv);
     this.controlContainer4.Location = new System.Drawing.Point(0, 0);
     this.controlContainer4.Name = "controlContainer4";
     this.controlContainer4.Size = new System.Drawing.Size(192, 451);
     this.controlContainer4.TabIndex = 0;
     //
     // navBarControlPriv
     //
     this.navBarControlPriv.ActiveGroup = this.navBarGroup3;
     this.navBarControlPriv.Dock = System.Windows.Forms.DockStyle.Fill;
     this.navBarControlPriv.ExplorerBarShowGroupButtons = false;
     this.navBarControlPriv.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
     this.navBarGroup3});
     this.navBarControlPriv.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
     this.navBarItemEmpRoles,
     this.navBarItemEmpUsers,
     this.navBarItemEmpUserRoles,
     this.navBarItemEmpRoleDetial,
     this.navBarItemEmpAppOptions});
     this.navBarControlPriv.LargeImages = this.imageCollection32;
     this.navBarControlPriv.Location = new System.Drawing.Point(0, 0);
     this.navBarControlPriv.Name = "navBarControlPriv";
     this.navBarControlPriv.OptionsNavPane.ExpandedWidth = 192;
     this.navBarControlPriv.Size = new System.Drawing.Size(192, 451);
     this.navBarControlPriv.SmallImages = this.imageCollection32;
     this.navBarControlPriv.StoreDefaultPaintStyleName = true;
     this.navBarControlPriv.TabIndex = 9;
     this.navBarControlPriv.Text = "navBarControl1";
     //
     // navBarGroup3
     //
     this.navBarGroup3.Caption = "";
     this.navBarGroup3.Expanded = true;
     this.navBarGroup3.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpRoles),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpRoleDetial),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpUsers),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpUserRoles),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpAppOptions)});
     this.navBarGroup3.LargeImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup3.LargeImage")));
     this.navBarGroup3.Name = "navBarGroup3";
     this.navBarGroup3.NavigationPaneVisible = false;
     this.navBarGroup3.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup3.SmallImage")));
     //
     // navBarItemEmpRoles
     //
     this.navBarItemEmpRoles.Caption = "الصلاحيات";
     this.navBarItemEmpRoles.LargeImageIndex = 0;
     this.navBarItemEmpRoles.Name = "navBarItemEmpRoles";
     this.navBarItemEmpRoles.SmallImageIndex = 0;
     this.navBarItemEmpRoles.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemEditorRoleFrm_LinkClicked);
     //
     // navBarItemEmpRoleDetial
     //
     this.navBarItemEmpRoleDetial.Caption = "تفاصيل الصلاحيات";
     this.navBarItemEmpRoleDetial.LargeImageIndex = 3;
     this.navBarItemEmpRoleDetial.Name = "navBarItemEmpRoleDetial";
     this.navBarItemEmpRoleDetial.SmallImageIndex = 3;
     this.navBarItemEmpRoleDetial.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemRoleDetial_LinkClicked);
     //
     // navBarItemEmpUsers
     //
     this.navBarItemEmpUsers.Caption = "المستخدمين";
     this.navBarItemEmpUsers.LargeImageIndex = 1;
     this.navBarItemEmpUsers.Name = "navBarItemEmpUsers";
     this.navBarItemEmpUsers.SmallImageIndex = 1;
     this.navBarItemEmpUsers.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemUsers_LinkClicked);
     //
     // navBarItemEmpUserRoles
     //
     this.navBarItemEmpUserRoles.Caption = "صلاحيات المستخدمين";
     this.navBarItemEmpUserRoles.LargeImageIndex = 2;
     this.navBarItemEmpUserRoles.Name = "navBarItemEmpUserRoles";
     this.navBarItemEmpUserRoles.SmallImageIndex = 2;
     this.navBarItemEmpUserRoles.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemUserRoles_LinkClicked);
     //
     // navBarItemEmpAppOptions
     //
     this.navBarItemEmpAppOptions.Caption = "خيارات البرنامج";
     this.navBarItemEmpAppOptions.LargeImageIndex = 6;
     this.navBarItemEmpAppOptions.Name = "navBarItemEmpAppOptions";
     this.navBarItemEmpAppOptions.SmallImageIndex = 6;
     this.navBarItemEmpAppOptions.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemAppOptions_LinkClicked);
     //
     // panelContainer2
     //
     this.panelContainer2.ActiveChild = this.DPReport;
     this.panelContainer2.Appearance.Options.UseTextOptions = true;
     this.panelContainer2.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.NoWrap;
     this.panelContainer2.Controls.Add(this.DPQuery);
     this.panelContainer2.Controls.Add(this.DPReport);
     this.panelContainer2.Dock = DevExpress.XtraBars.Docking.DockingStyle.Right;
     this.panelContainer2.FloatVertical = true;
     this.panelContainer2.ID = new System.Guid("80c30b21-965f-4a80-99d9-68f5819e7c1a");
     this.panelContainer2.Location = new System.Drawing.Point(784, 24);
     this.panelContainer2.Name = "panelContainer2";
     this.panelContainer2.OriginalSize = new System.Drawing.Size(200, 200);
     this.panelContainer2.Size = new System.Drawing.Size(200, 505);
     this.panelContainer2.Tabbed = true;
     this.panelContainer2.TabsScroll = true;
     this.panelContainer2.Text = "panelContainer2";
     //
     // DPReport
     //
     this.DPReport.Controls.Add(this.controlContainer3);
     this.DPReport.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.DPReport.ID = new System.Guid("f2617492-8043-4778-ba8c-8e62a8a6d465");
     this.DPReport.Location = new System.Drawing.Point(4, 23);
     this.DPReport.Name = "DPReport";
     this.DPReport.OriginalSize = new System.Drawing.Size(192, 453);
     this.DPReport.Size = new System.Drawing.Size(192, 451);
     this.DPReport.TabsScroll = true;
     this.DPReport.TabText = "تقارير";
     this.DPReport.Text = "تقارير";
     //
     // controlContainer3
     //
     this.controlContainer3.Controls.Add(this.navBarControlReport);
     this.controlContainer3.Location = new System.Drawing.Point(0, 0);
     this.controlContainer3.Name = "controlContainer3";
     this.controlContainer3.Size = new System.Drawing.Size(192, 451);
     this.controlContainer3.TabIndex = 0;
     //
     // navBarControlReport
     //
     this.navBarControlReport.ActiveGroup = this.navBarGroup4;
     this.navBarControlReport.Dock = System.Windows.Forms.DockStyle.Fill;
     this.navBarControlReport.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
     this.navBarGroup4,
     this.navBarGroup7,
     this.navBarGroup8,
     this.navBarGroup9});
     this.navBarControlReport.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
     this.navBarItemEmpDeployRpt,
     this.navBarItemEmpXRepEmpAddress,
     this.navBarItemEmpXRepEmpagazat,
     this.navBarItemEmpXRepEmpAll,
     this.navBarItemEmpXRepEmpDetail});
     this.navBarControlReport.LargeImages = this.imageCollection32;
     this.navBarControlReport.Location = new System.Drawing.Point(0, 0);
     this.navBarControlReport.Name = "navBarControlReport";
     this.navBarControlReport.OptionsNavPane.ExpandedWidth = 192;
     this.navBarControlReport.Size = new System.Drawing.Size(192, 451);
     this.navBarControlReport.SmallImages = this.imageCollection32;
     this.navBarControlReport.TabIndex = 9;
     this.navBarControlReport.Text = "navBarControl1";
     this.navBarControlReport.View = new DevExpress.XtraNavBar.ViewInfo.StandardSkinExplorerBarViewInfoRegistrator("DevExpress Style");
     //
     // navBarGroup4
     //
     this.navBarGroup4.Caption = "تقارير 1";
     this.navBarGroup4.Expanded = true;
     this.navBarGroup4.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpXRepEmpAddress),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpXRepEmpagazat),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpXRepEmpAll),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemEmpXRepEmpDetail)});
     this.navBarGroup4.LargeImage = global::Employee.Properties.Resources.Print;
     this.navBarGroup4.Name = "navBarGroup4";
     this.navBarGroup4.NavigationPaneVisible = false;
     this.navBarGroup4.SmallImage = global::Employee.Properties.Resources.Print;
     //
     // navBarItemEmpXRepEmpAddress
     //
     this.navBarItemEmpXRepEmpAddress.Caption = "سجل العناوين";
     this.navBarItemEmpXRepEmpAddress.LargeImageIndex = 4;
     this.navBarItemEmpXRepEmpAddress.Name = "navBarItemEmpXRepEmpAddress";
     this.navBarItemEmpXRepEmpAddress.SmallImageIndex = 4;
     this.navBarItemEmpXRepEmpAddress.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemEmpXRepEmpAddress_LinkClicked);
     //
     // navBarItemEmpXRepEmpagazat
     //
     this.navBarItemEmpXRepEmpagazat.Caption = "غياب العاملين";
     this.navBarItemEmpXRepEmpagazat.LargeImageIndex = 4;
     this.navBarItemEmpXRepEmpagazat.Name = "navBarItemEmpXRepEmpagazat";
     this.navBarItemEmpXRepEmpagazat.SmallImageIndex = 4;
     this.navBarItemEmpXRepEmpagazat.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemEmpXRepEmpagazat_LinkClicked);
     //
     // navBarItemEmpXRepEmpAll
     //
     this.navBarItemEmpXRepEmpAll.Caption = "سجل شئون العاملين";
     this.navBarItemEmpXRepEmpAll.LargeImageIndex = 4;
     this.navBarItemEmpXRepEmpAll.Name = "navBarItemEmpXRepEmpAll";
     this.navBarItemEmpXRepEmpAll.SmallImageIndex = 4;
     this.navBarItemEmpXRepEmpAll.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemEmpXRepEmpAll_LinkClicked);
     //
     // navBarGroup7
     //
     this.navBarGroup7.Caption = "تقارير 2";
     this.navBarGroup7.LargeImage = global::Employee.Properties.Resources.Print;
     this.navBarGroup7.Name = "navBarGroup7";
     this.navBarGroup7.SmallImage = global::Employee.Properties.Resources.Print;
     //
     // navBarGroup8
     //
     this.navBarGroup8.Caption = "تقارير 3";
     this.navBarGroup8.LargeImage = global::Employee.Properties.Resources.Print;
     this.navBarGroup8.Name = "navBarGroup8";
     this.navBarGroup8.SmallImage = global::Employee.Properties.Resources.Print;
     //
     // navBarGroup9
     //
     this.navBarGroup9.Caption = "تقارير 4";
     this.navBarGroup9.LargeImage = global::Employee.Properties.Resources.Print;
     this.navBarGroup9.Name = "navBarGroup9";
     this.navBarGroup9.SmallImage = global::Employee.Properties.Resources.Print;
     //
     // navBarItemEmpDeployRpt
     //
     this.navBarItemEmpDeployRpt.Caption = "تنصيب التقارير";
     this.navBarItemEmpDeployRpt.LargeImageIndex = 5;
     this.navBarItemEmpDeployRpt.Name = "navBarItemEmpDeployRpt";
     this.navBarItemEmpDeployRpt.SmallImageIndex = 5;
     this.navBarItemEmpDeployRpt.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemDeployRpt_LinkClicked);
     //
     // DPQuery
     //
     this.DPQuery.Controls.Add(this.controlContainer2);
     this.DPQuery.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
     this.DPQuery.ID = new System.Guid("d8711011-1b74-442f-bb9b-8102c8bf9f50");
     this.DPQuery.Location = new System.Drawing.Point(4, 23);
     this.DPQuery.Name = "DPQuery";
     this.DPQuery.OriginalSize = new System.Drawing.Size(192, 453);
     this.DPQuery.Size = new System.Drawing.Size(192, 451);
     this.DPQuery.TabsScroll = true;
     this.DPQuery.Text = "استعلامات";
     //
     // controlContainer2
     //
     this.controlContainer2.Controls.Add(this.navBarControlQry);
     this.controlContainer2.Location = new System.Drawing.Point(0, 0);
     this.controlContainer2.Name = "controlContainer2";
     this.controlContainer2.Size = new System.Drawing.Size(192, 451);
     this.controlContainer2.TabIndex = 0;
     //
     // navBarControlQry
     //
     this.navBarControlQry.ActiveGroup = this.navBarGroup5;
     this.navBarControlQry.Dock = System.Windows.Forms.DockStyle.Fill;
     this.navBarControlQry.ExplorerBarShowGroupButtons = false;
     this.navBarControlQry.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
     this.navBarGroup5});
     this.navBarControlQry.LargeImages = this.imageCollection32;
     this.navBarControlQry.Location = new System.Drawing.Point(0, 0);
     this.navBarControlQry.Name = "navBarControlQry";
     this.navBarControlQry.OptionsNavPane.ExpandedWidth = 192;
     this.navBarControlQry.Size = new System.Drawing.Size(192, 451);
     this.navBarControlQry.SmallImages = this.imageCollection32;
     this.navBarControlQry.StoreDefaultPaintStyleName = true;
     this.navBarControlQry.TabIndex = 9;
     this.navBarControlQry.Text = "navBarControl1";
     //
     // navBarGroup5
     //
     this.navBarGroup5.Caption = "";
     this.navBarGroup5.Expanded = true;
     this.navBarGroup5.LargeImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup5.LargeImage")));
     this.navBarGroup5.Name = "navBarGroup5";
     this.navBarGroup5.NavigationPaneVisible = false;
     this.navBarGroup5.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup5.SmallImage")));
     //
     // barEditItem1
     //
     this.barEditItem1.Edit = null;
     this.barEditItem1.Id = 17;
     this.barEditItem1.Name = "barEditItem1";
     //
     // repositoryItemComboBoxSkins
     //
     this.repositoryItemComboBoxSkins.AutoHeight = false;
     this.repositoryItemComboBoxSkins.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemComboBoxSkins.Name = "repositoryItemComboBoxSkins";
     //
     // navBarItemEmpXRepEmpDetail
     //
     this.navBarItemEmpXRepEmpDetail.Caption = "بيان حاله";
     this.navBarItemEmpXRepEmpDetail.LargeImageIndex = 4;
     this.navBarItemEmpXRepEmpDetail.Name = "navBarItemEmpXRepEmpDetail";
     this.navBarItemEmpXRepEmpDetail.SmallImageIndex = 4;
     this.navBarItemEmpXRepEmpDetail.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItemEmpXRepEmpDetail_LinkClicked);
     //
     // MainFrm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(984, 662);
     this.Controls.Add(this.panelContainer2);
     this.Controls.Add(this.panelContainer1);
     this.Controls.Add(this.panelContainer3);
     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.IsMdiContainer = true;
     this.Name = "MainFrm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Employee";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainFrm_FormClosing);
     this.Load += new System.EventHandler(this.MainFrm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.barManagerMain)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditasase_code)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManagerMain)).EndInit();
     this.panelContainer3.ResumeLayout(false);
     this.DPSkins.ResumeLayout(false);
     this.controlContainer6.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.galleryControlSkins)).EndInit();
     this.galleryControlSkins.ResumeLayout(false);
     this.DPResult.ResumeLayout(false);
     this.controlContainer5.ResumeLayout(false);
     this.panelContainer1.ResumeLayout(false);
     this.DPCode.ResumeLayout(false);
     this.dockPanel1_Container.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlCode)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection32)).EndInit();
     this.DPData.ResumeLayout(false);
     this.controlContainer1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlData)).EndInit();
     this.DPPriv.ResumeLayout(false);
     this.controlContainer4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlPriv)).EndInit();
     this.panelContainer2.ResumeLayout(false);
     this.DPReport.ResumeLayout(false);
     this.controlContainer3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlReport)).EndInit();
     this.DPQuery.ResumeLayout(false);
     this.controlContainer2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.navBarControlQry)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBoxSkins)).EndInit();
     this.ResumeLayout(false);
 }
Example #33
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.XtraNavBar.NavBarGroup navBarGroup4;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form_MatHang));
            this.navBarGroupControlContainer4 = new DevExpress.XtraNavBar.NavBarGroupControlContainer();
            this.panel4 = new System.Windows.Forms.Panel();
            this.label4 = new System.Windows.Forms.Label();
            this.searchControl_MaMH = new DevExpress.XtraEditors.SearchControl();
            this.barManager1 = 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.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
            this.splitContainer1 = new System.Windows.Forms.SplitContainer();
            this.navBarControl1 = new DevExpress.XtraNavBar.NavBarControl();
            this.navBarGroup1 = new DevExpress.XtraNavBar.NavBarGroup();
            this.navBarGroupControlContainer1 = new DevExpress.XtraNavBar.NavBarGroupControlContainer();
            this.panel1 = new System.Windows.Forms.Panel();
            this.dataGridView_LMH = new System.Windows.Forms.DataGridView();
            this.button_CapNhatLoaiMH = new System.Windows.Forms.Button();
            this.button_XoaLMH = new System.Windows.Forms.Button();
            this.button_ThemLMH = new System.Windows.Forms.Button();
            this.comboBox_TenMH = new System.Windows.Forms.ComboBox();
            this.label1 = new System.Windows.Forms.Label();
            this.navBarGroupControlContainer2 = new DevExpress.XtraNavBar.NavBarGroupControlContainer();
            this.panel3 = new System.Windows.Forms.Panel();
            this.dataGridView_NSX = new System.Windows.Forms.DataGridView();
            this.button_CapNhatNSX = new System.Windows.Forms.Button();
            this.button_XoaNSX = new System.Windows.Forms.Button();
            this.button_ThemNSX = new System.Windows.Forms.Button();
            this.comboBox_NSX = new System.Windows.Forms.ComboBox();
            this.label3 = new System.Windows.Forms.Label();
            this.navBarGroup3 = new DevExpress.XtraNavBar.NavBarGroup();
            this.dataGridView4 = new System.Windows.Forms.DataGridView();
            this.button_CapNhatMH = new System.Windows.Forms.Button();
            this.button_XoaMH = new System.Windows.Forms.Button();
            this.button_ThemMH = new System.Windows.Forms.Button();
            this.splitter1 = new System.Windows.Forms.Splitter();
            this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
            this.dateEdit_NSX = new DevExpress.XtraEditors.DateEdit();
            this.comboBoxEdit_MaMH = new DevExpress.XtraEditors.ComboBoxEdit();
            this.textEdit_Gia = new DevExpress.XtraEditors.TextEdit();
            this.textEdit_NSX = new DevExpress.XtraEditors.TextEdit();
            this.textEdit_LoaiMH = new DevExpress.XtraEditors.TextEdit();
            this.textEdit_TenMH = new DevExpress.XtraEditors.TextEdit();
            this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
            this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
            this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
            this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
            this.layoutControlItem6 = new DevExpress.XtraLayout.LayoutControlItem();
            this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
            this.layoutControlItem7 = new DevExpress.XtraLayout.LayoutControlItem();
            this.navBarGroupControlContainer3 = new DevExpress.XtraNavBar.NavBarGroupControlContainer();
            this.panel2 = new System.Windows.Forms.Panel();
            this.button3 = new System.Windows.Forms.Button();
            this.label2 = new System.Windows.Forms.Label();
            this.button2 = new System.Windows.Forms.Button();
            this.comboBox2 = new System.Windows.Forms.ComboBox();
            this.button1 = new System.Windows.Forms.Button();
            this.dataGridView2 = new System.Windows.Forms.DataGridView();
            this.navBarGroup2 = new DevExpress.XtraNavBar.NavBarGroup();
            navBarGroup4 = new DevExpress.XtraNavBar.NavBarGroup();
            this.navBarGroupControlContainer4.SuspendLayout();
            this.panel4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.searchControl_MaMH.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
            this.splitContainer1.Panel1.SuspendLayout();
            this.splitContainer1.Panel2.SuspendLayout();
            this.splitContainer1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.navBarControl1)).BeginInit();
            this.navBarControl1.SuspendLayout();
            this.navBarGroupControlContainer1.SuspendLayout();
            this.panel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dataGridView_LMH)).BeginInit();
            this.navBarGroupControlContainer2.SuspendLayout();
            this.panel3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dataGridView_NSX)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dataGridView4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
            this.layoutControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dateEdit_NSX.Properties.CalendarTimeProperties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dateEdit_NSX.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_MaMH.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_Gia.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_NSX.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_LoaiMH.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_TenMH.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dataGridView2)).BeginInit();
            this.SuspendLayout();
            // 
            // navBarGroup4
            // 
            navBarGroup4.Caption = "Tìm kiếm";
            navBarGroup4.ControlContainer = this.navBarGroupControlContainer4;
            navBarGroup4.GroupClientHeight = 81;
            navBarGroup4.GroupStyle = DevExpress.XtraNavBar.NavBarGroupStyle.ControlContainer;
            navBarGroup4.Name = "navBarGroup4";
            navBarGroup4.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup4.SmallImage")));
            // 
            // navBarGroupControlContainer4
            // 
            this.navBarGroupControlContainer4.Appearance.BackColor = System.Drawing.SystemColors.Control;
            this.navBarGroupControlContainer4.Appearance.Options.UseBackColor = true;
            this.navBarGroupControlContainer4.Controls.Add(this.panel4);
            this.navBarGroupControlContainer4.Name = "navBarGroupControlContainer4";
            this.navBarGroupControlContainer4.Size = new System.Drawing.Size(295, 77);
            this.navBarGroupControlContainer4.TabIndex = 2;
            // 
            // panel4
            // 
            this.panel4.Controls.Add(this.label4);
            this.panel4.Controls.Add(this.searchControl_MaMH);
            this.panel4.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel4.Location = new System.Drawing.Point(0, 0);
            this.panel4.Name = "panel4";
            this.panel4.Size = new System.Drawing.Size(295, 77);
            this.panel4.TabIndex = 0;
            // 
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.Location = new System.Drawing.Point(12, 18);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(69, 13);
            this.label4.TabIndex = 1;
            this.label4.Text = "Mã mặt hàng";
            // 
            // searchControl_MaMH
            // 
            this.searchControl_MaMH.Location = new System.Drawing.Point(87, 15);
            this.searchControl_MaMH.MenuManager = this.barManager1;
            this.searchControl_MaMH.Name = "searchControl_MaMH";
            this.searchControl_MaMH.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Repository.ClearButton(),
            new DevExpress.XtraEditors.Repository.SearchButton()});
            this.searchControl_MaMH.Size = new System.Drawing.Size(176, 20);
            this.searchControl_MaMH.TabIndex = 0;
            // 
            // 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.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(893, 0);
            // 
            // barDockControlBottom
            // 
            this.barDockControlBottom.CausesValidation = false;
            this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.barDockControlBottom.Location = new System.Drawing.Point(0, 499);
            this.barDockControlBottom.Size = new System.Drawing.Size(893, 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, 499);
            // 
            // barDockControlRight
            // 
            this.barDockControlRight.CausesValidation = false;
            this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
            this.barDockControlRight.Location = new System.Drawing.Point(893, 0);
            this.barDockControlRight.Size = new System.Drawing.Size(0, 499);
            // 
            // layoutControlItem1
            // 
            this.layoutControlItem1.Location = new System.Drawing.Point(0, 0);
            this.layoutControlItem1.Name = "layoutControlItem1";
            this.layoutControlItem1.Size = new System.Drawing.Size(0, 0);
            this.layoutControlItem1.TextSize = new System.Drawing.Size(50, 20);
            // 
            // splitContainer1
            // 
            this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainer1.Location = new System.Drawing.Point(0, 0);
            this.splitContainer1.Name = "splitContainer1";
            // 
            // splitContainer1.Panel1
            // 
            this.splitContainer1.Panel1.Controls.Add(this.navBarControl1);
            // 
            // splitContainer1.Panel2
            // 
            this.splitContainer1.Panel2.Controls.Add(this.dataGridView4);
            this.splitContainer1.Panel2.Controls.Add(this.button_CapNhatMH);
            this.splitContainer1.Panel2.Controls.Add(this.button_XoaMH);
            this.splitContainer1.Panel2.Controls.Add(this.button_ThemMH);
            this.splitContainer1.Panel2.Controls.Add(this.splitter1);
            this.splitContainer1.Panel2.Controls.Add(this.layoutControl1);
            this.splitContainer1.Size = new System.Drawing.Size(893, 499);
            this.splitContainer1.SplitterDistance = 303;
            this.splitContainer1.TabIndex = 0;
            // 
            // navBarControl1
            // 
            this.navBarControl1.ActiveGroup = this.navBarGroup1;
            this.navBarControl1.Controls.Add(this.navBarGroupControlContainer1);
            this.navBarControl1.Controls.Add(this.navBarGroupControlContainer2);
            this.navBarControl1.Controls.Add(this.navBarGroupControlContainer4);
            this.navBarControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.navBarControl1.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
            this.navBarGroup1,
            this.navBarGroup3,
            navBarGroup4});
            this.navBarControl1.Location = new System.Drawing.Point(0, 0);
            this.navBarControl1.Name = "navBarControl1";
            this.navBarControl1.OptionsNavPane.ExpandedWidth = 303;
            this.navBarControl1.Size = new System.Drawing.Size(303, 499);
            this.navBarControl1.TabIndex = 0;
            this.navBarControl1.Text = "navBarControl1";
            // 
            // navBarGroup1
            // 
            this.navBarGroup1.Caption = "Loại mặt hàng";
            this.navBarGroup1.ControlContainer = this.navBarGroupControlContainer1;
            this.navBarGroup1.GroupClientHeight = 316;
            this.navBarGroup1.GroupStyle = DevExpress.XtraNavBar.NavBarGroupStyle.ControlContainer;
            this.navBarGroup1.Name = "navBarGroup1";
            this.navBarGroup1.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup1.SmallImage")));
            // 
            // navBarGroupControlContainer1
            // 
            this.navBarGroupControlContainer1.Appearance.BackColor = System.Drawing.SystemColors.Control;
            this.navBarGroupControlContainer1.Appearance.Options.UseBackColor = true;
            this.navBarGroupControlContainer1.Controls.Add(this.panel1);
            this.navBarGroupControlContainer1.Name = "navBarGroupControlContainer1";
            this.navBarGroupControlContainer1.Size = new System.Drawing.Size(295, 312);
            this.navBarGroupControlContainer1.TabIndex = 0;
            // 
            // panel1
            // 
            this.panel1.Controls.Add(this.dataGridView_LMH);
            this.panel1.Controls.Add(this.button_CapNhatLoaiMH);
            this.panel1.Controls.Add(this.button_XoaLMH);
            this.panel1.Controls.Add(this.button_ThemLMH);
            this.panel1.Controls.Add(this.comboBox_TenMH);
            this.panel1.Controls.Add(this.label1);
            this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel1.Location = new System.Drawing.Point(0, 0);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(295, 312);
            this.panel1.TabIndex = 0;
            // 
            // dataGridView_LMH
            // 
            this.dataGridView_LMH.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dataGridView_LMH.Location = new System.Drawing.Point(13, 95);
            this.dataGridView_LMH.Name = "dataGridView_LMH";
            this.dataGridView_LMH.Size = new System.Drawing.Size(264, 206);
            this.dataGridView_LMH.TabIndex = 19;
            // 
            // button_CapNhatLoaiMH
            // 
            this.button_CapNhatLoaiMH.Image = global::_1312241_1312265.Properties.Resources.update;
            this.button_CapNhatLoaiMH.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.button_CapNhatLoaiMH.Location = new System.Drawing.Point(198, 52);
            this.button_CapNhatLoaiMH.Name = "button_CapNhatLoaiMH";
            this.button_CapNhatLoaiMH.Size = new System.Drawing.Size(80, 27);
            this.button_CapNhatLoaiMH.TabIndex = 18;
            this.button_CapNhatLoaiMH.Text = "Cập nhật";
            this.button_CapNhatLoaiMH.UseVisualStyleBackColor = true;
            // 
            // button_XoaLMH
            // 
            this.button_XoaLMH.Image = global::_1312241_1312265.Properties.Resources.delete;
            this.button_XoaLMH.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.button_XoaLMH.Location = new System.Drawing.Point(106, 52);
            this.button_XoaLMH.Name = "button_XoaLMH";
            this.button_XoaLMH.Size = new System.Drawing.Size(80, 27);
            this.button_XoaLMH.TabIndex = 16;
            this.button_XoaLMH.Text = "Xóa";
            this.button_XoaLMH.UseVisualStyleBackColor = true;
            // 
            // button_ThemLMH
            // 
            this.button_ThemLMH.Image = global::_1312241_1312265.Properties.Resources.add_icon;
            this.button_ThemLMH.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.button_ThemLMH.Location = new System.Drawing.Point(11, 52);
            this.button_ThemLMH.Name = "button_ThemLMH";
            this.button_ThemLMH.Size = new System.Drawing.Size(80, 27);
            this.button_ThemLMH.TabIndex = 17;
            this.button_ThemLMH.Text = "Thêm";
            this.button_ThemLMH.UseVisualStyleBackColor = true;
            // 
            // comboBox_TenMH
            // 
            this.comboBox_TenMH.FormattingEnabled = true;
            this.comboBox_TenMH.Location = new System.Drawing.Point(106, 17);
            this.comboBox_TenMH.Name = "comboBox_TenMH";
            this.comboBox_TenMH.Size = new System.Drawing.Size(172, 21);
            this.comboBox_TenMH.TabIndex = 1;
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(8, 20);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(92, 13);
            this.label1.TabIndex = 0;
            this.label1.Text = "Tên loại mặt hàng";
            // 
            // navBarGroupControlContainer2
            // 
            this.navBarGroupControlContainer2.Appearance.BackColor = System.Drawing.SystemColors.Control;
            this.navBarGroupControlContainer2.Appearance.Options.UseBackColor = true;
            this.navBarGroupControlContainer2.Controls.Add(this.panel3);
            this.navBarGroupControlContainer2.Name = "navBarGroupControlContainer2";
            this.navBarGroupControlContainer2.Size = new System.Drawing.Size(295, 223);
            this.navBarGroupControlContainer2.TabIndex = 1;
            // 
            // panel3
            // 
            this.panel3.Controls.Add(this.dataGridView_NSX);
            this.panel3.Controls.Add(this.button_CapNhatNSX);
            this.panel3.Controls.Add(this.button_XoaNSX);
            this.panel3.Controls.Add(this.button_ThemNSX);
            this.panel3.Controls.Add(this.comboBox_NSX);
            this.panel3.Controls.Add(this.label3);
            this.panel3.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel3.Location = new System.Drawing.Point(0, 0);
            this.panel3.Name = "panel3";
            this.panel3.Size = new System.Drawing.Size(295, 223);
            this.panel3.TabIndex = 0;
            // 
            // dataGridView_NSX
            // 
            this.dataGridView_NSX.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dataGridView_NSX.Location = new System.Drawing.Point(11, 90);
            this.dataGridView_NSX.Name = "dataGridView_NSX";
            this.dataGridView_NSX.Size = new System.Drawing.Size(266, 122);
            this.dataGridView_NSX.TabIndex = 22;
            // 
            // button_CapNhatNSX
            // 
            this.button_CapNhatNSX.Image = global::_1312241_1312265.Properties.Resources.update;
            this.button_CapNhatNSX.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.button_CapNhatNSX.Location = new System.Drawing.Point(198, 52);
            this.button_CapNhatNSX.Name = "button_CapNhatNSX";
            this.button_CapNhatNSX.Size = new System.Drawing.Size(80, 27);
            this.button_CapNhatNSX.TabIndex = 21;
            this.button_CapNhatNSX.Text = "Cập nhật";
            this.button_CapNhatNSX.UseVisualStyleBackColor = true;
            // 
            // button_XoaNSX
            // 
            this.button_XoaNSX.Image = global::_1312241_1312265.Properties.Resources.delete;
            this.button_XoaNSX.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.button_XoaNSX.Location = new System.Drawing.Point(106, 52);
            this.button_XoaNSX.Name = "button_XoaNSX";
            this.button_XoaNSX.Size = new System.Drawing.Size(80, 27);
            this.button_XoaNSX.TabIndex = 19;
            this.button_XoaNSX.Text = "Xóa";
            this.button_XoaNSX.UseVisualStyleBackColor = true;
            // 
            // button_ThemNSX
            // 
            this.button_ThemNSX.Image = global::_1312241_1312265.Properties.Resources.add_icon;
            this.button_ThemNSX.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.button_ThemNSX.Location = new System.Drawing.Point(11, 52);
            this.button_ThemNSX.Name = "button_ThemNSX";
            this.button_ThemNSX.Size = new System.Drawing.Size(80, 27);
            this.button_ThemNSX.TabIndex = 20;
            this.button_ThemNSX.Text = "Thêm";
            this.button_ThemNSX.UseVisualStyleBackColor = true;
            // 
            // comboBox_NSX
            // 
            this.comboBox_NSX.FormattingEnabled = true;
            this.comboBox_NSX.Location = new System.Drawing.Point(99, 16);
            this.comboBox_NSX.Name = "comboBox_NSX";
            this.comboBox_NSX.Size = new System.Drawing.Size(165, 21);
            this.comboBox_NSX.TabIndex = 1;
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(8, 19);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(70, 13);
            this.label3.TabIndex = 0;
            this.label3.Text = "Nhà sản xuất";
            // 
            // navBarGroup3
            // 
            this.navBarGroup3.Caption = "Nhà sản xuất";
            this.navBarGroup3.ControlContainer = this.navBarGroupControlContainer2;
            this.navBarGroup3.GroupClientHeight = 227;
            this.navBarGroup3.GroupStyle = DevExpress.XtraNavBar.NavBarGroupStyle.ControlContainer;
            this.navBarGroup3.Name = "navBarGroup3";
            this.navBarGroup3.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup3.SmallImage")));
            // 
            // dataGridView4
            // 
            this.dataGridView4.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dataGridView4.Dock = System.Windows.Forms.DockStyle.Fill;
            this.dataGridView4.Location = new System.Drawing.Point(86, 124);
            this.dataGridView4.Name = "dataGridView4";
            this.dataGridView4.Size = new System.Drawing.Size(500, 375);
            this.dataGridView4.TabIndex = 22;
            // 
            // button_CapNhatMH
            // 
            this.button_CapNhatMH.Image = global::_1312241_1312265.Properties.Resources.update;
            this.button_CapNhatMH.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.button_CapNhatMH.Location = new System.Drawing.Point(3, 217);
            this.button_CapNhatMH.Name = "button_CapNhatMH";
            this.button_CapNhatMH.Size = new System.Drawing.Size(80, 27);
            this.button_CapNhatMH.TabIndex = 21;
            this.button_CapNhatMH.Text = "Cập nhật";
            this.button_CapNhatMH.UseVisualStyleBackColor = true;
            // 
            // button_XoaMH
            // 
            this.button_XoaMH.Image = global::_1312241_1312265.Properties.Resources.delete;
            this.button_XoaMH.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.button_XoaMH.Location = new System.Drawing.Point(3, 173);
            this.button_XoaMH.Name = "button_XoaMH";
            this.button_XoaMH.Size = new System.Drawing.Size(80, 27);
            this.button_XoaMH.TabIndex = 19;
            this.button_XoaMH.Text = "Xóa";
            this.button_XoaMH.UseVisualStyleBackColor = true;
            this.button_XoaMH.Click += new System.EventHandler(this.button8_Click);
            // 
            // button_ThemMH
            // 
            this.button_ThemMH.Image = global::_1312241_1312265.Properties.Resources.add_icon;
            this.button_ThemMH.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.button_ThemMH.Location = new System.Drawing.Point(3, 130);
            this.button_ThemMH.Name = "button_ThemMH";
            this.button_ThemMH.Size = new System.Drawing.Size(80, 27);
            this.button_ThemMH.TabIndex = 20;
            this.button_ThemMH.Text = "Thêm";
            this.button_ThemMH.UseVisualStyleBackColor = true;
            // 
            // splitter1
            // 
            this.splitter1.Location = new System.Drawing.Point(0, 124);
            this.splitter1.Name = "splitter1";
            this.splitter1.Size = new System.Drawing.Size(86, 375);
            this.splitter1.TabIndex = 1;
            this.splitter1.TabStop = false;
            // 
            // layoutControl1
            // 
            this.layoutControl1.Controls.Add(this.dateEdit_NSX);
            this.layoutControl1.Controls.Add(this.comboBoxEdit_MaMH);
            this.layoutControl1.Controls.Add(this.textEdit_Gia);
            this.layoutControl1.Controls.Add(this.textEdit_NSX);
            this.layoutControl1.Controls.Add(this.textEdit_LoaiMH);
            this.layoutControl1.Controls.Add(this.textEdit_TenMH);
            this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Top;
            this.layoutControl1.Location = new System.Drawing.Point(0, 0);
            this.layoutControl1.Name = "layoutControl1";
            this.layoutControl1.Root = this.layoutControlGroup1;
            this.layoutControl1.Size = new System.Drawing.Size(586, 124);
            this.layoutControl1.TabIndex = 0;
            this.layoutControl1.Text = "layoutControl1";
            // 
            // dateEdit_NSX
            // 
            this.dateEdit_NSX.EditValue = null;
            this.dateEdit_NSX.Location = new System.Drawing.Point(368, 60);
            this.dateEdit_NSX.Name = "dateEdit_NSX";
            this.dateEdit_NSX.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.dateEdit_NSX.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.dateEdit_NSX.Size = new System.Drawing.Size(206, 20);
            this.dateEdit_NSX.StyleController = this.layoutControl1;
            this.dateEdit_NSX.TabIndex = 11;
            // 
            // comboBoxEdit_MaMH
            // 
            this.comboBoxEdit_MaMH.Location = new System.Drawing.Point(85, 12);
            this.comboBoxEdit_MaMH.Name = "comboBoxEdit_MaMH";
            this.comboBoxEdit_MaMH.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_MaMH.Size = new System.Drawing.Size(206, 20);
            this.comboBoxEdit_MaMH.StyleController = this.layoutControl1;
            this.comboBoxEdit_MaMH.TabIndex = 10;
            // 
            // textEdit_Gia
            // 
            this.textEdit_Gia.Location = new System.Drawing.Point(85, 60);
            this.textEdit_Gia.Name = "textEdit_Gia";
            this.textEdit_Gia.Size = new System.Drawing.Size(206, 20);
            this.textEdit_Gia.StyleController = this.layoutControl1;
            this.textEdit_Gia.TabIndex = 8;
            // 
            // textEdit_NSX
            // 
            this.textEdit_NSX.Location = new System.Drawing.Point(368, 36);
            this.textEdit_NSX.Name = "textEdit_NSX";
            this.textEdit_NSX.Size = new System.Drawing.Size(206, 20);
            this.textEdit_NSX.StyleController = this.layoutControl1;
            this.textEdit_NSX.TabIndex = 7;
            // 
            // textEdit_LoaiMH
            // 
            this.textEdit_LoaiMH.Location = new System.Drawing.Point(85, 36);
            this.textEdit_LoaiMH.Name = "textEdit_LoaiMH";
            this.textEdit_LoaiMH.Size = new System.Drawing.Size(206, 20);
            this.textEdit_LoaiMH.StyleController = this.layoutControl1;
            this.textEdit_LoaiMH.TabIndex = 6;
            // 
            // textEdit_TenMH
            // 
            this.textEdit_TenMH.Location = new System.Drawing.Point(368, 12);
            this.textEdit_TenMH.Name = "textEdit_TenMH";
            this.textEdit_TenMH.Size = new System.Drawing.Size(206, 20);
            this.textEdit_TenMH.StyleController = this.layoutControl1;
            this.textEdit_TenMH.TabIndex = 5;
            // 
            // layoutControlGroup1
            // 
            this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
            this.layoutControlGroup1.GroupBordersVisible = false;
            this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
            this.layoutControlItem3,
            this.layoutControlItem4,
            this.layoutControlItem5,
            this.layoutControlItem6,
            this.layoutControlItem2,
            this.layoutControlItem7});
            this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
            this.layoutControlGroup1.Name = "layoutControlGroup1";
            this.layoutControlGroup1.Size = new System.Drawing.Size(586, 124);
            this.layoutControlGroup1.TextVisible = false;
            // 
            // layoutControlItem3
            // 
            this.layoutControlItem3.Control = this.textEdit_TenMH;
            this.layoutControlItem3.Location = new System.Drawing.Point(283, 0);
            this.layoutControlItem3.Name = "layoutControlItem3";
            this.layoutControlItem3.Size = new System.Drawing.Size(283, 24);
            this.layoutControlItem3.Text = "Tên mặt hàng";
            this.layoutControlItem3.TextSize = new System.Drawing.Size(70, 13);
            // 
            // layoutControlItem4
            // 
            this.layoutControlItem4.Control = this.textEdit_LoaiMH;
            this.layoutControlItem4.Location = new System.Drawing.Point(0, 24);
            this.layoutControlItem4.Name = "layoutControlItem4";
            this.layoutControlItem4.Size = new System.Drawing.Size(283, 24);
            this.layoutControlItem4.Text = "Loại mặt hàng";
            this.layoutControlItem4.TextSize = new System.Drawing.Size(70, 13);
            // 
            // layoutControlItem5
            // 
            this.layoutControlItem5.Control = this.textEdit_NSX;
            this.layoutControlItem5.Location = new System.Drawing.Point(283, 24);
            this.layoutControlItem5.Name = "layoutControlItem5";
            this.layoutControlItem5.Size = new System.Drawing.Size(283, 24);
            this.layoutControlItem5.Text = "Nhà sản xuất";
            this.layoutControlItem5.TextSize = new System.Drawing.Size(70, 13);
            // 
            // layoutControlItem6
            // 
            this.layoutControlItem6.Control = this.textEdit_Gia;
            this.layoutControlItem6.Location = new System.Drawing.Point(0, 48);
            this.layoutControlItem6.Name = "layoutControlItem6";
            this.layoutControlItem6.Size = new System.Drawing.Size(283, 56);
            this.layoutControlItem6.Text = "Giá";
            this.layoutControlItem6.TextSize = new System.Drawing.Size(70, 13);
            // 
            // layoutControlItem2
            // 
            this.layoutControlItem2.Control = this.comboBoxEdit_MaMH;
            this.layoutControlItem2.Location = new System.Drawing.Point(0, 0);
            this.layoutControlItem2.Name = "layoutControlItem2";
            this.layoutControlItem2.Size = new System.Drawing.Size(283, 24);
            this.layoutControlItem2.Text = "Mã mặt hàng";
            this.layoutControlItem2.TextSize = new System.Drawing.Size(70, 13);
            // 
            // layoutControlItem7
            // 
            this.layoutControlItem7.Control = this.dateEdit_NSX;
            this.layoutControlItem7.Location = new System.Drawing.Point(283, 48);
            this.layoutControlItem7.Name = "layoutControlItem7";
            this.layoutControlItem7.Size = new System.Drawing.Size(283, 56);
            this.layoutControlItem7.Text = "Ngày sản xuất";
            this.layoutControlItem7.TextSize = new System.Drawing.Size(70, 13);
            // 
            // navBarGroupControlContainer3
            // 
            this.navBarGroupControlContainer3.Appearance.BackColor = System.Drawing.SystemColors.Control;
            this.navBarGroupControlContainer3.Appearance.Options.UseBackColor = true;
            this.navBarGroupControlContainer3.Name = "navBarGroupControlContainer3";
            this.navBarGroupControlContainer3.Size = new System.Drawing.Size(295, 228);
            this.navBarGroupControlContainer3.TabIndex = 2;
            // 
            // panel2
            // 
            this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel2.Location = new System.Drawing.Point(0, 0);
            this.panel2.Name = "panel2";
            this.panel2.Size = new System.Drawing.Size(295, 228);
            this.panel2.TabIndex = 0;
            // 
            // button3
            // 
            this.button3.Image = global::_1312241_1312265.Properties.Resources.add_icon;
            this.button3.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.button3.Location = new System.Drawing.Point(11, 48);
            this.button3.Name = "button3";
            this.button3.Size = new System.Drawing.Size(80, 27);
            this.button3.TabIndex = 20;
            this.button3.Text = "Thêm";
            this.button3.UseVisualStyleBackColor = true;
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(8, 17);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(70, 13);
            this.label2.TabIndex = 0;
            // 
            // button2
            // 
            this.button2.Image = global::_1312241_1312265.Properties.Resources.delete;
            this.button2.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.button2.Location = new System.Drawing.Point(106, 48);
            this.button2.Name = "button2";
            this.button2.Size = new System.Drawing.Size(80, 27);
            this.button2.TabIndex = 19;
            this.button2.Text = "Xóa";
            this.button2.UseVisualStyleBackColor = true;
            // 
            // comboBox2
            // 
            this.comboBox2.FormattingEnabled = true;
            this.comboBox2.Location = new System.Drawing.Point(102, 14);
            this.comboBox2.Name = "comboBox2";
            this.comboBox2.Size = new System.Drawing.Size(169, 21);
            this.comboBox2.TabIndex = 1;
            // 
            // button1
            // 
            this.button1.Image = global::_1312241_1312265.Properties.Resources.update;
            this.button1.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.button1.Location = new System.Drawing.Point(198, 48);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(80, 27);
            this.button1.TabIndex = 21;
            this.button1.Text = "Cập nhật";
            this.button1.UseVisualStyleBackColor = true;
            // 
            // dataGridView2
            // 
            this.dataGridView2.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dataGridView2.Location = new System.Drawing.Point(8, 84);
            this.dataGridView2.Name = "dataGridView2";
            this.dataGridView2.Size = new System.Drawing.Size(269, 131);
            this.dataGridView2.TabIndex = 22;
            // 
            // navBarGroup2
            // 
            this.navBarGroup2.Caption = "Nhà sản xuất";
            this.navBarGroup2.ControlContainer = this.navBarGroupControlContainer3;
            this.navBarGroup2.GroupClientHeight = 232;
            this.navBarGroup2.GroupStyle = DevExpress.XtraNavBar.NavBarGroupStyle.ControlContainer;
            this.navBarGroup2.Name = "navBarGroup2";
            // 
            // Form_MatHang
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackColor = System.Drawing.Color.Azure;
            this.ClientSize = new System.Drawing.Size(893, 499);
            this.Controls.Add(this.splitContainer1);
            this.Controls.Add(this.barDockControlLeft);
            this.Controls.Add(this.barDockControlRight);
            this.Controls.Add(this.barDockControlBottom);
            this.Controls.Add(this.barDockControlTop);
            this.Name = "Form_MatHang";
            this.Text = "Quản lý mặt hàng";
            this.Load += new System.EventHandler(this.Form_MatHang_Load);
            this.navBarGroupControlContainer4.ResumeLayout(false);
            this.panel4.ResumeLayout(false);
            this.panel4.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.searchControl_MaMH.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
            this.splitContainer1.Panel1.ResumeLayout(false);
            this.splitContainer1.Panel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
            this.splitContainer1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.navBarControl1)).EndInit();
            this.navBarControl1.ResumeLayout(false);
            this.navBarGroupControlContainer1.ResumeLayout(false);
            this.panel1.ResumeLayout(false);
            this.panel1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dataGridView_LMH)).EndInit();
            this.navBarGroupControlContainer2.ResumeLayout(false);
            this.panel3.ResumeLayout(false);
            this.panel3.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dataGridView_NSX)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dataGridView4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
            this.layoutControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.dateEdit_NSX.Properties.CalendarTimeProperties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dateEdit_NSX.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_MaMH.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_Gia.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_NSX.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_LoaiMH.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_TenMH.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dataGridView2)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
Example #34
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
 /// 此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.navBarControl1   = new DevExpress.XtraNavBar.NavBarControl();
     this.navBarGroup1     = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarItem1      = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItem2      = new DevExpress.XtraNavBar.NavBarItem();
     this.splitterControl1 = new DevExpress.XtraEditors.SplitterControl();
     this.panelControl1    = new DevExpress.XtraEditors.PanelControl();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.SuspendLayout();
     //
     // navBarControl1
     //
     this.navBarControl1.ActiveGroup = this.navBarGroup1;
     this.navBarControl1.Dock        = System.Windows.Forms.DockStyle.Left;
     this.navBarControl1.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
         this.navBarGroup1
     });
     this.navBarControl1.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
         this.navBarItem1,
         this.navBarItem2
     });
     this.navBarControl1.Location = new System.Drawing.Point(0, 0);
     this.navBarControl1.Name     = "navBarControl1";
     this.navBarControl1.OptionsNavPane.ExpandedWidth = 144;
     this.navBarControl1.Size         = new System.Drawing.Size(144, 341);
     this.navBarControl1.TabIndex     = 0;
     this.navBarControl1.Text         = "navBarControl1";
     this.navBarControl1.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarControl1_LinkClicked);
     //
     // navBarGroup1
     //
     this.navBarGroup1.Caption    = "用户界面";
     this.navBarGroup1.Expanded   = true;
     this.navBarGroup1.GroupStyle = DevExpress.XtraNavBar.NavBarGroupStyle.SmallIconsText;
     this.navBarGroup1.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
         new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem1),
         new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem2)
     });
     this.navBarGroup1.Name = "navBarGroup1";
     //
     // navBarItem1
     //
     this.navBarItem1.Caption = "导航栏";
     this.navBarItem1.Name    = "navBarItem1";
     this.navBarItem1.Visible = false;
     //
     // navBarItem2
     //
     this.navBarItem2.Caption = "窗口样式";
     this.navBarItem2.Name    = "navBarItem2";
     //
     // splitterControl1
     //
     this.splitterControl1.Location = new System.Drawing.Point(144, 0);
     this.splitterControl1.Name     = "splitterControl1";
     this.splitterControl1.Size     = new System.Drawing.Size(6, 341);
     this.splitterControl1.TabIndex = 1;
     this.splitterControl1.TabStop  = false;
     //
     // panelControl1
     //
     this.panelControl1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panelControl1.Location = new System.Drawing.Point(150, 0);
     this.panelControl1.Name     = "panelControl1";
     this.panelControl1.Size     = new System.Drawing.Size(402, 341);
     this.panelControl1.TabIndex = 3;
     //
     // frmOption
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.ClientSize          = new System.Drawing.Size(552, 341);
     this.Controls.Add(this.panelControl1);
     this.Controls.Add(this.splitterControl1);
     this.Controls.Add(this.navBarControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmOption";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Load           += new System.EventHandler(this.frmOption_Load);
     ((System.ComponentModel.ISupportInitialize)(this.navBarControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.ResumeLayout(false);
 }
Example #35
0
        private void CreateMenu() {
            nbctSystem.Groups.Clear();
            nbctSystem.Items.Clear();

            

            string sqlwhere = "where  Description='kcgl'  order by Sequence";
            IList<mModule> mlist = Ebada.Client.ClientHelper.PlatformSqlMap.GetList<mModule>(sqlwhere);

            DataTable table = progtable = Ebada.Core.ConvertHelper.ToDataTable((IList)mlist);

            DataRow[] Rows = table.Select(string.Format("ParentID='{0}'", "0"));

            foreach (DataRow row in Rows) {
                DevExpress.XtraNavBar.NavBarGroup nbg = new DevExpress.XtraNavBar.NavBarGroup();
                nbg.Name = row["ModuName"].ToString();
                nbg.Tag = Ebada.Core.ConvertHelper.RowToObject<mModule>(row);
                nbg.Caption = row["ModuName"].ToString();
                nbg.LargeImage = ((ImageList)nbctSystem.LargeImages).Images[row["IconName"].ToString()];

                DataRow[] Rows2 = table.Select(string.Format(" ParentID='{0}'", row["Modu_ID"].ToString()));
                foreach (DataRow row2 in Rows2) {
                    DevExpress.XtraNavBar.NavBarItem nbi = new DevExpress.XtraNavBar.NavBarItem();
                    nbi.Name = row2["ModuName"].ToString();
                    nbi.Tag = Ebada.Core.ConvertHelper.RowToObject<mModule>(row2);
                    nbi.Caption = row2["ModuName"].ToString();
                    nbi.SmallImage = ((ImageList)nbctSystem.SmallImages).Images[row2["IconName"].ToString()];
                    nbi.Hint = row["Sequence"].ToString();
                    nbctSystem.Items.Add(nbi);
                    nbg.ItemLinks.Add(nbi);
                }
                nbctSystem.Groups.Add(nbg);
                nbctSystem.Refresh();

            }
            if (nbctSystem.Groups.Count > 0 && nbctSystem.Groups[0].ItemLinks.Count > 0) {
                nbctSystem.Groups[0].ItemLinks[0].PerformClick();
                nbctSystem.Groups[0].SelectedLinkIndex = 0;
            }
        }
Example #36
0
 /// <summary>
 /// Обязательный метод для поддержки конструктора - не изменяйте
 /// содержимое данного метода при помощи редактора кода.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.XtraSplashScreen.SplashScreenManager splashScreenManager1 = new DevExpress.XtraSplashScreen.SplashScreenManager(this, typeof(global::Steganography.SplashScreen1), true, true);
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
     DevExpress.Utils.Animation.PushTransition pushTransition1 = new DevExpress.Utils.Animation.PushTransition();
     this.formAssistant1 = new DevExpress.XtraBars.FormAssistant();
     this.ribbonStatusBar1 = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.ribbonStatusBar2 = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.ribbonControl = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.applicationMenu2 = new DevExpress.XtraBars.Ribbon.ApplicationMenu();
     this.barButtonItemExit = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemAbout = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemUnpack = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemOptions = new DevExpress.XtraBars.BarButtonItem();
     this.skinRibbonGalleryBarItem1 = new DevExpress.XtraBars.SkinRibbonGalleryBarItem();
     this.barButtonItemExecute = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemPack = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemOptionsSave = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemOptionsLoad = new DevExpress.XtraBars.BarButtonItem();
     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.barButtonItem5 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem6 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem7 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemGamma = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem9 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemWeb = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemGroups = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemForum = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem13 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem14 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemShowSampleImage = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem16 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem17 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemShowMedianImage = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemError = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemBarcode = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemErase = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemCheck = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemChecksum = new DevExpress.XtraBars.BarButtonItem();
     this.ribbonMiniToolbar1 = new DevExpress.XtraBars.Ribbon.RibbonMiniToolbar();
     this.ribbonPageCategoryPack = new DevExpress.XtraBars.Ribbon.RibbonPageCategory();
     this.ribbonPagePack = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup7 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup16 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup31 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup9 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup13 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup17 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPage4 = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup33 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup34 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageCategoryUnpack = new DevExpress.XtraBars.Ribbon.RibbonPageCategory();
     this.ribbonPageUnpack = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup8 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup20 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup32 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup10 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup14 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup18 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPage5 = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup35 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup36 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageCategoryOptions = new DevExpress.XtraBars.Ribbon.RibbonPageCategory();
     this.ribbonPageOptions = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup11 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup29 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup15 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup19 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageCategory1 = new DevExpress.XtraBars.Ribbon.RibbonPageCategory();
     this.ribbonPage7 = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup30 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup25 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup22 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPage1 = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup21 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup6 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup26 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup12 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup2 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPage3 = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup1 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup3 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup24 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPageGroup23 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.defaultLookAndFeel1 = new DevExpress.LookAndFeel.DefaultLookAndFeel();
     this.workspaceManager1 = new DevExpress.Utils.WorkspaceManager();
     this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
     this.navBarControl1 = new DevExpress.XtraNavBar.NavBarControl();
     this.navBarGroup1 = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarItemPack = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemUnpack = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItemOptions = new DevExpress.XtraNavBar.NavBarItem();
     this.mainControl = new Steganography.BbsControl();
     this.ribbonPageGroup4 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.ribbonPage2 = new DevExpress.XtraBars.Ribbon.RibbonPage();
     ((System.ComponentModel.ISupportInitialize)(this.ribbonControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.applicationMenu2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
     this.splitContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControl1)).BeginInit();
     this.SuspendLayout();
     //
     // ribbonStatusBar1
     //
     this.ribbonStatusBar1.Location = new System.Drawing.Point(0, 681);
     this.ribbonStatusBar1.Name = "ribbonStatusBar1";
     this.ribbonStatusBar1.Ribbon = null;
     this.ribbonStatusBar1.Size = new System.Drawing.Size(1261, 20);
     //
     // ribbonStatusBar2
     //
     this.ribbonStatusBar2.Location = new System.Drawing.Point(0, 815);
     this.ribbonStatusBar2.Name = "ribbonStatusBar2";
     this.ribbonStatusBar2.Ribbon = this.ribbonControl;
     this.ribbonStatusBar2.Size = new System.Drawing.Size(1215, 55);
     //
     // ribbonControl
     //
     this.ribbonControl.ApplicationButtonDropDownControl = this.applicationMenu2;
     this.ribbonControl.ExpandCollapseItem.Id = 0;
     this.ribbonControl.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.ribbonControl.ExpandCollapseItem,
     this.barButtonItemAbout,
     this.barButtonItemUnpack,
     this.barButtonItemOptions,
     this.skinRibbonGalleryBarItem1,
     this.barButtonItemExecute,
     this.barButtonItemPack,
     this.barButtonItemExit,
     this.barButtonItemOptionsSave,
     this.barButtonItemOptionsLoad,
     this.barButtonItem1,
     this.barButtonItem2,
     this.barButtonItem3,
     this.barButtonItem4,
     this.barButtonItem5,
     this.barButtonItem6,
     this.barButtonItem7,
     this.barButtonItemGamma,
     this.barButtonItem9,
     this.barButtonItemWeb,
     this.barButtonItemGroups,
     this.barButtonItemForum,
     this.barButtonItem13,
     this.barButtonItem14,
     this.barButtonItemShowSampleImage,
     this.barButtonItem16,
     this.barButtonItem17,
     this.barButtonItemShowMedianImage,
     this.barButtonItemError,
     this.barButtonItemBarcode,
     this.barButtonItemErase,
     this.barButtonItemCheck,
     this.barButtonItemChecksum});
     this.ribbonControl.Location = new System.Drawing.Point(0, 0);
     this.ribbonControl.MaxItemId = 2;
     this.ribbonControl.MiniToolbars.Add(this.ribbonMiniToolbar1);
     this.ribbonControl.Name = "ribbonControl";
     this.ribbonControl.PageCategories.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageCategory[] {
     this.ribbonPageCategoryPack,
     this.ribbonPageCategoryUnpack,
     this.ribbonPageCategoryOptions,
     this.ribbonPageCategory1});
     this.ribbonControl.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
     this.ribbonPage1,
     this.ribbonPage3});
     this.ribbonControl.Size = new System.Drawing.Size(1215, 249);
     this.ribbonControl.StatusBar = this.ribbonStatusBar2;
     this.ribbonControl.Toolbar.ItemLinks.Add(this.barButtonItemPack);
     this.ribbonControl.Toolbar.ItemLinks.Add(this.barButtonItemUnpack);
     this.ribbonControl.Toolbar.ItemLinks.Add(this.barButtonItemOptionsLoad);
     this.ribbonControl.Toolbar.ItemLinks.Add(this.barButtonItemOptionsSave);
     this.ribbonControl.Toolbar.ItemLinks.Add(this.barButtonItem5);
     //
     // applicationMenu2
     //
     this.applicationMenu2.ItemLinks.Add(this.barButtonItemExit);
     this.applicationMenu2.Name = "applicationMenu2";
     this.applicationMenu2.Ribbon = this.ribbonControl;
     //
     // barButtonItemExit
     //
     this.barButtonItemExit.Caption = "Выход";
     this.barButtonItemExit.CategoryGuid = new System.Guid("6ffddb2b-9015-4d97-a4c1-91613e0ef537");
     this.barButtonItemExit.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemExit.Glyph")));
     this.barButtonItemExit.Id = 2;
     this.barButtonItemExit.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemExit.LargeGlyph")));
     this.barButtonItemExit.Name = "barButtonItemExit";
     this.barButtonItemExit.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.Exit_ItemClick);
     //
     // barButtonItemAbout
     //
     this.barButtonItemAbout.Caption = "О программе";
     this.barButtonItemAbout.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemAbout.Glyph")));
     this.barButtonItemAbout.Id = 1;
     this.barButtonItemAbout.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemAbout.LargeGlyph")));
     this.barButtonItemAbout.Name = "barButtonItemAbout";
     this.barButtonItemAbout.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.About_ItemClick);
     //
     // barButtonItemUnpack
     //
     this.barButtonItemUnpack.Caption = "Распаковать";
     this.barButtonItemUnpack.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemUnpack.Glyph")));
     this.barButtonItemUnpack.Id = 3;
     this.barButtonItemUnpack.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemUnpack.LargeGlyph")));
     this.barButtonItemUnpack.Name = "barButtonItemUnpack";
     this.barButtonItemUnpack.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.Unpack_ItemClick);
     //
     // barButtonItemOptions
     //
     this.barButtonItemOptions.Caption = "Параметры";
     this.barButtonItemOptions.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemOptions.Glyph")));
     this.barButtonItemOptions.Id = 4;
     this.barButtonItemOptions.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemOptions.LargeGlyph")));
     this.barButtonItemOptions.Name = "barButtonItemOptions";
     this.barButtonItemOptions.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.Options_ItemClick);
     //
     // skinRibbonGalleryBarItem1
     //
     this.skinRibbonGalleryBarItem1.Caption = "skinRibbonGalleryBarItem1";
     this.skinRibbonGalleryBarItem1.Id = 5;
     this.skinRibbonGalleryBarItem1.Name = "skinRibbonGalleryBarItem1";
     //
     // barButtonItemExecute
     //
     this.barButtonItemExecute.Caption = "Выполнить";
     this.barButtonItemExecute.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemExecute.Glyph")));
     this.barButtonItemExecute.Id = 6;
     this.barButtonItemExecute.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemExecute.LargeGlyph")));
     this.barButtonItemExecute.Name = "barButtonItemExecute";
     this.barButtonItemExecute.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.Execute_ItemClick);
     //
     // barButtonItemPack
     //
     this.barButtonItemPack.Caption = "Упаковать";
     this.barButtonItemPack.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemPack.Glyph")));
     this.barButtonItemPack.Id = 13;
     this.barButtonItemPack.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemPack.LargeGlyph")));
     this.barButtonItemPack.Name = "barButtonItemPack";
     this.barButtonItemPack.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.Pack_ItemClick);
     //
     // barButtonItemOptionsSave
     //
     this.barButtonItemOptionsSave.Caption = "Сохранить";
     this.barButtonItemOptionsSave.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemOptionsSave.Glyph")));
     this.barButtonItemOptionsSave.Id = 1;
     this.barButtonItemOptionsSave.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemOptionsSave.LargeGlyph")));
     this.barButtonItemOptionsSave.Name = "barButtonItemOptionsSave";
     this.barButtonItemOptionsSave.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.OptionsSave_ItemClick);
     //
     // barButtonItemOptionsLoad
     //
     this.barButtonItemOptionsLoad.Caption = "Загрузить";
     this.barButtonItemOptionsLoad.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemOptionsLoad.Glyph")));
     this.barButtonItemOptionsLoad.Id = 2;
     this.barButtonItemOptionsLoad.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemOptionsLoad.LargeGlyph")));
     this.barButtonItemOptionsLoad.Name = "barButtonItemOptionsLoad";
     this.barButtonItemOptionsLoad.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.OptionsLoad_ItemClick);
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "Образец";
     this.barButtonItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem1.Glyph")));
     this.barButtonItem1.Id = 4;
     this.barButtonItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem1.LargeGlyph")));
     this.barButtonItem1.Name = "barButtonItem1";
     this.barButtonItem1.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.PackingOpenImage_ItemClick);
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption = "Сообщение";
     this.barButtonItem2.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem2.Glyph")));
     this.barButtonItem2.Id = 5;
     this.barButtonItem2.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem2.LargeGlyph")));
     this.barButtonItem2.Name = "barButtonItem2";
     this.barButtonItem2.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.PackingOpenFile_ItemClick);
     //
     // barButtonItem3
     //
     this.barButtonItem3.Caption = "Сохранить";
     this.barButtonItem3.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem3.Glyph")));
     this.barButtonItem3.Id = 6;
     this.barButtonItem3.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem3.LargeGlyph")));
     this.barButtonItem3.Name = "barButtonItem3";
     this.barButtonItem3.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.PackingSaveImage_ItemClick);
     //
     // barButtonItem4
     //
     this.barButtonItem4.Caption = "Отправить";
     this.barButtonItem4.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem4.Glyph")));
     this.barButtonItem4.Id = 7;
     this.barButtonItem4.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem4.LargeGlyph")));
     this.barButtonItem4.Name = "barButtonItem4";
     this.barButtonItem4.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.PackingSendImage_ItemClick);
     //
     // barButtonItem5
     //
     this.barButtonItem5.Caption = "Справка";
     this.barButtonItem5.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem5.Glyph")));
     this.barButtonItem5.Id = 9;
     this.barButtonItem5.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem5.LargeGlyph")));
     this.barButtonItem5.Name = "barButtonItem5";
     //
     // barButtonItem6
     //
     this.barButtonItem6.Caption = "Картинка";
     this.barButtonItem6.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem6.Glyph")));
     this.barButtonItem6.Id = 10;
     this.barButtonItem6.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem6.LargeGlyph")));
     this.barButtonItem6.Name = "barButtonItem6";
     this.barButtonItem6.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.UnpackingOpenImage_ItemClick);
     //
     // barButtonItem7
     //
     this.barButtonItem7.Caption = "Сохранить";
     this.barButtonItem7.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem7.Glyph")));
     this.barButtonItem7.Id = 11;
     this.barButtonItem7.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem7.LargeGlyph")));
     this.barButtonItem7.Name = "barButtonItem7";
     this.barButtonItem7.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.UnpackingSaveFile_ItemClick);
     //
     // barButtonItemGamma
     //
     this.barButtonItemGamma.Caption = "Гамма";
     this.barButtonItemGamma.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemGamma.Glyph")));
     this.barButtonItemGamma.Id = 12;
     this.barButtonItemGamma.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemGamma.LargeGlyph")));
     this.barButtonItemGamma.Name = "barButtonItemGamma";
     this.barButtonItemGamma.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.ViewSequence_ItemClick);
     //
     // barButtonItem9
     //
     this.barButtonItem9.Caption = "Отправить";
     this.barButtonItem9.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem9.Glyph")));
     this.barButtonItem9.Id = 13;
     this.barButtonItem9.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem9.LargeGlyph")));
     this.barButtonItem9.Name = "barButtonItem9";
     this.barButtonItem9.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.UnpackingSendFile_ItemClick);
     //
     // barButtonItemWeb
     //
     this.barButtonItemWeb.Caption = "Интернет";
     this.barButtonItemWeb.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemWeb.Glyph")));
     this.barButtonItemWeb.Id = 14;
     this.barButtonItemWeb.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemWeb.LargeGlyph")));
     this.barButtonItemWeb.Name = "barButtonItemWeb";
     this.barButtonItemWeb.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.Internet_ItemClick);
     //
     // barButtonItemGroups
     //
     this.barButtonItemGroups.Caption = "Группы";
     this.barButtonItemGroups.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemGroups.Glyph")));
     this.barButtonItemGroups.Id = 15;
     this.barButtonItemGroups.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemGroups.LargeGlyph")));
     this.barButtonItemGroups.Name = "barButtonItemGroups";
     //
     // barButtonItemForum
     //
     this.barButtonItemForum.Caption = "Форумы";
     this.barButtonItemForum.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemForum.Glyph")));
     this.barButtonItemForum.Id = 16;
     this.barButtonItemForum.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemForum.LargeGlyph")));
     this.barButtonItemForum.Name = "barButtonItemForum";
     //
     // barButtonItem13
     //
     this.barButtonItem13.Caption = "Картинка";
     this.barButtonItem13.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem13.Glyph")));
     this.barButtonItem13.Id = 17;
     this.barButtonItem13.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem13.LargeGlyph")));
     this.barButtonItem13.Name = "barButtonItem13";
     this.barButtonItem13.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.ShowCipherImage_ItemClick);
     //
     // barButtonItem14
     //
     this.barButtonItem14.Caption = "Сообщение";
     this.barButtonItem14.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem14.Glyph")));
     this.barButtonItem14.Id = 18;
     this.barButtonItem14.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem14.LargeGlyph")));
     this.barButtonItem14.Name = "barButtonItem14";
     this.barButtonItem14.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.UnpackFileShow_ItemClick);
     //
     // barButtonItemShowSampleImage
     //
     this.barButtonItemShowSampleImage.Caption = "Образец";
     this.barButtonItemShowSampleImage.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemShowSampleImage.Glyph")));
     this.barButtonItemShowSampleImage.Id = 20;
     this.barButtonItemShowSampleImage.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemShowSampleImage.LargeGlyph")));
     this.barButtonItemShowSampleImage.Name = "barButtonItemShowSampleImage";
     this.barButtonItemShowSampleImage.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.ShowSampleImage_ItemClick);
     //
     // barButtonItem16
     //
     this.barButtonItem16.Caption = "Сообщение";
     this.barButtonItem16.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem16.Glyph")));
     this.barButtonItem16.Id = 21;
     this.barButtonItem16.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem16.LargeGlyph")));
     this.barButtonItem16.Name = "barButtonItem16";
     this.barButtonItem16.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.PackFileShow_ItemClick);
     //
     // barButtonItem17
     //
     this.barButtonItem17.Caption = "Картинка";
     this.barButtonItem17.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem17.Glyph")));
     this.barButtonItem17.Id = 22;
     this.barButtonItem17.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem17.LargeGlyph")));
     this.barButtonItem17.Name = "barButtonItem17";
     this.barButtonItem17.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.ShowInputImage_ItemClick);
     //
     // barButtonItemShowMedianImage
     //
     this.barButtonItemShowMedianImage.Caption = "Среднее";
     this.barButtonItemShowMedianImage.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemShowMedianImage.Glyph")));
     this.barButtonItemShowMedianImage.Id = 23;
     this.barButtonItemShowMedianImage.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemShowMedianImage.LargeGlyph")));
     this.barButtonItemShowMedianImage.Name = "barButtonItemShowMedianImage";
     this.barButtonItemShowMedianImage.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.ShowMedianImage_ItemClick);
     //
     // barButtonItemError
     //
     this.barButtonItemError.Caption = "Ошибки";
     this.barButtonItemError.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemError.Glyph")));
     this.barButtonItemError.Id = 25;
     this.barButtonItemError.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemError.LargeGlyph")));
     this.barButtonItemError.Name = "barButtonItemError";
     //
     // barButtonItemBarcode
     //
     this.barButtonItemBarcode.Caption = "Баркод";
     this.barButtonItemBarcode.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemBarcode.Glyph")));
     this.barButtonItemBarcode.Id = 1;
     this.barButtonItemBarcode.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemBarcode.LargeGlyph")));
     this.barButtonItemBarcode.Name = "barButtonItemBarcode";
     this.barButtonItemBarcode.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.Barcode_ItemClick);
     //
     // barButtonItemErase
     //
     this.barButtonItemErase.Caption = "Очистить";
     this.barButtonItemErase.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemErase.Glyph")));
     this.barButtonItemErase.Id = 2;
     this.barButtonItemErase.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemErase.LargeGlyph")));
     this.barButtonItemErase.Name = "barButtonItemErase";
     this.barButtonItemErase.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.Erase_ItemClick);
     //
     // barButtonItemCheck
     //
     this.barButtonItemCheck.Caption = "Проверить";
     this.barButtonItemCheck.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemCheck.Glyph")));
     this.barButtonItemCheck.Id = 3;
     this.barButtonItemCheck.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemCheck.LargeGlyph")));
     this.barButtonItemCheck.Name = "barButtonItemCheck";
     this.barButtonItemCheck.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.Check_ItemClick);
     //
     // barButtonItemChecksum
     //
     this.barButtonItemChecksum.Caption = "Контрольная сумма";
     this.barButtonItemChecksum.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemChecksum.Glyph")));
     this.barButtonItemChecksum.Id = 1;
     this.barButtonItemChecksum.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("barButtonItemChecksum.LargeGlyph")));
     this.barButtonItemChecksum.Name = "barButtonItemChecksum";
     this.barButtonItemChecksum.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemChecksum_ItemClick);
     //
     // ribbonMiniToolbar1
     //
     this.ribbonMiniToolbar1.ItemLinks.Add(this.barButtonItemPack);
     this.ribbonMiniToolbar1.ItemLinks.Add(this.barButtonItemUnpack);
     this.ribbonMiniToolbar1.ItemLinks.Add(this.barButtonItemExit);
     //
     // ribbonPageCategoryPack
     //
     this.ribbonPageCategoryPack.Color = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.ribbonPageCategoryPack.Name = "ribbonPageCategoryPack";
     this.ribbonPageCategoryPack.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
     this.ribbonPagePack,
     this.ribbonPage4});
     this.ribbonPageCategoryPack.Text = "Режим упаковки";
     //
     // ribbonPagePack
     //
     this.ribbonPagePack.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.ribbonPageGroup7,
     this.ribbonPageGroup16,
     this.ribbonPageGroup31,
     this.ribbonPageGroup9,
     this.ribbonPageGroup13,
     this.ribbonPageGroup17});
     this.ribbonPagePack.Image = ((System.Drawing.Image)(resources.GetObject("ribbonPagePack.Image")));
     this.ribbonPagePack.Name = "ribbonPagePack";
     this.ribbonPagePack.Text = "Упаковка";
     //
     // ribbonPageGroup7
     //
     this.ribbonPageGroup7.ItemLinks.Add(this.barButtonItemExecute);
     this.ribbonPageGroup7.ItemLinks.Add(this.barButtonItemErase);
     this.ribbonPageGroup7.ItemLinks.Add(this.barButtonItemCheck);
     this.ribbonPageGroup7.Name = "ribbonPageGroup7";
     this.ribbonPageGroup7.Text = "Задачи";
     //
     // ribbonPageGroup16
     //
     this.ribbonPageGroup16.ItemLinks.Add(this.barButtonItem1);
     this.ribbonPageGroup16.ItemLinks.Add(this.barButtonItem2);
     this.ribbonPageGroup16.ItemLinks.Add(this.barButtonItem3);
     this.ribbonPageGroup16.ItemLinks.Add(this.barButtonItem4);
     this.ribbonPageGroup16.Name = "ribbonPageGroup16";
     this.ribbonPageGroup16.Text = "Файлы";
     //
     // ribbonPageGroup31
     //
     this.ribbonPageGroup31.ItemLinks.Add(this.barButtonItemShowSampleImage);
     this.ribbonPageGroup31.ItemLinks.Add(this.barButtonItem16);
     this.ribbonPageGroup31.ItemLinks.Add(this.barButtonItem13);
     this.ribbonPageGroup31.Name = "ribbonPageGroup31";
     this.ribbonPageGroup31.Text = "Просмотр";
     //
     // ribbonPageGroup9
     //
     this.ribbonPageGroup9.ItemLinks.Add(this.barButtonItemOptionsLoad);
     this.ribbonPageGroup9.ItemLinks.Add(this.barButtonItemOptionsSave);
     this.ribbonPageGroup9.Name = "ribbonPageGroup9";
     this.ribbonPageGroup9.Text = "Параметры";
     //
     // ribbonPageGroup13
     //
     this.ribbonPageGroup13.ItemLinks.Add(this.barButtonItemExit);
     this.ribbonPageGroup13.Name = "ribbonPageGroup13";
     this.ribbonPageGroup13.Text = "Выход";
     //
     // ribbonPageGroup17
     //
     this.ribbonPageGroup17.ItemLinks.Add(this.barButtonItem5);
     this.ribbonPageGroup17.ItemLinks.Add(this.barButtonItemAbout);
     this.ribbonPageGroup17.Name = "ribbonPageGroup17";
     this.ribbonPageGroup17.Text = "Помощь";
     //
     // ribbonPage4
     //
     this.ribbonPage4.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.ribbonPageGroup33,
     this.ribbonPageGroup34});
     this.ribbonPage4.Image = ((System.Drawing.Image)(resources.GetObject("ribbonPage4.Image")));
     this.ribbonPage4.Name = "ribbonPage4";
     this.ribbonPage4.Text = "Анализ";
     //
     // ribbonPageGroup33
     //
     this.ribbonPageGroup33.ItemLinks.Add(this.barButtonItemGamma);
     this.ribbonPageGroup33.ItemLinks.Add(this.barButtonItemBarcode);
     this.ribbonPageGroup33.ItemLinks.Add(this.barButtonItemChecksum);
     this.ribbonPageGroup33.Name = "ribbonPageGroup33";
     this.ribbonPageGroup33.Text = "Анализ";
     //
     // ribbonPageGroup34
     //
     this.ribbonPageGroup34.ItemLinks.Add(this.barButtonItem5);
     this.ribbonPageGroup34.ItemLinks.Add(this.barButtonItemAbout);
     this.ribbonPageGroup34.Name = "ribbonPageGroup34";
     this.ribbonPageGroup34.Text = "Помощь";
     //
     // ribbonPageCategoryUnpack
     //
     this.ribbonPageCategoryUnpack.Color = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.ribbonPageCategoryUnpack.Name = "ribbonPageCategoryUnpack";
     this.ribbonPageCategoryUnpack.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
     this.ribbonPageUnpack,
     this.ribbonPage5});
     this.ribbonPageCategoryUnpack.Text = "Режим распаковки";
     //
     // ribbonPageUnpack
     //
     this.ribbonPageUnpack.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.ribbonPageGroup8,
     this.ribbonPageGroup20,
     this.ribbonPageGroup32,
     this.ribbonPageGroup10,
     this.ribbonPageGroup14,
     this.ribbonPageGroup18});
     this.ribbonPageUnpack.Image = ((System.Drawing.Image)(resources.GetObject("ribbonPageUnpack.Image")));
     this.ribbonPageUnpack.Name = "ribbonPageUnpack";
     this.ribbonPageUnpack.Text = "Распаковка";
     //
     // ribbonPageGroup8
     //
     this.ribbonPageGroup8.ItemLinks.Add(this.barButtonItemExecute);
     this.ribbonPageGroup8.ItemLinks.Add(this.barButtonItemErase);
     this.ribbonPageGroup8.Name = "ribbonPageGroup8";
     this.ribbonPageGroup8.Text = "Задачи";
     //
     // ribbonPageGroup20
     //
     this.ribbonPageGroup20.ItemLinks.Add(this.barButtonItem6);
     this.ribbonPageGroup20.ItemLinks.Add(this.barButtonItem7);
     this.ribbonPageGroup20.ItemLinks.Add(this.barButtonItem9);
     this.ribbonPageGroup20.Name = "ribbonPageGroup20";
     this.ribbonPageGroup20.Text = "Файлы";
     //
     // ribbonPageGroup32
     //
     this.ribbonPageGroup32.ItemLinks.Add(this.barButtonItem17);
     this.ribbonPageGroup32.ItemLinks.Add(this.barButtonItemShowMedianImage);
     this.ribbonPageGroup32.ItemLinks.Add(this.barButtonItem14);
     this.ribbonPageGroup32.Name = "ribbonPageGroup32";
     this.ribbonPageGroup32.Text = "Просмотр";
     //
     // ribbonPageGroup10
     //
     this.ribbonPageGroup10.ItemLinks.Add(this.barButtonItemOptionsLoad);
     this.ribbonPageGroup10.ItemLinks.Add(this.barButtonItemOptionsSave);
     this.ribbonPageGroup10.Name = "ribbonPageGroup10";
     this.ribbonPageGroup10.Text = "Параметры";
     //
     // ribbonPageGroup14
     //
     this.ribbonPageGroup14.ItemLinks.Add(this.barButtonItemExit);
     this.ribbonPageGroup14.Name = "ribbonPageGroup14";
     this.ribbonPageGroup14.Text = "Выход";
     //
     // ribbonPageGroup18
     //
     this.ribbonPageGroup18.ItemLinks.Add(this.barButtonItem5);
     this.ribbonPageGroup18.ItemLinks.Add(this.barButtonItemAbout);
     this.ribbonPageGroup18.Name = "ribbonPageGroup18";
     this.ribbonPageGroup18.Text = "Помощь";
     //
     // ribbonPage5
     //
     this.ribbonPage5.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.ribbonPageGroup35,
     this.ribbonPageGroup36});
     this.ribbonPage5.Image = ((System.Drawing.Image)(resources.GetObject("ribbonPage5.Image")));
     this.ribbonPage5.Name = "ribbonPage5";
     this.ribbonPage5.Text = "Анализ";
     //
     // ribbonPageGroup35
     //
     this.ribbonPageGroup35.ItemLinks.Add(this.barButtonItemGamma);
     this.ribbonPageGroup35.ItemLinks.Add(this.barButtonItemBarcode);
     this.ribbonPageGroup35.ItemLinks.Add(this.barButtonItemChecksum);
     this.ribbonPageGroup35.Name = "ribbonPageGroup35";
     this.ribbonPageGroup35.Text = "Анализ";
     //
     // ribbonPageGroup36
     //
     this.ribbonPageGroup36.ItemLinks.Add(this.barButtonItem5);
     this.ribbonPageGroup36.ItemLinks.Add(this.barButtonItemAbout);
     this.ribbonPageGroup36.Name = "ribbonPageGroup36";
     this.ribbonPageGroup36.Text = "Помощь";
     //
     // ribbonPageCategoryOptions
     //
     this.ribbonPageCategoryOptions.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.ribbonPageCategoryOptions.Name = "ribbonPageCategoryOptions";
     this.ribbonPageCategoryOptions.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
     this.ribbonPageOptions});
     this.ribbonPageCategoryOptions.Text = "Режим параметров";
     //
     // ribbonPageOptions
     //
     this.ribbonPageOptions.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.ribbonPageGroup11,
     this.ribbonPageGroup29,
     this.ribbonPageGroup15,
     this.ribbonPageGroup19});
     this.ribbonPageOptions.Image = ((System.Drawing.Image)(resources.GetObject("ribbonPageOptions.Image")));
     this.ribbonPageOptions.Name = "ribbonPageOptions";
     this.ribbonPageOptions.Text = "Параметры";
     //
     // ribbonPageGroup11
     //
     this.ribbonPageGroup11.ItemLinks.Add(this.barButtonItemOptionsLoad);
     this.ribbonPageGroup11.ItemLinks.Add(this.barButtonItemOptionsSave);
     this.ribbonPageGroup11.Name = "ribbonPageGroup11";
     this.ribbonPageGroup11.Text = "Параметры";
     //
     // ribbonPageGroup29
     //
     this.ribbonPageGroup29.ItemLinks.Add(this.barButtonItemGamma);
     this.ribbonPageGroup29.Name = "ribbonPageGroup29";
     this.ribbonPageGroup29.Text = "Анализ";
     //
     // ribbonPageGroup15
     //
     this.ribbonPageGroup15.ItemLinks.Add(this.barButtonItemExit);
     this.ribbonPageGroup15.Name = "ribbonPageGroup15";
     this.ribbonPageGroup15.Text = "Выход";
     //
     // ribbonPageGroup19
     //
     this.ribbonPageGroup19.ItemLinks.Add(this.barButtonItem5);
     this.ribbonPageGroup19.ItemLinks.Add(this.barButtonItemAbout);
     this.ribbonPageGroup19.Name = "ribbonPageGroup19";
     this.ribbonPageGroup19.Text = "Помощь";
     //
     // ribbonPageCategory1
     //
     this.ribbonPageCategory1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.ribbonPageCategory1.Name = "ribbonPageCategory1";
     this.ribbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
     this.ribbonPage7});
     this.ribbonPageCategory1.Text = "Помощь";
     //
     // ribbonPage7
     //
     this.ribbonPage7.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.ribbonPageGroup30,
     this.ribbonPageGroup25,
     this.ribbonPageGroup22});
     this.ribbonPage7.Image = ((System.Drawing.Image)(resources.GetObject("ribbonPage7.Image")));
     this.ribbonPage7.MergeOrder = 9999;
     this.ribbonPage7.Name = "ribbonPage7";
     this.ribbonPage7.Text = "Помощь";
     //
     // ribbonPageGroup30
     //
     this.ribbonPageGroup30.ItemLinks.Add(this.barButtonItemWeb);
     this.ribbonPageGroup30.ItemLinks.Add(this.barButtonItemGroups);
     this.ribbonPageGroup30.ItemLinks.Add(this.barButtonItemForum);
     this.ribbonPageGroup30.ItemLinks.Add(this.barButtonItemError);
     this.ribbonPageGroup30.Name = "ribbonPageGroup30";
     this.ribbonPageGroup30.Text = "Ссылки";
     //
     // ribbonPageGroup25
     //
     this.ribbonPageGroup25.ItemLinks.Add(this.barButtonItemExit);
     this.ribbonPageGroup25.Name = "ribbonPageGroup25";
     this.ribbonPageGroup25.Text = "Выход";
     //
     // ribbonPageGroup22
     //
     this.ribbonPageGroup22.ItemLinks.Add(this.barButtonItem5);
     this.ribbonPageGroup22.ItemLinks.Add(this.barButtonItemAbout);
     this.ribbonPageGroup22.Name = "ribbonPageGroup22";
     this.ribbonPageGroup22.Text = "Помощь";
     //
     // ribbonPage1
     //
     this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.ribbonPageGroup21,
     this.ribbonPageGroup6,
     this.ribbonPageGroup26,
     this.ribbonPageGroup12,
     this.ribbonPageGroup2});
     this.ribbonPage1.Image = ((System.Drawing.Image)(resources.GetObject("ribbonPage1.Image")));
     this.ribbonPage1.Name = "ribbonPage1";
     this.ribbonPage1.Text = "Главная";
     //
     // ribbonPageGroup21
     //
     this.ribbonPageGroup21.ItemLinks.Add(this.barButtonItemPack);
     this.ribbonPageGroup21.ItemLinks.Add(this.barButtonItemUnpack);
     this.ribbonPageGroup21.ItemLinks.Add(this.barButtonItemOptions);
     this.ribbonPageGroup21.Name = "ribbonPageGroup21";
     this.ribbonPageGroup21.Text = "Режим";
     //
     // ribbonPageGroup6
     //
     this.ribbonPageGroup6.ItemLinks.Add(this.barButtonItemOptionsLoad);
     this.ribbonPageGroup6.ItemLinks.Add(this.barButtonItemOptionsSave);
     this.ribbonPageGroup6.Name = "ribbonPageGroup6";
     this.ribbonPageGroup6.Text = "Параметры";
     //
     // ribbonPageGroup26
     //
     this.ribbonPageGroup26.ItemLinks.Add(this.barButtonItemGamma);
     this.ribbonPageGroup26.Name = "ribbonPageGroup26";
     this.ribbonPageGroup26.Text = "Анализ";
     //
     // ribbonPageGroup12
     //
     this.ribbonPageGroup12.ItemLinks.Add(this.barButtonItemExit);
     this.ribbonPageGroup12.Name = "ribbonPageGroup12";
     this.ribbonPageGroup12.Text = "Выход";
     //
     // ribbonPageGroup2
     //
     this.ribbonPageGroup2.ItemLinks.Add(this.barButtonItem5);
     this.ribbonPageGroup2.ItemLinks.Add(this.barButtonItemAbout);
     this.ribbonPageGroup2.Name = "ribbonPageGroup2";
     this.ribbonPageGroup2.Text = "Помощь";
     //
     // ribbonPage3
     //
     this.ribbonPage3.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.ribbonPageGroup1,
     this.ribbonPageGroup3,
     this.ribbonPageGroup24,
     this.ribbonPageGroup23});
     this.ribbonPage3.Image = ((System.Drawing.Image)(resources.GetObject("ribbonPage3.Image")));
     this.ribbonPage3.Name = "ribbonPage3";
     this.ribbonPage3.Text = "Вид";
     //
     // ribbonPageGroup1
     //
     this.ribbonPageGroup1.ItemLinks.Add(this.barButtonItemPack);
     this.ribbonPageGroup1.ItemLinks.Add(this.barButtonItemUnpack);
     this.ribbonPageGroup1.ItemLinks.Add(this.barButtonItemOptions);
     this.ribbonPageGroup1.Name = "ribbonPageGroup1";
     this.ribbonPageGroup1.Text = "Режим";
     //
     // ribbonPageGroup3
     //
     this.ribbonPageGroup3.ItemLinks.Add(this.skinRibbonGalleryBarItem1);
     this.ribbonPageGroup3.Name = "ribbonPageGroup3";
     this.ribbonPageGroup3.Text = "Оболочка";
     //
     // ribbonPageGroup24
     //
     this.ribbonPageGroup24.ItemLinks.Add(this.barButtonItemExit);
     this.ribbonPageGroup24.Name = "ribbonPageGroup24";
     this.ribbonPageGroup24.Text = "Выход";
     //
     // ribbonPageGroup23
     //
     this.ribbonPageGroup23.ItemLinks.Add(this.barButtonItem5);
     this.ribbonPageGroup23.ItemLinks.Add(this.barButtonItemAbout);
     this.ribbonPageGroup23.Name = "ribbonPageGroup23";
     this.ribbonPageGroup23.Text = "Помощь";
     //
     // defaultLookAndFeel1
     //
     this.defaultLookAndFeel1.LookAndFeel.SkinName = "Metropolis";
     //
     // workspaceManager1
     //
     this.workspaceManager1.TargetControl = this;
     this.workspaceManager1.TransitionType = pushTransition1;
     //
     // splitContainerControl1
     //
     this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl1.Location = new System.Drawing.Point(0, 249);
     this.splitContainerControl1.Name = "splitContainerControl1";
     this.splitContainerControl1.Panel1.Controls.Add(this.navBarControl1);
     this.splitContainerControl1.Panel1.Text = "Panel1";
     this.splitContainerControl1.Panel2.Controls.Add(this.mainControl);
     this.splitContainerControl1.Panel2.Text = "Panel2";
     this.splitContainerControl1.Size = new System.Drawing.Size(1215, 566);
     this.splitContainerControl1.SplitterPosition = 211;
     this.splitContainerControl1.TabIndex = 5;
     this.splitContainerControl1.Text = "splitContainerControl1";
     //
     // navBarControl1
     //
     this.navBarControl1.ActiveGroup = this.navBarGroup1;
     this.navBarControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.navBarControl1.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
     this.navBarGroup1});
     this.navBarControl1.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
     this.navBarItemPack,
     this.navBarItemUnpack,
     this.navBarItemOptions});
     this.navBarControl1.Location = new System.Drawing.Point(0, 0);
     this.navBarControl1.Name = "navBarControl1";
     this.navBarControl1.OptionsNavPane.ExpandedWidth = 211;
     this.navBarControl1.Size = new System.Drawing.Size(211, 566);
     this.navBarControl1.TabIndex = 1;
     this.navBarControl1.Text = "navBarControl1";
     this.navBarControl1.View = new DevExpress.XtraNavBar.ViewInfo.SkinExplorerBarViewInfoRegistrator();
     //
     // navBarGroup1
     //
     this.navBarGroup1.Caption = "Режим";
     this.navBarGroup1.Expanded = true;
     this.navBarGroup1.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemPack),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemUnpack),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItemOptions)});
     this.navBarGroup1.LargeImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup1.LargeImage")));
     this.navBarGroup1.Name = "navBarGroup1";
     this.navBarGroup1.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarGroup1.SmallImage")));
     //
     // navBarItemPack
     //
     this.navBarItemPack.Caption = "Упаковать";
     this.navBarItemPack.LargeImage = ((System.Drawing.Image)(resources.GetObject("navBarItemPack.LargeImage")));
     this.navBarItemPack.Name = "navBarItemPack";
     this.navBarItemPack.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarItemPack.SmallImage")));
     this.navBarItemPack.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.Pack_LinkClicked);
     //
     // navBarItemUnpack
     //
     this.navBarItemUnpack.Caption = "Распаковать";
     this.navBarItemUnpack.LargeImage = ((System.Drawing.Image)(resources.GetObject("navBarItemUnpack.LargeImage")));
     this.navBarItemUnpack.Name = "navBarItemUnpack";
     this.navBarItemUnpack.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarItemUnpack.SmallImage")));
     this.navBarItemUnpack.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.Unpack_LinkClicked);
     //
     // navBarItemOptions
     //
     this.navBarItemOptions.Caption = "Параметры";
     this.navBarItemOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("navBarItemOptions.LargeImage")));
     this.navBarItemOptions.Name = "navBarItemOptions";
     this.navBarItemOptions.SmallImage = ((System.Drawing.Image)(resources.GetObject("navBarItemOptions.SmallImage")));
     this.navBarItemOptions.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.Options_LinkClicked);
     //
     // mainControl
     //
     this.mainControl.Dock = System.Windows.Forms.DockStyle.Fill;
     this.mainControl.Location = new System.Drawing.Point(0, 0);
     this.mainControl.Name = "mainControl";
     this.mainControl.SelectedMode = Steganography.BbsControl.Mode.Pack;
     this.mainControl.Size = new System.Drawing.Size(986, 566);
     this.mainControl.TabIndex = 3;
     this.mainControl.TabsVisible = true;
     this.mainControl.SelectedModeChanged += new Steganography.BbsControl.SelectedModeChangedEventHandler(this.SelectedModeChanged);
     //
     // ribbonPageGroup4
     //
     this.ribbonPageGroup4.Name = "ribbonPageGroup4";
     this.ribbonPageGroup4.Text = "ribbonPageGroup4";
     //
     // ribbonPage2
     //
     this.ribbonPage2.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.ribbonPageGroup4});
     this.ribbonPage2.Image = ((System.Drawing.Image)(resources.GetObject("ribbonPage2.Image")));
     this.ribbonPage2.Name = "ribbonPage2";
     this.ribbonPage2.Text = "Помощь";
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 19F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1215, 870);
     this.Controls.Add(this.splitContainerControl1);
     this.Controls.Add(this.ribbonStatusBar2);
     this.Controls.Add(this.ribbonControl);
     this.Name = "MainForm";
     this.Ribbon = this.ribbonControl;
     this.StatusBar = this.ribbonStatusBar2;
     this.Text = "Метод широкополосных сигналов";
     ((System.ComponentModel.ISupportInitialize)(this.ribbonControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.applicationMenu2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
     this.splitContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.navBarControl1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #37
0
        public MainEditor()
        {
            OMLEngine.Utilities.RawSetup();

            SplashScreen2.ShowSplashScreen();

            InitializeComponent();

            if (InitData())
            {
                // Setup views
                splitContainerDetails.Panel2.Controls["titleEditor"].Visible = true;
                splitContainerDetails.Panel2.Controls["bioDataEditor"].Visible = false;
                splitContainerDetails.Panel2.Controls["genreMetaDataEditor"].Visible = false;
                splitContainerDetails.Panel2.Controls["titlesListView"].Visible = false;
                splitContainerDetails.Panel2.Controls["titleEditor"].Dock = DockStyle.Fill;
                splitContainerDetails.Panel2.Controls["bioDataEditor"].Dock = DockStyle.Fill;
                splitContainerDetails.Panel2.Controls["genreMetaDataEditor"].Dock = DockStyle.Fill;
                splitContainerDetails.Panel2.Controls["titlesListView"].Dock = DockStyle.Fill;
                alwaysShowTitleListToolStripMenuItem.Checked = OMLEngine.Settings.OMLSettings.DBEAlwaysShowTitleList;
                showAllItemsInTitleListToolStripMenuItem.Checked = OMLEngine.Settings.OMLSettings.ShowSubFolderTitles;

                this.DesktopBounds = new Rectangle(Properties.Settings.Default.Location, Properties.Settings.Default.Size);
                this.WindowState = (FormWindowState)Enum.Parse(typeof(FormWindowState), Properties.Settings.Default.WindowState);

                CurrentNavigation = mainNav.ActiveGroup;
            }
            else
            {
                Environment.Exit(-1);
            }
        }
 /// <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(frmClipboardMan));
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.addButton = new System.Windows.Forms.ToolStripButton();
     this.removeButton = new System.Windows.Forms.ToolStripButton();
     this.LuuSep = new System.Windows.Forms.ToolStripSeparator();
     this.closeButton = new System.Windows.Forms.ToolStripButton();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.lbl_doituongClipboard = new DevExpress.XtraEditors.LabelControl();
     this.lblCat = new System.Windows.Forms.Label();
     this.dockManager1 = new DevExpress.XtraBars.Docking.DockManager(this.components);
     this.dockPanel1 = new DevExpress.XtraBars.Docking.DockPanel();
     this.dockPanel1_Container = new DevExpress.XtraBars.Docking.ControlContainer();
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
     this.navBarControl3 = new DevExpress.XtraNavBar.NavBarControl();
     this.groupClipboard = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarItem10 = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarControl2 = new DevExpress.XtraNavBar.NavBarControl();
     this.navBarItem1 = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItem2 = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItem3 = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItem4 = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItem5 = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItem6 = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItem7 = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItem8 = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItem9 = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarControl1 = new DevExpress.XtraNavBar.NavBarControl();
     this.panel1 = new System.Windows.Forms.Panel();
     this.dgc_details = new DevExpress.XtraGrid.GridControl();
     this.dgv_details = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.label1 = new System.Windows.Forms.Label();
     this.toolStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).BeginInit();
     this.dockPanel1.SuspendLayout();
     this.dockPanel1_Container.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
     this.panelControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControl3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControl2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControl1)).BeginInit();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgc_details)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgv_details)).BeginInit();
     this.SuspendLayout();
     //
     // toolStrip1
     //
     this.toolStrip1.BackColor = System.Drawing.Color.Transparent;
     this.toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.toolStrip1.ImageScalingSize = new System.Drawing.Size(23, 23);
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.addButton,
     this.removeButton,
     this.LuuSep,
     this.closeButton});
     this.toolStrip1.Location = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Size = new System.Drawing.Size(580, 25);
     this.toolStrip1.TabIndex = 1;
     this.toolStrip1.Text = "toolStrip1";
     //
     // addButton
     //
     this.addButton.Name = "addButton";
     this.addButton.Size = new System.Drawing.Size(98, 22);
     this.addButton.Tag = "";
     this.addButton.Text = " &Xóa tất cả dữ liệu";
     this.addButton.Click += new System.EventHandler(this.addButton_Click);
     //
     // removeButton
     //
     this.removeButton.Name = "removeButton";
     this.removeButton.Size = new System.Drawing.Size(101, 22);
     this.removeButton.Tag = "";
     this.removeButton.Text = "Xóa các &dòng chọn";
     this.removeButton.Click += new System.EventHandler(this.removeButton_Click);
     //
     // LuuSep
     //
     this.LuuSep.Name = "LuuSep";
     this.LuuSep.Size = new System.Drawing.Size(6, 25);
     this.LuuSep.Visible = false;
     //
     // closeButton
     //
     this.closeButton.Name = "closeButton";
     this.closeButton.Size = new System.Drawing.Size(43, 22);
     this.closeButton.Text = " Đón&g ";
     this.closeButton.Click += new System.EventHandler(this.closeButton_Click);
     //
     // panelControl1
     //
     this.panelControl1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl1.Controls.Add(this.lbl_doituongClipboard);
     this.panelControl1.Controls.Add(this.lblCat);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl1.Location = new System.Drawing.Point(176, 3);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(580, 37);
     this.panelControl1.TabIndex = 3;
     //
     // lbl_doituongClipboard
     //
     this.lbl_doituongClipboard.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbl_doituongClipboard.Appearance.ForeColor = System.Drawing.Color.Black;
     this.lbl_doituongClipboard.Appearance.Options.UseFont = true;
     this.lbl_doituongClipboard.Appearance.Options.UseForeColor = true;
     this.lbl_doituongClipboard.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.lbl_doituongClipboard.Location = new System.Drawing.Point(6, 8);
     this.lbl_doituongClipboard.Name = "lbl_doituongClipboard";
     this.lbl_doituongClipboard.Size = new System.Drawing.Size(168, 23);
     this.lbl_doituongClipboard.TabIndex = 1;
     this.lbl_doituongClipboard.Text = "Đối tượng Clipboard";
     //
     // lblCat
     //
     this.lblCat.AutoSize = true;
     this.lblCat.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblCat.Location = new System.Drawing.Point(7, 5);
     this.lblCat.Name = "lblCat";
     this.lblCat.Size = new System.Drawing.Size(0, 25);
     this.lblCat.TabIndex = 0;
     //
     // dockManager1
     //
     this.dockManager1.Form = this;
     this.dockManager1.RootPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
     this.dockPanel1});
     this.dockManager1.TopZIndexControls.AddRange(new string[] {
     "DevExpress.XtraBars.BarDockControl",
     "System.Windows.Forms.StatusBar"});
     //
     // dockPanel1
     //
     this.dockPanel1.Controls.Add(this.dockPanel1_Container);
     this.dockPanel1.Dock = DevExpress.XtraBars.Docking.DockingStyle.Left;
     this.dockPanel1.ID = new System.Guid("47482ff7-7f88-4274-9ba9-35bc499857c9");
     this.dockPanel1.Location = new System.Drawing.Point(0, 0);
     this.dockPanel1.Name = "dockPanel1";
     this.dockPanel1.Options.AllowDockBottom = false;
     this.dockPanel1.Options.AllowDockFill = false;
     this.dockPanel1.Options.AllowDockRight = false;
     this.dockPanel1.Options.AllowDockTop = false;
     this.dockPanel1.Options.AllowFloating = false;
     this.dockPanel1.Options.FloatOnDblClick = false;
     this.dockPanel1.Options.ShowCloseButton = false;
     this.dockPanel1.Size = new System.Drawing.Size(173, 485);
     this.dockPanel1.Text = "Clipboard";
     //
     // dockPanel1_Container
     //
     this.dockPanel1_Container.Controls.Add(this.panelControl2);
     this.dockPanel1_Container.Controls.Add(this.navBarControl1);
     this.dockPanel1_Container.Location = new System.Drawing.Point(3, 25);
     this.dockPanel1_Container.Name = "dockPanel1_Container";
     this.dockPanel1_Container.Size = new System.Drawing.Size(167, 457);
     this.dockPanel1_Container.TabIndex = 0;
     //
     // panelControl2
     //
     this.panelControl2.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.panelControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl2.Controls.Add(this.panelControl3);
     this.panelControl2.Controls.Add(this.navBarControl2);
     this.panelControl2.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl2.Location = new System.Drawing.Point(0, 0);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(167, 285);
     this.panelControl2.TabIndex = 2;
     //
     // panelControl3
     //
     this.panelControl3.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.panelControl3.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl3.Controls.Add(this.navBarControl3);
     this.panelControl3.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl3.Location = new System.Drawing.Point(0, 0);
     this.panelControl3.Name = "panelControl3";
     this.panelControl3.Size = new System.Drawing.Size(167, 387);
     this.panelControl3.TabIndex = 1;
     //
     // navBarControl3
     //
     this.navBarControl3.ActiveGroup = this.groupClipboard;
     this.navBarControl3.ContentButtonHint = null;
     this.navBarControl3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.navBarControl3.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
     this.groupClipboard});
     this.navBarControl3.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
     this.navBarItem10});
     this.navBarControl3.Location = new System.Drawing.Point(0, 0);
     this.navBarControl3.Name = "navBarControl3";
     this.navBarControl3.OptionsNavPane.ExpandedWidth = 194;
     this.navBarControl3.Size = new System.Drawing.Size(167, 387);
     this.navBarControl3.TabIndex = 0;
     this.navBarControl3.Text = "navBarControl3";
     //
     // groupClipboard
     //
     this.groupClipboard.Caption = "Đối tượng";
     this.groupClipboard.Expanded = true;
     this.groupClipboard.LargeImage = ((System.Drawing.Image)(resources.GetObject("groupClipboard.LargeImage")));
     this.groupClipboard.Name = "groupClipboard";
     //
     // navBarItem10
     //
     this.navBarItem10.Caption = "navBarItem10";
     this.navBarItem10.LargeImage = ((System.Drawing.Image)(resources.GetObject("navBarItem10.LargeImage")));
     this.navBarItem10.Name = "navBarItem10";
     //
     // navBarControl2
     //
     this.navBarControl2.ActiveGroup = null;
     this.navBarControl2.ContentButtonHint = null;
     this.navBarControl2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.navBarControl2.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
     this.navBarItem1,
     this.navBarItem2,
     this.navBarItem3,
     this.navBarItem4,
     this.navBarItem5,
     this.navBarItem6,
     this.navBarItem7,
     this.navBarItem8,
     this.navBarItem9});
     this.navBarControl2.Location = new System.Drawing.Point(0, 0);
     this.navBarControl2.Name = "navBarControl2";
     this.navBarControl2.OptionsNavPane.ExpandedWidth = 194;
     this.navBarControl2.Size = new System.Drawing.Size(167, 285);
     this.navBarControl2.TabIndex = 0;
     this.navBarControl2.Text = "navBarControl2";
     //
     // navBarItem1
     //
     this.navBarItem1.Caption = "navBarItem1";
     this.navBarItem1.Name = "navBarItem1";
     //
     // navBarItem2
     //
     this.navBarItem2.Caption = "navBarItem2";
     this.navBarItem2.Name = "navBarItem2";
     //
     // navBarItem3
     //
     this.navBarItem3.Caption = "navBarItem3";
     this.navBarItem3.Name = "navBarItem3";
     //
     // navBarItem4
     //
     this.navBarItem4.Caption = "navBarItem4";
     this.navBarItem4.Name = "navBarItem4";
     //
     // navBarItem5
     //
     this.navBarItem5.Caption = "navBarItem5";
     this.navBarItem5.Name = "navBarItem5";
     //
     // navBarItem6
     //
     this.navBarItem6.Caption = "navBarItem6";
     this.navBarItem6.Name = "navBarItem6";
     //
     // navBarItem7
     //
     this.navBarItem7.Caption = "navBarItem7";
     this.navBarItem7.Name = "navBarItem7";
     //
     // navBarItem8
     //
     this.navBarItem8.Caption = "navBarItem8";
     this.navBarItem8.Name = "navBarItem8";
     //
     // navBarItem9
     //
     this.navBarItem9.Caption = "navBarItem9";
     this.navBarItem9.Name = "navBarItem9";
     //
     // navBarControl1
     //
     this.navBarControl1.ActiveGroup = null;
     this.navBarControl1.Appearance.Background.Options.UseTextOptions = true;
     this.navBarControl1.Appearance.Background.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.navBarControl1.ContentButtonHint = null;
     this.navBarControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.navBarControl1.Location = new System.Drawing.Point(0, 0);
     this.navBarControl1.Name = "navBarControl1";
     this.navBarControl1.OptionsNavPane.ExpandedWidth = 194;
     this.navBarControl1.Size = new System.Drawing.Size(167, 457);
     this.navBarControl1.TabIndex = 1;
     this.navBarControl1.Text = "navBarControl1";
     //
     // panel1
     //
     this.panel1.Controls.Add(this.dgc_details);
     this.panel1.Controls.Add(this.toolStrip1);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(176, 40);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(580, 442);
     this.panel1.TabIndex = 7;
     //
     // dgc_details
     //
     this.dgc_details.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dgc_details.EmbeddedNavigator.Name = "";
     this.dgc_details.FormsUseDefaultLookAndFeel = false;
     this.dgc_details.Location = new System.Drawing.Point(0, 25);
     this.dgc_details.MainView = this.dgv_details;
     this.dgc_details.Name = "dgc_details";
     this.dgc_details.Size = new System.Drawing.Size(580, 417);
     this.dgc_details.TabIndex = 2;
     this.dgc_details.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.dgv_details});
     //
     // dgv_details
     //
     this.dgv_details.GridControl = this.dgc_details;
     this.dgv_details.Name = "dgv_details";
     this.dgv_details.OptionsBehavior.Editable = false;
     this.dgv_details.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.dgv_details.OptionsSelection.MultiSelect = true;
     this.dgv_details.OptionsView.ShowGroupPanel = false;
     this.dgv_details.RowCountChanged += new System.EventHandler(this.dgv_details_RowCountChanged);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(7, 5);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(0, 25);
     this.label1.TabIndex = 0;
     //
     // TrialfrmClipboardMan
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(759, 485);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.panelControl1);
     this.Controls.Add(this.dockPanel1);
     this.Name = "TrialfrmClipboardMan";
     this.Padding = new System.Windows.Forms.Padding(3);
     this.ShowInTaskbar = false;
     this.Text = "Quản lý Clipboard";
     this.Load += new System.EventHandler(this.frmClipboardMan_Load);
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).EndInit();
     this.dockPanel1.ResumeLayout(false);
     this.dockPanel1_Container.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
     this.panelControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.navBarControl3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControl2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControl1)).EndInit();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgc_details)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgv_details)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormPrincipal));
     this.navBarControl1 = new DevExpress.XtraNavBar.NavBarControl();
     this.grProcess = new DevExpress.XtraNavBar.NavBarGroup();
     this.nbiPrueba = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiSolution = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiMethod = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiReception = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiModuloQaQc = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiAuthorizations = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiPrice = new DevExpress.XtraNavBar.NavBarItem();
     this.grMant = new DevExpress.XtraNavBar.NavBarGroup();
     this.nbiFactorEstequ = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiCompuestos = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiDecrees = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiItemMatrix = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiGroupMatrix = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiElement = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiMaterialReference = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiTypeSample = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiTypeSolution = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiDigestion = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiDescSample = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiClient = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiMeasurement_unit = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiConvertUM = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiCorrelative = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiReactive = new DevExpress.XtraNavBar.NavBarItem();
     this.grSecurity = new DevExpress.XtraNavBar.NavBarGroup();
     this.nbiUsers = new DevExpress.XtraNavBar.NavBarItem();
     this.barManager1 = new DevExpress.XtraBars.BarManager();
     this.bar1 = new DevExpress.XtraBars.Bar();
     this.barSubItem1 = new DevExpress.XtraBars.BarSubItem();
     this.barBottom = new DevExpress.XtraBars.Bar();
     this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
     this.barUsuario = new DevExpress.XtraBars.BarStaticItem();
     this.barStaticItem2 = new DevExpress.XtraBars.BarStaticItem();
     this.barHora = new DevExpress.XtraBars.BarStaticItem();
     this.barStaticItem3 = new DevExpress.XtraBars.BarStaticItem();
     this.baritemModulo = new DevExpress.XtraBars.BarStaticItem();
     this.barStaticItem4 = new DevExpress.XtraBars.BarStaticItem();
     this.baritemBoton = new DevExpress.XtraBars.BarButtonItem();
     this.baritemAccion = new DevExpress.XtraBars.BarStaticItem();
     this.bar3 = new DevExpress.XtraBars.Bar();
     this.btFind = new DevExpress.XtraBars.BarButtonItem();
     this.btPrevius = new DevExpress.XtraBars.BarButtonItem();
     this.btNext = 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.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItem2 = new DevExpress.XtraBars.BarSubItem();
     this.barToolbarsListItem1 = new DevExpress.XtraBars.BarToolbarsListItem();
     this.barMdiChildrenListItem1 = new DevExpress.XtraBars.BarMdiChildrenListItem();
     this.expandablePanel1 = new DevComponents.DotNetBar.ExpandablePanel();
     this.defaultLookAndFeel1 = new DevExpress.LookAndFeel.DefaultLookAndFeel(this.components);
     this.nbiSolCalibs = new DevExpress.XtraNavBar.NavBarItem();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     this.expandablePanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // navBarControl1
     //
     this.navBarControl1.ActiveGroup = this.grProcess;
     this.navBarControl1.BackColor = System.Drawing.Color.Transparent;
     this.navBarControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.navBarControl1.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
     this.grProcess,
     this.grMant,
     this.grSecurity});
     this.navBarControl1.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
     this.nbiMethod,
     this.nbiDigestion,
     this.nbiTypeSample,
     this.nbiElement,
     this.nbiReception,
     this.nbiDescSample,
     this.nbiClient,
     this.nbiMeasurement_unit,
     this.nbiConvertUM,
     this.nbiCorrelative,
     this.nbiMaterialReference,
     this.nbiModuloQaQc,
     this.nbiUsers,
     this.nbiSolution,
     this.nbiTypeSolution,
     this.nbiAuthorizations,
     this.nbiReactive,
     this.nbiPrice,
     this.nbiGroupMatrix,
     this.nbiItemMatrix,
     this.nbiDecrees,
     this.nbiPrueba,
     this.nbiCompuestos,
     this.nbiFactorEstequ,
     this.nbiSolCalibs});
     this.navBarControl1.Location = new System.Drawing.Point(0, 26);
     this.navBarControl1.LookAndFeel.SkinName = "Money Twins";
     this.navBarControl1.Name = "navBarControl1";
     this.navBarControl1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.navBarControl1.Size = new System.Drawing.Size(166, 423);
     this.navBarControl1.TabIndex = 14;
     this.navBarControl1.Text = "navBarControl1";
     this.navBarControl1.View = new DevExpress.XtraNavBar.ViewInfo.StandardSkinNavigationPaneViewInfoRegistrator("Money Twins");
     //
     // grProcess
     //
     this.grProcess.Caption = "Procesos";
     this.grProcess.Expanded = true;
     this.grProcess.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiSolCalibs),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiPrueba),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiSolution),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiMethod),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiReception),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiModuloQaQc),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiAuthorizations),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiPrice)});
     this.grProcess.Name = "grProcess";
     //
     // nbiPrueba
     //
     this.nbiPrueba.Caption = "Preparación de Muestras";
     this.nbiPrueba.Name = "nbiPrueba";
     this.nbiPrueba.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiPrueba_LinkClicked);
     //
     // nbiSolution
     //
     this.nbiSolution.Caption = "Soluciones Intermedias";
     this.nbiSolution.Name = "nbiSolution";
     this.nbiSolution.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiSolution_LinkClicked);
     //
     // nbiMethod
     //
     this.nbiMethod.Caption = "Métodos";
     this.nbiMethod.Name = "nbiMethod";
     this.nbiMethod.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiMethod_LinkClicked);
     //
     // nbiReception
     //
     this.nbiReception.Caption = "Registro de Recepción";
     this.nbiReception.Name = "nbiReception";
     this.nbiReception.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiReception_LinkClicked);
     //
     // nbiModuloQaQc
     //
     this.nbiModuloQaQc.Caption = "Módulo QaQc";
     this.nbiModuloQaQc.Name = "nbiModuloQaQc";
     this.nbiModuloQaQc.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiModuloQaQc_LinkClicked);
     //
     // nbiAuthorizations
     //
     this.nbiAuthorizations.Caption = "Autorizaciones";
     this.nbiAuthorizations.Name = "nbiAuthorizations";
     this.nbiAuthorizations.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiAuthorizations_LinkClicked);
     //
     // nbiPrice
     //
     this.nbiPrice.Caption = "Cotizaciones";
     this.nbiPrice.Name = "nbiPrice";
     this.nbiPrice.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiPrice_LinkClicked);
     //
     // grMant
     //
     this.grMant.Caption = "Mantenimientos";
     this.grMant.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiFactorEstequ),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiCompuestos),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiDecrees),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiItemMatrix),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiGroupMatrix),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiElement),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiMaterialReference),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiTypeSample),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiTypeSolution),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiDigestion),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiDescSample),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiClient),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiMeasurement_unit),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiConvertUM),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiCorrelative),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiReactive)});
     this.grMant.Name = "grMant";
     //
     // nbiFactorEstequ
     //
     this.nbiFactorEstequ.Caption = "Factores Estequiométricos";
     this.nbiFactorEstequ.Name = "nbiFactorEstequ";
     this.nbiFactorEstequ.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiFactorEstequ_LinkClicked);
     //
     // nbiCompuestos
     //
     this.nbiCompuestos.Caption = "Compuestos";
     this.nbiCompuestos.Name = "nbiCompuestos";
     this.nbiCompuestos.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiCompuestos_LinkClicked);
     //
     // nbiDecrees
     //
     this.nbiDecrees.Caption = "Decretos";
     this.nbiDecrees.Name = "nbiDecrees";
     this.nbiDecrees.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiDecrees_LinkClicked);
     //
     // nbiItemMatrix
     //
     this.nbiItemMatrix.Caption = "Matriz";
     this.nbiItemMatrix.Name = "nbiItemMatrix";
     this.nbiItemMatrix.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiItemMatrix_LinkClicked);
     //
     // nbiGroupMatrix
     //
     this.nbiGroupMatrix.Caption = "Grupo de Matriz";
     this.nbiGroupMatrix.Name = "nbiGroupMatrix";
     this.nbiGroupMatrix.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiGroupMatrix_LinkClicked);
     //
     // nbiElement
     //
     this.nbiElement.Caption = "Elemento";
     this.nbiElement.Name = "nbiElement";
     this.nbiElement.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiElement_LinkClicked);
     //
     // nbiMaterialReference
     //
     this.nbiMaterialReference.Appearance.Options.UseTextOptions = true;
     this.nbiMaterialReference.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.nbiMaterialReference.Caption = "Material de Referencia y Sales";
     this.nbiMaterialReference.Name = "nbiMaterialReference";
     this.nbiMaterialReference.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiMaterialReference_LinkClicked);
     //
     // nbiTypeSample
     //
     this.nbiTypeSample.Caption = "Tipo de muestra";
     this.nbiTypeSample.Name = "nbiTypeSample";
     this.nbiTypeSample.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiTypeSample_LinkClicked);
     //
     // nbiTypeSolution
     //
     this.nbiTypeSolution.Caption = "Tipo de Soluciones";
     this.nbiTypeSolution.Name = "nbiTypeSolution";
     this.nbiTypeSolution.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiTypeSolution_LinkClicked);
     //
     // nbiDigestion
     //
     this.nbiDigestion.Caption = "Digestion";
     this.nbiDigestion.Name = "nbiDigestion";
     this.nbiDigestion.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiDigestion_LinkClicked);
     //
     // nbiDescSample
     //
     this.nbiDescSample.Caption = "Descripción de Muestra";
     this.nbiDescSample.Name = "nbiDescSample";
     this.nbiDescSample.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiDescSample_LinkClicked);
     //
     // nbiClient
     //
     this.nbiClient.Caption = "Empresa";
     this.nbiClient.Name = "nbiClient";
     this.nbiClient.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiClient_LinkClicked);
     //
     // nbiMeasurement_unit
     //
     this.nbiMeasurement_unit.Caption = "Unidad de Medida";
     this.nbiMeasurement_unit.Name = "nbiMeasurement_unit";
     this.nbiMeasurement_unit.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiMeasurement_unit_LinkClicked);
     //
     // nbiConvertUM
     //
     this.nbiConvertUM.Caption = "Conversion UM";
     this.nbiConvertUM.Name = "nbiConvertUM";
     this.nbiConvertUM.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiConvertUM_LinkClicked);
     //
     // nbiCorrelative
     //
     this.nbiCorrelative.Caption = "Correlativos";
     this.nbiCorrelative.Name = "nbiCorrelative";
     this.nbiCorrelative.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiCorrelative_LinkClicked);
     //
     // nbiReactive
     //
     this.nbiReactive.Caption = "Reactivos";
     this.nbiReactive.Name = "nbiReactive";
     this.nbiReactive.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiReactive_LinkClicked);
     //
     // grSecurity
     //
     this.grSecurity.Caption = "Seguridad";
     this.grSecurity.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiUsers)});
     this.grSecurity.Name = "grSecurity";
     //
     // nbiUsers
     //
     this.nbiUsers.Caption = "Crear Usuarios";
     this.nbiUsers.Name = "nbiUsers";
     this.nbiUsers.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiUsers_LinkClicked);
     //
     // barManager1
     //
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.bar1,
     this.barBottom,
     this.bar3});
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.Form = this;
     this.barManager1.Images = this.imageList1;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.barStaticItem1,
     this.barUsuario,
     this.barSubItem1,
     this.barButtonItem1,
     this.barStaticItem2,
     this.barHora,
     this.barStaticItem3,
     this.baritemModulo,
     this.barStaticItem4,
     this.baritemBoton,
     this.baritemAccion,
     this.btFind,
     this.barSubItem2,
     this.barToolbarsListItem1,
     this.barMdiChildrenListItem1,
     this.btPrevius,
     this.btNext});
     this.barManager1.MainMenu = this.bar1;
     this.barManager1.MaxItemId = 21;
     this.barManager1.StatusBar = this.barBottom;
     //
     // bar1
     //
     this.bar1.BarName = "Custom 1";
     this.bar1.DockCol = 0;
     this.bar1.DockRow = 0;
     this.bar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem1)});
     this.bar1.OptionsBar.MultiLine = true;
     this.bar1.OptionsBar.UseWholeRow = true;
     this.bar1.Text = "Custom 1";
     //
     // barSubItem1
     //
     this.barSubItem1.Caption = "Menú";
     this.barSubItem1.Id = 2;
     this.barSubItem1.Name = "barSubItem1";
     //
     // barBottom
     //
     this.barBottom.BarName = "Custom 2";
     this.barBottom.CanDockStyle = DevExpress.XtraBars.BarCanDockStyle.Bottom;
     this.barBottom.DockCol = 0;
     this.barBottom.DockRow = 0;
     this.barBottom.DockStyle = DevExpress.XtraBars.BarDockStyle.Bottom;
     this.barBottom.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barStaticItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.barUsuario),
     new DevExpress.XtraBars.LinkPersistInfo(this.barStaticItem2),
     new DevExpress.XtraBars.LinkPersistInfo(this.barHora),
     new DevExpress.XtraBars.LinkPersistInfo(this.barStaticItem3),
     new DevExpress.XtraBars.LinkPersistInfo(this.baritemModulo),
     new DevExpress.XtraBars.LinkPersistInfo(this.barStaticItem4),
     new DevExpress.XtraBars.LinkPersistInfo(this.baritemBoton),
     new DevExpress.XtraBars.LinkPersistInfo(this.baritemAccion)});
     this.barBottom.OptionsBar.AllowQuickCustomization = false;
     this.barBottom.OptionsBar.DrawDragBorder = false;
     this.barBottom.OptionsBar.UseWholeRow = true;
     this.barBottom.Text = "Custom 2";
     //
     // barStaticItem1
     //
     this.barStaticItem1.Caption = "Usuario:";
     this.barStaticItem1.Id = 0;
     this.barStaticItem1.Name = "barStaticItem1";
     this.barStaticItem1.OwnFont = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.World);
     this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
     this.barStaticItem1.UseOwnFont = true;
     //
     // barUsuario
     //
     this.barUsuario.Id = 1;
     this.barUsuario.Name = "barUsuario";
     this.barUsuario.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // barStaticItem2
     //
     this.barStaticItem2.Caption = "Hora:";
     this.barStaticItem2.Id = 4;
     this.barStaticItem2.Name = "barStaticItem2";
     this.barStaticItem2.OwnFont = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.World);
     this.barStaticItem2.TextAlignment = System.Drawing.StringAlignment.Near;
     this.barStaticItem2.UseOwnFont = true;
     //
     // barHora
     //
     this.barHora.Id = 5;
     this.barHora.Name = "barHora";
     this.barHora.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // barStaticItem3
     //
     this.barStaticItem3.Caption = "Módulo:";
     this.barStaticItem3.Id = 6;
     this.barStaticItem3.Name = "barStaticItem3";
     this.barStaticItem3.OwnFont = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.World);
     this.barStaticItem3.TextAlignment = System.Drawing.StringAlignment.Near;
     this.barStaticItem3.UseOwnFont = true;
     //
     // baritemModulo
     //
     this.baritemModulo.Id = 7;
     this.baritemModulo.Name = "baritemModulo";
     this.baritemModulo.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // barStaticItem4
     //
     this.barStaticItem4.Caption = "Accion:";
     this.barStaticItem4.Id = 8;
     this.barStaticItem4.Name = "barStaticItem4";
     this.barStaticItem4.OwnFont = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.World);
     this.barStaticItem4.TextAlignment = System.Drawing.StringAlignment.Near;
     this.barStaticItem4.UseOwnFont = true;
     //
     // baritemBoton
     //
     this.baritemBoton.Id = 10;
     this.baritemBoton.Name = "baritemBoton";
     //
     // baritemAccion
     //
     this.baritemAccion.Id = 11;
     this.baritemAccion.Name = "baritemAccion";
     this.baritemAccion.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // bar3
     //
     this.bar3.BarName = "Custom 3";
     this.bar3.DockCol = 0;
     this.bar3.DockRow = 1;
     this.bar3.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar3.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.btFind),
     new DevExpress.XtraBars.LinkPersistInfo(this.btPrevius),
     new DevExpress.XtraBars.LinkPersistInfo(this.btNext)});
     this.bar3.OptionsBar.DrawDragBorder = false;
     this.bar3.OptionsBar.UseWholeRow = true;
     this.bar3.Text = "Custom 3";
     this.bar3.Visible = false;
     //
     // btFind
     //
     this.btFind.Caption = "Buscar";
     this.btFind.Id = 12;
     this.btFind.ImageIndex = 2;
     this.btFind.Name = "btFind";
     this.btFind.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btFind_ItemClick);
     //
     // btPrevius
     //
     this.btPrevius.Caption = "barButtonItem2";
     this.btPrevius.Id = 18;
     this.btPrevius.ImageIndex = 4;
     this.btPrevius.Name = "btPrevius";
     this.btPrevius.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btPrevius_ItemClick);
     //
     // btNext
     //
     this.btNext.Caption = "barButtonItem2";
     this.btNext.Id = 19;
     this.btNext.ImageIndex = 3;
     this.btNext.Name = "btNext";
     this.btNext.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btNext_ItemClick);
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "confirmacion.png");
     this.imageList1.Images.SetKeyName(1, "error.png");
     this.imageList1.Images.SetKeyName(2, "find.png");
     this.imageList1.Images.SetKeyName(3, "next.png");
     this.imageList1.Images.SetKeyName(4, "previus.png");
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "prueba";
     this.barButtonItem1.Id = 3;
     this.barButtonItem1.Name = "barButtonItem1";
     //
     // barSubItem2
     //
     this.barSubItem2.Caption = "barSubItem2";
     this.barSubItem2.Id = 13;
     this.barSubItem2.Name = "barSubItem2";
     //
     // barToolbarsListItem1
     //
     this.barToolbarsListItem1.Caption = "barToolbarsListItem1";
     this.barToolbarsListItem1.Id = 15;
     this.barToolbarsListItem1.Name = "barToolbarsListItem1";
     //
     // barMdiChildrenListItem1
     //
     this.barMdiChildrenListItem1.Caption = "barMdiChildrenListItem1";
     this.barMdiChildrenListItem1.Id = 16;
     this.barMdiChildrenListItem1.Name = "barMdiChildrenListItem1";
     //
     // expandablePanel1
     //
     this.expandablePanel1.CollapseDirection = DevComponents.DotNetBar.eCollapseDirection.LeftToRight;
     this.expandablePanel1.Controls.Add(this.navBarControl1);
     this.expandablePanel1.Dock = System.Windows.Forms.DockStyle.Left;
     this.expandablePanel1.Location = new System.Drawing.Point(0, 24);
     this.expandablePanel1.Name = "expandablePanel1";
     this.expandablePanel1.Size = new System.Drawing.Size(166, 449);
     this.expandablePanel1.TabIndex = 16;
     this.expandablePanel1.Text = "expandablePanel1";
     this.expandablePanel1.TitleText = "Lista de Módulos";
     this.expandablePanel1.Visible = false;
     //
     // defaultLookAndFeel1
     //
     this.defaultLookAndFeel1.LookAndFeel.SkinName = "Lilian";
     //
     // nbiSolCalibs
     //
     this.nbiSolCalibs.Caption = "Soluciones de Calibración";
     this.nbiSolCalibs.Name = "nbiSolCalibs";
     this.nbiSolCalibs.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiSolCalibs_LinkClicked);
     //
     // FormPrincipal
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.SystemColors.Control;
     this.ClientSize = new System.Drawing.Size(643, 499);
     this.Controls.Add(this.expandablePanel1);
     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.IsMdiContainer = true;
     this.Name = "FormPrincipal";
     this.Text = "LimsProject";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.Form4_Load);
     ((System.ComponentModel.ISupportInitialize)(this.navBarControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     this.expandablePanel1.ResumeLayout(false);
     this.ResumeLayout(false);
 }