Пример #1
0
        public CmdOpenMxdDoc(LibCerMap.ControlsSynchronizer controlsSynchronizer, DevComponents.DotNetBar.Bar barTable, System.Data.DataTable AttributeRemove, string docName)
        {
            //
            // TODO: Define values for the public properties
            //
            base.m_category = "CustomCE";               //localizable text
            base.m_caption  = "打开地图文档";                 //localizable text
            base.m_message  = "打开地图文档";                 //localizable text
            base.m_toolTip  = "打开地图文档";                 //localizable text
            base.m_name     = "CustomCE.CmdOpenMxdDoc"; //unique id, non-localizable (e.g. "MyCategory_MyCommand")

            try
            {
                //
                // TODO: change bitmap name if necessary
                //
                string bitmapResourceName = GetType().Name + ".bmp";
                base.m_bitmap = new Bitmap(GetType(), bitmapResourceName);

                m_controlsSynchronizer = controlsSynchronizer;
                m_barTable             = barTable;
                m_AttributeRemove      = AttributeRemove;
                m_strDocName           = docName;
            }
            catch (Exception ex)
            {
                System.Diagnostics.Trace.WriteLine(ex.Message, "Invalid Bitmap");
            }
        }
        //双击则创建该线,并弹出缓冲窗体
        public override void OnDblClick()
        {
            //获取折线 并获取当前视图的屏幕显示
            if (m_pNewPolygonFeedback == null)
            {
                return;
            }
            IPolygon pPolygon = m_pNewPolygonFeedback.Stop();

            m_pNewPolygonFeedback = null;

            //不存在,为空。尺寸不够均退出
            if (pPolygon == null || pPolygon.IsEmpty)
            {
                return;
            }
            if (pPolygon.Envelope.Width < 0.01 || pPolygon.Envelope.Height < 0.01)
            {
                return;
            }

            //创建Topo对象,简化后统一空间参考
            ITopologicalOperator pTopo = (ITopologicalOperator)pPolygon;

            pTopo.Simplify();
            pPolygon.Project(m_MapControl.Map.SpatialReference);

            if (m_frmQuery == null)
            {
                m_frmQuery             = new frmQuery(m_MapControl, m_enumQueryMode);
                m_frmQuery.Owner       = m_mainFrm;
                m_frmQuery.FormClosed += new FormClosedEventHandler(frmQuery_FormClosed);
            }
            frmBufferSet pFrmBufSet = new frmBufferSet(pPolygon as IGeometry, m_MapControl.Map, m_frmQuery);
            IGeometry    pGeometry  = pFrmBufSet.GetBufferGeometry();

            if (pGeometry == null || pFrmBufSet.Res == false)
            {
                return;
            }

            // m_frmQuery.Show();
            //m_frmQuery.FillData(m_MapControl.ActiveView.FocusMap, pGeometry);
            _QuerBar.m_pMapControl = m_MapControl;
            _QuerBar.EmergeQueryData(m_MapControl.ActiveView.FocusMap, pGeometry, pFrmBufSet.pesriSpatialRelEnum);
            try
            {
                DevComponents.DotNetBar.Bar pBar = _QuerBar.Parent.Parent as DevComponents.DotNetBar.Bar;
                if (pBar != null)
                {
                    pBar.AutoHide = false;
                    //pBar.SelectedDockTab = 1;
                    int tmpindex = pBar.Items.IndexOf("dockItemDataCheck");
                    pBar.SelectedDockTab = tmpindex;
                }
            }
            catch
            { }
            m_frmQuery = null;
        }
Пример #3
0
        private void QueryForestByGeometry(IGeometry pGeometry, IMap pMap)
        {
            //加进度条 xisheng 2011.06.28
            SysCommon.CProgress vProgress = new SysCommon.CProgress("进度条");
            vProgress.EnableCancel = true;
            vProgress.EnableUserCancel(true);


            vProgress.ShowDescription = true;
            vProgress.FakeProgress    = true;
            vProgress.TopMost         = true;
            vProgress.ShowProgress();
            vProgress.SetProgress("开始查询");
            try
            {
                string strNodeKey = SysCommon.ModSysSetting.GetLinBanLayerNodeKey(Plugin.ModuleCommon.TmpWorkSpace);
                ILayer pLayer     = SysCommon.ModuleMap.GetLayerByNodeKey(null, pMap, strNodeKey, null, true);
                SysCommon.BottomQueryBar pQueryBar = _hook.QueryBar;
                if (pQueryBar.m_WorkSpace == null)
                {
                    pQueryBar.m_WorkSpace = Plugin.ModuleCommon.TmpWorkSpace;
                }
                if (pQueryBar.ListDataNodeKeys == null)
                {
                    pQueryBar.ListDataNodeKeys = Plugin.ModuleCommon.ListUserdataPriID;
                }
                pQueryBar.m_pMapControl = _hook.MapControl;
                //构造查询过滤器
                ISpatialFilter pQueryFilter = new SpatialFilterClass();
                pQueryFilter.Geometry   = pGeometry;
                pQueryFilter.SpatialRel = esriSpatialRelEnum.esriSpatialRelContains;
                esriSelectionResultEnum pSelectionResult = esriSelectionResultEnum.esriSelectionResultNew;

                pQueryBar.m_pMapControl = _hook.MapControl;
                vProgress.SetProgress("获取查询结果...");
                pQueryBar.EmergeQueryData(pLayer as IFeatureLayer, pQueryFilter, vProgress);
                vProgress.Close();
                //pQueryBar.EmergeQueryData(pMap, pGeometry, esriSpatialRelEnum.esriSpatialRelIntersects);
                try
                {
                    DevComponents.DotNetBar.Bar pBar = pQueryBar.Parent.Parent as DevComponents.DotNetBar.Bar;
                    if (pBar != null)
                    {
                        pBar.AutoHide = false;
                        //pBar.SelectedDockTab = 1;
                        int tmpindex = pBar.Items.IndexOf("dockItemDataCheck");
                        pBar.SelectedDockTab = tmpindex;
                    }
                }
                catch
                { }
            }
            catch
            {
                vProgress.Close();
            }
            vProgress = null;
        }
        public override void OnMouseDown(int Button, int Shift, int X, int Y)
        {
            if (Button != 1)
            {
                return;
            }

            if (m_frmQuery == null)
            {
                m_frmQuery             = new frmQuery(m_MapControl, m_enumQueryMode);
                m_frmQuery.Owner       = m_mainFrm;
                m_frmQuery.FormClosed += new FormClosedEventHandler(frmQuery_FormClosed);
            }
            //清除上次的所有元素
            (m_MapControl.Map as IGraphicsContainer).DeleteAllElements();

            ESRI.ArcGIS.Geometry.IPoint pPoint = m_MapControl.ActiveView.ScreenDisplay.DisplayTransformation.ToMapPoint(X, Y);
            if (m_frmBufferSet != null)
            {
                SysCommon.ScreenDraw.list.Remove(m_frmBufferSet.BufferSetAfterDraw);
                m_frmBufferSet.setBufferGeometry(null);
                m_frmBufferSet = null;
            }
            m_frmBufferSet = new frmBufferSet(pPoint as IGeometry, m_MapControl.Map, m_frmQuery);
            IGeometry pGeometry = m_frmBufferSet.GetBufferGeometry();

            if (pGeometry == null || m_frmBufferSet.Res == false)
            {
                return;
            }
            if (this.WriteLog)
            {
                Plugin.LogTable.Writelog("点缓冲查询");//xisheng 日志记录 0928;
            }
            // m_frmQuery.Show();
            ///ZQ 20111119  modify
            //m_frmQuery.FillData(m_MapControl.ActiveView.FocusMap, pGeometry,m_frmBufferSet.pesriSpatialRelEnum);
            _QuerBar.m_pMapControl = m_MapControl;
            _QuerBar.EmergeQueryData(m_MapControl.ActiveView.FocusMap, pGeometry, m_frmBufferSet.pesriSpatialRelEnum);

            try
            {
                DevComponents.DotNetBar.Bar pBar = _QuerBar.Parent.Parent as DevComponents.DotNetBar.Bar;
                if (pBar != null)
                {
                    pBar.AutoHide = false;
                    //pBar.SelectedDockTab = 1;
                    int tmpindex = pBar.Items.IndexOf("dockItemDataCheck");
                    pBar.SelectedDockTab = tmpindex;
                }
            }
            catch
            { }
            //pFrmBufSet.setBufferGeometry(null);
            //pFrmBufSet.Refresh();
            //pFrmBufSet = null;
        }
Пример #5
0
        private DevComponents.DotNetBar.Bar CreateBar(string strName, enumLayType layType)
        {
            DevComponents.DotNetBar.Bar bar = new DevComponents.DotNetBar.Bar();
            bar.AccessibleRole       = System.Windows.Forms.AccessibleRole.ToolBar;
            bar.AlwaysDisplayDockTab = true;
            bar.CanCustomize         = false;
            bar.CanDockBottom        = false;
            bar.CanDockDocument      = true;
            bar.CanDockLeft          = false;
            bar.CanDockRight         = false;
            bar.CanDockTop           = false;
            bar.CanHide          = true;
            bar.CanUndock        = false;
            bar.DockTabAlignment = DevComponents.DotNetBar.eTabStripAlignment.Top;
            bar.LayoutType       = DevComponents.DotNetBar.eLayoutType.DockContainer;
            bar.SelectedDockTab  = 0;
            bar.Stretch          = true;
            bar.Style            = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
            bar.TabStop          = false;
            bar.Name             = strName;

            DevComponents.DotNetBar.DockSite dockSite = null;
            switch (layType)
            {
            case enumLayType.BOTTOM:
                dockSite = dotNetBarManager.BottomDockSite;
                break;

            case enumLayType.FILL:
                dockSite = dotNetBarManager.FillDockSite;
                break;

            case enumLayType.LEFT:
                dockSite = dotNetBarManager.LeftDockSite;
                break;

            case enumLayType.RIGHT:
                dockSite = dotNetBarManager.RightDockSite;
                break;

            case enumLayType.TOP:
                dockSite = dotNetBarManager.TopDockSite;
                break;
            }
            if (dockSite != null)
            {
                dockSite.Controls.Add(bar);
                dockSite.DocumentDockContainer.Orientation = DevComponents.DotNetBar.eOrientation.Vertical;
                DevComponents.DotNetBar.DocumentBarContainer aDocumentBarContainer = new DevComponents.DotNetBar.DocumentBarContainer(bar, bar.Size.Width, bar.Size.Height);
                dockSite.DocumentDockContainer.Documents.Add(((DevComponents.DotNetBar.DocumentBaseContainer)(aDocumentBarContainer)));
            }
            return(bar);
        }
Пример #6
0
        public override void OnMouseUp(int Button, int Shift, int X, int Y)
        {
            if (m_pNewEnvelope == null)
            {
                return;
            }

            IEnvelope pEnvelope     = m_pNewEnvelope.Stop();
            int       iPiexl        = 3;
            double    iMapTolerance = ConvertPixelsToMapUnits(m_MapControl.ActiveView, iPiexl);
            IGeometry pGeometry     = null;

            if (pEnvelope == null || pEnvelope.IsEmpty)
            {
                ITopologicalOperator pTopo = (ITopologicalOperator)m_pPoint;
                if (pTopo != null)
                {
                    pGeometry = pTopo.Buffer(iMapTolerance);
                }
            }
            else
            {
                pEnvelope.SpatialReference = m_MapControl.ActiveView.FocusMap.SpatialReference;
                pGeometry = pEnvelope;
            }
            m_pNewEnvelope = null;

            if (m_frmQuery == null)
            {
                m_frmQuery             = new frmQuery(m_MapControl, m_enumQueryMode);
                m_frmQuery.Owner       = m_mainFrm;
                m_frmQuery.FormClosed += new FormClosedEventHandler(frmQuery_FormClosed);
            }

            //m_frmQuery.Show();
            //m_frmQuery.FillData(m_MapControl.ActiveView.FocusMap, pGeometry);
            _QuerBar.m_pMapControl = m_MapControl;
            _QuerBar.EmergeQueryData(m_MapControl.ActiveView.FocusMap, pGeometry, esriSpatialRelEnum.esriSpatialRelIntersects);
            try
            {
                DevComponents.DotNetBar.Bar pBar = _QuerBar.Parent.Parent as DevComponents.DotNetBar.Bar;
                if (pBar != null)
                {
                    pBar.AutoHide = false;
                    //pBar.SelectedDockTab = 1;
                    int tmpindex = pBar.Items.IndexOf("dockItemDataCheck");
                    pBar.SelectedDockTab = tmpindex;
                }
            }
            catch
            { }
        }
Пример #7
0
        //初始化配置对应视图控件
        private void InitialMainViewControl()
        {
            dotNetBarManager.ToolbarTopDockSite.Controls.Add(barBrowse);
            dotNetBarManager.ToolbarLeftDockSite.Controls.Add(barMap);

            //加载设置数据视图
            DevComponents.DotNetBar.Bar barMapControl = CreateBar("barMapControl", enumLayType.FILL);
            barMapControl.CanHide = false;
            DevComponents.DotNetBar.PanelDockContainer PanelMap         = CreatePanelDockContainer("PanelMap", barMapControl);
            DevComponents.DotNetBar.DockContainerItem  MapContainerItem = CreateDockContainerItem("TreeContainerItem", "数据视图", PanelMap, barMapControl);
            PanelMap.Controls.Add(this.axMapControl);
            this.axMapControl.Dock = DockStyle.Fill;
        }
        //双击则创建该线,并弹出缓冲窗体
        public override void OnDblClick()
        {
            //获取折线 并获取当前视图的屏幕显示
            if (m_pNewLineFeedback == null)
            {
                return;
            }

            IPolyline pPolyline = m_pNewLineFeedback.Stop();

            m_pNewLineFeedback = null;
            pPolyline.Project(m_MapControl.Map.SpatialReference);

            if (m_frmQuery == null)
            {
                m_frmQuery             = new frmQuery(m_MapControl, m_enumQueryMode);
                m_frmQuery.Owner       = m_mainFrm;
                m_frmQuery.FormClosed += new FormClosedEventHandler(frmQuery_FormClosed);
            }
            if (this.WriteLog)
            {
                Plugin.LogTable.Writelog("线缓冲查询");//xisheng 日志记录 0928;
            }
            //清除上次的所有元素
            (m_MapControl.Map as IGraphicsContainer).DeleteAllElements();
            m_frmBufferSet = new frmBufferSet(pPolyline as IGeometry, m_MapControl.Map, m_frmQuery);
            IGeometry pGeometry = m_frmBufferSet.GetBufferGeometry();

            if (pGeometry == null || m_frmBufferSet.Res == false)
            {
                return;
            }
            _QueryBar.m_pMapControl = m_MapControl;
            _QueryBar.EmergeQueryData(m_MapControl.ActiveView.FocusMap, pGeometry, m_frmBufferSet.pesriSpatialRelEnum);
            try
            {
                DevComponents.DotNetBar.Bar pBar = _QueryBar.Parent.Parent as DevComponents.DotNetBar.Bar;
                if (pBar != null)
                {
                    pBar.AutoHide = false;
                    //pBar.SelectedDockTab = 1;
                    int tmpindex = pBar.Items.IndexOf("dockItemDataCheck");
                    pBar.SelectedDockTab = tmpindex;
                }
            }
            catch
            { }
            //m_frmQuery.Show();
            // m_frmQuery.FillData(m_MapControl.ActiveView.FocusMap, pGeometry,m_frmBufferSet.pesriSpatialRelEnum);
        }
Пример #9
0
 protected override void Dispose(bool disposing)
 {
     #region 释放资源
     List <Delegate> listRemove = new List <Delegate>();
     FieldInfo       field      = typeof(SystemEvents).GetField("_handlers",
                                                                BindingFlags.Static | BindingFlags.GetField | BindingFlags.NonPublic | BindingFlags.ExactBinding);
     IEnumerable e = field.GetValue(null) as IEnumerable;
     foreach (var m in e)
     {
         IEnumerable list = m.GetType().GetProperty("Value").GetValue(m, null) as IEnumerable;
         foreach (var n in list)
         {
             Delegate del = n.GetType().GetField("_delegate", BindingFlags.Instance | BindingFlags.GetField | BindingFlags.NonPublic | BindingFlags.ExactBinding)
                            .GetValue(n) as Delegate;
             if (del.Target is DevComponents.DotNetBar.Bar)
             {
                 DevComponents.DotNetBar.Bar bar = del.Target as DevComponents.DotNetBar.Bar;
                 if (bar.FindForm() == null)
                 {
                     listRemove.Add(del);
                 }
                 else if (bar.FindForm().GetType().Equals(this.GetType()))
                 {
                     listRemove.Add(del);
                 }
             }
         }
     }
     MethodInfo method = typeof(SystemEvents).GetMethod("RemoveEventHandler",
                                                        BindingFlags.Static | BindingFlags.InvokeMethod | BindingFlags.NonPublic | BindingFlags.ExactBinding);
     MethodInfo method2 = typeof(DevComponents.DotNetBar.DotNetBarManager).Assembly
                          .GetType("DevComponents.DotNetBar.MessageHandler")
                          .GetMethod("UnregisterMessageClient",
                                     BindingFlags.Static | BindingFlags.InvokeMethod | BindingFlags.Public | BindingFlags.ExactBinding);
     foreach (var v in listRemove)
     {
         method.Invoke(null, new object[] {
             typeof(SystemEvents).GetField("OnUserPreferenceChangedEvent",
                                           BindingFlags.Static | BindingFlags.GetField | BindingFlags.NonPublic | BindingFlags.ExactBinding)
             .GetValue(null), v
         });
         method2.Invoke(null, new object[] { v.Target });
     }
     this.Designer.Report.Designer = null;
     #endregion
     base.Dispose(disposing);
 }
Пример #10
0
 public ControlHistoryBar(AxMapControl arcGisMapControl, ITOCControlDefault tocControl, DevComponents.AdvTree.AdvTree pProTree, DevComponents.DotNetBar.Bar barHistory, DevComponents.DotNetBar.DotNetBarManager dotNetBarManager)
 {
     InitializeComponent();
     InitialFrm();
     ArcGisMapControl = arcGisMapControl;
     Mapcontrol       = ArcGisMapControl.Object as IMapControlDefault;
     m_ProTree        = pProTree;//cyf 20110705 add
     if (m_ProTree == null)
     {
         return;                   //cyf 20110705 add
     }
     Toccontrol            = tocControl;
     BarHistoryDataCompare = barHistory;
     MainDotNetBarManager  = dotNetBarManager;
     _map = Mapcontrol.Map;
     ((IActiveViewEvents_Event)_map).ItemDeleted += new IActiveViewEvents_ItemDeletedEventHandler(LayerControl_ItemDeleted);
 }
Пример #11
0
        public override void OnMouseDown(int Button, int Shift, int X, int Y)
        {
            if (Button != 1)
            {
                return;
            }

            if (m_frmQuery == null)
            {
                m_frmQuery             = new frmQuery(m_MapControl, m_enumQueryMode);
                m_frmQuery.Owner       = m_mainFrm;
                m_frmQuery.FormClosed += new FormClosedEventHandler(frmQuery_FormClosed);
            }

            ESRI.ArcGIS.Geometry.IPoint pPoint = m_MapControl.ActiveView.ScreenDisplay.DisplayTransformation.ToMapPoint(X, Y);
            frmBufferSet pFrmBufSet            = new frmBufferSet(pPoint as IGeometry, m_MapControl.Map, m_frmQuery);
            IGeometry    pGeometry             = pFrmBufSet.GetBufferGeometry();

            if (pGeometry == null || pFrmBufSet.Res == false)
            {
                return;
            }

            //m_frmQuery.Show();
            //m_frmQuery.FillData(m_MapControl.ActiveView.FocusMap, pGeometry);
            _QuerBar.m_pMapControl = m_MapControl;
            _QuerBar.EmergeQueryData(m_MapControl.ActiveView.FocusMap, pGeometry, pFrmBufSet.pesriSpatialRelEnum);
            try
            {
                DevComponents.DotNetBar.Bar pBar = _QuerBar.Parent.Parent as DevComponents.DotNetBar.Bar;
                if (pBar != null)
                {
                    pBar.AutoHide = false;
                    //pBar.SelectedDockTab = 1;
                    int tmpindex = pBar.Items.IndexOf("dockItemDataCheck");
                    pBar.SelectedDockTab = tmpindex;
                }
            }
            catch
            { }
        }
Пример #12
0
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainFrame));
            this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
            this.ilToolbar = new System.Windows.Forms.ImageList(this.components);
            this.theViewer = new Genetibase.Debug.ObjViewer.ObjViewer();
            this.bar1 = new DevComponents.DotNetBar.Bar();
            this.item_2 = new DevComponents.DotNetBar.ButtonItem();
            this.item_3 = new DevComponents.DotNetBar.ButtonItem();
            this.item_13 = new DevComponents.DotNetBar.ButtonItem();
            this.item_14 = new DevComponents.DotNetBar.ButtonItem();
            this.uiPanelManager1 = new Janus.Windows.UI.Dock.UIPanelManager(this.components);
            this.uiPanel0 = new Janus.Windows.UI.Dock.UIPanel();
            this.uiPanel0Container = new Janus.Windows.UI.Dock.UIPanelInnerContainer();
            ((System.ComponentModel.ISupportInitialize)(this.bar1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.uiPanelManager1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.uiPanel0)).BeginInit();
            this.uiPanel0.SuspendLayout();
            this.uiPanel0Container.SuspendLayout();
            this.SuspendLayout();
            // 
            // ilToolbar
            // 
            this.ilToolbar.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
            this.ilToolbar.ImageSize = new System.Drawing.Size(16, 16);
            this.ilToolbar.TransparentColor = System.Drawing.Color.Transparent;
            // 
            // theViewer
            // 
            this.theViewer.Dock = System.Windows.Forms.DockStyle.Fill;
            this.theViewer.Location = new System.Drawing.Point(0, 0);
            this.theViewer.Name = "theViewer";
            this.theViewer.Size = new System.Drawing.Size(268, 679);
            this.theViewer.TabIndex = 4;
            // 
            // bar1
            // 
            this.bar1.Dock = System.Windows.Forms.DockStyle.Top;
            this.bar1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
            this.bar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            this.item_2,
            this.item_3,
            this.item_13,
            this.item_14});
            this.bar1.Location = new System.Drawing.Point(0, 0);
            this.bar1.Name = "bar1";
            this.bar1.Size = new System.Drawing.Size(1016, 25);
            this.bar1.Stretch = true;
            this.bar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
            this.bar1.TabIndex = 6;
            this.bar1.TabStop = false;
            this.bar1.Text = "bar1";
            // 
            // item_2
            // 
            this.item_2.Name = "item_2";
            this.item_2.Text = "Open Assembly";
            this.item_2.Click += new System.EventHandler(this.item_2_Click);
            // 
            // item_3
            // 
            this.item_3.Name = "item_3";
            this.item_3.Text = "Open Assembly From GAC";
            this.item_3.Click += new System.EventHandler(this.item_3_Click);
            // 
            // item_13
            // 
            this.item_13.Name = "item_13";
            this.item_13.Text = "Find";
            this.item_13.Click += new System.EventHandler(this.item_13_Click);
            // 
            // item_14
            // 
            this.item_14.Name = "item_14";
            this.item_14.Text = "Find Again";
            this.item_14.Click += new System.EventHandler(this.item_14_Click);
            // 
            // uiPanelManager1
            // 
            this.uiPanelManager1.BackColorGradientAutoHideStrip = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(243)))), ((int)(((byte)(247)))));
            this.uiPanelManager1.ContainerControl = this;
            this.uiPanel0.Id = new System.Guid("a7968a0c-6f4c-4839-ae9f-b95098a1cd1f");
            this.uiPanelManager1.Panels.Add(this.uiPanel0);
            // 
            // Design Time Panel Info:
            // 
            this.uiPanelManager1.BeginPanelInfo();
            this.uiPanelManager1.AddDockPanelInfo(new System.Guid("a7968a0c-6f4c-4839-ae9f-b95098a1cd1f"), Janus.Windows.UI.Dock.PanelDockStyle.Right, new System.Drawing.Size(274, 703), true);
            this.uiPanelManager1.AddFloatingPanelInfo(new System.Guid("a7968a0c-6f4c-4839-ae9f-b95098a1cd1f"), new System.Drawing.Point(-1, -1), new System.Drawing.Size(-1, -1), false);
            this.uiPanelManager1.EndPanelInfo();
            // 
            // uiPanel0
            // 
            this.uiPanel0.AllowPanelDrag = Janus.Windows.UI.InheritableBoolean.False;
            this.uiPanel0.AllowPanelDrop = Janus.Windows.UI.InheritableBoolean.False;
            this.uiPanel0.AutoHide = true;
            this.uiPanel0.CloseButtonVisible = Janus.Windows.UI.InheritableBoolean.False;
            this.uiPanel0.InnerContainer = this.uiPanel0Container;
            this.uiPanel0.Location = new System.Drawing.Point(740, 28);
            this.uiPanel0.Name = "uiPanel0";
            this.uiPanel0.Size = new System.Drawing.Size(274, 703);
            this.uiPanel0.TabIndex = 4;
            this.uiPanel0.Text = "Details";
            // 
            // uiPanel0Container
            // 
            this.uiPanel0Container.Controls.Add(this.theViewer);
            this.uiPanel0Container.Location = new System.Drawing.Point(5, 23);
            this.uiPanel0Container.Name = "uiPanel0Container";
            this.uiPanel0Container.Size = new System.Drawing.Size(268, 679);
            this.uiPanel0Container.TabIndex = 0;
            // 
            // MainFrame
            // 
            this.AllowDrop = true;
            this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
            this.ClientSize = new System.Drawing.Size(1016, 734);
            this.Controls.Add(this.bar1);
            this.DoubleBuffered = true;
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.IsMdiContainer = true;
            this.Name = "MainFrame";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "NuGenReflect.Net";
            this.DragDrop += new System.Windows.Forms.DragEventHandler(this.OnDrop);
            this.MdiChildActivate += new System.EventHandler(this.OnMdiChildActivate);
            this.DragEnter += new System.Windows.Forms.DragEventHandler(this.OnDragEnter);
            this.Load += new System.EventHandler(this.MainFrame_Load);
            ((System.ComponentModel.ISupportInitialize)(this.bar1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.uiPanelManager1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.uiPanel0)).EndInit();
            this.uiPanel0.ResumeLayout(false);
            this.uiPanel0Container.ResumeLayout(false);
            this.ResumeLayout(false);

		}
Пример #13
0
        private DevComponents.DotNetBar.PanelDockContainer CreatePanelDockContainer(string panelName, DevComponents.DotNetBar.Bar bar)
        {
            DevComponents.DotNetBar.PanelDockContainer panelDockContainer = new DevComponents.DotNetBar.PanelDockContainer();
            panelDockContainer.Name            = panelName;
            panelDockContainer.Style.Alignment = System.Drawing.StringAlignment.Center;
            panelDockContainer.Style.BackColor1.ColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            panelDockContainer.Style.BackColor2.ColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
            panelDockContainer.Style.BackgroundImagePosition     = DevComponents.DotNetBar.eBackgroundImagePosition.Tile;
            panelDockContainer.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
            panelDockContainer.Style.ForeColor.ColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.ItemText;
            panelDockContainer.Style.GradientAngle = 90;
            panelDockContainer.Dock = DockStyle.Fill;
            bar.Controls.Add(panelDockContainer);

            return(panelDockContainer);
        }
Пример #14
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Entorno));
     this.metroShell1 = new DevComponents.DotNetBar.Metro.MetroShell();
     this.metroTabPanel1 = new DevComponents.DotNetBar.Metro.MetroTabPanel();
     this.bar1 = new DevComponents.DotNetBar.Bar();
     this.btnNuevo = new DevComponents.DotNetBar.ButtonItem();
     this.btnGuardar = new DevComponents.DotNetBar.ButtonItem();
     this.btnEditar = new DevComponents.DotNetBar.ButtonItem();
     this.btnBorrar = new DevComponents.DotNetBar.ButtonItem();
     this.btnCancelar = new DevComponents.DotNetBar.ButtonItem();
     this.labelItem2 = new DevComponents.DotNetBar.LabelItem();
     this.btnPrimero = new DevComponents.DotNetBar.ButtonItem();
     this.btnAnterior = new DevComponents.DotNetBar.ButtonItem();
     this.btnSiguiente = new DevComponents.DotNetBar.ButtonItem();
     this.btnUltimo = new DevComponents.DotNetBar.ButtonItem();
     this.metroAppButton1 = new DevComponents.DotNetBar.Metro.MetroAppButton();
     this.tabControles = new DevComponents.DotNetBar.Metro.MetroTabItem();
     this.labelItem1 = new DevComponents.DotNetBar.LabelItem();
     this.bubbleButton2 = new DevComponents.DotNetBar.BubbleButton();
     this.styleManager1 = new DevComponents.DotNetBar.StyleManager(this.components);
     this.btnBuscar = new DevComponents.DotNetBar.ButtonItem();
     this.metroShell1.SuspendLayout();
     this.metroTabPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).BeginInit();
     this.SuspendLayout();
     //
     // metroShell1
     //
     this.metroShell1.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     this.metroShell1.BackgroundImage = global::Control_Aulas_UAM.Properties.Resources.form_background;
     //
     //
     //
     this.metroShell1.BackgroundStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.metroShell1.BackgroundStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.metroShell1.BackgroundStyle.BackgroundImage = global::Control_Aulas_UAM.Properties.Resources.form_background2;
     this.metroShell1.BackgroundStyle.BackgroundImagePosition = DevComponents.DotNetBar.eStyleBackgroundImage.Tile;
     this.metroShell1.BackgroundStyle.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Double;
     this.metroShell1.BackgroundStyle.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.metroShell1.BackgroundStyle.BorderColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.metroShell1.BackgroundStyle.BorderColorLight = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.metroShell1.BackgroundStyle.BorderColorLight2 = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.metroShell1.BackgroundStyle.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Double;
     this.metroShell1.BackgroundStyle.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Double;
     this.metroShell1.BackgroundStyle.BorderRightColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.metroShell1.BackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Double;
     this.metroShell1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.metroShell1.CaptionVisible = true;
     this.metroShell1.Controls.Add(this.metroTabPanel1);
     this.metroShell1.Dock = System.Windows.Forms.DockStyle.Top;
     this.metroShell1.ForeColor = System.Drawing.Color.Black;
     this.metroShell1.HelpButtonText = null;
     this.metroShell1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.metroAppButton1,
     this.tabControles});
     this.metroShell1.KeyTipsFont = new System.Drawing.Font("Tahoma", 7F);
     this.metroShell1.Location = new System.Drawing.Point(0, 1);
     this.metroShell1.Name = "metroShell1";
     this.metroShell1.SettingsButtonVisible = false;
     this.metroShell1.Size = new System.Drawing.Size(955, 125);
     this.metroShell1.SystemText.MaximizeRibbonText = "&Maximize the Ribbon";
     this.metroShell1.SystemText.MinimizeRibbonText = "Mi&nimize the Ribbon";
     this.metroShell1.SystemText.QatAddItemText = "&Add to Quick Access Toolbar";
     this.metroShell1.SystemText.QatCustomizeMenuLabel = "<b>Customize Quick Access Toolbar</b>";
     this.metroShell1.SystemText.QatCustomizeText = "&Customize Quick Access Toolbar...";
     this.metroShell1.SystemText.QatDialogAddButton = "&Add >>";
     this.metroShell1.SystemText.QatDialogCancelButton = "Cancel";
     this.metroShell1.SystemText.QatDialogCaption = "Customize Quick Access Toolbar";
     this.metroShell1.SystemText.QatDialogCategoriesLabel = "&Choose commands from:";
     this.metroShell1.SystemText.QatDialogOkButton = "OK";
     this.metroShell1.SystemText.QatDialogPlacementCheckbox = "&Place Quick Access Toolbar below the Ribbon";
     this.metroShell1.SystemText.QatDialogRemoveButton = "&Remove";
     this.metroShell1.SystemText.QatPlaceAboveRibbonText = "&Place Quick Access Toolbar above the Ribbon";
     this.metroShell1.SystemText.QatPlaceBelowRibbonText = "&Place Quick Access Toolbar below the Ribbon";
     this.metroShell1.SystemText.QatRemoveItemText = "&Remove from Quick Access Toolbar";
     this.metroShell1.TabIndex = 0;
     this.metroShell1.TabStripFont = new System.Drawing.Font("Segoe UI", 10.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.metroShell1.Text = "metroShell1";
     //
     // metroTabPanel1
     //
     this.metroTabPanel1.CanvasColor = System.Drawing.SystemColors.GradientInactiveCaption;
     this.metroTabPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.metroTabPanel1.Controls.Add(this.bar1);
     this.metroTabPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.metroTabPanel1.Location = new System.Drawing.Point(0, 51);
     this.metroTabPanel1.Name = "metroTabPanel1";
     this.metroTabPanel1.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
     this.metroTabPanel1.Size = new System.Drawing.Size(955, 74);
     //
     //
     //
     this.metroTabPanel1.Style.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     this.metroTabPanel1.Style.BackColor2 = System.Drawing.SystemColors.GradientInactiveCaption;
     this.metroTabPanel1.Style.BackColorGradientType = DevComponents.DotNetBar.eGradientType.Radial;
     this.metroTabPanel1.Style.BackgroundImage = global::Control_Aulas_UAM.Properties.Resources.form_background2;
     this.metroTabPanel1.Style.BackgroundImagePosition = DevComponents.DotNetBar.eStyleBackgroundImage.Tile;
     this.metroTabPanel1.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.metroTabPanel1.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.metroTabPanel1.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.metroTabPanel1.TabIndex = 1;
     //
     // bar1
     //
     this.bar1.AccessibleDescription = "bar1 (bar1)";
     this.bar1.AccessibleName = "bar1";
     this.bar1.AccessibleRole = System.Windows.Forms.AccessibleRole.ToolBar;
     this.bar1.AntiAlias = true;
     this.bar1.BackColor = System.Drawing.Color.Transparent;
     this.bar1.DockedBorderStyle = DevComponents.DotNetBar.eBorderType.Bump;
     this.bar1.DockSide = DevComponents.DotNetBar.eDockSide.Document;
     this.bar1.DockTabAlignment = DevComponents.DotNetBar.eTabStripAlignment.Left;
     this.bar1.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.bar1.ForeColor = System.Drawing.Color.Black;
     this.bar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnNuevo,
     this.btnGuardar,
     this.btnEditar,
     this.btnBorrar,
     this.btnCancelar,
     this.labelItem2,
     this.btnPrimero,
     this.btnAnterior,
     this.btnSiguiente,
     this.btnUltimo,
     this.btnBuscar});
     this.bar1.Location = new System.Drawing.Point(6, 3);
     this.bar1.Name = "bar1";
     this.bar1.Size = new System.Drawing.Size(609, 63);
     this.bar1.Stretch = true;
     this.bar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2010;
     this.bar1.TabIndex = 0;
     this.bar1.TabStop = false;
     this.bar1.Text = "bar1";
     //
     // btnNuevo
     //
     this.btnNuevo.Image = global::Control_Aulas_UAM.Properties.Resources.nuevo48;
     this.btnNuevo.Name = "btnNuevo";
     this.btnNuevo.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.Ins);
     this.btnNuevo.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlN);
     this.btnNuevo.Text = "buttonItem9";
     this.btnNuevo.Tooltip = "Nuevo";
     //
     // btnGuardar
     //
     this.btnGuardar.Image = global::Control_Aulas_UAM.Properties.Resources.guardar48;
     this.btnGuardar.Name = "btnGuardar";
     this.btnGuardar.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlG);
     this.btnGuardar.Text = "buttonItem8";
     this.btnGuardar.Tooltip = "Guardar";
     //
     // btnEditar
     //
     this.btnEditar.Image = global::Control_Aulas_UAM.Properties.Resources.edtar48;
     this.btnEditar.Name = "btnEditar";
     this.btnEditar.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlE);
     this.btnEditar.Text = "buttonItem6";
     this.btnEditar.Tooltip = "Editar";
     //
     // btnBorrar
     //
     this.btnBorrar.Image = global::Control_Aulas_UAM.Properties.Resources.borrar48;
     this.btnBorrar.Name = "btnBorrar";
     this.btnBorrar.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlDel);
     this.btnBorrar.Text = "buttonItem7";
     this.btnBorrar.Tooltip = "Borrar";
     //
     // btnCancelar
     //
     this.btnCancelar.Image = global::Control_Aulas_UAM.Properties.Resources.cancelar48;
     this.btnCancelar.Name = "btnCancelar";
     this.btnCancelar.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlC);
     this.btnCancelar.Text = "buttonItem7";
     //
     // labelItem2
     //
     this.labelItem2.Enabled = false;
     this.labelItem2.Image = global::Control_Aulas_UAM.Properties.Resources.linea48;
     this.labelItem2.Name = "labelItem2";
     //
     // btnPrimero
     //
     this.btnPrimero.Image = global::Control_Aulas_UAM.Properties.Resources.previousEnd48;
     this.btnPrimero.Name = "btnPrimero";
     this.btnPrimero.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlUp);
     this.btnPrimero.Text = "buttonItem13";
     this.btnPrimero.Tooltip = "Primero";
     //
     // btnAnterior
     //
     this.btnAnterior.Image = global::Control_Aulas_UAM.Properties.Resources.previous48;
     this.btnAnterior.Name = "btnAnterior";
     this.btnAnterior.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlLeft);
     this.btnAnterior.Text = "buttonItem12";
     this.btnAnterior.Tooltip = "Anterior";
     //
     // btnSiguiente
     //
     this.btnSiguiente.Image = global::Control_Aulas_UAM.Properties.Resources.next48;
     this.btnSiguiente.Name = "btnSiguiente";
     this.btnSiguiente.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlRight);
     this.btnSiguiente.Text = "buttonItem10";
     this.btnSiguiente.Tooltip = "Siguiente";
     //
     // btnUltimo
     //
     this.btnUltimo.Image = global::Control_Aulas_UAM.Properties.Resources.nextEnd48;
     this.btnUltimo.Name = "btnUltimo";
     this.btnUltimo.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlDown);
     this.btnUltimo.Text = "buttonItem11";
     this.btnUltimo.Tooltip = "Ultimo";
     //
     // metroAppButton1
     //
     this.metroAppButton1.AutoExpandOnClick = true;
     this.metroAppButton1.CanCustomize = false;
     this.metroAppButton1.ImageFixedSize = new System.Drawing.Size(16, 16);
     this.metroAppButton1.ImagePaddingHorizontal = 0;
     this.metroAppButton1.ImagePaddingVertical = 0;
     this.metroAppButton1.Name = "metroAppButton1";
     this.metroAppButton1.ShowSubItems = false;
     this.metroAppButton1.Text = "&File";
     this.metroAppButton1.Visible = false;
     //
     // tabControles
     //
     this.tabControles.Checked = true;
     this.tabControles.Name = "tabControles";
     this.tabControles.Panel = this.metroTabPanel1;
     this.tabControles.Text = "&Controles";
     //
     // labelItem1
     //
     this.labelItem1.Name = "labelItem1";
     this.labelItem1.Text = "READY";
     //
     // bubbleButton2
     //
     this.bubbleButton2.Enabled = false;
     this.bubbleButton2.Name = "bubbleButton2";
     //
     // styleManager1
     //
     this.styleManager1.ManagerColorTint = System.Drawing.Color.LightBlue;
     this.styleManager1.ManagerStyle = DevComponents.DotNetBar.eStyle.Metro;
     this.styleManager1.MetroColorParameters = new DevComponents.DotNetBar.Metro.ColorTables.MetroColorGeneratorParameters(System.Drawing.SystemColors.GradientInactiveCaption, System.Drawing.Color.FromArgb(((int)(((byte)(237)))), ((int)(((byte)(142)))), ((int)(((byte)(0))))));
     //
     // btnBuscar
     //
     this.btnBuscar.Image = global::Control_Aulas_UAM.Properties.Resources.find48;
     this.btnBuscar.Name = "btnBuscar";
     this.btnBuscar.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlDown);
     this.btnBuscar.Text = "buttonItem11";
     this.btnBuscar.Tooltip = "Ultimo";
     //
     // Entorno
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     this.BackgroundImage = global::Control_Aulas_UAM.Properties.Resources.form_background2;
     this.ClientSize = new System.Drawing.Size(956, 401);
     this.Controls.Add(this.metroShell1);
     this.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "Entorno";
     this.Sizable = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Control de Asignacion de Espacios";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Entorno_FormClosing);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Entorno_KeyDown_1);
     this.metroShell1.ResumeLayout(false);
     this.metroShell1.PerformLayout();
     this.metroTabPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).EndInit();
     this.ResumeLayout(false);
 }
Пример #15
0
        private void btnOK_Click(object sender, EventArgs e)
        {
            //加进度条 xisheng 2011.06.28
            SysCommon.CProgress vProgress = new SysCommon.CProgress("进度条");
            vProgress.EnableCancel = true;
            vProgress.EnableUserCancel(true);


            vProgress.ShowDescription = true;
            vProgress.FakeProgress    = true;
            vProgress.TopMost         = true;
            vProgress.ShowProgress();
            vProgress.SetProgress("开始查询");

            bool bRes = false;  //是否查询到地物

            this.DialogResult = DialogResult.OK;

            //没有当前图层直接退出
            if (m_pCurrentLayer == null)
            {
                vProgress.Close();// 张琪  20110705  添加
                return;
            }
            try
            {
                string whereClause = this.richTextExpression.Text.Trim();
                if (CheckExpression(whereClause, false) == false) //changed by chulili 20120818 不弹提示框
                {
                    vProgress.Close();                            // 张琪  20110705  添加
                    MessageBox.Show("此表达式搜索不到要素,请检查表达式", "提示");
                    return;
                }
                //获取当前图层的 featureclass
                vProgress.SetProgress("获取当前图层");
                IFeatureClass pFeatClass = m_pCurrentLayer.FeatureClass;

                //构造查询过滤器
                IQueryFilter pQueryFilter = new QueryFilterClass();
                //赋值查许条件
                vProgress.SetProgress("构造查询过滤器并赋值查询条件");
                pQueryFilter.WhereClause = whereClause;

                //赋值查询方式,由查询方式的combo获得
                esriSelectionResultEnum pSelectionResult = esriSelectionResultEnum.esriSelectionResultNew;
                bool bSelection = true;
                switch (this.cmbselmode.SelectedItem.ToString())
                {
                case ("不创建选择结果"):
                    bSelection = false;
                    break;

                case ("创建一个新的选择结果"):
                    pSelectionResult = esriSelectionResultEnum.esriSelectionResultNew;
                    break;

                case ("添加到当前选择集中"):
                    pSelectionResult = esriSelectionResultEnum.esriSelectionResultAdd;
                    break;

                case ("从当前选择结果中移除"):
                    pSelectionResult = esriSelectionResultEnum.esriSelectionResultSubtract;
                    break;

                case ("从当前选择结果中选择"):
                    pSelectionResult = esriSelectionResultEnum.esriSelectionResultAnd;
                    break;

                default:
                    vProgress.Close();    // 张琪  20110705  添加
                    return;
                }


                //进行查询,并将结果显示出来
                vProgress.SetProgress("正在查询符合条件的结果");
                //frmQuery frm = new frmQuery(m_MapControlDefault);
                //frm.FillData(m_pCurrentLayer, pQueryFilter, pSelectionResult);
                _QueryBar.m_pMapControl = m_MapControlDefault;
                if (!bSelection)
                {
                    _QueryBar.EmergeQueryData(m_pCurrentLayer, pQueryFilter, vProgress);
                }
                else
                {
                    _QueryBar.EmergeQueryData(m_MapControlDefault.Map, m_pCurrentLayer, pQueryFilter, pSelectionResult, vProgress);
                }
                try
                {
                    DevComponents.DotNetBar.Bar pBar = _QueryBar.Parent.Parent as DevComponents.DotNetBar.Bar;
                    if (pBar != null)
                    {
                        pBar.AutoHide = false;
                        int tmpindex = pBar.Items.IndexOf("dockItemDataCheck");
                        pBar.SelectedDockTab = tmpindex;
                    }
                }
                catch
                { }
                bRes = true;
            }
            //frm.Show();
            catch
            { }
            finally
            {
                vProgress.Close();
                if (bRes)
                {
                    this.Hide();
                    this.Dispose(true);
                }
            }
        }
Пример #16
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(MainFrame));
     this.openFileDialog1   = new System.Windows.Forms.OpenFileDialog();
     this.ilToolbar         = new System.Windows.Forms.ImageList(this.components);
     this.theViewer         = new Genetibase.Debug.ObjViewer.ObjViewer();
     this.bar1              = new DevComponents.DotNetBar.Bar();
     this.item_2            = new DevComponents.DotNetBar.ButtonItem();
     this.item_3            = new DevComponents.DotNetBar.ButtonItem();
     this.item_13           = new DevComponents.DotNetBar.ButtonItem();
     this.item_14           = new DevComponents.DotNetBar.ButtonItem();
     this.uiPanelManager1   = new Janus.Windows.UI.Dock.UIPanelManager(this.components);
     this.uiPanel0          = new Janus.Windows.UI.Dock.UIPanel();
     this.uiPanel0Container = new Janus.Windows.UI.Dock.UIPanelInnerContainer();
     ((System.ComponentModel.ISupportInitialize)(this.uiPanelManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.uiPanel0)).BeginInit();
     this.uiPanel0.SuspendLayout();
     this.uiPanel0Container.SuspendLayout();
     this.SuspendLayout();
     //
     // ilToolbar
     //
     this.ilToolbar.ImageSize        = new System.Drawing.Size(16, 16);
     this.ilToolbar.TransparentColor = System.Drawing.Color.Transparent;
     //
     // theViewer
     //
     this.theViewer.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.theViewer.Location = new System.Drawing.Point(0, 0);
     this.theViewer.Name     = "theViewer";
     this.theViewer.Size     = new System.Drawing.Size(267, 492);
     this.theViewer.TabIndex = 4;
     this.bar1.Style         = DevComponents.DotNetBar.eDotNetBarStyle.VS2005;
     //
     // bar1
     //
     this.bar1.BackgroundImageAlpha = ((System.Byte)(255));
     this.bar1.Dock = System.Windows.Forms.DockStyle.Top;
     this.bar1.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.World);
     this.bar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
         this.item_2,
         this.item_3,
         this.item_13,
         this.item_14
     });
     this.bar1.Location = new System.Drawing.Point(0, 0);
     this.bar1.Name     = "bar1";
     this.bar1.Size     = new System.Drawing.Size(794, 23);
     this.bar1.Stretch  = true;
     this.bar1.TabIndex = 6;
     this.bar1.TabStop  = false;
     this.bar1.Text     = "bar1";
     this.bar1.RecalcSize();
     //
     // item_2
     //
     this.item_2.Name   = "item_2";
     this.item_2.Style  = DevComponents.DotNetBar.eDotNetBarStyle.VS2005;
     this.item_2.Text   = "Open File";
     this.item_2.Click += new System.EventHandler(this.item_2_Click);
     //
     // item_3
     //
     this.item_3.Name   = "item_3";
     this.item_3.Style  = DevComponents.DotNetBar.eDotNetBarStyle.VS2005;
     this.item_3.Text   = "Open Assembly From GAC";
     this.item_3.Click += new System.EventHandler(this.item_3_Click);
     //
     // item_13
     //
     this.item_13.Name   = "item_13";
     this.item_13.Style  = DevComponents.DotNetBar.eDotNetBarStyle.VS2005;
     this.item_13.Text   = "Find";
     this.item_13.Click += new System.EventHandler(this.item_13_Click);
     //
     // item_14
     //
     this.item_14.Name   = "item_14";
     this.item_14.Style  = DevComponents.DotNetBar.eDotNetBarStyle.VS2005;
     this.item_14.Text   = "Find Again";
     this.item_14.Click += new System.EventHandler(this.item_14_Click);
     //
     // uiPanelManager1
     //
     this.uiPanelManager1.ContainerControl = this;
     this.uiPanel0.Id = new System.Guid("a7968a0c-6f4c-4839-ae9f-b95098a1cd1f");
     this.uiPanelManager1.Panels.Add(this.uiPanel0);
     //
     // Design Time Panel Info:
     //
     this.uiPanelManager1.BeginPanelInfo();
     this.uiPanelManager1.AddDockPanelInfo(new System.Guid("a7968a0c-6f4c-4839-ae9f-b95098a1cd1f"), Janus.Windows.UI.Dock.PanelDockStyle.Right, new System.Drawing.Size(273, 516), true);
     this.uiPanelManager1.AddFloatingPanelInfo(new System.Guid("a7968a0c-6f4c-4839-ae9f-b95098a1cd1f"), new System.Drawing.Point(-1, -1), new System.Drawing.Size(-1, -1), false);
     this.uiPanelManager1.EndPanelInfo();
     //
     // uiPanel0
     //
     this.uiPanel0.AllowPanelDrag     = Janus.Windows.UI.InheritableBoolean.False;
     this.uiPanel0.AllowPanelDrop     = Janus.Windows.UI.InheritableBoolean.False;
     this.uiPanel0.AutoHide           = true;
     this.uiPanel0.CloseButtonVisible = Janus.Windows.UI.InheritableBoolean.False;
     this.uiPanel0.InnerContainer     = this.uiPanel0Container;
     this.uiPanel0.Location           = new System.Drawing.Point(516, 26);
     this.uiPanel0.Name     = "uiPanel0";
     this.uiPanel0.Size     = new System.Drawing.Size(273, 516);
     this.uiPanel0.TabIndex = 4;
     this.uiPanel0.Text     = "Details";
     //
     // uiPanel0Container
     //
     this.uiPanel0Container.Controls.Add(this.theViewer);
     this.uiPanel0Container.Location = new System.Drawing.Point(5, 23);
     this.uiPanel0Container.Name     = "uiPanel0Container";
     this.uiPanel0Container.Size     = new System.Drawing.Size(267, 492);
     this.uiPanel0Container.TabIndex = 0;
     //
     // MainFrame
     //
     this.AllowDrop         = true;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(794, 568);
     this.Controls.Add(this.bar1);
     this.FormBorderStyle   = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon              = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.IsMdiContainer    = true;
     this.MaximizeBox       = false;
     this.Name              = "MainFrame";
     this.Text              = "NuGenReflect.Net";
     this.MdiChildActivate += new System.EventHandler(this.OnMdiChildActivate);
     this.Load             += new System.EventHandler(this.MainFrame_Load);
     this.DragDrop         += new System.Windows.Forms.DragEventHandler(this.OnDrop);
     this.DragEnter        += new System.Windows.Forms.DragEventHandler(this.OnDragEnter);
     ((System.ComponentModel.ISupportInitialize)(this.uiPanelManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.uiPanel0)).EndInit();
     this.uiPanel0.ResumeLayout(false);
     this.uiPanel0Container.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Пример #17
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AlertCustom));
     this.reflectionImage1 = new DevComponents.DotNetBar.Controls.ReflectionImage();
     this.bar1             = new DevComponents.DotNetBar.Bar();
     this.buttonItem1      = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem2      = new DevComponents.DotNetBar.ButtonItem();
     this.lblTittle        = new DevComponents.DotNetBar.LabelX();
     this.lblMsg           = new DevComponents.DotNetBar.LabelX();
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).BeginInit();
     this.SuspendLayout();
     //
     // reflectionImage1
     //
     this.reflectionImage1.BackColor = System.Drawing.Color.Transparent;
     this.reflectionImage1.Image     = ((System.Drawing.Image)(resources.GetObject("reflectionImage1.Image")));
     this.reflectionImage1.Location  = new System.Drawing.Point(10, 9);
     this.reflectionImage1.Name      = "reflectionImage1";
     this.reflectionImage1.Size      = new System.Drawing.Size(76, 107);
     this.reflectionImage1.TabIndex  = 0;
     //
     // bar1
     //
     this.bar1.BackColor = System.Drawing.Color.Transparent;
     this.bar1.Dock      = System.Windows.Forms.DockStyle.Bottom;
     this.bar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
         this.buttonItem1,
         this.buttonItem2
     });
     this.bar1.Location = new System.Drawing.Point(0, 111);
     this.bar1.Name     = "bar1";
     this.bar1.Size     = new System.Drawing.Size(345, 25);
     this.bar1.Stretch  = true;
     this.bar1.Style    = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.bar1.TabIndex = 1;
     this.bar1.TabStop  = false;
     this.bar1.Text     = "bar1";
     //
     // buttonItem1
     //
     this.buttonItem1.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem1.Image")));
     this.buttonItem1.ImagePaddingHorizontal = 8;
     this.buttonItem1.Name = "buttonItem1";
     this.buttonItem1.Text = "buttonItem1";
     //
     // buttonItem2
     //
     this.buttonItem2.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem2.Image")));
     this.buttonItem2.ImagePaddingHorizontal = 8;
     this.buttonItem2.Name = "buttonItem2";
     this.buttonItem2.Text = "buttonItem2";
     //
     // lblTittle
     //
     this.lblTittle.BackColor = System.Drawing.Color.Transparent;
     this.lblTittle.Font      = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.lblTittle.Location  = new System.Drawing.Point(106, 12);
     this.lblTittle.Name      = "lblTittle";
     this.lblTittle.Size      = new System.Drawing.Size(108, 18);
     this.lblTittle.TabIndex  = 2;
     this.lblTittle.Text      = "<b>信息提示</b>";
     //
     // lblMsg
     //
     this.lblMsg.BackColor = System.Drawing.Color.Transparent;
     this.lblMsg.Location  = new System.Drawing.Point(106, 36);
     this.lblMsg.Name      = "lblMsg";
     this.lblMsg.Size      = new System.Drawing.Size(220, 88);
     this.lblMsg.TabIndex  = 3;
     this.lblMsg.Text      = "Using Balloon and other controls included with DotNetBar you can create great loo" +
                             "king custom alerts.";
     this.lblMsg.TextLineAlignment = System.Drawing.StringAlignment.Near;
     this.lblMsg.WordWrap          = true;
     this.lblMsg.Click            += new System.EventHandler(this.lblMsg_Click);
     this.lblMsg.MouseClick       += new System.Windows.Forms.MouseEventHandler(this.lblMsg_MouseClick);
     this.lblMsg.MouseEnter       += new System.EventHandler(this.lblMsg_MouseEnter);
     this.lblMsg.MouseLeave       += new System.EventHandler(this.lblMsg_MouseLeave);
     //
     // AlertCustom
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.BackColor         = System.Drawing.Color.FromArgb(((int)(((byte)(227)))), ((int)(((byte)(239)))), ((int)(((byte)(255)))));
     this.BackColor2        = System.Drawing.Color.FromArgb(((int)(((byte)(175)))), ((int)(((byte)(210)))), ((int)(((byte)(255)))));
     this.BorderColor       = System.Drawing.Color.FromArgb(((int)(((byte)(101)))), ((int)(((byte)(147)))), ((int)(((byte)(207)))));
     this.CaptionFont       = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.ClientSize        = new System.Drawing.Size(345, 136);
     this.Controls.Add(this.lblMsg);
     this.Controls.Add(this.lblTittle);
     this.Controls.Add(this.bar1);
     this.Controls.Add(this.reflectionImage1);
     this.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(8)))), ((int)(((byte)(55)))), ((int)(((byte)(114)))));
     this.Location  = new System.Drawing.Point(0, 0);
     this.Name      = "AlertCustom";
     this.Style     = DevComponents.DotNetBar.eBallonStyle.Office2007Alert;
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).EndInit();
     this.ResumeLayout(false);
 }
Пример #18
0
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormBase));
     this.panelEx1    = new DevComponents.DotNetBar.PanelEx();
     this.labelX1     = new DevComponents.DotNetBar.LabelX();
     this.panelEx3    = new DevComponents.DotNetBar.PanelEx();
     this.panelEx2    = new DevComponents.DotNetBar.PanelEx();
     this.line1       = new DevComponents.DotNetBar.Controls.Line();
     this.line2       = new DevComponents.DotNetBar.Controls.Line();
     this.line3       = new DevComponents.DotNetBar.Controls.Line();
     this.line4       = new DevComponents.DotNetBar.Controls.Line();
     this.bar1        = new DevComponents.DotNetBar.Bar();
     this.pictureBox2 = new System.Windows.Forms.PictureBox();
     this.pictureBox3 = new System.Windows.Forms.PictureBox();
     this.pictureBox4 = new System.Windows.Forms.PictureBox();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.panelEx1.SuspendLayout();
     this.panelEx3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.SuspendLayout();
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor      = System.Drawing.SystemColors.ButtonShadow;
     this.panelEx1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx1.Controls.Add(this.labelX1);
     this.panelEx1.Controls.Add(this.panelEx3);
     this.panelEx1.Controls.Add(this.panelEx2);
     this.panelEx1.Dock                              = System.Windows.Forms.DockStyle.Top;
     this.panelEx1.Location                          = new System.Drawing.Point(1, 1);
     this.panelEx1.Name                              = "panelEx1";
     this.panelEx1.Size                              = new System.Drawing.Size(865, 43);
     this.panelEx1.Style.Alignment                   = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.Color            = System.Drawing.Color.DimGray;
     this.panelEx1.Style.BackColor2.Color            = System.Drawing.Color.LightGray;
     this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx1.Style.ForeColor.ColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx1.Style.GradientAngle               = 90;
     this.panelEx1.TabIndex                          = 1;
     this.panelEx1.DoubleClick                      += new System.EventHandler(this.panelEx1_DoubleClick);
     this.panelEx1.MouseDown                        += new System.Windows.Forms.MouseEventHandler(this.panel2_MouseDown);
     this.panelEx1.MouseMove                        += new System.Windows.Forms.MouseEventHandler(this.panel2_MouseMove);
     this.panelEx1.MouseUp                          += new System.Windows.Forms.MouseEventHandler(this.panel2_MouseUp);
     //
     // labelX1
     //
     this.labelX1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
     //
     //
     //
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Font         = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.labelX1.ForeColor    = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.labelX1.Location     = new System.Drawing.Point(92, 10);
     this.labelX1.Name         = "labelX1";
     this.labelX1.Size         = new System.Drawing.Size(633, 23);
     this.labelX1.TabIndex     = 1;
     this.labelX1.DoubleClick += new System.EventHandler(this.panelEx1_DoubleClick);
     this.labelX1.MouseDown   += new System.Windows.Forms.MouseEventHandler(this.panel2_MouseDown);
     this.labelX1.MouseMove   += new System.Windows.Forms.MouseEventHandler(this.panel2_MouseMove);
     this.labelX1.MouseUp     += new System.Windows.Forms.MouseEventHandler(this.panel2_MouseUp);
     //
     // panelEx3
     //
     this.panelEx3.CanvasColor      = System.Drawing.SystemColors.Control;
     this.panelEx3.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx3.Controls.Add(this.pictureBox2);
     this.panelEx3.Controls.Add(this.pictureBox3);
     this.panelEx3.Controls.Add(this.pictureBox4);
     this.panelEx3.Controls.Add(this.pictureBox1);
     this.panelEx3.Dock                              = System.Windows.Forms.DockStyle.Right;
     this.panelEx3.Location                          = new System.Drawing.Point(763, 0);
     this.panelEx3.Name                              = "panelEx3";
     this.panelEx3.Size                              = new System.Drawing.Size(102, 43);
     this.panelEx3.Style.Alignment                   = System.Drawing.StringAlignment.Center;
     this.panelEx3.Style.BackColor1.Color            = System.Drawing.Color.DimGray;
     this.panelEx3.Style.BackColor2.Color            = System.Drawing.Color.LightGray;
     this.panelEx3.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx3.Style.ForeColor.ColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx3.Style.GradientAngle               = 90;
     this.panelEx3.TabIndex                          = 3;
     this.panelEx3.DoubleClick                      += new System.EventHandler(this.panelEx1_DoubleClick);
     this.panelEx3.MouseDown                        += new System.Windows.Forms.MouseEventHandler(this.panel2_MouseDown);
     this.panelEx3.MouseMove                        += new System.Windows.Forms.MouseEventHandler(this.panel2_MouseMove);
     this.panelEx3.MouseUp                          += new System.Windows.Forms.MouseEventHandler(this.panel2_MouseUp);
     //
     // panelEx2
     //
     this.panelEx2.CanvasColor                       = System.Drawing.SystemColors.Control;
     this.panelEx2.ColorSchemeStyle                  = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx2.Dock                              = System.Windows.Forms.DockStyle.Left;
     this.panelEx2.Location                          = new System.Drawing.Point(0, 0);
     this.panelEx2.Name                              = "panelEx2";
     this.panelEx2.Size                              = new System.Drawing.Size(82, 43);
     this.panelEx2.Style.Alignment                   = System.Drawing.StringAlignment.Center;
     this.panelEx2.Style.BackColor1.Color            = System.Drawing.Color.DimGray;
     this.panelEx2.Style.BackColor2.Color            = System.Drawing.Color.LightGray;
     this.panelEx2.Style.BackgroundImage             = global::IVX.Live.MainForm.Properties.Resources.bocom;
     this.panelEx2.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx2.Style.ForeColor.ColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx2.Style.GradientAngle               = 90;
     this.panelEx2.TabIndex                          = 2;
     this.panelEx2.DoubleClick                      += new System.EventHandler(this.panelEx2_DoubleClick);
     this.panelEx2.MouseDown                        += new System.Windows.Forms.MouseEventHandler(this.panel2_MouseDown);
     this.panelEx2.MouseMove                        += new System.Windows.Forms.MouseEventHandler(this.panel2_MouseMove);
     this.panelEx2.MouseUp                          += new System.Windows.Forms.MouseEventHandler(this.panel2_MouseUp);
     //
     // line1
     //
     this.line1.Dock      = System.Windows.Forms.DockStyle.Top;
     this.line1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(124)))), ((int)(((byte)(124)))), ((int)(((byte)(124)))));
     this.line1.Location  = new System.Drawing.Point(0, 0);
     this.line1.Name      = "line1";
     this.line1.Size      = new System.Drawing.Size(867, 1);
     this.line1.TabIndex  = 6;
     this.line1.Text      = "line1";
     //
     // line2
     //
     this.line2.Dock      = System.Windows.Forms.DockStyle.Bottom;
     this.line2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(124)))), ((int)(((byte)(124)))), ((int)(((byte)(124)))));
     this.line2.Location  = new System.Drawing.Point(0, 694);
     this.line2.Name      = "line2";
     this.line2.Size      = new System.Drawing.Size(867, 1);
     this.line2.TabIndex  = 6;
     this.line2.Text      = "line1";
     //
     // line3
     //
     this.line3.Dock         = System.Windows.Forms.DockStyle.Left;
     this.line3.ForeColor    = System.Drawing.Color.FromArgb(((int)(((byte)(124)))), ((int)(((byte)(124)))), ((int)(((byte)(124)))));
     this.line3.Location     = new System.Drawing.Point(0, 1);
     this.line3.Name         = "line3";
     this.line3.Size         = new System.Drawing.Size(1, 667);
     this.line3.TabIndex     = 6;
     this.line3.Text         = "line1";
     this.line3.VerticalLine = true;
     //
     // line4
     //
     this.line4.Dock         = System.Windows.Forms.DockStyle.Right;
     this.line4.ForeColor    = System.Drawing.Color.FromArgb(((int)(((byte)(124)))), ((int)(((byte)(124)))), ((int)(((byte)(124)))));
     this.line4.Location     = new System.Drawing.Point(866, 1);
     this.line4.Name         = "line4";
     this.line4.Size         = new System.Drawing.Size(1, 667);
     this.line4.TabIndex     = 6;
     this.line4.Text         = "line1";
     this.line4.VerticalLine = true;
     //
     // bar1
     //
     this.bar1.AccessibleDescription = "DotNetBar Bar (bar1)";
     this.bar1.AccessibleName        = "DotNetBar Bar";
     this.bar1.AccessibleRole        = System.Windows.Forms.AccessibleRole.StatusBar;
     this.bar1.AntiAlias             = true;
     this.bar1.BarType         = DevComponents.DotNetBar.eBarType.StatusBar;
     this.bar1.Dock            = System.Windows.Forms.DockStyle.Bottom;
     this.bar1.Font            = new System.Drawing.Font("微软雅黑", 9F);
     this.bar1.GrabHandleStyle = DevComponents.DotNetBar.eGrabHandleStyle.ResizeHandle;
     this.bar1.Location        = new System.Drawing.Point(0, 668);
     this.bar1.Name            = "bar1";
     this.bar1.Size            = new System.Drawing.Size(867, 26);
     this.bar1.Stretch         = true;
     this.bar1.Style           = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.bar1.TabIndex        = 5;
     this.bar1.TabStop         = false;
     this.bar1.Text            = "bar1";
     this.bar1.Visible         = false;
     //
     // pictureBox2
     //
     this.pictureBox2.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.pictureBox2.BackColor = System.Drawing.Color.Transparent;
     this.pictureBox2.Image     = global::IVX.Live.MainForm.Properties.Resources.最大化;
     this.pictureBox2.Location  = new System.Drawing.Point(36, 11);
     this.pictureBox2.Name      = "pictureBox2";
     this.pictureBox2.Size      = new System.Drawing.Size(30, 21);
     this.pictureBox2.SizeMode  = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.pictureBox2.TabIndex  = 5;
     this.pictureBox2.TabStop   = false;
     this.pictureBox2.Click    += new System.EventHandler(this.pictureBox2_Click);
     //
     // pictureBox3
     //
     this.pictureBox3.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.pictureBox3.BackColor = System.Drawing.Color.Transparent;
     this.pictureBox3.Image     = global::IVX.Live.MainForm.Properties.Resources.窗口化;
     this.pictureBox3.Location  = new System.Drawing.Point(36, 11);
     this.pictureBox3.Name      = "pictureBox3";
     this.pictureBox3.Size      = new System.Drawing.Size(30, 21);
     this.pictureBox3.SizeMode  = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.pictureBox3.TabIndex  = 7;
     this.pictureBox3.TabStop   = false;
     this.pictureBox3.Click    += new System.EventHandler(this.pictureBox3_Click);
     //
     // pictureBox4
     //
     this.pictureBox4.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.pictureBox4.BackColor = System.Drawing.Color.Transparent;
     this.pictureBox4.Image     = global::IVX.Live.MainForm.Properties.Resources.最小化;
     this.pictureBox4.Location  = new System.Drawing.Point(6, 11);
     this.pictureBox4.Name      = "pictureBox4";
     this.pictureBox4.Size      = new System.Drawing.Size(30, 21);
     this.pictureBox4.SizeMode  = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.pictureBox4.TabIndex  = 6;
     this.pictureBox4.TabStop   = false;
     this.pictureBox4.Click    += new System.EventHandler(this.pictureBox4_Click);
     //
     // pictureBox1
     //
     this.pictureBox1.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.pictureBox1.BackColor = System.Drawing.Color.Transparent;
     this.pictureBox1.Image     = global::IVX.Live.MainForm.Properties.Resources.关闭;
     this.pictureBox1.Location  = new System.Drawing.Point(66, 11);
     this.pictureBox1.Name      = "pictureBox1";
     this.pictureBox1.Size      = new System.Drawing.Size(30, 21);
     this.pictureBox1.SizeMode  = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.pictureBox1.TabIndex  = 4;
     this.pictureBox1.TabStop   = false;
     this.pictureBox1.Click    += new System.EventHandler(this.pictureBox1_Click);
     //
     // FormBase
     //
     this.ClientSize = new System.Drawing.Size(867, 695);
     this.ControlBox = false;
     this.Controls.Add(this.panelEx1);
     this.Controls.Add(this.line4);
     this.Controls.Add(this.line3);
     this.Controls.Add(this.line1);
     this.Controls.Add(this.bar1);
     this.Controls.Add(this.line2);
     this.DoubleBuffered  = true;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MinimumSize     = new System.Drawing.Size(400, 200);
     this.Name            = "FormBase";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.panelEx1.ResumeLayout(false);
     this.panelEx3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.ResumeLayout(false);
 }
Пример #19
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(AlertCustom));
     this.reflectionImage1 = new DevComponents.DotNetBar.Controls.ReflectionImage();
     this.bar1             = new DevComponents.DotNetBar.Bar();
     this.buttonItem1      = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem2      = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem3      = new DevComponents.DotNetBar.ButtonItem();
     this.labelX1          = new DevComponents.DotNetBar.LabelX();
     this.labelX2          = new DevComponents.DotNetBar.LabelX();
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).BeginInit();
     this.SuspendLayout();
     //
     // reflectionImage1
     //
     this.reflectionImage1.BackColor = System.Drawing.Color.Transparent;
     this.reflectionImage1.Image     = ((System.Drawing.Bitmap)(resources.GetObject("reflectionImage1.Image")));
     this.reflectionImage1.Location  = new System.Drawing.Point(8, 8);
     this.reflectionImage1.Name      = "reflectionImage1";
     this.reflectionImage1.Size      = new System.Drawing.Size(64, 100);
     this.reflectionImage1.TabIndex  = 0;
     //
     // bar1
     //
     this.bar1.BackColor = System.Drawing.Color.Transparent;
     this.bar1.Dock      = System.Windows.Forms.DockStyle.Bottom;
     this.bar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
         this.buttonItem1,
         this.buttonItem2,
         this.buttonItem3
     });
     this.bar1.Location = new System.Drawing.Point(0, 111);
     this.bar1.Name     = "bar1";
     this.bar1.Size     = new System.Drawing.Size(280, 25);
     this.bar1.Stretch  = true;
     this.bar1.Style    = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.bar1.TabIndex = 1;
     this.bar1.TabStop  = false;
     this.bar1.Text     = "bar1";
     //
     // buttonItem1
     //
     this.buttonItem1.Image = ((System.Drawing.Bitmap)(resources.GetObject("buttonItem1.Image")));
     this.buttonItem1.ImagePaddingHorizontal = 8;
     this.buttonItem1.Name = "buttonItem1";
     this.buttonItem1.Text = "buttonItem1";
     //
     // buttonItem2
     //
     this.buttonItem2.Image = ((System.Drawing.Bitmap)(resources.GetObject("buttonItem2.Image")));
     this.buttonItem2.ImagePaddingHorizontal = 8;
     this.buttonItem2.Name = "buttonItem2";
     this.buttonItem2.Text = "buttonItem2";
     //
     // buttonItem3
     //
     this.buttonItem3.ImagePaddingHorizontal = 8;
     this.buttonItem3.ItemAlignment          = DevComponents.DotNetBar.eItemAlignment.Far;
     this.buttonItem3.Name = "buttonItem3";
     this.buttonItem3.Text = "Options...";
     //
     // labelX1
     //
     this.labelX1.BackColor = System.Drawing.Color.Transparent;
     this.labelX1.Location  = new System.Drawing.Point(88, 32);
     this.labelX1.Name      = "labelX1";
     this.labelX1.Size      = new System.Drawing.Size(184, 16);
     this.labelX1.TabIndex  = 2;
     this.labelX1.Text      = "<b>Create great looking custom alerts</b>";
     //
     // labelX2
     //
     this.labelX2.BackColor = System.Drawing.Color.Transparent;
     this.labelX2.Location  = new System.Drawing.Point(88, 56);
     this.labelX2.Name      = "labelX2";
     this.labelX2.Size      = new System.Drawing.Size(184, 40);
     this.labelX2.TabIndex  = 3;
     this.labelX2.Text      = "Using Balloon and other controls included with DotNetBar you can create great loo" +
                              "king custom alerts.";
     this.labelX2.TextLineAlignment = System.Drawing.StringAlignment.Near;
     this.labelX2.WordWrap          = true;
     //
     // AlertCustom
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackColor         = System.Drawing.Color.FromArgb(((System.Byte)(227)), ((System.Byte)(239)), ((System.Byte)(255)));
     this.BackColor2        = System.Drawing.Color.FromArgb(((System.Byte)(175)), ((System.Byte)(210)), ((System.Byte)(255)));
     this.BorderColor       = System.Drawing.Color.FromArgb(((System.Byte)(101)), ((System.Byte)(147)), ((System.Byte)(207)));
     this.CaptionFont       = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.ClientSize        = new System.Drawing.Size(280, 136);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.labelX2,
         this.labelX1,
         this.bar1,
         this.reflectionImage1
     });
     this.ForeColor = System.Drawing.Color.FromArgb(((System.Byte)(8)), ((System.Byte)(55)), ((System.Byte)(114)));
     this.Location  = new System.Drawing.Point(0, 0);
     this.Name      = "AlertCustom";
     this.Style     = DevComponents.DotNetBar.eBallonStyle.Office2007Alert;
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).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(frmReport));
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
     this.crystalReportViewer1 = new CrystalDecisions.Windows.Forms.CrystalReportViewer();
     this.btnBack = new DevComponents.DotNetBar.ButtonX();
     this.pnlFilter = new DevComponents.DotNetBar.PanelEx();
     this.panelEx3 = new DevComponents.DotNetBar.PanelEx();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.btnView = new DevComponents.DotNetBar.ButtonX();
     this.txtString3 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.cmbReportList = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.chkBool3 = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.dtmDate2 = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.chkBool2 = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.dtmDate1 = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.lblString1 = new DevComponents.DotNetBar.LabelX();
     this.lblString3 = new DevComponents.DotNetBar.LabelX();
     this.chkBool1 = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.lblDate2 = new DevComponents.DotNetBar.LabelX();
     this.lblString2 = new DevComponents.DotNetBar.LabelX();
     this.lblDate1 = new DevComponents.DotNetBar.LabelX();
     this.lblDate3 = new DevComponents.DotNetBar.LabelX();
     this.dtmDate3 = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.panelEx4 = new DevComponents.DotNetBar.PanelEx();
     this.panelEx2 = new DevComponents.DotNetBar.PanelEx();
     this.grdList = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.bar1 = new DevComponents.DotNetBar.Bar();
     this.buttonItem1 = new DevComponents.DotNetBar.ButtonItem();
     this.lblList = new DevComponents.DotNetBar.LabelItem();
     this.txtString2 = new PT.Manager.PTComponent.MultiDropDownTextBox(this.components);
     this.txtString1 = new PT.Manager.PTComponent.MultiDropDownTextBox(this.components);
     this.panelEx1.SuspendLayout();
     this.pnlFilter.SuspendLayout();
     this.panelEx3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dtmDate2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtmDate1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtmDate3)).BeginInit();
     this.panelEx4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).BeginInit();
     this.SuspendLayout();
     //
     // panelEx1
     //
     this.panelEx1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.panelEx1.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx1.Controls.Add(this.crystalReportViewer1);
     this.panelEx1.Controls.Add(this.btnBack);
     this.panelEx1.Controls.Add(this.pnlFilter);
     this.panelEx1.Location = new System.Drawing.Point(0, 0);
     this.panelEx1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.panelEx1.Name = "panelEx1";
     this.panelEx1.Size = new System.Drawing.Size(1039, 495);
     this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx1.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx1.Style.GradientAngle = 90;
     this.panelEx1.TabIndex = 0;
     //
     // crystalReportViewer1
     //
     this.crystalReportViewer1.ActiveViewIndex = -1;
     this.crystalReportViewer1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.crystalReportViewer1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.crystalReportViewer1.Location = new System.Drawing.Point(0, 231);
     this.crystalReportViewer1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.crystalReportViewer1.Name = "crystalReportViewer1";
     this.crystalReportViewer1.SelectionFormula = "";
     this.crystalReportViewer1.Size = new System.Drawing.Size(1039, 264);
     this.crystalReportViewer1.TabIndex = 13;
     this.crystalReportViewer1.ViewTimeSelectionFormula = "";
     this.crystalReportViewer1.ReportRefresh += new CrystalDecisions.Windows.Forms.RefreshEventHandler(this.crystalReportViewer1_ReportRefresh);
     //
     // btnBack
     //
     this.btnBack.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnBack.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnBack.Dock = System.Windows.Forms.DockStyle.Top;
     this.btnBack.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.btnBack.Location = new System.Drawing.Point(0, 207);
     this.btnBack.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.btnBack.Name = "btnBack";
     this.btnBack.Size = new System.Drawing.Size(1039, 24);
     this.btnBack.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnBack.TabIndex = 12;
     this.btnBack.Text = "Hiện Toàn Màn Hình";
     this.btnBack.Click += new System.EventHandler(this.btnBack_Click_1);
     //
     // pnlFilter
     //
     this.pnlFilter.CanvasColor = System.Drawing.SystemColors.Control;
     this.pnlFilter.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.pnlFilter.Controls.Add(this.panelEx3);
     this.pnlFilter.Controls.Add(this.panelEx4);
     this.pnlFilter.Dock = System.Windows.Forms.DockStyle.Top;
     this.pnlFilter.Location = new System.Drawing.Point(0, 0);
     this.pnlFilter.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.pnlFilter.Name = "pnlFilter";
     this.pnlFilter.Size = new System.Drawing.Size(1039, 207);
     this.pnlFilter.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.pnlFilter.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.pnlFilter.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.pnlFilter.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.pnlFilter.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.pnlFilter.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.pnlFilter.Style.GradientAngle = 90;
     this.pnlFilter.TabIndex = 11;
     //
     // panelEx3
     //
     this.panelEx3.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx3.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx3.Controls.Add(this.txtString2);
     this.panelEx3.Controls.Add(this.txtString1);
     this.panelEx3.Controls.Add(this.labelX1);
     this.panelEx3.Controls.Add(this.btnView);
     this.panelEx3.Controls.Add(this.txtString3);
     this.panelEx3.Controls.Add(this.cmbReportList);
     this.panelEx3.Controls.Add(this.chkBool3);
     this.panelEx3.Controls.Add(this.dtmDate2);
     this.panelEx3.Controls.Add(this.chkBool2);
     this.panelEx3.Controls.Add(this.dtmDate1);
     this.panelEx3.Controls.Add(this.lblString1);
     this.panelEx3.Controls.Add(this.lblString3);
     this.panelEx3.Controls.Add(this.chkBool1);
     this.panelEx3.Controls.Add(this.lblDate2);
     this.panelEx3.Controls.Add(this.lblString2);
     this.panelEx3.Controls.Add(this.lblDate1);
     this.panelEx3.Controls.Add(this.lblDate3);
     this.panelEx3.Controls.Add(this.dtmDate3);
     this.panelEx3.Dock = System.Windows.Forms.DockStyle.Left;
     this.panelEx3.Location = new System.Drawing.Point(0, 0);
     this.panelEx3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.panelEx3.Name = "panelEx3";
     this.panelEx3.Size = new System.Drawing.Size(346, 207);
     this.panelEx3.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx3.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx3.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx3.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx3.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx3.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx3.Style.GradientAngle = 90;
     this.panelEx3.TabIndex = 17;
     //
     // labelX1
     //
     //
     //
     //
     this.labelX1.BackgroundStyle.Class = "";
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.labelX1.Location = new System.Drawing.Point(6, 12);
     this.labelX1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(46, 24);
     this.labelX1.TabIndex = 1;
     this.labelX1.Text = "Báo Cáo";
     //
     // btnView
     //
     this.btnView.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnView.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnView.Image = ((System.Drawing.Image)(resources.GetObject("btnView.Image")));
     this.btnView.ImageFixedSize = new System.Drawing.Size(20, 20);
     this.btnView.Location = new System.Drawing.Point(5, 170);
     this.btnView.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.btnView.Name = "btnView";
     this.btnView.Size = new System.Drawing.Size(328, 33);
     this.btnView.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnView.TabIndex = 9;
     this.btnView.Text = "Xem Báo Cáo";
     this.btnView.Click += new System.EventHandler(this.buttonX1_Click);
     //
     // txtString3
     //
     //
     //
     //
     this.txtString3.Border.Class = "TextBoxBorder";
     this.txtString3.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtString3.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtString3.Location = new System.Drawing.Point(224, 109);
     this.txtString3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.txtString3.Name = "txtString3";
     this.txtString3.Size = new System.Drawing.Size(100, 20);
     this.txtString3.TabIndex = 16;
     //
     // cmbReportList
     //
     this.cmbReportList.DisplayMember = "Text";
     this.cmbReportList.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cmbReportList.Font = new System.Drawing.Font("Arial", 8.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.cmbReportList.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
     this.cmbReportList.FormattingEnabled = true;
     this.cmbReportList.ItemHeight = 15;
     this.cmbReportList.Location = new System.Drawing.Point(58, 13);
     this.cmbReportList.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.cmbReportList.Name = "cmbReportList";
     this.cmbReportList.Size = new System.Drawing.Size(276, 21);
     this.cmbReportList.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.cmbReportList.TabIndex = 1;
     this.cmbReportList.SelectedValueChanged += new System.EventHandler(this.cmbReportList_SelectedValueChanged);
     //
     // chkBool3
     //
     //
     //
     //
     this.chkBool3.BackgroundStyle.Class = "";
     this.chkBool3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chkBool3.Enabled = false;
     this.chkBool3.Location = new System.Drawing.Point(223, 135);
     this.chkBool3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.chkBool3.Name = "chkBool3";
     this.chkBool3.Size = new System.Drawing.Size(82, 19);
     this.chkBool3.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.chkBool3.TabIndex = 14;
     this.chkBool3.Text = "Bool 3";
     //
     // dtmDate2
     //
     //
     //
     //
     this.dtmDate2.BackgroundStyle.Class = "DateTimeInputBackground";
     this.dtmDate2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtmDate2.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.dtmDate2.ButtonDropDown.Visible = true;
     this.dtmDate2.Enabled = false;
     this.dtmDate2.InputHorizontalAlignment = DevComponents.Editors.eHorizontalAlignment.Center;
     this.dtmDate2.IsPopupCalendarOpen = false;
     this.dtmDate2.Location = new System.Drawing.Point(116, 62);
     this.dtmDate2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     //
     //
     //
     this.dtmDate2.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dtmDate2.MonthCalendar.BackgroundStyle.Class = "";
     this.dtmDate2.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtmDate2.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.dtmDate2.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.dtmDate2.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.dtmDate2.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.dtmDate2.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.dtmDate2.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.dtmDate2.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.dtmDate2.MonthCalendar.CommandsBackgroundStyle.Class = "";
     this.dtmDate2.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtmDate2.MonthCalendar.DisplayMonth = new System.DateTime(2011, 12, 1, 0, 0, 0, 0);
     this.dtmDate2.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.dtmDate2.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dtmDate2.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.dtmDate2.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.dtmDate2.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.dtmDate2.MonthCalendar.NavigationBackgroundStyle.Class = "";
     this.dtmDate2.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtmDate2.MonthCalendar.TodayButtonVisible = true;
     this.dtmDate2.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dtmDate2.Name = "dtmDate2";
     this.dtmDate2.Size = new System.Drawing.Size(100, 20);
     this.dtmDate2.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.dtmDate2.TabIndex = 1;
     //
     // chkBool2
     //
     //
     //
     //
     this.chkBool2.BackgroundStyle.Class = "";
     this.chkBool2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chkBool2.Enabled = false;
     this.chkBool2.Location = new System.Drawing.Point(116, 135);
     this.chkBool2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.chkBool2.Name = "chkBool2";
     this.chkBool2.Size = new System.Drawing.Size(82, 19);
     this.chkBool2.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.chkBool2.TabIndex = 1;
     this.chkBool2.Text = "Bool 2";
     //
     // dtmDate1
     //
     //
     //
     //
     this.dtmDate1.BackgroundStyle.Class = "DateTimeInputBackground";
     this.dtmDate1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtmDate1.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.dtmDate1.ButtonDropDown.Visible = true;
     this.dtmDate1.Enabled = false;
     this.dtmDate1.InputHorizontalAlignment = DevComponents.Editors.eHorizontalAlignment.Center;
     this.dtmDate1.IsPopupCalendarOpen = false;
     this.dtmDate1.Location = new System.Drawing.Point(9, 62);
     this.dtmDate1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     //
     //
     //
     this.dtmDate1.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dtmDate1.MonthCalendar.BackgroundStyle.Class = "";
     this.dtmDate1.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtmDate1.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.dtmDate1.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.dtmDate1.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.dtmDate1.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.dtmDate1.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.dtmDate1.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.dtmDate1.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.dtmDate1.MonthCalendar.CommandsBackgroundStyle.Class = "";
     this.dtmDate1.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtmDate1.MonthCalendar.DisplayMonth = new System.DateTime(2011, 12, 1, 0, 0, 0, 0);
     this.dtmDate1.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.dtmDate1.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dtmDate1.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.dtmDate1.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.dtmDate1.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.dtmDate1.MonthCalendar.NavigationBackgroundStyle.Class = "";
     this.dtmDate1.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtmDate1.MonthCalendar.TodayButtonVisible = true;
     this.dtmDate1.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dtmDate1.Name = "dtmDate1";
     this.dtmDate1.Size = new System.Drawing.Size(100, 20);
     this.dtmDate1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.dtmDate1.TabIndex = 11;
     //
     // lblString1
     //
     //
     //
     //
     this.lblString1.BackgroundStyle.Class = "";
     this.lblString1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblString1.Location = new System.Drawing.Point(10, 89);
     this.lblString1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.lblString1.Name = "lblString1";
     this.lblString1.Size = new System.Drawing.Size(95, 18);
     this.lblString1.TabIndex = 6;
     this.lblString1.Text = "String 1";
     //
     // lblString3
     //
     //
     //
     //
     this.lblString3.BackgroundStyle.Class = "";
     this.lblString3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblString3.Location = new System.Drawing.Point(224, 89);
     this.lblString3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.lblString3.Name = "lblString3";
     this.lblString3.Size = new System.Drawing.Size(95, 18);
     this.lblString3.TabIndex = 9;
     this.lblString3.Text = "String 3";
     //
     // chkBool1
     //
     //
     //
     //
     this.chkBool1.BackgroundStyle.Class = "";
     this.chkBool1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chkBool1.Enabled = false;
     this.chkBool1.Location = new System.Drawing.Point(9, 135);
     this.chkBool1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.chkBool1.Name = "chkBool1";
     this.chkBool1.Size = new System.Drawing.Size(82, 19);
     this.chkBool1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.chkBool1.TabIndex = 0;
     this.chkBool1.Text = "Bool 1";
     //
     // lblDate2
     //
     //
     //
     //
     this.lblDate2.BackgroundStyle.Class = "";
     this.lblDate2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblDate2.Location = new System.Drawing.Point(116, 42);
     this.lblDate2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.lblDate2.Name = "lblDate2";
     this.lblDate2.Size = new System.Drawing.Size(95, 18);
     this.lblDate2.TabIndex = 5;
     this.lblDate2.Text = "Date 2";
     //
     // lblString2
     //
     //
     //
     //
     this.lblString2.BackgroundStyle.Class = "";
     this.lblString2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblString2.Location = new System.Drawing.Point(117, 89);
     this.lblString2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.lblString2.Name = "lblString2";
     this.lblString2.Size = new System.Drawing.Size(95, 18);
     this.lblString2.TabIndex = 7;
     this.lblString2.Text = "String 2";
     //
     // lblDate1
     //
     //
     //
     //
     this.lblDate1.BackgroundStyle.Class = "";
     this.lblDate1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblDate1.Location = new System.Drawing.Point(9, 40);
     this.lblDate1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.lblDate1.Name = "lblDate1";
     this.lblDate1.Size = new System.Drawing.Size(95, 18);
     this.lblDate1.TabIndex = 4;
     this.lblDate1.Text = "Date 1";
     //
     // lblDate3
     //
     //
     //
     //
     this.lblDate3.BackgroundStyle.Class = "";
     this.lblDate3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblDate3.Location = new System.Drawing.Point(223, 43);
     this.lblDate3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.lblDate3.Name = "lblDate3";
     this.lblDate3.Size = new System.Drawing.Size(95, 18);
     this.lblDate3.TabIndex = 13;
     this.lblDate3.Text = "Date 3";
     //
     // dtmDate3
     //
     //
     //
     //
     this.dtmDate3.BackgroundStyle.Class = "DateTimeInputBackground";
     this.dtmDate3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtmDate3.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.dtmDate3.ButtonDropDown.Visible = true;
     this.dtmDate3.Enabled = false;
     this.dtmDate3.InputHorizontalAlignment = DevComponents.Editors.eHorizontalAlignment.Center;
     this.dtmDate3.IsPopupCalendarOpen = false;
     this.dtmDate3.Location = new System.Drawing.Point(223, 62);
     this.dtmDate3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     //
     //
     //
     this.dtmDate3.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dtmDate3.MonthCalendar.BackgroundStyle.Class = "";
     this.dtmDate3.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtmDate3.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.dtmDate3.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.dtmDate3.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.dtmDate3.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.dtmDate3.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.dtmDate3.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.dtmDate3.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.dtmDate3.MonthCalendar.CommandsBackgroundStyle.Class = "";
     this.dtmDate3.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtmDate3.MonthCalendar.DisplayMonth = new System.DateTime(2011, 12, 1, 0, 0, 0, 0);
     this.dtmDate3.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.dtmDate3.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dtmDate3.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.dtmDate3.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.dtmDate3.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.dtmDate3.MonthCalendar.NavigationBackgroundStyle.Class = "";
     this.dtmDate3.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtmDate3.MonthCalendar.TodayButtonVisible = true;
     this.dtmDate3.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dtmDate3.Name = "dtmDate3";
     this.dtmDate3.Size = new System.Drawing.Size(100, 20);
     this.dtmDate3.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.dtmDate3.TabIndex = 12;
     //
     // panelEx4
     //
     this.panelEx4.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx4.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx4.Controls.Add(this.panelEx2);
     this.panelEx4.Controls.Add(this.grdList);
     this.panelEx4.Controls.Add(this.bar1);
     this.panelEx4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelEx4.Location = new System.Drawing.Point(0, 0);
     this.panelEx4.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.panelEx4.Name = "panelEx4";
     this.panelEx4.Size = new System.Drawing.Size(1039, 207);
     this.panelEx4.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx4.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx4.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx4.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx4.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx4.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx4.Style.GradientAngle = 90;
     this.panelEx4.TabIndex = 18;
     //
     // panelEx2
     //
     this.panelEx2.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx2.Location = new System.Drawing.Point(433, 42);
     this.panelEx2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.panelEx2.Name = "panelEx2";
     this.panelEx2.Size = new System.Drawing.Size(328, 163);
     this.panelEx2.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx2.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx2.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx2.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx2.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx2.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx2.Style.GradientAngle = 90;
     this.panelEx2.TabIndex = 14;
     //
     // grdList
     //
     this.grdList.BackgroundColor = System.Drawing.Color.White;
     this.grdList.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.grdList.DefaultCellStyle = dataGridViewCellStyle1;
     this.grdList.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdList.Enabled = false;
     this.grdList.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.grdList.Location = new System.Drawing.Point(0, 29);
     this.grdList.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.grdList.Name = "grdList";
     this.grdList.Size = new System.Drawing.Size(1039, 178);
     this.grdList.TabIndex = 1;
     this.grdList.Visible = false;
     //
     // bar1
     //
     this.bar1.AntiAlias = true;
     this.bar1.Dock = System.Windows.Forms.DockStyle.Top;
     this.bar1.DockSide = DevComponents.DotNetBar.eDockSide.Document;
     this.bar1.DockTabStripHeight = 15;
     this.bar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem1,
     this.lblList});
     this.bar1.Location = new System.Drawing.Point(0, 0);
     this.bar1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.bar1.Name = "bar1";
     this.bar1.Size = new System.Drawing.Size(1039, 29);
     this.bar1.Stretch = true;
     this.bar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.bar1.TabIndex = 16;
     this.bar1.TabStop = false;
     this.bar1.Text = "bar1";
     //
     // buttonItem1
     //
     this.buttonItem1.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem1.Image")));
     this.buttonItem1.ImageFixedSize = new System.Drawing.Size(20, 20);
     this.buttonItem1.Name = "buttonItem1";
     this.buttonItem1.Text = "buttonItem1";
     this.buttonItem1.Tooltip = "Lấy Dữ Liệu";
     //
     // lblList
     //
     this.lblList.Name = "lblList";
     //
     // txtString2
     //
     this.txtString2.AutoComplete = false;
     this.txtString2.AutoDropdown = false;
     this.txtString2.AutoReSizeColumn = false;
     this.txtString2.BackColorEven = System.Drawing.Color.White;
     this.txtString2.BackColorOdd = System.Drawing.Color.White;
     //
     //
     //
     this.txtString2.Border.Class = "TextBoxBorder";
     this.txtString2.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtString2.ColumnHeaders = "";
     this.txtString2.ColumnNames = "";
     this.txtString2.ColumnWidthDefault = 75;
     this.txtString2.ColumnWidths = "";
     this.txtString2.DataSource = null;
     this.txtString2.Language = "Language1";
     this.txtString2.LinkedColumnIndex = 0;
     this.txtString2.LinkedTextBox = null;
     this.txtString2.Location = new System.Drawing.Point(118, 109);
     this.txtString2.Name = "txtString2";
     this.txtString2.RowsDisplay = 10;
     this.txtString2.Size = new System.Drawing.Size(100, 20);
     this.txtString2.TabIndex = 18;
     //
     // txtString1
     //
     this.txtString1.AutoComplete = false;
     this.txtString1.AutoDropdown = false;
     this.txtString1.AutoReSizeColumn = false;
     this.txtString1.BackColorEven = System.Drawing.Color.White;
     this.txtString1.BackColorOdd = System.Drawing.Color.White;
     //
     //
     //
     this.txtString1.Border.Class = "TextBoxBorder";
     this.txtString1.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtString1.ColumnHeaders = "";
     this.txtString1.ColumnNames = "";
     this.txtString1.ColumnWidthDefault = 75;
     this.txtString1.ColumnWidths = "";
     this.txtString1.DataSource = null;
     this.txtString1.Language = "Language1";
     this.txtString1.LinkedColumnIndex = 0;
     this.txtString1.LinkedTextBox = null;
     this.txtString1.Location = new System.Drawing.Point(9, 109);
     this.txtString1.Name = "txtString1";
     this.txtString1.RowsDisplay = 10;
     this.txtString1.Size = new System.Drawing.Size(100, 20);
     this.txtString1.TabIndex = 18;
     //
     // frmReport
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
     this.ClientSize = new System.Drawing.Size(1039, 495);
     this.Controls.Add(this.panelEx1);
     this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.Name = "frmReport";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "frmReport";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.frmReport_Load);
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmReport_FormClosing);
     this.panelEx1.ResumeLayout(false);
     this.pnlFilter.ResumeLayout(false);
     this.panelEx3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dtmDate2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtmDate1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtmDate3)).EndInit();
     this.panelEx4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).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(DockableShell));
     this.mainmenu = new DevComponents.DotNetBar.Bar();
     this.buttonItem1 = new DevComponents.DotNetBar.ButtonItem();
     this.btnLogin = new DevComponents.DotNetBar.ButtonItem();
     this.btnLogout = new DevComponents.DotNetBar.ButtonItem();
     this.btnCPassword = new DevComponents.DotNetBar.ButtonItem();
     this.btnExit = new DevComponents.DotNetBar.ButtonItem();
     this.btnView = new DevComponents.DotNetBar.ButtonItem();
     this.btnClose = new DevComponents.DotNetBar.ButtonItem();
     this.btnCloseAll = new DevComponents.DotNetBar.ButtonItem();
     this.btnHelp = new DevComponents.DotNetBar.ButtonItem();
     this.btnContext = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem2 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem3 = new DevComponents.DotNetBar.ButtonItem();
     this.btnAbout = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem11 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem12 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem13 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem14 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem15 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem16 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem17 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem18 = new DevComponents.DotNetBar.ButtonItem();
     this.textBoxItem1 = new DevComponents.DotNetBar.TextBoxItem();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.imageList2 = new System.Windows.Forms.ImageList(this.components);
     this.panBottom = new DevComponents.DotNetBar.PanelEx();
     this.bottomControl1 = new Gas_test2.Res.BottomControl();
     this.dotNetBarManager1 = new DevComponents.DotNetBar.DotNetBarManager(this.components);
     this.dockSite4 = new DevComponents.DotNetBar.DockSite();
     this.dockSite9 = new DevComponents.DotNetBar.DockSite();
     this.barDocuments = new DevComponents.DotNetBar.Bar();
     this.dockSite1 = new DevComponents.DotNetBar.DockSite();
     this.barNavigation = new DevComponents.DotNetBar.Bar();
     this.panNavigation = new DevComponents.DotNetBar.PanelDockContainer();
     this.dockContainerItem1 = new DevComponents.DotNetBar.DockContainerItem();
     this.dockSite2 = new DevComponents.DotNetBar.DockSite();
     this.dockSite8 = new DevComponents.DotNetBar.DockSite();
     this.dockSite5 = new DevComponents.DotNetBar.DockSite();
     this.dockSite6 = new DevComponents.DotNetBar.DockSite();
     this.dockSite7 = new DevComponents.DotNetBar.DockSite();
     this.dockSite3 = new DevComponents.DotNetBar.DockSite();
     this.styleManager1 = new DevComponents.DotNetBar.StyleManager(this.components);
     this.btnSystem = new DevComponents.DotNetBar.ButtonItem();
     this.item_100 = new DevComponents.DotNetBar.ButtonItem();
     this.item_111 = new DevComponents.DotNetBar.ButtonItem();
     this.item_122 = new DevComponents.DotNetBar.ButtonItem();
     this.item_133 = new DevComponents.DotNetBar.ButtonItem();
     this.item_144 = new DevComponents.DotNetBar.ButtonItem();
     this.item_155 = new DevComponents.DotNetBar.ButtonItem();
     this.item_166 = new DevComponents.DotNetBar.ButtonItem();
     ((System.ComponentModel.ISupportInitialize)(this.mainmenu)).BeginInit();
     this.panBottom.SuspendLayout();
     this.dockSite9.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.barDocuments)).BeginInit();
     this.dockSite1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.barNavigation)).BeginInit();
     this.barNavigation.SuspendLayout();
     this.SuspendLayout();
     //
     // mainmenu
     //
     this.mainmenu.AccessibleDescription = "DotNetBar Bar (mainmenu)";
     this.mainmenu.AccessibleName = "DotNetBar Bar";
     this.mainmenu.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuBar;
     this.mainmenu.Dock = System.Windows.Forms.DockStyle.Top;
     this.mainmenu.Font = new System.Drawing.Font("Microsoft YaHei UI", 9F);
     this.mainmenu.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem1,
     this.btnView,
     this.btnHelp});
     this.mainmenu.Location = new System.Drawing.Point(0, 0);
     this.mainmenu.LockDockPosition = true;
     this.mainmenu.MenuBar = true;
     this.mainmenu.Name = "mainmenu";
     this.mainmenu.Size = new System.Drawing.Size(986, 25);
     this.mainmenu.Stretch = true;
     this.mainmenu.Style = DevComponents.DotNetBar.eDotNetBarStyle.VS2005;
     this.mainmenu.TabIndex = 1;
     this.mainmenu.TabStop = false;
     this.mainmenu.Text = "Main Menu";
     //
     // buttonItem1
     //
     this.buttonItem1.GlobalName = "item_67";
     this.buttonItem1.Name = "buttonItem1";
     this.buttonItem1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnLogin,
     this.btnLogout,
     this.btnCPassword,
     this.btnExit});
     this.buttonItem1.Text = "系统(&S)";
     //
     // btnLogin
     //
     this.btnLogin.Name = "btnLogin";
     this.btnLogin.Text = "登录(&L)";
     this.btnLogin.Click += new System.EventHandler(this.btnLogin_Click);
     //
     // btnLogout
     //
     this.btnLogout.ImageIndex = 10;
     this.btnLogout.Name = "btnLogout";
     this.btnLogout.Text = "注销(&O)";
     this.btnLogout.Click += new System.EventHandler(this.btnLogout_Click);
     //
     // btnCPassword
     //
     this.btnCPassword.BeginGroup = true;
     this.btnCPassword.Name = "btnCPassword";
     this.btnCPassword.Text = "修改密码";
     this.btnCPassword.Click += new System.EventHandler(this.btnCPassword_Click);
     //
     // btnExit
     //
     this.btnExit.BeginGroup = true;
     this.btnExit.Name = "btnExit";
     this.btnExit.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.AltF4);
     this.btnExit.Text = "退出(&E)";
     this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
     //
     // btnView
     //
     this.btnView.Name = "btnView";
     this.btnView.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnClose,
     this.btnCloseAll});
     this.btnView.Text = "视图(&V)";
     //
     // btnClose
     //
     this.btnClose.GlobalName = "item_237";
     this.btnClose.Name = "btnClose";
     this.btnClose.Text = "关闭当前模块";
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
     //
     // btnCloseAll
     //
     this.btnCloseAll.GlobalName = "item_248";
     this.btnCloseAll.Name = "btnCloseAll";
     this.btnCloseAll.Text = "关闭所有模块";
     this.btnCloseAll.Click += new System.EventHandler(this.btnCloseAll_Click);
     //
     // btnHelp
     //
     this.btnHelp.Name = "btnHelp";
     this.btnHelp.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnContext,
     this.buttonItem2,
     this.buttonItem3,
     this.btnAbout});
     this.btnHelp.Text = "帮助(&H)";
     //
     // btnContext
     //
     this.btnContext.Name = "btnContext";
     this.btnContext.Text = "内容";
     //
     // buttonItem2
     //
     this.buttonItem2.Name = "buttonItem2";
     this.buttonItem2.Text = "搜索";
     //
     // buttonItem3
     //
     this.buttonItem3.Name = "buttonItem3";
     this.buttonItem3.Text = "索引";
     //
     // btnAbout
     //
     this.btnAbout.BeginGroup = true;
     this.btnAbout.Name = "btnAbout";
     this.btnAbout.Text = "关于";
     this.btnAbout.Click += new System.EventHandler(this.btnAbout_Click);
     //
     // buttonItem11
     //
     this.buttonItem11.GlobalName = "item_167";
     this.buttonItem11.Name = "buttonItem11";
     this.buttonItem11.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem12,
     this.buttonItem13,
     this.buttonItem14,
     this.buttonItem15,
     this.buttonItem16,
     this.buttonItem17,
     this.buttonItem18,
     this.textBoxItem1});
     this.buttonItem11.Text = "&Edit";
     //
     // buttonItem12
     //
     this.buttonItem12.GlobalName = "item_237";
     this.buttonItem12.Name = "buttonItem12";
     this.buttonItem12.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlZ);
     this.buttonItem12.Text = "&Undo";
     //
     // buttonItem13
     //
     this.buttonItem13.GlobalName = "item_248";
     this.buttonItem13.Name = "buttonItem13";
     this.buttonItem13.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlY);
     this.buttonItem13.Text = "&Redo";
     //
     // buttonItem14
     //
     this.buttonItem14.BeginGroup = true;
     this.buttonItem14.GlobalName = "item_259";
     this.buttonItem14.ImageIndex = 5;
     this.buttonItem14.Name = "buttonItem14";
     this.buttonItem14.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlX);
     this.buttonItem14.Text = "Cut";
     //
     // buttonItem15
     //
     this.buttonItem15.GlobalName = "item_270";
     this.buttonItem15.ImageIndex = 4;
     this.buttonItem15.Name = "buttonItem15";
     this.buttonItem15.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlC);
     this.buttonItem15.Text = "Copy";
     //
     // buttonItem16
     //
     this.buttonItem16.GlobalName = "item_281";
     this.buttonItem16.ImageIndex = 11;
     this.buttonItem16.Name = "buttonItem16";
     this.buttonItem16.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlV);
     this.buttonItem16.Text = "Paste";
     //
     // buttonItem17
     //
     this.buttonItem17.GlobalName = "item_292";
     this.buttonItem17.Name = "buttonItem17";
     this.buttonItem17.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.Del);
     this.buttonItem17.Text = "Delete";
     //
     // buttonItem18
     //
     this.buttonItem18.GlobalName = "item_303";
     this.buttonItem18.Name = "buttonItem18";
     this.buttonItem18.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlA);
     this.buttonItem18.Text = "Select All";
     //
     // textBoxItem1
     //
     this.textBoxItem1.Name = "textBoxItem1";
     this.textBoxItem1.Text = "textBoxItem1";
     this.textBoxItem1.WatermarkColor = System.Drawing.SystemColors.GrayText;
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Magenta;
     this.imageList1.Images.SetKeyName(0, "");
     this.imageList1.Images.SetKeyName(1, "");
     this.imageList1.Images.SetKeyName(2, "");
     this.imageList1.Images.SetKeyName(3, "");
     this.imageList1.Images.SetKeyName(4, "");
     this.imageList1.Images.SetKeyName(5, "");
     this.imageList1.Images.SetKeyName(6, "");
     this.imageList1.Images.SetKeyName(7, "");
     this.imageList1.Images.SetKeyName(8, "");
     this.imageList1.Images.SetKeyName(9, "");
     this.imageList1.Images.SetKeyName(10, "");
     this.imageList1.Images.SetKeyName(11, "");
     this.imageList1.Images.SetKeyName(12, "");
     this.imageList1.Images.SetKeyName(13, "");
     this.imageList1.Images.SetKeyName(14, "");
     this.imageList1.Images.SetKeyName(15, "");
     this.imageList1.Images.SetKeyName(16, "");
     this.imageList1.Images.SetKeyName(17, "");
     //
     // imageList2
     //
     this.imageList2.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList2.ImageStream")));
     this.imageList2.TransparentColor = System.Drawing.Color.Magenta;
     this.imageList2.Images.SetKeyName(0, "");
     this.imageList2.Images.SetKeyName(1, "");
     this.imageList2.Images.SetKeyName(2, "");
     this.imageList2.Images.SetKeyName(3, "");
     this.imageList2.Images.SetKeyName(4, "");
     this.imageList2.Images.SetKeyName(5, "");
     this.imageList2.Images.SetKeyName(6, "");
     this.imageList2.Images.SetKeyName(7, "");
     this.imageList2.Images.SetKeyName(8, "");
     //
     // panBottom
     //
     this.panBottom.CanvasColor = System.Drawing.SystemColors.ButtonHighlight;
     this.panBottom.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.VS2005;
     this.panBottom.Controls.Add(this.bottomControl1);
     this.panBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panBottom.Location = new System.Drawing.Point(0, 437);
     this.panBottom.Name = "panBottom";
     this.panBottom.Size = new System.Drawing.Size(986, 28);
     this.panBottom.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panBottom.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.panBottom.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.panBottom.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.panBottom.Style.GradientAngle = 90;
     this.panBottom.TabIndex = 7;
     this.panBottom.Text = "panBottom";
     //
     // bottomControl1
     //
     this.bottomControl1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.bottomControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.bottomControl1.Location = new System.Drawing.Point(0, 0);
     this.bottomControl1.Margin = new System.Windows.Forms.Padding(0);
     this.bottomControl1.Name = "bottomControl1";
     this.bottomControl1.Size = new System.Drawing.Size(986, 28);
     this.bottomControl1.TabIndex = 1;
     //
     // dotNetBarManager1
     //
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.F1);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlC);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlA);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlV);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlX);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlZ);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlY);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Del);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Ins);
     this.dotNetBarManager1.BottomDockSite = this.dockSite4;
     this.dotNetBarManager1.EnableFullSizeDock = false;
     this.dotNetBarManager1.FillDockSite = this.dockSite9;
     this.dotNetBarManager1.LeftDockSite = this.dockSite1;
     this.dotNetBarManager1.ParentForm = this;
     this.dotNetBarManager1.RightDockSite = this.dockSite2;
     this.dotNetBarManager1.Style = DevComponents.DotNetBar.eDotNetBarStyle.VS2005;
     this.dotNetBarManager1.ToolbarBottomDockSite = this.dockSite8;
     this.dotNetBarManager1.ToolbarLeftDockSite = this.dockSite5;
     this.dotNetBarManager1.ToolbarRightDockSite = this.dockSite6;
     this.dotNetBarManager1.ToolbarTopDockSite = this.dockSite7;
     this.dotNetBarManager1.TopDockSite = this.dockSite3;
     //
     // dockSite4
     //
     this.dockSite4.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite4.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.dockSite4.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite4.Location = new System.Drawing.Point(0, 465);
     this.dockSite4.Name = "dockSite4";
     this.dockSite4.Size = new System.Drawing.Size(986, 0);
     this.dockSite4.TabIndex = 11;
     this.dockSite4.TabStop = false;
     //
     // dockSite9
     //
     this.dockSite9.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite9.Controls.Add(this.barDocuments);
     this.dockSite9.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dockSite9.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer(new DevComponents.DotNetBar.DocumentBaseContainer[] {
     ((DevComponents.DotNetBar.DocumentBaseContainer)(new DevComponents.DotNetBar.DocumentBarContainer(this.barDocuments, 786, 412)))}, DevComponents.DotNetBar.eOrientation.Horizontal);
     this.dockSite9.Location = new System.Drawing.Point(200, 25);
     this.dockSite9.Name = "dockSite9";
     this.dockSite9.Size = new System.Drawing.Size(786, 412);
     this.dockSite9.TabIndex = 16;
     this.dockSite9.TabStop = false;
     //
     // barDocuments
     //
     this.barDocuments.AccessibleDescription = "DotNetBar Bar (barDocuments)";
     this.barDocuments.AccessibleName = "DotNetBar Bar";
     this.barDocuments.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.barDocuments.AlwaysDisplayDockTab = true;
     this.barDocuments.CanCustomize = false;
     this.barDocuments.CanDockBottom = false;
     this.barDocuments.CanDockDocument = true;
     this.barDocuments.CanDockLeft = false;
     this.barDocuments.CanDockRight = false;
     this.barDocuments.CanDockTop = false;
     this.barDocuments.CanHide = true;
     this.barDocuments.CanUndock = false;
     this.barDocuments.DockTabAlignment = DevComponents.DotNetBar.eTabStripAlignment.Top;
     this.barDocuments.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.barDocuments.LayoutType = DevComponents.DotNetBar.eLayoutType.DockContainer;
     this.barDocuments.Location = new System.Drawing.Point(0, 0);
     this.barDocuments.Name = "barDocuments";
     this.barDocuments.Size = new System.Drawing.Size(786, 412);
     this.barDocuments.Stretch = true;
     this.barDocuments.Style = DevComponents.DotNetBar.eDotNetBarStyle.VS2005;
     this.barDocuments.TabIndex = 0;
     this.barDocuments.TabNavigation = true;
     this.barDocuments.TabStop = false;
     this.barDocuments.DockTabClosing += new DevComponents.DotNetBar.DockTabClosingEventHandler(this.barDocuments_DockTabClosing);
     //
     // dockSite1
     //
     this.dockSite1.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite1.Controls.Add(this.barNavigation);
     this.dockSite1.Dock = System.Windows.Forms.DockStyle.Left;
     this.dockSite1.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer(new DevComponents.DotNetBar.DocumentBaseContainer[] {
     ((DevComponents.DotNetBar.DocumentBaseContainer)(new DevComponents.DotNetBar.DocumentBarContainer(this.barNavigation, 197, 412)))}, DevComponents.DotNetBar.eOrientation.Horizontal);
     this.dockSite1.Location = new System.Drawing.Point(0, 25);
     this.dockSite1.Name = "dockSite1";
     this.dockSite1.Size = new System.Drawing.Size(200, 412);
     this.dockSite1.TabIndex = 8;
     this.dockSite1.TabStop = false;
     //
     // barNavigation
     //
     this.barNavigation.AccessibleDescription = "DotNetBar Bar (barNavigation)";
     this.barNavigation.AccessibleName = "DotNetBar Bar";
     this.barNavigation.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.barNavigation.AutoSyncBarCaption = true;
     this.barNavigation.CloseSingleTab = true;
     this.barNavigation.Controls.Add(this.panNavigation);
     this.barNavigation.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.barNavigation.GrabHandleStyle = DevComponents.DotNetBar.eGrabHandleStyle.Caption;
     this.barNavigation.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.dockContainerItem1});
     this.barNavigation.LayoutType = DevComponents.DotNetBar.eLayoutType.DockContainer;
     this.barNavigation.Location = new System.Drawing.Point(0, 0);
     this.barNavigation.Name = "barNavigation";
     this.barNavigation.Size = new System.Drawing.Size(197, 412);
     this.barNavigation.Stretch = true;
     this.barNavigation.Style = DevComponents.DotNetBar.eDotNetBarStyle.VS2005;
     this.barNavigation.TabIndex = 0;
     this.barNavigation.TabStop = false;
     this.barNavigation.Text = "导航栏";
     //
     // panNavigation
     //
     this.panNavigation.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.VS2005;
     this.panNavigation.Location = new System.Drawing.Point(3, 23);
     this.panNavigation.Name = "panNavigation";
     this.panNavigation.Size = new System.Drawing.Size(191, 386);
     this.panNavigation.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panNavigation.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.panNavigation.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.panNavigation.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.panNavigation.Style.GradientAngle = 90;
     this.panNavigation.TabIndex = 0;
     //
     // dockContainerItem1
     //
     this.dockContainerItem1.Control = this.panNavigation;
     this.dockContainerItem1.Name = "dockContainerItem1";
     this.dockContainerItem1.Text = "导航栏";
     //
     // dockSite2
     //
     this.dockSite2.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite2.Dock = System.Windows.Forms.DockStyle.Right;
     this.dockSite2.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite2.Location = new System.Drawing.Point(986, 25);
     this.dockSite2.Name = "dockSite2";
     this.dockSite2.Size = new System.Drawing.Size(0, 412);
     this.dockSite2.TabIndex = 9;
     this.dockSite2.TabStop = false;
     //
     // dockSite8
     //
     this.dockSite8.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite8.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.dockSite8.Location = new System.Drawing.Point(0, 465);
     this.dockSite8.Name = "dockSite8";
     this.dockSite8.Size = new System.Drawing.Size(986, 0);
     this.dockSite8.TabIndex = 15;
     this.dockSite8.TabStop = false;
     //
     // dockSite5
     //
     this.dockSite5.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite5.Dock = System.Windows.Forms.DockStyle.Left;
     this.dockSite5.Location = new System.Drawing.Point(0, 0);
     this.dockSite5.Name = "dockSite5";
     this.dockSite5.Size = new System.Drawing.Size(0, 465);
     this.dockSite5.TabIndex = 12;
     this.dockSite5.TabStop = false;
     //
     // dockSite6
     //
     this.dockSite6.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite6.Dock = System.Windows.Forms.DockStyle.Right;
     this.dockSite6.Location = new System.Drawing.Point(986, 0);
     this.dockSite6.Name = "dockSite6";
     this.dockSite6.Size = new System.Drawing.Size(0, 465);
     this.dockSite6.TabIndex = 13;
     this.dockSite6.TabStop = false;
     //
     // dockSite7
     //
     this.dockSite7.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite7.Dock = System.Windows.Forms.DockStyle.Top;
     this.dockSite7.Location = new System.Drawing.Point(0, 0);
     this.dockSite7.Name = "dockSite7";
     this.dockSite7.Size = new System.Drawing.Size(986, 0);
     this.dockSite7.TabIndex = 14;
     this.dockSite7.TabStop = false;
     //
     // dockSite3
     //
     this.dockSite3.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite3.Dock = System.Windows.Forms.DockStyle.Top;
     this.dockSite3.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite3.Location = new System.Drawing.Point(0, 0);
     this.dockSite3.Name = "dockSite3";
     this.dockSite3.Size = new System.Drawing.Size(986, 0);
     this.dockSite3.TabIndex = 10;
     this.dockSite3.TabStop = false;
     //
     // styleManager1
     //
     this.styleManager1.ManagerStyle = DevComponents.DotNetBar.eStyle.VisualStudio2010Blue;
     this.styleManager1.MetroColorParameters = new DevComponents.DotNetBar.Metro.ColorTables.MetroColorGeneratorParameters(System.Drawing.Color.White, System.Drawing.Color.FromArgb(((int)(((byte)(43)))), ((int)(((byte)(87)))), ((int)(((byte)(154))))));
     //
     // btnSystem
     //
     this.btnSystem.GlobalName = "btnSystem";
     this.btnSystem.Name = "btnSystem";
     this.btnSystem.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.item_100,
     this.item_111,
     this.item_122,
     this.item_133,
     this.item_144,
     this.item_155,
     this.item_166});
     this.btnSystem.Text = "系统(&S)";
     //
     // item_100
     //
     this.item_100.GlobalName = "item_100";
     this.item_100.Name = "item_100";
     this.item_100.Text = "&Close";
     //
     // item_111
     //
     this.item_111.BeginGroup = true;
     this.item_111.GlobalName = "item_111";
     this.item_111.Name = "item_111";
     this.item_111.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlShiftA);
     this.item_111.Text = "Add Ne&w Item";
     //
     // item_122
     //
     this.item_122.GlobalName = "item_122";
     this.item_122.Name = "item_122";
     this.item_122.Text = "Add Existin&g Item";
     //
     // item_133
     //
     this.item_133.GlobalName = "item_133";
     this.item_133.Name = "item_133";
     this.item_133.Text = "A&dd Project";
     //
     // item_144
     //
     this.item_144.BeginGroup = true;
     this.item_144.GlobalName = "item_144";
     this.item_144.Name = "item_144";
     this.item_144.Text = "Open Solution";
     //
     // item_155
     //
     this.item_155.GlobalName = "item_155";
     this.item_155.Name = "item_155";
     this.item_155.Text = "Close Solution";
     //
     // item_166
     //
     this.item_166.BeginGroup = true;
     this.item_166.GlobalName = "item_166";
     this.item_166.Name = "item_166";
     this.item_166.Text = "&Exit";
     //
     // DockableShell
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(986, 465);
     this.Controls.Add(this.dockSite9);
     this.Controls.Add(this.dockSite2);
     this.Controls.Add(this.dockSite1);
     this.Controls.Add(this.panBottom);
     this.Controls.Add(this.mainmenu);
     this.Controls.Add(this.dockSite3);
     this.Controls.Add(this.dockSite4);
     this.Controls.Add(this.dockSite5);
     this.Controls.Add(this.dockSite6);
     this.Controls.Add(this.dockSite7);
     this.Controls.Add(this.dockSite8);
     this.Name = "DockableShell";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "AgileEAS.NET SOA中间件";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     ((System.ComponentModel.ISupportInitialize)(this.mainmenu)).EndInit();
     this.panBottom.ResumeLayout(false);
     this.dockSite9.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.barDocuments)).EndInit();
     this.dockSite1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.barNavigation)).EndInit();
     this.barNavigation.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(CalendarControl));
     this.dateNavigator = new DevComponents.DotNetBar.Schedule.DateNavigator();
     this.calendarView = new DevComponents.DotNetBar.Schedule.CalendarView();
     this.imageList = new System.Windows.Forms.ImageList(this.components);
     this.barView = new DevComponents.DotNetBar.Bar();
     this.btnDayView = new DevComponents.DotNetBar.ButtonItem();
     this.btnWeekView = new DevComponents.DotNetBar.ButtonItem();
     this.btnMonthView = new DevComponents.DotNetBar.ButtonItem();
     this.panelCalendar = new System.Windows.Forms.Panel();
     this.contextMenuBar1 = new DevComponents.DotNetBar.ContextMenuBar();
     this.InContentContextMenu = new DevComponents.DotNetBar.ButtonItem();
     this.btnAddAppointment = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItemBuscar = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItemNotificar = new DevComponents.DotNetBar.ButtonItem();
     this.InTabContextMenu = new DevComponents.DotNetBar.ButtonItem();
     this.InTabOcultar = new DevComponents.DotNetBar.ButtonItem();
     this.InTabAddNewTab = new DevComponents.DotNetBar.LabelItem();
     this.InTabReplaceTab = new DevComponents.DotNetBar.LabelItem();
     this.InAppointment = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItemVerAppointment = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItemDeleteAppointment = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItemBorrarSerie = new DevComponents.DotNetBar.ButtonItem();
     this.checkBoxItemReprogramada = new DevComponents.DotNetBar.CheckBoxItem();
     this.barStatus = new DevComponents.DotNetBar.Bar();
     this.buttonItemMultiUser = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItemSingleUser = new DevComponents.DotNetBar.ButtonItem();
     this.tableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
     this.styleManager1 = new DevComponents.DotNetBar.StyleManager(this.components);
     this.superTooltip1 = new DevComponents.DotNetBar.SuperTooltip();
     ((System.ComponentModel.ISupportInitialize)(this.barView)).BeginInit();
     this.panelCalendar.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.contextMenuBar1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.barStatus)).BeginInit();
     this.tableLayoutPanel.SuspendLayout();
     this.SuspendLayout();
     //
     // dateNavigator
     //
     this.dateNavigator.CalendarView = this.calendarView;
     this.dateNavigator.CanvasColor = System.Drawing.SystemColors.Control;
     this.dateNavigator.Dock = System.Windows.Forms.DockStyle.Top;
     this.dateNavigator.Location = new System.Drawing.Point(0, 0);
     this.dateNavigator.Name = "dateNavigator";
     this.dateNavigator.Size = new System.Drawing.Size(694, 30);
     this.dateNavigator.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(227)))), ((int)(((byte)(239)))), ((int)(((byte)(255)))));
     this.dateNavigator.TabIndex = 5;
     this.dateNavigator.Text = "dateNavigator";
     //
     // calendarView
     //
     this.calendarView.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(227)))), ((int)(((byte)(239)))), ((int)(((byte)(255)))));
     //
     //
     //
     this.calendarView.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.calendarView.ContainerControlProcessDialogKey = true;
     this.calendarView.Dock = System.Windows.Forms.DockStyle.Fill;
     this.calendarView.HighlightCurrentDay = true;
     this.calendarView.Images = this.imageList;
     this.calendarView.LabelTimeSlots = true;
     this.calendarView.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
     this.calendarView.Location = new System.Drawing.Point(0, 30);
     this.calendarView.MinimumTimeSlotHeight = 30;
     this.calendarView.MultiUserTabHeight = 19;
     this.calendarView.Name = "calendarView";
     this.calendarView.ShowOnlyWorkDayHours = true;
     this.calendarView.Size = new System.Drawing.Size(694, 271);
     this.calendarView.TabIndex = 4;
     this.calendarView.Text = "calendarView";
     this.calendarView.TimeIndicator.BorderColor = System.Drawing.Color.Empty;
     this.calendarView.TimeIndicator.IndicatorArea = DevComponents.DotNetBar.Schedule.eTimeIndicatorArea.Content;
     this.calendarView.TimeIndicator.Tag = null;
     this.calendarView.TimeIndicator.Visibility = DevComponents.DotNetBar.Schedule.eTimeIndicatorVisibility.AllResources;
     this.calendarView.TimeSlotDuration = 30;
     this.calendarView.MouseUp += new System.Windows.Forms.MouseEventHandler(this.calendarView_MouseUp);
     //
     // imageList
     //
     this.imageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList.ImageStream")));
     this.imageList.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList.Images.SetKeyName(0, "disabled");
     //
     // barView
     //
     this.barView.AntiAlias = true;
     this.barView.Dock = System.Windows.Forms.DockStyle.Top;
     this.barView.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.barView.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnDayView,
     this.btnWeekView,
     this.btnMonthView});
     this.barView.Location = new System.Drawing.Point(0, 0);
     this.barView.Name = "barView";
     this.barView.RoundCorners = false;
     this.barView.Size = new System.Drawing.Size(700, 63);
     this.barView.Stretch = true;
     this.barView.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.barView.TabIndex = 3;
     this.barView.TabStop = false;
     this.barView.Text = "ViewBar";
     //
     // btnDayView
     //
     this.btnDayView.Checked = true;
     this.btnDayView.ColorTable = DevComponents.DotNetBar.eButtonColor.Flat;
     this.btnDayView.FixedSize = new System.Drawing.Size(100, 60);
     this.btnDayView.Image = ((System.Drawing.Image)(resources.GetObject("btnDayView.Image")));
     this.btnDayView.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnDayView.Name = "btnDayView";
     this.btnDayView.OptionGroup = "View";
     this.superTooltip1.SetSuperTooltip(this.btnDayView, new DevComponents.DotNetBar.SuperTooltipInfo("Vista por día", "", "", ((System.Drawing.Image)(resources.GetObject("btnDayView.SuperTooltip"))), null, DevComponents.DotNetBar.eTooltipColor.Gray));
     this.btnDayView.Text = "Día";
     this.btnDayView.Click += new System.EventHandler(this.btnDayView_Click);
     //
     // btnWeekView
     //
     this.btnWeekView.ColorTable = DevComponents.DotNetBar.eButtonColor.Flat;
     this.btnWeekView.FixedSize = new System.Drawing.Size(100, 60);
     this.btnWeekView.Image = ((System.Drawing.Image)(resources.GetObject("btnWeekView.Image")));
     this.btnWeekView.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnWeekView.Name = "btnWeekView";
     this.btnWeekView.OptionGroup = "View";
     this.superTooltip1.SetSuperTooltip(this.btnWeekView, new DevComponents.DotNetBar.SuperTooltipInfo("Vista por semana", "", "", ((System.Drawing.Image)(resources.GetObject("btnWeekView.SuperTooltip"))), null, DevComponents.DotNetBar.eTooltipColor.Gray));
     this.btnWeekView.Text = "Semana";
     this.btnWeekView.Click += new System.EventHandler(this.btnWeekView_Click);
     //
     // btnMonthView
     //
     this.btnMonthView.ColorTable = DevComponents.DotNetBar.eButtonColor.Flat;
     this.btnMonthView.FixedSize = new System.Drawing.Size(100, 60);
     this.btnMonthView.Image = ((System.Drawing.Image)(resources.GetObject("btnMonthView.Image")));
     this.btnMonthView.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnMonthView.Name = "btnMonthView";
     this.btnMonthView.OptionGroup = "View";
     this.superTooltip1.SetSuperTooltip(this.btnMonthView, new DevComponents.DotNetBar.SuperTooltipInfo("Vista por mes", "", "", ((System.Drawing.Image)(resources.GetObject("btnMonthView.SuperTooltip"))), null, DevComponents.DotNetBar.eTooltipColor.Gray));
     this.btnMonthView.Text = "Mes";
     this.btnMonthView.Click += new System.EventHandler(this.btnMonthView_Click);
     //
     // panelCalendar
     //
     this.panelCalendar.Controls.Add(this.contextMenuBar1);
     this.panelCalendar.Controls.Add(this.calendarView);
     this.panelCalendar.Controls.Add(this.dateNavigator);
     this.panelCalendar.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelCalendar.Location = new System.Drawing.Point(3, 3);
     this.panelCalendar.Name = "panelCalendar";
     this.panelCalendar.Size = new System.Drawing.Size(694, 301);
     this.panelCalendar.TabIndex = 6;
     //
     // contextMenuBar1
     //
     this.contextMenuBar1.AntiAlias = true;
     this.contextMenuBar1.DockSide = DevComponents.DotNetBar.eDockSide.Document;
     this.contextMenuBar1.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.contextMenuBar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.InContentContextMenu,
     this.InTabContextMenu,
     this.InAppointment});
     this.contextMenuBar1.Location = new System.Drawing.Point(153, 178);
     this.contextMenuBar1.Name = "contextMenuBar1";
     this.contextMenuBar1.Size = new System.Drawing.Size(116, 69);
     this.contextMenuBar1.Stretch = true;
     this.contextMenuBar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.contextMenuBar1.TabIndex = 6;
     this.contextMenuBar1.TabStop = false;
     this.contextMenuBar1.Text = "contextMenuBar1";
     //
     // InContentContextMenu
     //
     this.InContentContextMenu.AutoExpandOnClick = true;
     this.InContentContextMenu.Name = "InContentContextMenu";
     this.InContentContextMenu.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnAddAppointment,
     this.buttonItemBuscar,
     this.buttonItemNotificar});
     this.InContentContextMenu.Text = "In Content";
     this.InContentContextMenu.Click += new System.EventHandler(this.InContentContextMenu_Click);
     //
     // btnAddAppointment
     //
     this.btnAddAppointment.Name = "btnAddAppointment";
     this.btnAddAppointment.Text = "Agregar";
     this.btnAddAppointment.Click += new System.EventHandler(this.btnAddAppointment_Click);
     //
     // buttonItemBuscar
     //
     this.buttonItemBuscar.Name = "buttonItemBuscar";
     this.buttonItemBuscar.Text = "Buscar";
     this.buttonItemBuscar.Click += new System.EventHandler(this.buttonItemBuscar_Click);
     //
     // buttonItemNotificar
     //
     this.buttonItemNotificar.Name = "buttonItemNotificar";
     this.buttonItemNotificar.Text = "Notificar";
     this.buttonItemNotificar.Click += new System.EventHandler(this.buttonItemNotificar_Click);
     //
     // InTabContextMenu
     //
     this.InTabContextMenu.AutoExpandOnClick = true;
     this.InTabContextMenu.Name = "InTabContextMenu";
     this.InTabContextMenu.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.InTabOcultar,
     this.InTabAddNewTab,
     this.InTabReplaceTab});
     this.InTabContextMenu.Text = "InTab";
     //
     // InTabOcultar
     //
     this.InTabOcultar.Name = "InTabOcultar";
     this.InTabOcultar.Text = "Ocultar";
     this.InTabOcultar.Click += new System.EventHandler(this.InTabOcultar_Click);
     //
     // InTabAddNewTab
     //
     this.InTabAddNewTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(231)))), ((int)(((byte)(238)))));
     this.InTabAddNewTab.BorderSide = DevComponents.DotNetBar.eBorderSide.Bottom;
     this.InTabAddNewTab.BorderType = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.InTabAddNewTab.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(21)))), ((int)(((byte)(110)))));
     this.InTabAddNewTab.Name = "InTabAddNewTab";
     this.InTabAddNewTab.PaddingBottom = 1;
     this.InTabAddNewTab.PaddingLeft = 10;
     this.InTabAddNewTab.PaddingTop = 1;
     this.InTabAddNewTab.SingleLineColor = System.Drawing.Color.FromArgb(((int)(((byte)(197)))), ((int)(((byte)(197)))), ((int)(((byte)(197)))));
     this.InTabAddNewTab.Text = "Agregar";
     //
     // InTabReplaceTab
     //
     this.InTabReplaceTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(231)))), ((int)(((byte)(238)))));
     this.InTabReplaceTab.BorderSide = DevComponents.DotNetBar.eBorderSide.Bottom;
     this.InTabReplaceTab.BorderType = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.InTabReplaceTab.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(21)))), ((int)(((byte)(110)))));
     this.InTabReplaceTab.Name = "InTabReplaceTab";
     this.InTabReplaceTab.PaddingBottom = 1;
     this.InTabReplaceTab.PaddingLeft = 10;
     this.InTabReplaceTab.PaddingTop = 1;
     this.InTabReplaceTab.SingleLineColor = System.Drawing.Color.FromArgb(((int)(((byte)(197)))), ((int)(((byte)(197)))), ((int)(((byte)(197)))));
     this.InTabReplaceTab.Text = "Reemplazar";
     //
     // InAppointment
     //
     this.InAppointment.AutoExpandOnClick = true;
     this.InAppointment.Name = "InAppointment";
     this.InAppointment.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItemVerAppointment,
     this.buttonItemDeleteAppointment,
     this.buttonItemBorrarSerie,
     this.checkBoxItemReprogramada});
     this.InAppointment.Text = "InAppointment";
     //
     // buttonItemVerAppointment
     //
     this.buttonItemVerAppointment.Name = "buttonItemVerAppointment";
     this.buttonItemVerAppointment.Text = "Ver";
     this.buttonItemVerAppointment.Click += new System.EventHandler(this.buttonItemEditarAppointment_Click);
     //
     // buttonItemDeleteAppointment
     //
     this.buttonItemDeleteAppointment.Name = "buttonItemDeleteAppointment";
     this.buttonItemDeleteAppointment.Text = "Borrar";
     this.buttonItemDeleteAppointment.Click += new System.EventHandler(this.buttonItemDeleteAppointment_Click);
     //
     // buttonItemBorrarSerie
     //
     this.buttonItemBorrarSerie.Name = "buttonItemBorrarSerie";
     this.buttonItemBorrarSerie.Text = "Borrar Serie";
     this.buttonItemBorrarSerie.Visible = false;
     this.buttonItemBorrarSerie.Click += new System.EventHandler(this.buttonItemBorrarSerie_Click);
     //
     // checkBoxItemReprogramada
     //
     this.checkBoxItemReprogramada.Name = "checkBoxItemReprogramada";
     this.checkBoxItemReprogramada.Text = "Reprogramada";
     this.checkBoxItemReprogramada.Click += new System.EventHandler(this.checkBoxItemReprogramada_Click);
     //
     // barStatus
     //
     this.barStatus.AntiAlias = true;
     this.barStatus.BackColor = System.Drawing.Color.CornflowerBlue;
     this.barStatus.Dock = System.Windows.Forms.DockStyle.Fill;
     this.barStatus.DockSide = DevComponents.DotNetBar.eDockSide.Document;
     this.barStatus.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.barStatus.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItemMultiUser,
     this.buttonItemSingleUser});
     this.barStatus.Location = new System.Drawing.Point(3, 310);
     this.barStatus.MaximumSize = new System.Drawing.Size(0, 23);
     this.barStatus.MinimumSize = new System.Drawing.Size(0, 23);
     this.barStatus.Name = "barStatus";
     this.barStatus.RoundCorners = false;
     this.barStatus.Size = new System.Drawing.Size(694, 23);
     this.barStatus.Stretch = true;
     this.barStatus.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.barStatus.TabIndex = 7;
     this.barStatus.TabStop = false;
     this.barStatus.Text = "bar1";
     //
     // buttonItemMultiUser
     //
     this.buttonItemMultiUser.Checked = true;
     this.buttonItemMultiUser.ColorTable = DevComponents.DotNetBar.eButtonColor.Blue;
     this.buttonItemMultiUser.Image = ((System.Drawing.Image)(resources.GetObject("buttonItemMultiUser.Image")));
     this.buttonItemMultiUser.ItemAlignment = DevComponents.DotNetBar.eItemAlignment.Far;
     this.buttonItemMultiUser.Name = "buttonItemMultiUser";
     this.buttonItemMultiUser.OptionGroup = "UserView";
     this.superTooltip1.SetSuperTooltip(this.buttonItemMultiUser, new DevComponents.DotNetBar.SuperTooltipInfo("Horario por aula", "", "", ((System.Drawing.Image)(resources.GetObject("buttonItemMultiUser.SuperTooltip"))), null, DevComponents.DotNetBar.eTooltipColor.Gray));
     this.buttonItemMultiUser.Click += new System.EventHandler(this.buttonItemMultiUser_Click);
     //
     // buttonItemSingleUser
     //
     this.buttonItemSingleUser.ColorTable = DevComponents.DotNetBar.eButtonColor.Blue;
     this.buttonItemSingleUser.Image = ((System.Drawing.Image)(resources.GetObject("buttonItemSingleUser.Image")));
     this.buttonItemSingleUser.ItemAlignment = DevComponents.DotNetBar.eItemAlignment.Far;
     this.buttonItemSingleUser.Name = "buttonItemSingleUser";
     this.buttonItemSingleUser.OptionGroup = "UserView";
     this.superTooltip1.SetSuperTooltip(this.buttonItemSingleUser, new DevComponents.DotNetBar.SuperTooltipInfo("Horario en general", "", "", ((System.Drawing.Image)(resources.GetObject("buttonItemSingleUser.SuperTooltip"))), null, DevComponents.DotNetBar.eTooltipColor.Gray));
     this.buttonItemSingleUser.Click += new System.EventHandler(this.buttonItemSingleUser_Click);
     //
     // tableLayoutPanel
     //
     this.tableLayoutPanel.ColumnCount = 1;
     this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel.Controls.Add(this.barStatus, 0, 1);
     this.tableLayoutPanel.Controls.Add(this.panelCalendar, 0, 0);
     this.tableLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel.Location = new System.Drawing.Point(0, 63);
     this.tableLayoutPanel.Name = "tableLayoutPanel";
     this.tableLayoutPanel.RowCount = 2;
     this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     this.tableLayoutPanel.Size = new System.Drawing.Size(700, 337);
     this.tableLayoutPanel.TabIndex = 8;
     //
     // styleManager1
     //
     this.styleManager1.ManagerStyle = DevComponents.DotNetBar.eStyle.Office2007Blue;
     this.styleManager1.MetroColorParameters = new DevComponents.DotNetBar.Metro.ColorTables.MetroColorGeneratorParameters(System.Drawing.Color.White, System.Drawing.Color.FromArgb(((int)(((byte)(43)))), ((int)(((byte)(87)))), ((int)(((byte)(154))))));
     //
     // superTooltip1
     //
     this.superTooltip1.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
     //
     // CalendarControl
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.tableLayoutPanel);
     this.Controls.Add(this.barView);
     this.Name = "CalendarControl";
     this.Size = new System.Drawing.Size(700, 400);
     ((System.ComponentModel.ISupportInitialize)(this.barView)).EndInit();
     this.panelCalendar.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.contextMenuBar1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.barStatus)).EndInit();
     this.tableLayoutPanel.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(SetLimit));
     this.skinEngine1 = new Sunisoft.IrisSkin.SkinEngine(((System.ComponentModel.Component)(this)));
     this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
     this.label1 = new System.Windows.Forms.Label();
     this.groupPanel1 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.comboBoxEx1 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.lblX2 = new DevComponents.DotNetBar.LabelX();
     this.lblX1 = new DevComponents.DotNetBar.LabelX();
     this.txtBoxX2 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.groupPanel2 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.treeView1 = new System.Windows.Forms.TreeView();
     this.dotNetBarManager1 = new DevComponents.DotNetBar.DotNetBarManager(this.components);
     this.dockSite4 = new DevComponents.DotNetBar.DockSite();
     this.dockSite1 = new DevComponents.DotNetBar.DockSite();
     this.dockSite2 = new DevComponents.DotNetBar.DockSite();
     this.dockSite8 = new DevComponents.DotNetBar.DockSite();
     this.dockSite5 = new DevComponents.DotNetBar.DockSite();
     this.dockSite6 = new DevComponents.DotNetBar.DockSite();
     this.dockSite7 = new DevComponents.DotNetBar.DockSite();
     this.dockSite3 = new DevComponents.DotNetBar.DockSite();
     this.btnItm_ADD = new DevComponents.DotNetBar.ButtonItem();
     this.bar1 = new DevComponents.DotNetBar.Bar();
     this.buttonItem2 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem1 = new DevComponents.DotNetBar.ButtonItem();
     this.BtnSave = new DevComponents.DotNetBar.ButtonItem();
     this.BtnCancle = new DevComponents.DotNetBar.ButtonItem();
     this.btnItm_Cancel = new DevComponents.DotNetBar.ButtonItem();
     this.customizeItem1 = new DevComponents.DotNetBar.CustomizeItem();
     this.panelEx1.SuspendLayout();
     this.groupPanel1.SuspendLayout();
     this.groupPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).BeginInit();
     this.SuspendLayout();
     //
     // skinEngine1
     //
     this.skinEngine1.SerialNumber = "";
     this.skinEngine1.SkinFile = null;
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx1.ColorScheme.ItemDesignTimeBorder = System.Drawing.Color.Black;
     this.panelEx1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.panelEx1.Controls.Add(this.label1);
     this.panelEx1.Controls.Add(this.groupPanel1);
     this.panelEx1.Controls.Add(this.groupPanel2);
     this.panelEx1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelEx1.Location = new System.Drawing.Point(0, 0);
     this.panelEx1.Name = "panelEx1";
     this.panelEx1.Size = new System.Drawing.Size(375, 562);
     this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx1.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx1.Style.GradientAngle = 90;
     this.panelEx1.TabIndex = 0;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(96, 62);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(11, 12);
     this.label1.TabIndex = 2;
     this.label1.Text = "A";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.label1.Visible = false;
     //
     // groupPanel1
     //
     this.groupPanel1.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel1.Controls.Add(this.comboBoxEx1);
     this.groupPanel1.Controls.Add(this.lblX2);
     this.groupPanel1.Controls.Add(this.lblX1);
     this.groupPanel1.Controls.Add(this.txtBoxX2);
     this.groupPanel1.Location = new System.Drawing.Point(6, 75);
     this.groupPanel1.Name = "groupPanel1";
     this.groupPanel1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.groupPanel1.Size = new System.Drawing.Size(363, 79);
     //
     //
     //
     this.groupPanel1.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel1.Style.BackColorGradientAngle = 90;
     this.groupPanel1.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel1.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderBottomWidth = 1;
     this.groupPanel1.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel1.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderLeftWidth = 1;
     this.groupPanel1.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderRightWidth = 1;
     this.groupPanel1.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderTopWidth = 1;
     this.groupPanel1.Style.CornerDiameter = 4;
     this.groupPanel1.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel1.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel1.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel1.TabIndex = 0;
     this.groupPanel1.Text = "权限组设置";
     this.groupPanel1.TitleImagePosition = DevComponents.DotNetBar.eTitleImagePosition.Center;
     //
     // comboBoxEx1
     //
     this.comboBoxEx1.DisplayMember = "Text";
     this.comboBoxEx1.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx1.FormattingEnabled = true;
     this.comboBoxEx1.ItemHeight = 14;
     this.comboBoxEx1.Location = new System.Drawing.Point(70, 12);
     this.comboBoxEx1.Name = "comboBoxEx1";
     this.comboBoxEx1.Size = new System.Drawing.Size(121, 20);
     this.comboBoxEx1.TabIndex = 10;
     this.comboBoxEx1.SelectionChangeCommitted += new System.EventHandler(this.comboBoxEx1_SelectionChangeCommitted);
     //
     // lblX2
     //
     this.lblX2.BackColor = System.Drawing.Color.Transparent;
     this.lblX2.Location = new System.Drawing.Point(200, 13);
     this.lblX2.Name = "lblX2";
     this.lblX2.Size = new System.Drawing.Size(48, 23);
     this.lblX2.TabIndex = 9;
     this.lblX2.Text = "备注:";
     //
     // lblX1
     //
     this.lblX1.BackColor = System.Drawing.Color.Transparent;
     this.lblX1.Location = new System.Drawing.Point(-2, 13);
     this.lblX1.Name = "lblX1";
     this.lblX1.Size = new System.Drawing.Size(66, 23);
     this.lblX1.TabIndex = 8;
     this.lblX1.Text = "权限名称:";
     //
     // txtBoxX2
     //
     //
     //
     //
     this.txtBoxX2.Border.Class = "TextBoxBorder";
     this.txtBoxX2.Location = new System.Drawing.Point(254, 13);
     this.txtBoxX2.Name = "txtBoxX2";
     this.txtBoxX2.Size = new System.Drawing.Size(100, 21);
     this.txtBoxX2.TabIndex = 3;
     //
     // groupPanel2
     //
     this.groupPanel2.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel2.Controls.Add(this.treeView1);
     this.groupPanel2.Location = new System.Drawing.Point(6, 160);
     this.groupPanel2.Name = "groupPanel2";
     this.groupPanel2.Size = new System.Drawing.Size(363, 394);
     //
     //
     //
     this.groupPanel2.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel2.Style.BackColorGradientAngle = 90;
     this.groupPanel2.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel2.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderBottomWidth = 1;
     this.groupPanel2.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel2.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderLeftWidth = 1;
     this.groupPanel2.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderRightWidth = 1;
     this.groupPanel2.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderTopWidth = 1;
     this.groupPanel2.Style.CornerDiameter = 4;
     this.groupPanel2.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel2.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel2.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel2.TabIndex = 1;
     this.groupPanel2.Text = "操作权限";
     //
     // treeView1
     //
     this.treeView1.CheckBoxes = true;
     this.treeView1.ItemHeight = 18;
     this.treeView1.Location = new System.Drawing.Point(3, 3);
     this.treeView1.Name = "treeView1";
     this.treeView1.Size = new System.Drawing.Size(349, 361);
     this.treeView1.TabIndex = 0;
     this.treeView1.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.treeView1_AfterCheck);
     //
     // dotNetBarManager1
     //
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.F1);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlC);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlA);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlV);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlX);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlZ);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlY);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Del);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Ins);
     this.dotNetBarManager1.BottomDockSite = this.dockSite4;
     this.dotNetBarManager1.DefinitionName = "";
     this.dotNetBarManager1.EnableFullSizeDock = false;
     this.dotNetBarManager1.LeftDockSite = this.dockSite1;
     this.dotNetBarManager1.ParentForm = this;
     this.dotNetBarManager1.RightDockSite = this.dockSite2;
     this.dotNetBarManager1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
     this.dotNetBarManager1.ToolbarBottomDockSite = this.dockSite8;
     this.dotNetBarManager1.ToolbarLeftDockSite = this.dockSite5;
     this.dotNetBarManager1.ToolbarRightDockSite = this.dockSite6;
     this.dotNetBarManager1.ToolbarTopDockSite = this.dockSite7;
     this.dotNetBarManager1.TopDockSite = this.dockSite3;
     //
     // dockSite4
     //
     this.dockSite4.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite4.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.dockSite4.Location = new System.Drawing.Point(0, 562);
     this.dockSite4.Name = "dockSite4";
     this.dockSite4.Size = new System.Drawing.Size(375, 0);
     this.dockSite4.TabIndex = 4;
     this.dockSite4.TabStop = false;
     //
     // dockSite1
     //
     this.dockSite1.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite1.Dock = System.Windows.Forms.DockStyle.Left;
     this.dockSite1.Location = new System.Drawing.Point(0, 0);
     this.dockSite1.Name = "dockSite1";
     this.dockSite1.Size = new System.Drawing.Size(0, 562);
     this.dockSite1.TabIndex = 1;
     this.dockSite1.TabStop = false;
     //
     // dockSite2
     //
     this.dockSite2.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite2.Dock = System.Windows.Forms.DockStyle.Right;
     this.dockSite2.Location = new System.Drawing.Point(375, 0);
     this.dockSite2.Name = "dockSite2";
     this.dockSite2.Size = new System.Drawing.Size(0, 562);
     this.dockSite2.TabIndex = 2;
     this.dockSite2.TabStop = false;
     //
     // dockSite8
     //
     this.dockSite8.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite8.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.dockSite8.Location = new System.Drawing.Point(0, 562);
     this.dockSite8.Name = "dockSite8";
     this.dockSite8.Size = new System.Drawing.Size(375, 0);
     this.dockSite8.TabIndex = 8;
     this.dockSite8.TabStop = false;
     //
     // dockSite5
     //
     this.dockSite5.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite5.Dock = System.Windows.Forms.DockStyle.Left;
     this.dockSite5.Location = new System.Drawing.Point(0, 0);
     this.dockSite5.Name = "dockSite5";
     this.dockSite5.Size = new System.Drawing.Size(0, 562);
     this.dockSite5.TabIndex = 5;
     this.dockSite5.TabStop = false;
     //
     // dockSite6
     //
     this.dockSite6.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite6.Dock = System.Windows.Forms.DockStyle.Right;
     this.dockSite6.Location = new System.Drawing.Point(375, 0);
     this.dockSite6.Name = "dockSite6";
     this.dockSite6.Size = new System.Drawing.Size(0, 562);
     this.dockSite6.TabIndex = 6;
     this.dockSite6.TabStop = false;
     //
     // dockSite7
     //
     this.dockSite7.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite7.Dock = System.Windows.Forms.DockStyle.Top;
     this.dockSite7.Location = new System.Drawing.Point(0, 0);
     this.dockSite7.Name = "dockSite7";
     this.dockSite7.Size = new System.Drawing.Size(375, 0);
     this.dockSite7.TabIndex = 7;
     this.dockSite7.TabStop = false;
     //
     // dockSite3
     //
     this.dockSite3.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite3.Dock = System.Windows.Forms.DockStyle.Top;
     this.dockSite3.Location = new System.Drawing.Point(0, 0);
     this.dockSite3.Name = "dockSite3";
     this.dockSite3.Size = new System.Drawing.Size(375, 0);
     this.dockSite3.TabIndex = 3;
     this.dockSite3.TabStop = false;
     //
     // btnItm_ADD
     //
     this.btnItm_ADD.Image = ((System.Drawing.Image)(resources.GetObject("btnItm_ADD.Image")));
     this.btnItm_ADD.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnItm_ADD.ImagePaddingHorizontal = 8;
     this.btnItm_ADD.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnItm_ADD.Name = "btnItm_ADD";
     this.btnItm_ADD.Text = "添加";
     this.btnItm_ADD.Click += new System.EventHandler(this.btnItm_ADD_Click);
     //
     // bar1
     //
     this.bar1.AccessibleDescription = "DotNetBar Bar (bar1)";
     this.bar1.AccessibleName = "DotNetBar Bar";
     this.bar1.AccessibleRole = System.Windows.Forms.AccessibleRole.ToolBar;
     this.bar1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.bar1.GrabHandleStyle = DevComponents.DotNetBar.eGrabHandleStyle.Office2003;
     this.bar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnItm_ADD,
     this.buttonItem2,
     this.buttonItem1,
     this.BtnSave,
     this.BtnCancle,
     this.btnItm_Cancel,
     this.customizeItem1});
     this.bar1.Location = new System.Drawing.Point(0, 0);
     this.bar1.Name = "bar1";
     this.bar1.Size = new System.Drawing.Size(375, 59);
     this.bar1.Stretch = true;
     this.bar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.bar1.TabIndex = 0;
     this.bar1.TabStop = false;
     this.bar1.Text = "bar1";
     //
     // buttonItem2
     //
     this.buttonItem2.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem2.Image")));
     this.buttonItem2.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.buttonItem2.ImagePaddingHorizontal = 8;
     this.buttonItem2.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem2.Name = "buttonItem2";
     this.buttonItem2.Text = "修改";
     this.buttonItem2.Click += new System.EventHandler(this.buttonItem2_Click);
     //
     // buttonItem1
     //
     this.buttonItem1.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem1.Image")));
     this.buttonItem1.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.buttonItem1.ImagePaddingHorizontal = 8;
     this.buttonItem1.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem1.Name = "buttonItem1";
     this.buttonItem1.Text = "删除";
     this.buttonItem1.Click += new System.EventHandler(this.buttonItem1_Click);
     //
     // BtnSave
     //
     this.BtnSave.Image = ((System.Drawing.Image)(resources.GetObject("BtnSave.Image")));
     this.BtnSave.ImagePaddingHorizontal = 8;
     this.BtnSave.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.BtnSave.Name = "BtnSave";
     this.BtnSave.Text = "保存";
     this.BtnSave.Click += new System.EventHandler(this.BtnSave_Click);
     //
     // BtnCancle
     //
     this.BtnCancle.Image = ((System.Drawing.Image)(resources.GetObject("BtnCancle.Image")));
     this.BtnCancle.ImagePaddingHorizontal = 8;
     this.BtnCancle.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.BtnCancle.Name = "BtnCancle";
     this.BtnCancle.Text = "撤消";
     this.BtnCancle.Click += new System.EventHandler(this.BtnCancle_Click);
     //
     // btnItm_Cancel
     //
     this.btnItm_Cancel.Image = ((System.Drawing.Image)(resources.GetObject("btnItm_Cancel.Image")));
     this.btnItm_Cancel.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnItm_Cancel.ImagePaddingHorizontal = 8;
     this.btnItm_Cancel.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnItm_Cancel.Name = "btnItm_Cancel";
     this.btnItm_Cancel.Text = "退出";
     this.btnItm_Cancel.Click += new System.EventHandler(this.btnItm_Cancel_Click);
     //
     // customizeItem1
     //
     this.customizeItem1.Name = "customizeItem1";
     this.customizeItem1.Text = "添加或删除按钮(&A)";
     this.customizeItem1.Tooltip = "工具栏选项";
     //
     // SetLimit
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoScroll = true;
     this.AutoScrollMinSize = new System.Drawing.Size(0, 10);
     this.AutoSize = true;
     this.ClientSize = new System.Drawing.Size(375, 562);
     this.Controls.Add(this.bar1);
     this.Controls.Add(this.panelEx1);
     this.Controls.Add(this.dockSite1);
     this.Controls.Add(this.dockSite2);
     this.Controls.Add(this.dockSite3);
     this.Controls.Add(this.dockSite4);
     this.Controls.Add(this.dockSite5);
     this.Controls.Add(this.dockSite6);
     this.Controls.Add(this.dockSite7);
     this.Controls.Add(this.dockSite8);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "SetLimit";
     this.StartPosition = System.Windows.Forms.FormStartPosition.WindowsDefaultBounds;
     this.Text = "系统权限设置";
     this.Load += new System.EventHandler(this.setlimit_Load);
     this.Resize += new System.EventHandler(this.SetLimit_Resize);
     this.panelEx1.ResumeLayout(false);
     this.panelEx1.PerformLayout();
     this.groupPanel1.ResumeLayout(false);
     this.groupPanel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).EndInit();
     this.ResumeLayout(false);
 }
Пример #24
0
        private void buttonOK_Click(object sender, EventArgs e)
        {
            this.Visible = false;
            if (_axmapcontrol != null)
            {
                try
                {
                    /*xisheng 20110802 */

                    ISpatialReferenceFactory2 pSpatRefFac = new SpatialReferenceEnvironmentClass();
                    earthref = pSpatRefFac.CreateGeographicCoordinateSystem((int)esriSRGeoCSType.esriSRGeoCS_WGS1984);

                    point = new ESRI.ArcGIS.Geometry.PointClass();
                    double x1 = Convert.ToDouble(textBoxX.Text);
                    double y1 = Convert.ToDouble(textBoxY.Text);
                    if (_axmapcontrol.MapUnits == esriUnits.esriMeters)
                    {
                        flatref = _axmapcontrol.Map.SpatialReference;
                        point.PutCoords(x1, y1);//yjl20110812
                    }
                    else if (_axmapcontrol.MapUnits == esriUnits.esriDecimalDegrees)
                    {
                        point.PutCoords(x1, y1);
                    }
                    // ESRI.ArcGIS.Geometry.IPoint pPoint = _axmapcontrol.ActiveView.ScreenDisplay.DisplayTransformation.ToMapPoint(Convert.ToInt32(point.X), Convert.ToInt32(point.Y));
                    //end 0802
                    if (this.WriteLog)
                    {
                        Plugin.LogTable.Writelog(this.Text);//xisheng 日志记录 0928;
                    }
                    if (m_frmQuery == null)
                    {
                        m_frmQuery             = new frmQuery(_axmapcontrol, m_enumQueryMode);
                        m_frmQuery.Owner       = m_mainFrm;
                        m_frmQuery.FormClosed += new FormClosedEventHandler(frmQuery_FormClosed);
                    }
                    if (m_frmBufferSet != null)
                    {
                        m_frmBufferSet.setBufferGeometry(null);
                        m_frmBufferSet = null;
                    }
                    m_frmBufferSet             = new frmBufferSet(point as IGeometry, _axmapcontrol.Map, m_frmQuery);
                    m_frmBufferSet.FormClosed += new FormClosedEventHandler(frmBufferSet_FormClosed);
                    _axmapcontrol.CenterAt(point);
                    IGeometry pGeometry = m_frmBufferSet.GetBufferGeometry();
                    if (pGeometry == null || m_frmBufferSet.Res == false)
                    {
                        return;
                    }

                    //m_frmQuery.Show();
                    ///ZQ 20111119  modify
                    //m_frmQuery.FillData(_axmapcontrol.ActiveView.FocusMap, pGeometry, m_frmBufferSet.pesriSpatialRelEnum);
                    QueryBar.m_pMapControl = _axmapcontrol;
                    QueryBar.EmergeQueryData(_axmapcontrol.ActiveView.FocusMap, pGeometry, m_frmBufferSet.pesriSpatialRelEnum);
                    try
                    {
                        DevComponents.DotNetBar.Bar pBar = QueryBar.Parent.Parent as DevComponents.DotNetBar.Bar;
                        if (pBar != null)
                        {
                            pBar.AutoHide = false;
                            //pBar.SelectedDockTab = 1;
                            int tmpindex = pBar.Items.IndexOf("dockItemDataCheck");
                            pBar.SelectedDockTab = tmpindex;
                        }
                    }
                    catch
                    { }
                    this.Close();
                }
                catch (Exception ex)
                {
                    SysCommon.Error.ErrorHandle.ShowFrmErrorHandle("提示", "错误:" + ex.Message);
                }
            }
        }
        /// <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.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_RegistroVentas));
            this.toolTip = new System.Windows.Forms.ToolTip(this.components);
            this.gpoReferencia = new DevComponents.DotNetBar.Controls.GroupPanel();
            this.fechaRefer = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
            this.labelX8 = new DevComponents.DotNetBar.LabelX();
            this.cboTipdocref = new DevComponents.DotNetBar.Controls.ComboBoxEx();
            this.comboItem13 = new DevComponents.Editors.ComboItem();
            this.comboItem14 = new DevComponents.Editors.ComboItem();
            this.labelX7 = new DevComponents.DotNetBar.LabelX();
            this.labelX6 = new DevComponents.DotNetBar.LabelX();
            this.labelX5 = new DevComponents.DotNetBar.LabelX();
            this.txtSerieref = new System.Windows.Forms.TextBox();
            this.txtNumeroref = new System.Windows.Forms.TextBox();
            this.groupPanel6 = new DevComponents.DotNetBar.Controls.GroupPanel();
            this.btnDatadic = new DevComponents.DotNetBar.ButtonX();
            this.fecVenc = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
            this.fRegistro = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
            this.cboTipoexportacion = new DevComponents.DotNetBar.Controls.ComboBoxEx();
            this.comboItem17 = new DevComponents.Editors.ComboItem();
            this.comboItem18 = new DevComponents.Editors.ComboItem();
            this.cboDestinoigv = new DevComponents.DotNetBar.Controls.ComboBoxEx();
            this.comboItem11 = new DevComponents.Editors.ComboItem();
            this.comboItem12 = new DevComponents.Editors.ComboItem();
            this.cboMoneda = new DevComponents.DotNetBar.Controls.ComboBoxEx();
            this.comboItem9 = new DevComponents.Editors.ComboItem();
            this.comboItem10 = new DevComponents.Editors.ComboItem();
            this.cboServicio = new DevComponents.DotNetBar.Controls.ComboBoxEx();
            this.comboItem7 = new DevComponents.Editors.ComboItem();
            this.comboItem8 = new DevComponents.Editors.ComboItem();
            this.cboTipdoc = new DevComponents.DotNetBar.Controls.ComboBoxEx();
            this.comboItem5 = new DevComponents.Editors.ComboItem();
            this.comboItem6 = new DevComponents.Editors.ComboItem();
            this.labelX23 = new DevComponents.DotNetBar.LabelX();
            this.labelX22 = new DevComponents.DotNetBar.LabelX();
            this.labelX21 = new DevComponents.DotNetBar.LabelX();
            this.labelX20 = new DevComponents.DotNetBar.LabelX();
            this.labelX19 = new DevComponents.DotNetBar.LabelX();
            this.labelX18 = new DevComponents.DotNetBar.LabelX();
            this.labelX17 = new DevComponents.DotNetBar.LabelX();
            this.labelX16 = new DevComponents.DotNetBar.LabelX();
            this.labelX15 = new DevComponents.DotNetBar.LabelX();
            this.labelX14 = new DevComponents.DotNetBar.LabelX();
            this.labelX13 = new DevComponents.DotNetBar.LabelX();
            this.labelX12 = new DevComponents.DotNetBar.LabelX();
            this.labelX11 = new DevComponents.DotNetBar.LabelX();
            this.labelX10 = new DevComponents.DotNetBar.LabelX();
            this.labelX9 = new DevComponents.DotNetBar.LabelX();
            this.grpdua = new DevComponents.DotNetBar.Controls.GroupPanel();
            this.adufRegularizacion = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
            this.adufEmbarque = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
            this.cboAduana = new DevComponents.DotNetBar.Controls.ComboBoxEx();
            this.comboItem15 = new DevComponents.Editors.ComboItem();
            this.comboItem16 = new DevComponents.Editors.ComboItem();
            this.labelX29 = new DevComponents.DotNetBar.LabelX();
            this.labelX28 = new DevComponents.DotNetBar.LabelX();
            this.labelX27 = new DevComponents.DotNetBar.LabelX();
            this.labelX26 = new DevComponents.DotNetBar.LabelX();
            this.labelX25 = new DevComponents.DotNetBar.LabelX();
            this.labelX24 = new DevComponents.DotNetBar.LabelX();
            this.aduValorfob = new System.Windows.Forms.TextBox();
            this.aduPeriodo = new System.Windows.Forms.TextBox();
            this.aduCorrelativo = new System.Windows.Forms.TextBox();
            this.txtNumFin = new System.Windows.Forms.TextBox();
            this.chkRetencion = new System.Windows.Forms.CheckBox();
            this.chkIncluye = new System.Windows.Forms.CheckBox();
            this.chkAfecto = new System.Windows.Forms.CheckBox();
            this.lblTipoventa = new System.Windows.Forms.TextBox();
            this.txtGlosa = new System.Windows.Forms.TextBox();
            this.txtCtadetrac = new System.Windows.Forms.TextBox();
            this.txtRuc = new System.Windows.Forms.TextBox();
            this.txtCtactename = new System.Windows.Forms.TextBox();
            this.txtPorcdet = new System.Windows.Forms.TextBox();
            this.txtSerie = new System.Windows.Forms.TextBox();
            this.txtTipoventa = new System.Windows.Forms.TextBox();
            this.txtNumero = new System.Windows.Forms.TextBox();
            this.Label29 = new System.Windows.Forms.Label();
            this.txtTipocambio = new System.Windows.Forms.TextBox();
            this.txtNumeroorden = new System.Windows.Forms.TextBox();
            this.chkDuplicar = new System.Windows.Forms.CheckBox();
            this.txtDescripcampo = new System.Windows.Forms.TextBox();
            this.GridExaminar = new System.Windows.Forms.DataGridView();
            this.asientoitems = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.rubroid = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.drubro = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.numpedido = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.num_op = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.productid = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.tallacolor = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.productname = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.unidmedidaid = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.cantidad = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.afectoigvid = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.precunit = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.bruto = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.pdscto = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.valorventa = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.igvo = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.total = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.cencosid = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.COL_OBS = new System.Windows.Forms.DataGridViewButtonColumn();
            this.tipguia = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.serguia = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.numguia = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.lblAnulado = new System.Windows.Forms.Label();
            this.txtMes = new System.Windows.Forms.TextBox();
            this.txtAsiento = new System.Windows.Forms.TextBox();
            this.txtDctos = new System.Windows.Forms.TextBox();
            this.txtValor = new System.Windows.Forms.TextBox();
            this.txtPigv = new System.Windows.Forms.TextBox();
            this.txtTotal = new System.Windows.Forms.TextBox();
            this.txtIgv = new System.Windows.Forms.TextBox();
            this.txtVenta = new System.Windows.Forms.TextBox();
            this.lblMoneda = new System.Windows.Forms.Label();
            this.groupPanel1 = new DevComponents.DotNetBar.Controls.GroupPanel();
            this.cboSubdiario = new DevComponents.DotNetBar.Controls.ComboBoxEx();
            this.comboItem3 = new DevComponents.Editors.ComboItem();
            this.comboItem4 = new DevComponents.Editors.ComboItem();
            this.labelX2 = new DevComponents.DotNetBar.LabelX();
            this.groupPanel2 = new DevComponents.DotNetBar.Controls.GroupPanel();
            this.labelX4 = new DevComponents.DotNetBar.LabelX();
            this.labelX3 = new DevComponents.DotNetBar.LabelX();
            this.groupPanel3 = new DevComponents.DotNetBar.Controls.GroupPanel();
            this.chkActivo = new DevComponents.DotNetBar.Controls.CheckBoxX();
            this.cboOrigen = new DevComponents.DotNetBar.Controls.ComboBoxEx();
            this.comboItem1 = new DevComponents.Editors.ComboItem();
            this.comboItem2 = new DevComponents.Editors.ComboItem();
            this.labelX1 = new DevComponents.DotNetBar.LabelX();
            this.groupPanel4 = new DevComponents.DotNetBar.Controls.GroupPanel();
            this.labelX35 = new DevComponents.DotNetBar.LabelX();
            this.labelX34 = new DevComponents.DotNetBar.LabelX();
            this.labelX33 = new DevComponents.DotNetBar.LabelX();
            this.labelX32 = new DevComponents.DotNetBar.LabelX();
            this.labelX31 = new DevComponents.DotNetBar.LabelX();
            this.labelX30 = new DevComponents.DotNetBar.LabelX();

            this.gbtnCompras = new DevComponents.DotNetBar.Bar();
            this.btnNew = new DevComponents.DotNetBar.ButtonItem();
            this.btnEdit = new DevComponents.DotNetBar.ButtonItem();
            this.btnSave = new DevComponents.DotNetBar.ButtonItem();
            this.btnRetro = new DevComponents.DotNetBar.ButtonItem();
            this.btnDelete = new DevComponents.DotNetBar.ButtonItem();
            this.btnPrint = new DevComponents.DotNetBar.ButtonItem();
            this.buttonItem8 = new DevComponents.DotNetBar.ButtonItem();
            this.btnLog = new DevComponents.DotNetBar.ButtonItem();
            this.buttonItem10 = new DevComponents.DotNetBar.ButtonItem();
            this.btnBusqueda = new DevComponents.DotNetBar.ButtonItem();
            this.btnSeekdoc = new DevComponents.DotNetBar.ButtonItem();
            this.btnAddfila = new DevComponents.DotNetBar.ButtonItem();
            this.btnDelfila = new DevComponents.DotNetBar.ButtonItem();
            this.btnActtipocambio = new DevComponents.DotNetBar.ButtonItem();
            this.btnProvfactura = new DevComponents.DotNetBar.ButtonItem();
            this.buttonItem18 = new DevComponents.DotNetBar.ButtonItem();
            this.buttonItem22 = new DevComponents.DotNetBar.ButtonItem();
            this.btnInicial = new DevComponents.DotNetBar.ButtonItem();
            this.btnAnterior = new DevComponents.DotNetBar.ButtonItem();
            this.btnSiguiente = new DevComponents.DotNetBar.ButtonItem();
            this.btnUltimo = new DevComponents.DotNetBar.ButtonItem();
            this.btnExit = new DevComponents.DotNetBar.ButtonItem();
            this.lblUsuar = new DevComponents.DotNetBar.LabelX();
            this.controlContainerItem1 = new DevComponents.DotNetBar.ControlContainerItem();
            this.gpoReferencia.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.fechaRefer)).BeginInit();
            this.groupPanel6.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.fecVenc)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.fRegistro)).BeginInit();
            this.grpdua.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.adufRegularizacion)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.adufEmbarque)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.GridExaminar)).BeginInit();
            this.groupPanel1.SuspendLayout();
            this.groupPanel2.SuspendLayout();
            this.groupPanel3.SuspendLayout();
            this.groupPanel4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gbtnCompras)).BeginInit();
            this.SuspendLayout();
            //
            // gpoReferencia
            //
            this.gpoReferencia.CanvasColor = System.Drawing.SystemColors.Control;
            this.gpoReferencia.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
            this.gpoReferencia.Controls.Add(this.fechaRefer);
            this.gpoReferencia.Controls.Add(this.labelX8);
            this.gpoReferencia.Controls.Add(this.cboTipdocref);
            this.gpoReferencia.Controls.Add(this.labelX7);
            this.gpoReferencia.Controls.Add(this.labelX6);
            this.gpoReferencia.Controls.Add(this.labelX5);
            this.gpoReferencia.Controls.Add(this.txtSerieref);
            this.gpoReferencia.Controls.Add(this.txtNumeroref);
            this.gpoReferencia.DisabledBackColor = System.Drawing.Color.Empty;
            this.gpoReferencia.Location = new System.Drawing.Point(629, 5);
            this.gpoReferencia.Name = "gpoReferencia";
            this.gpoReferencia.Size = new System.Drawing.Size(367, 43);
            //
            //
            //
            this.gpoReferencia.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
            this.gpoReferencia.Style.BackColorGradientAngle = 90;
            this.gpoReferencia.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
            this.gpoReferencia.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.gpoReferencia.Style.BorderBottomWidth = 1;
            this.gpoReferencia.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.gpoReferencia.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.gpoReferencia.Style.BorderLeftWidth = 1;
            this.gpoReferencia.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.gpoReferencia.Style.BorderRightWidth = 1;
            this.gpoReferencia.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.gpoReferencia.Style.BorderTopWidth = 1;
            this.gpoReferencia.Style.CornerDiameter = 4;
            this.gpoReferencia.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
            this.gpoReferencia.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
            this.gpoReferencia.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.gpoReferencia.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
            //
            //
            //
            this.gpoReferencia.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            //
            //
            //
            this.gpoReferencia.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.gpoReferencia.TabIndex = 40;
            this.toolTip.SetToolTip(this.gpoReferencia, "Referencia");
            //
            //
            //
            this.fechaRefer.BackgroundStyle.Class = "DateTimeInputBackground";
            this.fechaRefer.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.fechaRefer.ButtonClear.Tooltip = "";
            this.fechaRefer.ButtonCustom.Tooltip = "";
            this.fechaRefer.ButtonCustom2.Tooltip = "";
            this.fechaRefer.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
            this.fechaRefer.ButtonDropDown.Tooltip = "";
            this.fechaRefer.ButtonDropDown.Visible = true;
            this.fechaRefer.ButtonFreeText.Tooltip = "";
            this.fechaRefer.IsPopupCalendarOpen = false;
            this.fechaRefer.Location = new System.Drawing.Point(258, 15);
            //
            //
            //
            this.fechaRefer.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
            //
            //
            //
            this.fechaRefer.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.fechaRefer.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
            //
            //
            //
            this.fechaRefer.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
            this.fechaRefer.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
            this.fechaRefer.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.fechaRefer.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.fechaRefer.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
            this.fechaRefer.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
            this.fechaRefer.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.fechaRefer.MonthCalendar.DisplayMonth = new System.DateTime(2014, 11, 1, 0, 0, 0, 0);
            this.fechaRefer.MonthCalendar.MarkedDates = new System.DateTime[0];
            this.fechaRefer.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
            //
            //
            //
            this.fechaRefer.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
            this.fechaRefer.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
            this.fechaRefer.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
            this.fechaRefer.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.fechaRefer.MonthCalendar.TodayButtonVisible = true;
            this.fechaRefer.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
            this.fechaRefer.Name = "fechaRefer";
            this.fechaRefer.ShowCheckBox = true;
            this.fechaRefer.Size = new System.Drawing.Size(98, 20);
            this.fechaRefer.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.fechaRefer.TabIndex = 62;
            this.fechaRefer.Value = new System.DateTime(2014, 11, 8, 13, 46, 32, 0);
            this.fechaRefer.ValueChanged += new System.EventHandler(this.fechaRefer_ValueChanged);
            //
            // labelX8
            //
            this.labelX8.AutoSize = true;
            this.labelX8.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX8.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX8.Location = new System.Drawing.Point(264, -1);
            this.labelX8.Name = "labelX8";
            this.labelX8.Size = new System.Drawing.Size(52, 15);
            this.labelX8.TabIndex = 46;
            this.labelX8.Text = "F.Emisión";
            //
            // cboTipdocref
            //
            this.cboTipdocref.DisplayMember = "Text";
            this.cboTipdocref.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.cboTipdocref.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboTipdocref.FormattingEnabled = true;
            this.cboTipdocref.ItemHeight = 14;
            this.cboTipdocref.Items.AddRange(new object[] {
            this.comboItem13,
            this.comboItem14});
            this.cboTipdocref.Location = new System.Drawing.Point(3, 15);
            this.cboTipdocref.Name = "cboTipdocref";
            this.cboTipdocref.Size = new System.Drawing.Size(141, 20);
            this.cboTipdocref.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.cboTipdocref.TabIndex = 48;
            //
            // comboItem13
            //
            this.comboItem13.Text = "01-Venta Interna";
            this.comboItem13.Value = "01";
            //
            // comboItem14
            //
            this.comboItem14.Text = "02-Venta Externa";
            this.comboItem14.Value = "02";
            //
            // labelX7
            //
            this.labelX7.AutoSize = true;
            this.labelX7.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX7.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX7.Location = new System.Drawing.Point(190, -1);
            this.labelX7.Name = "labelX7";
            this.labelX7.Size = new System.Drawing.Size(42, 15);
            this.labelX7.TabIndex = 45;
            this.labelX7.Text = "Número";
            //
            // labelX6
            //
            this.labelX6.AutoSize = true;
            this.labelX6.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX6.Location = new System.Drawing.Point(150, 0);
            this.labelX6.Name = "labelX6";
            this.labelX6.Size = new System.Drawing.Size(28, 15);
            this.labelX6.TabIndex = 44;
            this.labelX6.Text = "Serie";
            //
            // labelX5
            //
            this.labelX5.AutoSize = true;
            this.labelX5.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX5.Location = new System.Drawing.Point(4, 0);
            this.labelX5.Name = "labelX5";
            this.labelX5.Size = new System.Drawing.Size(59, 15);
            this.labelX5.TabIndex = 43;
            this.labelX5.Text = "Documento";
            //
            // txtSerieref
            //
            this.txtSerieref.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
            this.txtSerieref.Location = new System.Drawing.Point(146, 15);
            this.txtSerieref.MaxLength = 4;
            this.txtSerieref.Name = "txtSerieref";
            this.txtSerieref.Size = new System.Drawing.Size(38, 20);
            this.txtSerieref.TabIndex = 3;
            //
            // txtNumeroref
            //
            this.txtNumeroref.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
            this.txtNumeroref.Location = new System.Drawing.Point(185, 15);
            this.txtNumeroref.MaxLength = 10;
            this.txtNumeroref.Name = "txtNumeroref";
            this.txtNumeroref.Size = new System.Drawing.Size(71, 20);
            this.txtNumeroref.TabIndex = 5;
            //
            // groupPanel6
            //
            this.groupPanel6.CanvasColor = System.Drawing.SystemColors.Control;
            this.groupPanel6.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
            this.groupPanel6.Controls.Add(this.btnDatadic);
            this.groupPanel6.Controls.Add(this.fecVenc);
            this.groupPanel6.Controls.Add(this.fRegistro);
            this.groupPanel6.Controls.Add(this.cboTipoexportacion);
            this.groupPanel6.Controls.Add(this.cboDestinoigv);
            this.groupPanel6.Controls.Add(this.cboMoneda);
            this.groupPanel6.Controls.Add(this.cboServicio);
            this.groupPanel6.Controls.Add(this.cboTipdoc);
            this.groupPanel6.Controls.Add(this.labelX23);
            this.groupPanel6.Controls.Add(this.labelX22);
            this.groupPanel6.Controls.Add(this.labelX21);
            this.groupPanel6.Controls.Add(this.labelX20);
            this.groupPanel6.Controls.Add(this.labelX19);
            this.groupPanel6.Controls.Add(this.labelX18);
            this.groupPanel6.Controls.Add(this.labelX17);
            this.groupPanel6.Controls.Add(this.labelX16);
            this.groupPanel6.Controls.Add(this.labelX15);
            this.groupPanel6.Controls.Add(this.labelX14);
            this.groupPanel6.Controls.Add(this.labelX13);
            this.groupPanel6.Controls.Add(this.labelX12);
            this.groupPanel6.Controls.Add(this.labelX11);
            this.groupPanel6.Controls.Add(this.labelX10);
            this.groupPanel6.Controls.Add(this.labelX9);
            this.groupPanel6.Controls.Add(this.gpoReferencia);
            this.groupPanel6.Controls.Add(this.grpdua);
            this.groupPanel6.Controls.Add(this.txtNumFin);
            this.groupPanel6.Controls.Add(this.chkRetencion);
            this.groupPanel6.Controls.Add(this.chkIncluye);
            this.groupPanel6.Controls.Add(this.chkAfecto);
            this.groupPanel6.Controls.Add(this.lblTipoventa);
            this.groupPanel6.Controls.Add(this.txtGlosa);
            this.groupPanel6.Controls.Add(this.txtCtadetrac);
            this.groupPanel6.Controls.Add(this.txtRuc);
            this.groupPanel6.Controls.Add(this.txtCtactename);
            this.groupPanel6.Controls.Add(this.txtPorcdet);
            this.groupPanel6.Controls.Add(this.txtSerie);
            this.groupPanel6.Controls.Add(this.txtTipoventa);
            this.groupPanel6.Controls.Add(this.txtNumero);
            this.groupPanel6.Controls.Add(this.Label29);
            this.groupPanel6.Controls.Add(this.txtTipocambio);
            this.groupPanel6.Controls.Add(this.txtNumeroorden);
            this.groupPanel6.DisabledBackColor = System.Drawing.Color.Empty;
            this.groupPanel6.Location = new System.Drawing.Point(6, 78);
            this.groupPanel6.Name = "groupPanel6";
            this.groupPanel6.Size = new System.Drawing.Size(1005, 178);
            //
            //
            //
            this.groupPanel6.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
            this.groupPanel6.Style.BackColorGradientAngle = 90;
            this.groupPanel6.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
            this.groupPanel6.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel6.Style.BorderBottomWidth = 1;
            this.groupPanel6.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.groupPanel6.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel6.Style.BorderLeftWidth = 1;
            this.groupPanel6.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel6.Style.BorderRightWidth = 1;
            this.groupPanel6.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel6.Style.BorderTopWidth = 1;
            this.groupPanel6.Style.CornerDiameter = 4;
            this.groupPanel6.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
            this.groupPanel6.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
            this.groupPanel6.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.groupPanel6.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
            //
            //
            //
            this.groupPanel6.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            //
            //
            //
            this.groupPanel6.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel6.TabIndex = 47;
            this.toolTip.SetToolTip(this.groupPanel6, "Referencia");
            //
            // btnDatadic
            //
            this.btnDatadic.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.btnDatadic.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            this.btnDatadic.Cursor = System.Windows.Forms.Cursors.Hand;
            this.btnDatadic.Location = new System.Drawing.Point(879, 146);
            this.btnDatadic.Name = "btnDatadic";
            this.btnDatadic.Size = new System.Drawing.Size(98, 23);
            this.btnDatadic.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.btnDatadic.TabIndex = 59;
            this.btnDatadic.Text = "Datos Adicionales";
            this.btnDatadic.Click += new System.EventHandler(this.btnDatadic_Click);
            //
            // fecVenc
            //
            this.fecVenc.BackgroundStyle.Class = "DateTimeInputBackground";
            this.fecVenc.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.fecVenc.ButtonClear.Tooltip = "";
            this.fecVenc.ButtonCustom.Tooltip = "";
            this.fecVenc.ButtonCustom2.Tooltip = "";
            this.fecVenc.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
            this.fecVenc.ButtonDropDown.Tooltip = "";
            this.fecVenc.ButtonDropDown.Visible = true;
            this.fecVenc.ButtonFreeText.Tooltip = "";
            this.fecVenc.IsPopupCalendarOpen = false;
            this.fecVenc.Location = new System.Drawing.Point(523, 50);
            //
            //
            //
            this.fecVenc.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
            //
            //
            //
            this.fecVenc.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.fecVenc.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
            //
            //
            //
            this.fecVenc.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
            this.fecVenc.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
            this.fecVenc.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.fecVenc.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.fecVenc.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
            this.fecVenc.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
            this.fecVenc.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.fecVenc.MonthCalendar.DisplayMonth = new System.DateTime(2014, 11, 1, 0, 0, 0, 0);
            this.fecVenc.MonthCalendar.MarkedDates = new System.DateTime[0];
            this.fecVenc.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
            //
            //
            //
            this.fecVenc.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
            this.fecVenc.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
            this.fecVenc.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
            this.fecVenc.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.fecVenc.MonthCalendar.TodayButtonVisible = true;
            this.fecVenc.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
            this.fecVenc.Name = "fecVenc";
            this.fecVenc.ShowCheckBox = true;
            this.fecVenc.Size = new System.Drawing.Size(101, 20);
            this.fecVenc.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.fecVenc.TabIndex = 58;
            this.fecVenc.Value = new System.DateTime(2014, 11, 8, 13, 46, 32, 0);
            //
            // fRegistro
            //
            this.fRegistro.BackgroundStyle.Class = "DateTimeInputBackground";
            this.fRegistro.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.fRegistro.ButtonClear.Tooltip = "";
            this.fRegistro.ButtonCustom.Tooltip = "";
            this.fRegistro.ButtonCustom2.Tooltip = "";
            this.fRegistro.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
            this.fRegistro.ButtonDropDown.Tooltip = "";
            this.fRegistro.ButtonDropDown.Visible = true;
            this.fRegistro.ButtonFreeText.Tooltip = "";
            this.fRegistro.IsPopupCalendarOpen = false;
            this.fRegistro.Location = new System.Drawing.Point(88, 50);
            //
            //
            //
            this.fRegistro.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
            //
            //
            //
            this.fRegistro.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.fRegistro.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
            //
            //
            //
            this.fRegistro.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
            this.fRegistro.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
            this.fRegistro.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.fRegistro.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.fRegistro.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
            this.fRegistro.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
            this.fRegistro.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.fRegistro.MonthCalendar.DisplayMonth = new System.DateTime(2014, 11, 1, 0, 0, 0, 0);
            this.fRegistro.MonthCalendar.MarkedDates = new System.DateTime[0];
            this.fRegistro.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
            //
            //
            //
            this.fRegistro.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
            this.fRegistro.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
            this.fRegistro.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
            this.fRegistro.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.fRegistro.MonthCalendar.TodayButtonVisible = true;
            this.fRegistro.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
            this.fRegistro.Name = "fRegistro";
            this.fRegistro.Size = new System.Drawing.Size(91, 20);
            this.fRegistro.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.fRegistro.TabIndex = 57;
            this.fRegistro.Value = new System.DateTime(2014, 11, 8, 13, 46, 32, 0);
            //
            // cboTipoexportacion
            //
            this.cboTipoexportacion.DisplayMember = "Text";
            this.cboTipoexportacion.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.cboTipoexportacion.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboTipoexportacion.FormattingEnabled = true;
            this.cboTipoexportacion.ItemHeight = 14;
            this.cboTipoexportacion.Items.AddRange(new object[] {
            this.comboItem17,
            this.comboItem18});
            this.cboTipoexportacion.Location = new System.Drawing.Point(636, 116);
            this.cboTipoexportacion.Name = "cboTipoexportacion";
            this.cboTipoexportacion.Size = new System.Drawing.Size(358, 20);
            this.cboTipoexportacion.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.cboTipoexportacion.TabIndex = 54;
            //
            // comboItem17
            //
            this.comboItem17.Text = "01-Venta Interna";
            this.comboItem17.Value = "01";
            //
            // comboItem18
            //
            this.comboItem18.Text = "02-Venta Externa";
            this.comboItem18.Value = "02";
            //
            // cboDestinoigv
            //
            this.cboDestinoigv.DisplayMember = "Text";
            this.cboDestinoigv.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.cboDestinoigv.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboDestinoigv.FormattingEnabled = true;
            this.cboDestinoigv.ItemHeight = 14;
            this.cboDestinoigv.Items.AddRange(new object[] {
            this.comboItem11,
            this.comboItem12});
            this.cboDestinoigv.Location = new System.Drawing.Point(196, 147);
            this.cboDestinoigv.Name = "cboDestinoigv";
            this.cboDestinoigv.Size = new System.Drawing.Size(233, 20);
            this.cboDestinoigv.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.cboDestinoigv.TabIndex = 48;
            this.cboDestinoigv.SelectedIndexChanged += new System.EventHandler(this.cboDestinoigv_SelectedIndexChanged);
            //
            // comboItem11
            //
            this.comboItem11.Text = "01-Venta Interna";
            this.comboItem11.Value = "01";
            //
            // comboItem12
            //
            this.comboItem12.Text = "02-Venta Externa";
            this.comboItem12.Value = "02";
            //
            // cboMoneda
            //
            this.cboMoneda.DisplayMember = "Text";
            this.cboMoneda.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.cboMoneda.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboMoneda.FormattingEnabled = true;
            this.cboMoneda.ItemHeight = 14;
            this.cboMoneda.Items.AddRange(new object[] {
            this.comboItem9,
            this.comboItem10});
            this.cboMoneda.Location = new System.Drawing.Point(557, 119);
            this.cboMoneda.Name = "cboMoneda";
            this.cboMoneda.Size = new System.Drawing.Size(67, 20);
            this.cboMoneda.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.cboMoneda.TabIndex = 48;
            this.cboMoneda.SelectedIndexChanged += new System.EventHandler(this.cboMoneda_SelectedIndexChanged);
            this.cboMoneda.KeyDown += new System.Windows.Forms.KeyEventHandler(this.cboMoneda_KeyDown);
            //
            // comboItem9
            //
            this.comboItem9.Text = "01-Venta Interna";
            this.comboItem9.Value = "01";
            //
            // comboItem10
            //
            this.comboItem10.Text = "02-Venta Externa";
            this.comboItem10.Value = "02";
            //
            // cboServicio
            //
            this.cboServicio.DisplayMember = "Text";
            this.cboServicio.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.cboServicio.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboServicio.FormattingEnabled = true;
            this.cboServicio.ItemHeight = 14;
            this.cboServicio.Items.AddRange(new object[] {
            this.comboItem7,
            this.comboItem8});
            this.cboServicio.Location = new System.Drawing.Point(240, 73);
            this.cboServicio.Name = "cboServicio";
            this.cboServicio.Size = new System.Drawing.Size(321, 20);
            this.cboServicio.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.cboServicio.TabIndex = 56;
            this.cboServicio.SelectedIndexChanged += new System.EventHandler(this.cboServicio_SelectedIndexChanged);
            //
            // comboItem7
            //
            this.comboItem7.Text = "01-Venta Interna";
            this.comboItem7.Value = "01";
            //
            // comboItem8
            //
            this.comboItem8.Text = "02-Venta Externa";
            this.comboItem8.Value = "02";
            //
            // cboTipdoc
            //
            this.cboTipdoc.DisplayMember = "Text";
            this.cboTipdoc.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.cboTipdoc.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboTipdoc.FormattingEnabled = true;
            this.cboTipdoc.ItemHeight = 14;
            this.cboTipdoc.Items.AddRange(new object[] {
            this.comboItem5,
            this.comboItem6});
            this.cboTipdoc.Location = new System.Drawing.Point(88, 4);
            this.cboTipdoc.Name = "cboTipdoc";
            this.cboTipdoc.Size = new System.Drawing.Size(262, 20);
            this.cboTipdoc.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.cboTipdoc.TabIndex = 48;
            this.cboTipdoc.SelectedIndexChanged += new System.EventHandler(this.cboTipdoc_SelectedIndexChanged);
            this.cboTipdoc.SelectedValueChanged += new System.EventHandler(this.cboTipdoc_SelectedValueChanged);
            this.cboTipdoc.KeyDown += new System.Windows.Forms.KeyEventHandler(this.cboTipdoc_KeyDown);
            //
            // comboItem5
            //
            this.comboItem5.Text = "01-Venta Interna";
            this.comboItem5.Value = "01";
            //
            // comboItem6
            //
            this.comboItem6.Text = "02-Venta Externa";
            this.comboItem6.Value = "02";
            //
            // labelX23
            //
            this.labelX23.AutoSize = true;
            this.labelX23.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX23.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX23.Location = new System.Drawing.Point(513, 122);
            this.labelX23.Name = "labelX23";
            this.labelX23.Size = new System.Drawing.Size(42, 15);
            this.labelX23.TabIndex = 55;
            this.labelX23.Text = "Moneda";
            //
            // labelX22
            //
            this.labelX22.AutoSize = true;
            this.labelX22.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX22.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX22.Location = new System.Drawing.Point(460, 100);
            this.labelX22.Name = "labelX22";
            this.labelX22.Size = new System.Drawing.Size(43, 15);
            this.labelX22.TabIndex = 54;
            this.labelX22.Text = "Cta.Det.";
            //
            // labelX21
            //
            this.labelX21.AutoSize = true;
            this.labelX21.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX21.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX21.Location = new System.Drawing.Point(184, 77);
            this.labelX21.Name = "labelX21";
            this.labelX21.Size = new System.Drawing.Size(55, 15);
            this.labelX21.TabIndex = 53;
            this.labelX21.Text = "Detracción";
            //
            // labelX20
            //
            this.labelX20.AutoSize = true;
            this.labelX20.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX20.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX20.Location = new System.Drawing.Point(444, 52);
            this.labelX20.Name = "labelX20";
            this.labelX20.Size = new System.Drawing.Size(73, 15);
            this.labelX20.TabIndex = 52;
            this.labelX20.Text = "F.Vencimiento";
            //
            // labelX19
            //
            this.labelX19.AutoSize = true;
            this.labelX19.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX19.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX19.Location = new System.Drawing.Point(189, 53);
            this.labelX19.Name = "labelX19";
            this.labelX19.Size = new System.Drawing.Size(50, 15);
            this.labelX19.TabIndex = 51;
            this.labelX19.Text = "T.Cambio";
            //
            // labelX18
            //
            this.labelX18.AutoSize = true;
            this.labelX18.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX18.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX18.Location = new System.Drawing.Point(535, 8);
            this.labelX18.Name = "labelX18";
            this.labelX18.Size = new System.Drawing.Size(12, 15);
            this.labelX18.TabIndex = 50;
            this.labelX18.Text = "Al";
            //
            // labelX17
            //
            this.labelX17.AutoSize = true;
            this.labelX17.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX17.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX17.Location = new System.Drawing.Point(434, 7);
            this.labelX17.Name = "labelX17";
            this.labelX17.Size = new System.Drawing.Size(15, 15);
            this.labelX17.TabIndex = 49;
            this.labelX17.Text = "N°";
            //
            // labelX16
            //
            this.labelX16.AutoSize = true;
            this.labelX16.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX16.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX16.Location = new System.Drawing.Point(357, 7);
            this.labelX16.Name = "labelX16";
            this.labelX16.Size = new System.Drawing.Size(28, 15);
            this.labelX16.TabIndex = 42;
            this.labelX16.Text = "Serie";
            //
            // labelX15
            //
            this.labelX15.AutoSize = true;
            this.labelX15.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX15.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX15.Location = new System.Drawing.Point(2, 150);
            this.labelX15.Name = "labelX15";
            this.labelX15.Size = new System.Drawing.Size(188, 15);
            this.labelX15.TabIndex = 48;
            this.labelX15.Text = "La Operación es Gravada con el IGV?";
            //
            // labelX14
            //
            this.labelX14.AutoSize = true;
            this.labelX14.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX14.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX14.Location = new System.Drawing.Point(27, 122);
            this.labelX14.Name = "labelX14";
            this.labelX14.Size = new System.Drawing.Size(56, 15);
            this.labelX14.TabIndex = 47;
            this.labelX14.Text = "Tipo Venta";
            //
            // labelX13
            //
            this.labelX13.AutoSize = true;
            this.labelX13.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX13.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX13.Location = new System.Drawing.Point(52, 98);
            this.labelX13.Name = "labelX13";
            this.labelX13.Size = new System.Drawing.Size(31, 15);
            this.labelX13.TabIndex = 46;
            this.labelX13.Text = "Glosa";
            //
            // labelX12
            //
            this.labelX12.AutoSize = true;
            this.labelX12.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX12.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX12.Location = new System.Drawing.Point(1, 76);
            this.labelX12.Name = "labelX12";
            this.labelX12.Size = new System.Drawing.Size(82, 15);
            this.labelX12.TabIndex = 45;
            this.labelX12.Text = "O/Compra -Serv";
            //
            // labelX11
            //
            this.labelX11.AutoSize = true;
            this.labelX11.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX11.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX11.Location = new System.Drawing.Point(30, 53);
            this.labelX11.Name = "labelX11";
            this.labelX11.Size = new System.Drawing.Size(53, 15);
            this.labelX11.TabIndex = 44;
            this.labelX11.Text = "F.Registro";
            //
            // labelX10
            //
            this.labelX10.AutoSize = true;
            this.labelX10.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX10.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX10.Location = new System.Drawing.Point(31, 31);
            this.labelX10.Name = "labelX10";
            this.labelX10.Size = new System.Drawing.Size(52, 15);
            this.labelX10.TabIndex = 43;
            this.labelX10.Text = "Ruc - Cód";
            //
            // labelX9
            //
            this.labelX9.AutoSize = true;
            this.labelX9.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX9.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX9.Location = new System.Drawing.Point(14, 7);
            this.labelX9.Name = "labelX9";
            this.labelX9.Size = new System.Drawing.Size(69, 15);
            this.labelX9.TabIndex = 42;
            this.labelX9.Text = "Comprobante";
            //
            // grpdua
            //
            this.grpdua.CanvasColor = System.Drawing.SystemColors.Control;
            this.grpdua.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
            this.grpdua.Controls.Add(this.adufRegularizacion);
            this.grpdua.Controls.Add(this.adufEmbarque);
            this.grpdua.Controls.Add(this.cboAduana);
            this.grpdua.Controls.Add(this.labelX29);
            this.grpdua.Controls.Add(this.labelX28);
            this.grpdua.Controls.Add(this.labelX27);
            this.grpdua.Controls.Add(this.labelX26);
            this.grpdua.Controls.Add(this.labelX25);
            this.grpdua.Controls.Add(this.labelX24);
            this.grpdua.Controls.Add(this.aduValorfob);
            this.grpdua.Controls.Add(this.aduPeriodo);
            this.grpdua.Controls.Add(this.aduCorrelativo);
            this.grpdua.DisabledBackColor = System.Drawing.Color.Empty;
            this.grpdua.Location = new System.Drawing.Point(630, 51);
            this.grpdua.Name = "grpdua";
            this.grpdua.Size = new System.Drawing.Size(367, 90);
            //
            //
            //
            this.grpdua.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
            this.grpdua.Style.BackColorGradientAngle = 90;
            this.grpdua.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
            this.grpdua.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.grpdua.Style.BorderBottomWidth = 1;
            this.grpdua.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.grpdua.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.grpdua.Style.BorderLeftWidth = 1;
            this.grpdua.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.grpdua.Style.BorderRightWidth = 1;
            this.grpdua.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.grpdua.Style.BorderTopWidth = 1;
            this.grpdua.Style.CornerDiameter = 4;
            this.grpdua.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
            this.grpdua.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
            this.grpdua.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.grpdua.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
            //
            //
            //
            this.grpdua.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            //
            //
            //
            this.grpdua.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.grpdua.TabIndex = 41;
            //
            // adufRegularizacion
            //
            this.adufRegularizacion.BackgroundStyle.Class = "DateTimeInputBackground";
            this.adufRegularizacion.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.adufRegularizacion.ButtonClear.Tooltip = "";
            this.adufRegularizacion.ButtonCustom.Tooltip = "";
            this.adufRegularizacion.ButtonCustom2.Tooltip = "";
            this.adufRegularizacion.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
            this.adufRegularizacion.ButtonDropDown.Tooltip = "";
            this.adufRegularizacion.ButtonDropDown.Visible = true;
            this.adufRegularizacion.ButtonFreeText.Tooltip = "";
            this.adufRegularizacion.IsPopupCalendarOpen = false;
            this.adufRegularizacion.Location = new System.Drawing.Point(145, 38);
            //
            //
            //
            this.adufRegularizacion.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
            //
            //
            //
            this.adufRegularizacion.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.adufRegularizacion.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
            //
            //
            //
            this.adufRegularizacion.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
            this.adufRegularizacion.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
            this.adufRegularizacion.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.adufRegularizacion.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.adufRegularizacion.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
            this.adufRegularizacion.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
            this.adufRegularizacion.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.adufRegularizacion.MonthCalendar.DisplayMonth = new System.DateTime(2014, 11, 1, 0, 0, 0, 0);
            this.adufRegularizacion.MonthCalendar.MarkedDates = new System.DateTime[0];
            this.adufRegularizacion.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
            //
            //
            //
            this.adufRegularizacion.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
            this.adufRegularizacion.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
            this.adufRegularizacion.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
            this.adufRegularizacion.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.adufRegularizacion.MonthCalendar.TodayButtonVisible = true;
            this.adufRegularizacion.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
            this.adufRegularizacion.Name = "adufRegularizacion";
            this.adufRegularizacion.ShowCheckBox = true;
            this.adufRegularizacion.Size = new System.Drawing.Size(98, 20);
            this.adufRegularizacion.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.adufRegularizacion.TabIndex = 61;
            this.adufRegularizacion.Value = new System.DateTime(2014, 11, 8, 13, 46, 32, 0);
            //
            // adufEmbarque
            //
            this.adufEmbarque.BackgroundStyle.Class = "DateTimeInputBackground";
            this.adufEmbarque.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.adufEmbarque.ButtonClear.Tooltip = "";
            this.adufEmbarque.ButtonCustom.Tooltip = "";
            this.adufEmbarque.ButtonCustom2.Tooltip = "";
            this.adufEmbarque.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
            this.adufEmbarque.ButtonDropDown.Tooltip = "";
            this.adufEmbarque.ButtonDropDown.Visible = true;
            this.adufEmbarque.ButtonFreeText.Tooltip = "";
            this.adufEmbarque.IsPopupCalendarOpen = false;
            this.adufEmbarque.Location = new System.Drawing.Point(24, 38);
            //
            //
            //
            this.adufEmbarque.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
            //
            //
            //
            this.adufEmbarque.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.adufEmbarque.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
            //
            //
            //
            this.adufEmbarque.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
            this.adufEmbarque.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
            this.adufEmbarque.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.adufEmbarque.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.adufEmbarque.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
            this.adufEmbarque.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
            this.adufEmbarque.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.adufEmbarque.MonthCalendar.DisplayMonth = new System.DateTime(2014, 11, 1, 0, 0, 0, 0);
            this.adufEmbarque.MonthCalendar.MarkedDates = new System.DateTime[0];
            this.adufEmbarque.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
            //
            //
            //
            this.adufEmbarque.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
            this.adufEmbarque.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
            this.adufEmbarque.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
            this.adufEmbarque.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.adufEmbarque.MonthCalendar.TodayButtonVisible = true;
            this.adufEmbarque.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
            this.adufEmbarque.Name = "adufEmbarque";
            this.adufEmbarque.ShowCheckBox = true;
            this.adufEmbarque.Size = new System.Drawing.Size(98, 20);
            this.adufEmbarque.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.adufEmbarque.TabIndex = 60;
            this.adufEmbarque.Value = new System.DateTime(2014, 11, 8, 13, 46, 32, 0);
            //
            // cboAduana
            //
            this.cboAduana.DisplayMember = "Text";
            this.cboAduana.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.cboAduana.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboAduana.FormattingEnabled = true;
            this.cboAduana.ItemHeight = 14;
            this.cboAduana.Items.AddRange(new object[] {
            this.comboItem15,
            this.comboItem16});
            this.cboAduana.Location = new System.Drawing.Point(2, 16);
            this.cboAduana.Name = "cboAduana";
            this.cboAduana.Size = new System.Drawing.Size(251, 20);
            this.cboAduana.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.cboAduana.TabIndex = 53;
            //
            // comboItem15
            //
            this.comboItem15.Text = "01-Venta Interna";
            this.comboItem15.Value = "01";
            //
            // comboItem16
            //
            this.comboItem16.Text = "02-Venta Externa";
            this.comboItem16.Value = "02";
            //
            // labelX29
            //
            this.labelX29.AutoSize = true;
            this.labelX29.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX29.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX29.Location = new System.Drawing.Point(243, 41);
            this.labelX29.Name = "labelX29";
            this.labelX29.Size = new System.Drawing.Size(31, 15);
            this.labelX29.TabIndex = 52;
            this.labelX29.Text = "FOB$";
            //
            // labelX28
            //
            this.labelX28.AutoSize = true;
            this.labelX28.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX28.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX28.Location = new System.Drawing.Point(122, 41);
            this.labelX28.Name = "labelX28";
            this.labelX28.Size = new System.Drawing.Size(23, 15);
            this.labelX28.TabIndex = 51;
            this.labelX28.Text = "F.R.";
            //
            // labelX27
            //
            this.labelX27.AutoSize = true;
            this.labelX27.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX27.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX27.Location = new System.Drawing.Point(0, 41);
            this.labelX27.Name = "labelX27";
            this.labelX27.Size = new System.Drawing.Size(23, 15);
            this.labelX27.TabIndex = 50;
            this.labelX27.Text = "F.E.";
            //
            // labelX26
            //
            this.labelX26.AutoSize = true;
            this.labelX26.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX26.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX26.Location = new System.Drawing.Point(300, 0);
            this.labelX26.Name = "labelX26";
            this.labelX26.Size = new System.Drawing.Size(56, 15);
            this.labelX26.TabIndex = 49;
            this.labelX26.Text = "Correlativo";
            //
            // labelX25
            //
            this.labelX25.AutoSize = true;
            this.labelX25.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX25.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX25.Location = new System.Drawing.Point(257, 1);
            this.labelX25.Name = "labelX25";
            this.labelX25.Size = new System.Drawing.Size(22, 15);
            this.labelX25.TabIndex = 48;
            this.labelX25.Text = "Año";
            //
            // labelX24
            //
            this.labelX24.AutoSize = true;
            this.labelX24.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX24.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX24.Location = new System.Drawing.Point(4, 1);
            this.labelX24.Name = "labelX24";
            this.labelX24.Size = new System.Drawing.Size(40, 15);
            this.labelX24.TabIndex = 47;
            this.labelX24.Text = "Aduana";
            //
            // aduValorfob
            //
            this.aduValorfob.Enabled = false;
            this.aduValorfob.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.aduValorfob.Location = new System.Drawing.Point(274, 38);
            this.aduValorfob.Name = "aduValorfob";
            this.aduValorfob.Size = new System.Drawing.Size(87, 20);
            this.aduValorfob.TabIndex = 11;
            this.aduValorfob.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            //
            // aduPeriodo
            //
            this.aduPeriodo.Location = new System.Drawing.Point(255, 16);
            this.aduPeriodo.MaxLength = 4;
            this.aduPeriodo.Name = "aduPeriodo";
            this.aduPeriodo.Size = new System.Drawing.Size(42, 20);
            this.aduPeriodo.TabIndex = 3;
            //
            // aduCorrelativo
            //
            this.aduCorrelativo.Location = new System.Drawing.Point(299, 16);
            this.aduCorrelativo.MaxLength = 6;
            this.aduCorrelativo.Name = "aduCorrelativo";
            this.aduCorrelativo.Size = new System.Drawing.Size(62, 20);
            this.aduCorrelativo.TabIndex = 5;
            //
            // txtNumFin
            //
            this.txtNumFin.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
            this.txtNumFin.Location = new System.Drawing.Point(549, 5);
            this.txtNumFin.MaxLength = 10;
            this.txtNumFin.Name = "txtNumFin";
            this.txtNumFin.Size = new System.Drawing.Size(75, 20);
            this.txtNumFin.TabIndex = 7;
            this.txtNumFin.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtNumFin_KeyDown);
            this.txtNumFin.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtNumFin_KeyPress);
            //
            // chkRetencion
            //
            this.chkRetencion.AutoSize = true;
            this.chkRetencion.BackColor = System.Drawing.Color.Transparent;
            this.chkRetencion.ForeColor = System.Drawing.Color.Blue;
            this.chkRetencion.Location = new System.Drawing.Point(710, 150);
            this.chkRetencion.Name = "chkRetencion";
            this.chkRetencion.Size = new System.Drawing.Size(123, 17);
            this.chkRetencion.TabIndex = 36;
            this.chkRetencion.TabStop = false;
            this.chkRetencion.Text = "Sujeto a Retención?";
            this.chkRetencion.UseVisualStyleBackColor = false;
            //
            // chkIncluye
            //
            this.chkIncluye.AutoSize = true;
            this.chkIncluye.BackColor = System.Drawing.Color.Transparent;
            this.chkIncluye.ForeColor = System.Drawing.Color.Green;
            this.chkIncluye.Location = new System.Drawing.Point(575, 150);
            this.chkIncluye.Name = "chkIncluye";
            this.chkIncluye.Size = new System.Drawing.Size(120, 17);
            this.chkIncluye.TabIndex = 35;
            this.chkIncluye.TabStop = false;
            this.chkIncluye.Text = "Precio Incluye IGV?";
            this.chkIncluye.UseVisualStyleBackColor = false;
            this.chkIncluye.CheckedChanged += new System.EventHandler(this.chkIncluye_CheckedChanged);
            //
            // chkAfecto
            //
            this.chkAfecto.AutoSize = true;
            this.chkAfecto.BackColor = System.Drawing.Color.Transparent;
            this.chkAfecto.ForeColor = System.Drawing.Color.Blue;
            this.chkAfecto.Location = new System.Drawing.Point(468, 150);
            this.chkAfecto.Name = "chkAfecto";
            this.chkAfecto.Size = new System.Drawing.Size(95, 17);
            this.chkAfecto.TabIndex = 34;
            this.chkAfecto.TabStop = false;
            this.chkAfecto.Text = "Afecto al IGV?";
            this.chkAfecto.UseVisualStyleBackColor = false;
            this.chkAfecto.CheckedChanged += new System.EventHandler(this.chkAfecto_CheckedChanged);
            //
            // lblTipoventa
            //
            this.lblTipoventa.Enabled = false;
            this.lblTipoventa.Location = new System.Drawing.Point(126, 119);
            this.lblTipoventa.Name = "lblTipoventa";
            this.lblTipoventa.Size = new System.Drawing.Size(382, 20);
            this.lblTipoventa.TabIndex = 29;
            //
            // txtGlosa
            //
            this.txtGlosa.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
            this.txtGlosa.Enabled = false;
            this.txtGlosa.Location = new System.Drawing.Point(88, 96);
            this.txtGlosa.MaxLength = 100;
            this.txtGlosa.Name = "txtGlosa";
            this.txtGlosa.Size = new System.Drawing.Size(371, 20);
            this.txtGlosa.TabIndex = 24;
            this.txtGlosa.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtGlosa_KeyDown);
            //
            // txtCtadetrac
            //
            this.txtCtadetrac.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
            this.txtCtadetrac.Enabled = false;
            this.txtCtadetrac.Location = new System.Drawing.Point(504, 96);
            this.txtCtadetrac.MaxLength = 40;
            this.txtCtadetrac.Name = "txtCtadetrac";
            this.txtCtadetrac.Size = new System.Drawing.Size(120, 20);
            this.txtCtadetrac.TabIndex = 26;
            //
            // txtRuc
            //
            this.txtRuc.Enabled = false;
            this.txtRuc.Location = new System.Drawing.Point(88, 28);
            this.txtRuc.MaxLength = 11;
            this.txtRuc.Name = "txtRuc";
            this.txtRuc.Size = new System.Drawing.Size(91, 20);
            this.txtRuc.TabIndex = 9;
            this.txtRuc.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtRuc_KeyDown);
            this.txtRuc.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtRuc_KeyPress);
            //
            // txtCtactename
            //
            this.txtCtactename.Enabled = false;
            this.txtCtactename.Location = new System.Drawing.Point(181, 28);
            this.txtCtactename.Name = "txtCtactename";
            this.txtCtactename.Size = new System.Drawing.Size(443, 20);
            this.txtCtactename.TabIndex = 10;
            //
            // txtPorcdet
            //
            this.txtPorcdet.Enabled = false;
            this.txtPorcdet.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtPorcdet.Location = new System.Drawing.Point(581, 73);
            this.txtPorcdet.Name = "txtPorcdet";
            this.txtPorcdet.Size = new System.Drawing.Size(43, 20);
            this.txtPorcdet.TabIndex = 22;
            this.txtPorcdet.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            //
            // txtSerie
            //
            this.txtSerie.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
            this.txtSerie.Location = new System.Drawing.Point(386, 5);
            this.txtSerie.MaxLength = 4;
            this.txtSerie.Name = "txtSerie";
            this.txtSerie.Size = new System.Drawing.Size(39, 20);
            this.txtSerie.TabIndex = 3;
            this.txtSerie.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtSerie_KeyDown);
            //
            // txtTipoventa
            //
            this.txtTipoventa.Location = new System.Drawing.Point(88, 119);
            this.txtTipoventa.MaxLength = 2;
            this.txtTipoventa.Name = "txtTipoventa";
            this.txtTipoventa.Size = new System.Drawing.Size(36, 20);
            this.txtTipoventa.TabIndex = 28;
            this.txtTipoventa.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtTipoventa_KeyDown);
            //
            // txtNumero
            //
            this.txtNumero.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
            this.txtNumero.Location = new System.Drawing.Point(451, 5);
            this.txtNumero.MaxLength = 10;
            this.txtNumero.Name = "txtNumero";
            this.txtNumero.Size = new System.Drawing.Size(75, 20);
            this.txtNumero.TabIndex = 5;
            this.txtNumero.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtNumero_KeyDown);
            this.txtNumero.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtNumero_KeyPress);
            //
            // Label29
            //
            this.Label29.AutoSize = true;
            this.Label29.ForeColor = System.Drawing.Color.RoyalBlue;
            this.Label29.Location = new System.Drawing.Point(563, 76);
            this.Label29.Name = "Label29";
            this.Label29.Size = new System.Drawing.Size(15, 13);
            this.Label29.TabIndex = 21;
            this.Label29.Text = "%";
            //
            // txtTipocambio
            //
            this.txtTipocambio.Enabled = false;
            this.txtTipocambio.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtTipocambio.Location = new System.Drawing.Point(240, 50);
            this.txtTipocambio.Name = "txtTipocambio";
            this.txtTipocambio.Size = new System.Drawing.Size(69, 20);
            this.txtTipocambio.TabIndex = 14;
            this.txtTipocambio.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            //
            // txtNumeroorden
            //
            this.txtNumeroorden.Location = new System.Drawing.Point(88, 73);
            this.txtNumeroorden.MaxLength = 10;
            this.txtNumeroorden.Name = "txtNumeroorden";
            this.txtNumeroorden.Size = new System.Drawing.Size(91, 20);
            this.txtNumeroorden.TabIndex = 18;
            //
            // chkDuplicar
            //
            this.chkDuplicar.AutoSize = true;
            this.chkDuplicar.BackColor = System.Drawing.Color.Transparent;
            this.chkDuplicar.ForeColor = System.Drawing.Color.Blue;
            this.chkDuplicar.Location = new System.Drawing.Point(434, 512);
            this.chkDuplicar.Name = "chkDuplicar";
            this.chkDuplicar.Size = new System.Drawing.Size(96, 17);
            this.chkDuplicar.TabIndex = 8;
            this.chkDuplicar.Text = "Duplicar Línea";
            this.chkDuplicar.UseVisualStyleBackColor = false;
            //
            // txtDescripcampo
            //
            this.txtDescripcampo.BackColor = System.Drawing.Color.White;
            this.txtDescripcampo.Enabled = false;
            this.txtDescripcampo.ForeColor = System.Drawing.SystemColors.WindowFrame;
            this.txtDescripcampo.Location = new System.Drawing.Point(8, 510);
            this.txtDescripcampo.Name = "txtDescripcampo";
            this.txtDescripcampo.Size = new System.Drawing.Size(419, 20);
            this.txtDescripcampo.TabIndex = 7;
            //
            // GridExaminar
            //
            this.GridExaminar.AllowUserToAddRows = false;
            this.GridExaminar.AllowUserToDeleteRows = false;
            this.GridExaminar.AllowUserToResizeColumns = false;
            this.GridExaminar.AllowUserToResizeRows = false;
            this.GridExaminar.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
            this.GridExaminar.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Sunken;
            this.GridExaminar.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.GridExaminar.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.asientoitems,
            this.rubroid,
            this.drubro,
            this.numpedido,
            this.num_op,
            this.productid,
            this.tallacolor,
            this.productname,
            this.unidmedidaid,
            this.cantidad,
            this.afectoigvid,
            this.precunit,
            this.bruto,
            this.pdscto,
            this.valorventa,
            this.igvo,
            this.total,
            this.cencosid,
            this.COL_OBS,
            this.tipguia,
            this.serguia,
            this.numguia});
            this.GridExaminar.Location = new System.Drawing.Point(6, 262);
            this.GridExaminar.MultiSelect = false;
            this.GridExaminar.Name = "GridExaminar";
            this.GridExaminar.RowHeadersWidth = 10;
            dataGridViewCellStyle10.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.GridExaminar.RowsDefaultCellStyle = dataGridViewCellStyle10;
            this.GridExaminar.RowTemplate.Height = 20;
            this.GridExaminar.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
            this.GridExaminar.Size = new System.Drawing.Size(1005, 240);
            this.GridExaminar.TabIndex = 6;
            this.GridExaminar.CellBeginEdit += new System.Windows.Forms.DataGridViewCellCancelEventHandler(this.GridExaminar_CellBeginEdit);
            this.GridExaminar.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.GridExaminar_CellContentClick);
            this.GridExaminar.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.GridExaminar_CellEndEdit);
            this.GridExaminar.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.GridExaminar_CellValueChanged);
            this.GridExaminar.EditingControlShowing += new System.Windows.Forms.DataGridViewEditingControlShowingEventHandler(this.GridExaminar_EditingControlShowing);
            this.GridExaminar.SelectionChanged += new System.EventHandler(this.GridExaminar_SelectionChanged);
            this.GridExaminar.KeyDown += new System.Windows.Forms.KeyEventHandler(this.GridExaminar_KeyDown);
            //
            // asientoitems
            //
            this.asientoitems.DataPropertyName = "asientoitems";
            this.asientoitems.HeaderText = "Nro";
            this.asientoitems.Name = "asientoitems";
            this.asientoitems.ReadOnly = true;
            this.asientoitems.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
            this.asientoitems.Visible = false;
            this.asientoitems.Width = 45;
            //
            // rubroid
            //
            this.rubroid.DataPropertyName = "rubroid";
            this.rubroid.HeaderText = "Rubro";
            this.rubroid.Name = "rubroid";
            this.rubroid.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
            this.rubroid.Width = 42;
            //
            // drubro
            //
            this.drubro.DataPropertyName = "drubro";
            this.drubro.HeaderText = "Descripción Rubro";
            this.drubro.Name = "drubro";
            this.drubro.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
            this.drubro.Visible = false;
            this.drubro.Width = 300;
            //
            // numpedido
            //
            this.numpedido.DataPropertyName = "numpedido";
            this.numpedido.HeaderText = "Pedido";
            this.numpedido.Name = "numpedido";
            this.numpedido.Visible = false;
            this.numpedido.Width = 70;
            //
            // num_op
            //
            this.num_op.DataPropertyName = "num_op";
            this.num_op.HeaderText = "OP";
            this.num_op.Name = "num_op";
            this.num_op.Visible = false;
            this.num_op.Width = 75;
            //
            // productid
            //
            this.productid.DataPropertyName = "productid";
            this.productid.HeaderText = "Código Artículo";
            this.productid.MaxInputLength = 10;
            this.productid.Name = "productid";
            this.productid.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
            this.productid.Width = 110;
            //
            // tallacolor
            //
            this.tallacolor.DataPropertyName = "tallacolor";
            this.tallacolor.HeaderText = "Talla/Color";
            this.tallacolor.Name = "tallacolor";
            this.tallacolor.Visible = false;
            this.tallacolor.Width = 65;
            //
            // productname
            //
            this.productname.DataPropertyName = "productname";
            this.productname.HeaderText = "Descripción";
            this.productname.Name = "productname";
            this.productname.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
            this.productname.Width = 300;
            //
            // unidmedidaid
            //
            this.unidmedidaid.DataPropertyName = "unidmedidaid";
            dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
            dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.unidmedidaid.DefaultCellStyle = dataGridViewCellStyle1;
            this.unidmedidaid.HeaderText = "UMD";
            this.unidmedidaid.Name = "unidmedidaid";
            this.unidmedidaid.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
            this.unidmedidaid.Visible = false;
            this.unidmedidaid.Width = 35;
            //
            // cantidad
            //
            this.cantidad.DataPropertyName = "cantidad";
            dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle2.Format = "N3";
            dataGridViewCellStyle2.NullValue = "0";
            dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.cantidad.DefaultCellStyle = dataGridViewCellStyle2;
            this.cantidad.HeaderText = "Cantidad";
            this.cantidad.Name = "cantidad";
            this.cantidad.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
            this.cantidad.Width = 70;
            //
            // afectoigvid
            //
            this.afectoigvid.DataPropertyName = "afectoigvid";
            dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.TopCenter;
            this.afectoigvid.DefaultCellStyle = dataGridViewCellStyle3;
            this.afectoigvid.HeaderText = "Des";
            this.afectoigvid.Name = "afectoigvid";
            this.afectoigvid.Width = 30;
            //
            // precunit
            //
            this.precunit.DataPropertyName = "precunit";
            dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle4.Format = "N5";
            dataGridViewCellStyle4.NullValue = "0";
            this.precunit.DefaultCellStyle = dataGridViewCellStyle4;
            this.precunit.HeaderText = "Unitario";
            this.precunit.Name = "precunit";
            this.precunit.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
            this.precunit.Width = 85;
            //
            // bruto
            //
            this.bruto.DataPropertyName = "bruto";
            dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle5.Format = "N2";
            dataGridViewCellStyle5.NullValue = "0";
            this.bruto.DefaultCellStyle = dataGridViewCellStyle5;
            this.bruto.HeaderText = "Valor";
            this.bruto.Name = "bruto";
            this.bruto.Width = 85;
            //
            // pdscto
            //
            this.pdscto.DataPropertyName = "pdscto";
            dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle6.Format = "N2";
            dataGridViewCellStyle6.NullValue = "0";
            this.pdscto.DefaultCellStyle = dataGridViewCellStyle6;
            this.pdscto.HeaderText = "%Dcto.";
            this.pdscto.Name = "pdscto";
            this.pdscto.Width = 55;
            //
            // valorventa
            //
            this.valorventa.DataPropertyName = "valorventa";
            dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle7.Format = "N2";
            dataGridViewCellStyle7.NullValue = "0";
            this.valorventa.DefaultCellStyle = dataGridViewCellStyle7;
            this.valorventa.HeaderText = "V.Venta";
            this.valorventa.Name = "valorventa";
            this.valorventa.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
            this.valorventa.Width = 85;
            //
            // igvo
            //
            this.igvo.DataPropertyName = "igvo";
            dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle8.Format = "N2";
            dataGridViewCellStyle8.NullValue = "0";
            this.igvo.DefaultCellStyle = dataGridViewCellStyle8;
            this.igvo.HeaderText = "IGV";
            this.igvo.Name = "igvo";
            this.igvo.ReadOnly = true;
            this.igvo.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
            this.igvo.Width = 70;
            //
            // total
            //
            this.total.DataPropertyName = "total";
            dataGridViewCellStyle9.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle9.Format = "N2";
            dataGridViewCellStyle9.NullValue = "0";
            this.total.DefaultCellStyle = dataGridViewCellStyle9;
            this.total.HeaderText = "P.Venta";
            this.total.Name = "total";
            this.total.ReadOnly = true;
            this.total.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
            this.total.Width = 85;
            //
            // cencosid
            //
            this.cencosid.DataPropertyName = "cencosid";
            this.cencosid.HeaderText = "C.Costo";
            this.cencosid.Name = "cencosid";
            this.cencosid.Width = 54;
            //
            // COL_OBS
            //
            this.COL_OBS.HeaderText = "Obs.";
            this.COL_OBS.Name = "COL_OBS";
            this.COL_OBS.Resizable = System.Windows.Forms.DataGridViewTriState.True;
            this.COL_OBS.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.COL_OBS.Width = 65;
            //
            // tipguia
            //
            this.tipguia.DataPropertyName = "tipguia";
            this.tipguia.HeaderText = "TG";
            this.tipguia.Name = "tipguia";
            this.tipguia.Width = 34;
            //
            // serguia
            //
            this.serguia.DataPropertyName = "serguia";
            this.serguia.HeaderText = "SerGuia";
            this.serguia.Name = "serguia";
            this.serguia.Width = 50;
            //
            // numguia
            //
            this.numguia.DataPropertyName = "numguia";
            this.numguia.HeaderText = "NumGuia";
            this.numguia.Name = "numguia";
            this.numguia.Width = 80;
            //
            // lblAnulado
            //
            this.lblAnulado.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
            this.lblAnulado.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblAnulado.ForeColor = System.Drawing.Color.Red;
            this.lblAnulado.Location = new System.Drawing.Point(269, 2);
            this.lblAnulado.Name = "lblAnulado";
            this.lblAnulado.Size = new System.Drawing.Size(145, 20);
            this.lblAnulado.TabIndex = 3;
            this.lblAnulado.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // txtMes
            //
            this.txtMes.Location = new System.Drawing.Point(37, 3);
            this.txtMes.MaxLength = 2;
            this.txtMes.Name = "txtMes";
            this.txtMes.Size = new System.Drawing.Size(30, 20);
            this.txtMes.TabIndex = 1;
            this.txtMes.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtMes_KeyDown);
            this.txtMes.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtMes_KeyPress);
            //
            // txtAsiento
            //
            this.txtAsiento.Location = new System.Drawing.Point(132, 3);
            this.txtAsiento.MaxLength = 6;
            this.txtAsiento.Name = "txtAsiento";
            this.txtAsiento.Size = new System.Drawing.Size(68, 20);
            this.txtAsiento.TabIndex = 3;
            this.txtAsiento.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtAsiento_KeyDown);
            this.txtAsiento.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtAsiento_KeyPress);
            //
            // txtDctos
            //
            this.txtDctos.Enabled = false;
            this.txtDctos.Location = new System.Drawing.Point(78, 14);
            this.txtDctos.Name = "txtDctos";
            this.txtDctos.Size = new System.Drawing.Size(70, 20);
            this.txtDctos.TabIndex = 3;
            this.txtDctos.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            //
            // txtValor
            //
            this.txtValor.Enabled = false;
            this.txtValor.Location = new System.Drawing.Point(4, 14);
            this.txtValor.Name = "txtValor";
            this.txtValor.Size = new System.Drawing.Size(70, 20);
            this.txtValor.TabIndex = 1;
            this.txtValor.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            //
            // txtPigv
            //
            this.txtPigv.Enabled = false;
            this.txtPigv.Location = new System.Drawing.Point(226, 14);
            this.txtPigv.Name = "txtPigv";
            this.txtPigv.Size = new System.Drawing.Size(39, 20);
            this.txtPigv.TabIndex = 8;
            this.txtPigv.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            this.txtPigv.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtPigv_KeyDown);
            //
            // txtTotal
            //
            this.txtTotal.Enabled = false;
            this.txtTotal.Location = new System.Drawing.Point(341, 14);
            this.txtTotal.Name = "txtTotal";
            this.txtTotal.Size = new System.Drawing.Size(70, 20);
            this.txtTotal.TabIndex = 0;
            this.txtTotal.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            //
            // txtIgv
            //
            this.txtIgv.Enabled = false;
            this.txtIgv.Location = new System.Drawing.Point(269, 14);
            this.txtIgv.Name = "txtIgv";
            this.txtIgv.Size = new System.Drawing.Size(68, 20);
            this.txtIgv.TabIndex = 10;
            this.txtIgv.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            this.txtIgv.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtIgv_KeyPress);
            //
            // txtVenta
            //
            this.txtVenta.Enabled = false;
            this.txtVenta.Location = new System.Drawing.Point(152, 14);
            this.txtVenta.Name = "txtVenta";
            this.txtVenta.Size = new System.Drawing.Size(70, 20);
            this.txtVenta.TabIndex = 7;
            this.txtVenta.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            //
            // lblMoneda
            //
            this.lblMoneda.AutoSize = true;
            this.lblMoneda.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblMoneda.ForeColor = System.Drawing.Color.Blue;
            this.lblMoneda.Location = new System.Drawing.Point(553, 526);
            this.lblMoneda.Name = "lblMoneda";
            this.lblMoneda.Size = new System.Drawing.Size(37, 16);
            this.lblMoneda.TabIndex = 9;
            this.lblMoneda.Text = "Mon";
            this.lblMoneda.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            //
            // groupPanel1
            //
            this.groupPanel1.CanvasColor = System.Drawing.SystemColors.Control;
            this.groupPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
            this.groupPanel1.Controls.Add(this.cboSubdiario);
            this.groupPanel1.Controls.Add(this.labelX2);
            this.groupPanel1.DisabledBackColor = System.Drawing.Color.Empty;
            this.groupPanel1.Location = new System.Drawing.Point(8, 42);
            this.groupPanel1.Name = "groupPanel1";
            this.groupPanel1.Size = new System.Drawing.Size(349, 30);
            //
            //
            //
            this.groupPanel1.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
            this.groupPanel1.Style.BackColorGradientAngle = 90;
            this.groupPanel1.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
            this.groupPanel1.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel1.Style.BorderBottomWidth = 1;
            this.groupPanel1.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.groupPanel1.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel1.Style.BorderLeftWidth = 1;
            this.groupPanel1.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel1.Style.BorderRightWidth = 1;
            this.groupPanel1.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel1.Style.BorderTopWidth = 1;
            this.groupPanel1.Style.CornerDiameter = 4;
            this.groupPanel1.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
            this.groupPanel1.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
            this.groupPanel1.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.groupPanel1.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
            //
            //
            //
            this.groupPanel1.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            //
            //
            //
            this.groupPanel1.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel1.TabIndex = 40;
            //
            // cboSubdiario
            //
            this.cboSubdiario.DisplayMember = "Text";
            this.cboSubdiario.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.cboSubdiario.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboSubdiario.FormattingEnabled = true;
            this.cboSubdiario.ItemHeight = 14;
            this.cboSubdiario.Items.AddRange(new object[] {
            this.comboItem3,
            this.comboItem4});
            this.cboSubdiario.Location = new System.Drawing.Point(61, 3);
            this.cboSubdiario.Name = "cboSubdiario";
            this.cboSubdiario.Size = new System.Drawing.Size(274, 20);
            this.cboSubdiario.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.cboSubdiario.TabIndex = 48;
            //
            // comboItem3
            //
            this.comboItem3.Text = "01-Venta Interna";
            this.comboItem3.Value = "01";
            //
            // comboItem4
            //
            this.comboItem4.Text = "02-Venta Externa";
            this.comboItem4.Value = "02";
            //
            // labelX2
            //
            this.labelX2.AutoSize = true;
            this.labelX2.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX2.Location = new System.Drawing.Point(5, 5);
            this.labelX2.Name = "labelX2";
            this.labelX2.Size = new System.Drawing.Size(51, 15);
            this.labelX2.TabIndex = 0;
            this.labelX2.Text = "SubDiario";
            //
            // groupPanel2
            //
            this.groupPanel2.CanvasColor = System.Drawing.SystemColors.Control;
            this.groupPanel2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
            this.groupPanel2.Controls.Add(this.labelX4);
            this.groupPanel2.Controls.Add(this.labelX3);
            this.groupPanel2.Controls.Add(this.txtMes);
            this.groupPanel2.Controls.Add(this.txtAsiento);
            this.groupPanel2.DisabledBackColor = System.Drawing.Color.Empty;
            this.groupPanel2.Location = new System.Drawing.Point(363, 42);
            this.groupPanel2.Name = "groupPanel2";
            this.groupPanel2.Size = new System.Drawing.Size(214, 30);
            //
            //
            //
            this.groupPanel2.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
            this.groupPanel2.Style.BackColorGradientAngle = 90;
            this.groupPanel2.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
            this.groupPanel2.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel2.Style.BorderBottomWidth = 1;
            this.groupPanel2.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.groupPanel2.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel2.Style.BorderLeftWidth = 1;
            this.groupPanel2.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel2.Style.BorderRightWidth = 1;
            this.groupPanel2.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel2.Style.BorderTopWidth = 1;
            this.groupPanel2.Style.CornerDiameter = 4;
            this.groupPanel2.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
            this.groupPanel2.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
            this.groupPanel2.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.groupPanel2.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
            //
            //
            //
            this.groupPanel2.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            //
            //
            //
            this.groupPanel2.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel2.TabIndex = 41;
            //
            // labelX4
            //
            this.labelX4.AutoSize = true;
            this.labelX4.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX4.Location = new System.Drawing.Point(79, 5);
            this.labelX4.Name = "labelX4";
            this.labelX4.Size = new System.Drawing.Size(49, 15);
            this.labelX4.TabIndex = 41;
            this.labelX4.Text = "Vouchers";
            //
            // labelX3
            //
            this.labelX3.AutoSize = true;
            this.labelX3.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX3.Location = new System.Drawing.Point(10, 5);
            this.labelX3.Name = "labelX3";
            this.labelX3.Size = new System.Drawing.Size(23, 15);
            this.labelX3.TabIndex = 40;
            this.labelX3.Text = "Mes";
            //
            // groupPanel3
            //
            this.groupPanel3.CanvasColor = System.Drawing.SystemColors.Control;
            this.groupPanel3.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
            this.groupPanel3.Controls.Add(this.chkActivo);
            this.groupPanel3.Controls.Add(this.cboOrigen);
            this.groupPanel3.Controls.Add(this.labelX1);
            this.groupPanel3.Controls.Add(this.lblAnulado);
            this.groupPanel3.DisabledBackColor = System.Drawing.Color.Empty;
            this.groupPanel3.Location = new System.Drawing.Point(583, 42);
            this.groupPanel3.Name = "groupPanel3";
            this.groupPanel3.Size = new System.Drawing.Size(428, 30);
            //
            //
            //
            this.groupPanel3.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
            this.groupPanel3.Style.BackColorGradientAngle = 90;
            this.groupPanel3.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
            this.groupPanel3.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel3.Style.BorderBottomWidth = 1;
            this.groupPanel3.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.groupPanel3.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel3.Style.BorderLeftWidth = 1;
            this.groupPanel3.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel3.Style.BorderRightWidth = 1;
            this.groupPanel3.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel3.Style.BorderTopWidth = 1;
            this.groupPanel3.Style.CornerDiameter = 4;
            this.groupPanel3.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
            this.groupPanel3.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
            this.groupPanel3.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.groupPanel3.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
            //
            //
            //
            this.groupPanel3.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            //
            //
            //
            this.groupPanel3.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel3.TabIndex = 40;
            //
            // chkActivo
            //
            this.chkActivo.AutoSize = true;
            this.chkActivo.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.chkActivo.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.chkActivo.Location = new System.Drawing.Point(210, 5);
            this.chkActivo.Name = "chkActivo";
            this.chkActivo.Size = new System.Drawing.Size(53, 15);
            this.chkActivo.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.chkActivo.TabIndex = 47;
            this.chkActivo.Text = "Activo";
            this.chkActivo.CheckedChanged += new System.EventHandler(this.chkActivo_CheckedChanged);
            //
            // cboOrigen
            //
            this.cboOrigen.DisplayMember = "Text";
            this.cboOrigen.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.cboOrigen.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboOrigen.FormattingEnabled = true;
            this.cboOrigen.ItemHeight = 14;
            this.cboOrigen.Items.AddRange(new object[] {
            this.comboItem1,
            this.comboItem2});
            this.cboOrigen.Location = new System.Drawing.Point(48, 3);
            this.cboOrigen.Name = "cboOrigen";
            this.cboOrigen.Size = new System.Drawing.Size(125, 20);
            this.cboOrigen.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.cboOrigen.TabIndex = 47;
            this.cboOrigen.SelectedIndexChanged += new System.EventHandler(this.cboOrigen_SelectedIndexChanged);
            //
            // comboItem1
            //
            this.comboItem1.Text = "01-Venta Interna";
            this.comboItem1.Value = "01";
            //
            // comboItem2
            //
            this.comboItem2.Text = "02-Venta Externa";
            this.comboItem2.Value = "02";
            //
            // labelX1
            //
            this.labelX1.AutoSize = true;
            this.labelX1.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX1.Location = new System.Drawing.Point(6, 5);
            this.labelX1.Name = "labelX1";
            this.labelX1.Size = new System.Drawing.Size(36, 15);
            this.labelX1.TabIndex = 42;
            this.labelX1.Text = "Origen";
            //
            // groupPanel4
            //
            this.groupPanel4.CanvasColor = System.Drawing.SystemColors.Control;
            this.groupPanel4.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
            this.groupPanel4.Controls.Add(this.labelX35);
            this.groupPanel4.Controls.Add(this.labelX34);
            this.groupPanel4.Controls.Add(this.labelX33);
            this.groupPanel4.Controls.Add(this.labelX32);
            this.groupPanel4.Controls.Add(this.labelX31);
            this.groupPanel4.Controls.Add(this.labelX30);
            this.groupPanel4.Controls.Add(this.txtDctos);
            this.groupPanel4.Controls.Add(this.txtTotal);
            this.groupPanel4.Controls.Add(this.txtVenta);
            this.groupPanel4.Controls.Add(this.txtIgv);
            this.groupPanel4.Controls.Add(this.txtValor);
            this.groupPanel4.Controls.Add(this.txtPigv);
            this.groupPanel4.DisabledBackColor = System.Drawing.Color.Empty;
            this.groupPanel4.Location = new System.Drawing.Point(592, 508);
            this.groupPanel4.Name = "groupPanel4";
            this.groupPanel4.Size = new System.Drawing.Size(419, 41);
            //
            //
            //
            this.groupPanel4.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
            this.groupPanel4.Style.BackColorGradientAngle = 90;
            this.groupPanel4.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
            this.groupPanel4.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel4.Style.BorderBottomWidth = 1;
            this.groupPanel4.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.groupPanel4.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel4.Style.BorderLeftWidth = 1;
            this.groupPanel4.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel4.Style.BorderRightWidth = 1;
            this.groupPanel4.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel4.Style.BorderTopWidth = 1;
            this.groupPanel4.Style.CornerDiameter = 4;
            this.groupPanel4.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
            this.groupPanel4.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
            this.groupPanel4.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.groupPanel4.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
            //
            //
            //
            this.groupPanel4.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            //
            //
            //
            this.groupPanel4.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel4.TabIndex = 42;
            //
            // labelX35
            //
            this.labelX35.AutoSize = true;
            this.labelX35.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX35.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX35.Location = new System.Drawing.Point(349, -1);
            this.labelX35.Name = "labelX35";
            this.labelX35.Size = new System.Drawing.Size(42, 15);
            this.labelX35.TabIndex = 53;
            this.labelX35.Text = "P.Venta";
            //
            // labelX34
            //
            this.labelX34.AutoSize = true;
            this.labelX34.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX34.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX34.Location = new System.Drawing.Point(290, -1);
            this.labelX34.Name = "labelX34";
            this.labelX34.Size = new System.Drawing.Size(21, 15);
            this.labelX34.TabIndex = 52;
            this.labelX34.Text = "IGV";
            //
            // labelX33
            //
            this.labelX33.AutoSize = true;
            this.labelX33.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX33.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX33.Location = new System.Drawing.Point(226, -1);
            this.labelX33.Name = "labelX33";
            this.labelX33.Size = new System.Drawing.Size(34, 15);
            this.labelX33.TabIndex = 51;
            this.labelX33.Text = "% IGV";
            //
            // labelX32
            //
            this.labelX32.AutoSize = true;
            this.labelX32.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX32.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX32.Location = new System.Drawing.Point(165, -1);
            this.labelX32.Name = "labelX32";
            this.labelX32.Size = new System.Drawing.Size(42, 15);
            this.labelX32.TabIndex = 50;
            this.labelX32.Text = "V.Venta";
            //
            // labelX31
            //
            this.labelX31.AutoSize = true;
            this.labelX31.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX31.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX31.Location = new System.Drawing.Point(93, -1);
            this.labelX31.Name = "labelX31";
            this.labelX31.Size = new System.Drawing.Size(34, 15);
            this.labelX31.TabIndex = 49;
            this.labelX31.Text = "Dctos.";
            //
            // labelX30
            //
            this.labelX30.AutoSize = true;
            this.labelX30.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX30.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX30.Location = new System.Drawing.Point(23, -1);
            this.labelX30.Name = "labelX30";
            this.labelX30.Size = new System.Drawing.Size(28, 15);
            this.labelX30.TabIndex = 48;
            this.labelX30.Text = "Valor";
            //
            // gbtnCompras
            //
            this.gbtnCompras.AccessibleDescription = "bar1 (bar1)";
            this.gbtnCompras.AccessibleName = "bar1";
            this.gbtnCompras.AccessibleRole = System.Windows.Forms.AccessibleRole.ToolBar;
            this.gbtnCompras.AntiAlias = true;
            this.gbtnCompras.Dock = System.Windows.Forms.DockStyle.Top;
            this.gbtnCompras.Font = new System.Drawing.Font("Segoe UI", 9F);
            this.gbtnCompras.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            this.btnNew,
            this.btnEdit,
            this.btnSave,
            this.btnRetro,
            this.btnDelete,
            this.btnPrint,
            this.buttonItem8,
            this.btnLog,
            this.buttonItem10,
            this.btnBusqueda,
            this.btnSeekdoc,
            this.btnAddfila,
            this.btnDelfila,
            this.btnActtipocambio,
            this.btnProvfactura,
            this.buttonItem18,
            this.btnInicial,
            this.btnAnterior,
            this.btnSiguiente,
            this.btnUltimo,
            this.buttonItem22,
            this.btnExit});
            this.gbtnCompras.Location = new System.Drawing.Point(0, 0);
            this.gbtnCompras.Name = "gbtnCompras";
            this.gbtnCompras.Size = new System.Drawing.Size(1013, 29);
            this.gbtnCompras.Stretch = true;
            this.gbtnCompras.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.gbtnCompras.TabIndex = 0;
            this.gbtnCompras.TabStop = false;
            this.gbtnCompras.Text = "bar1";
            //
            // btnNew
            //
            this.btnNew.Image = global::BapFormulariosNet.Properties.Resources.go_new3;
            this.btnNew.Name = "btnNew";
            this.btnNew.Text = "Nuevo [F2]";
            this.btnNew.Tooltip = "Nuevo [F2]";
            this.btnNew.Click += new System.EventHandler(this.btnNew_Click);
            //
            // btnEdit
            //
            this.btnEdit.Image = global::BapFormulariosNet.Properties.Resources.go_edit20;
            this.btnEdit.Name = "btnEdit";
            this.btnEdit.Text = "buttonItem2";
            this.btnEdit.Click += new System.EventHandler(this.btnEdit_Click);
            //
            // btnSave
            //
            this.btnSave.Image = global::BapFormulariosNet.Properties.Resources.btn_grabar20;
            this.btnSave.Name = "btnSave";
            this.btnSave.Text = "buttonItem3";
            this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
            //
            // btnRetro
            //
            this.btnRetro.Image = global::BapFormulariosNet.Properties.Resources.btn_cancel;
            this.btnRetro.Name = "btnRetro";
            this.btnRetro.Text = "buttonItem4";
            this.btnRetro.Click += new System.EventHandler(this.btnRetro_Click);
            //
            // btnDelete
            //
            this.btnDelete.Image = global::BapFormulariosNet.Properties.Resources.btn_delete20;
            this.btnDelete.Name = "btnDelete";
            this.btnDelete.Text = "buttonItem5";
            this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
            //
            // btnPrint
            //
            this.btnPrint.Image = global::BapFormulariosNet.Properties.Resources.btn_imprimir20;
            this.btnPrint.Name = "btnPrint";
            this.btnPrint.Text = "buttonItem6";
            this.btnPrint.Click += new System.EventHandler(this.btnPrint_Click);
            //
            // buttonItem8
            //
            this.buttonItem8.Name = "buttonItem8";
            this.buttonItem8.Text = "|";
            //
            // btnLog
            //
            this.btnLog.Image = global::BapFormulariosNet.Properties.Resources.ojo20;
            this.btnLog.Name = "btnLog";
            this.btnLog.Text = "buttonItem9";
            this.btnLog.Click += new System.EventHandler(this.btnLog_Click);
            //
            // buttonItem10
            //
            this.buttonItem10.Name = "buttonItem10";
            this.buttonItem10.Text = "|";
            //
            // btnBusqueda
            //
            this.btnBusqueda.Image = global::BapFormulariosNet.Properties.Resources.btn_listado20;
            this.btnBusqueda.Name = "btnBusqueda";
            this.btnBusqueda.Text = "buttonItem11";
            this.btnBusqueda.Click += new System.EventHandler(this.btnBusqueda_Click);
            //
            // btnSeekdoc
            //
            this.btnSeekdoc.Image = global::BapFormulariosNet.Properties.Resources.btn_search20;
            this.btnSeekdoc.Name = "btnSeekdoc";
            this.btnSeekdoc.Text = "buttonItem11";
            this.btnSeekdoc.Click += new System.EventHandler(this.btnSeekdoc_Click);
            //
            // btnAddfila
            //
            this.btnAddfila.Image = global::BapFormulariosNet.Properties.Resources.go_add;
            this.btnAddfila.Name = "btnAddfila";
            this.btnAddfila.Text = "buttonItem13";
            this.btnAddfila.Click += new System.EventHandler(this.btnAddfila_Click);
            //
            // btnDelfila
            //
            this.btnDelfila.Image = global::BapFormulariosNet.Properties.Resources.go_remove1;
            this.btnDelfila.Name = "btnDelfila";
            this.btnDelfila.Text = "buttonItem14";
            this.btnDelfila.Click += new System.EventHandler(this.btnDelfila_Click);
            //
            // btnActtipocambio
            //
            this.btnActtipocambio.Image = global::BapFormulariosNet.Properties.Resources.dolares20;
            this.btnActtipocambio.Name = "btnActtipocambio";
            this.btnActtipocambio.Text = "buttonItem15";
            this.btnActtipocambio.Click += new System.EventHandler(this.btnActtipocambio_Click);
            //
            // btnProvfactura
            //
            this.btnProvfactura.Image = global::BapFormulariosNet.Properties.Resources.notepad20x20;
            this.btnProvfactura.Name = "btnProvfactura";
            this.btnProvfactura.Text = "buttonItem16";
            this.btnProvfactura.Click += new System.EventHandler(this.btnProvfactura_Click);
            //
            // buttonItem18
            //
            this.buttonItem18.Name = "buttonItem18";
            this.buttonItem18.Text = "|";
            //
            // btnInicio
            //
            this.btnInicial.Image = global::BapFormulariosNet.Properties.Resources.go_inicio20;
            this.btnInicial.Name = "btnInicio";
            this.btnInicial.Text = "buttonItem23";
            this.btnInicial.Click += new System.EventHandler(this.btnInicial_Click);
            //
            // btnAnterior
            //
            this.btnAnterior.Image = global::BapFormulariosNet.Properties.Resources.go_anterior20;
            this.btnAnterior.Name = "btnAnterior";
            this.btnAnterior.Text = "Anterior";
            this.btnAnterior.Tooltip = "Anterior";
            this.btnAnterior.Click += new System.EventHandler(this.btnAnterior_Click);
            //
            // btnSiguiente
            //
            this.btnSiguiente.Image = global::BapFormulariosNet.Properties.Resources.go_siguiente20;
            this.btnSiguiente.Name = "btnSiguiente";
            this.btnSiguiente.Text = "buttonItem25";
            this.btnSiguiente.Click += new System.EventHandler(this.btnSiguiente_Click);
            //
            // btnUltimo
            //
            this.btnUltimo.Image = global::BapFormulariosNet.Properties.Resources.go_final20;
            this.btnUltimo.Name = "btnUltimo";
            this.btnUltimo.Text = "buttonItem26";
            this.btnUltimo.Click += new System.EventHandler(this.btnUltimo_Click);
            //
            // buttonItem22
            //
            this.buttonItem22.Name = "buttonItem22";
            this.buttonItem22.Text = "|";
            //
            // btnExit
            //
            this.btnExit.Image = global::BapFormulariosNet.Properties.Resources.Exit16x16;
            this.btnExit.Name = "btnExit";
            this.btnExit.Text = "buttonItem27";
            this.btnExit.Click += new System.EventHandler(this.btnExit_Click);

            //
            // lblUsuar
            //
            this.lblUsuar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.lblUsuar.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblUsuar.Location = new System.Drawing.Point(716, 0);
            this.lblUsuar.Name = "lblUsuar";
            this.lblUsuar.Size = new System.Drawing.Size(251, 23);
            this.lblUsuar.TabIndex = 0;
            this.lblUsuar.Text = "Usuario";
            this.lblUsuar.TextAlignment = System.Drawing.StringAlignment.Center;
            this.lblUsuar.Visible = false;
            //
            // controlContainerItem1
            //
            this.controlContainerItem1.AllowItemResize = false;
            this.controlContainerItem1.Control = this.lblUsuar;
            this.controlContainerItem1.MenuVisibility = DevComponents.DotNetBar.eMenuVisibility.VisibleAlways;
            this.controlContainerItem1.Name = "controlContainerItem1";
            //
            // Frm_RegistroVentas
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1013, 555);
            this.Controls.Add(this.gbtnCompras);
            this.Controls.Add(this.groupPanel4);
            this.Controls.Add(this.groupPanel6);
            this.Controls.Add(this.groupPanel3);
            this.Controls.Add(this.groupPanel2);
            this.Controls.Add(this.groupPanel1);
            this.Controls.Add(this.chkDuplicar);
            this.Controls.Add(this.txtDescripcampo);
            this.Controls.Add(this.GridExaminar);
            this.Controls.Add(this.lblMoneda);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.KeyPreview = true;
            this.MaximizeBox = false;
            this.Name = "Frm_RegistroVentas";
            this.Text = "Registro de Ventas";
            this.Activated += new System.EventHandler(this.Frm_RegistroVentas_Activated);
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Frm_RegistroVentas_FormClosing);
            this.Load += new System.EventHandler(this.Frm_RegistroVentas_Load);
            this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Frm_RegistroVentas_KeyDown);
            this.gpoReferencia.ResumeLayout(false);
            this.gpoReferencia.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.fechaRefer)).EndInit();
            this.groupPanel6.ResumeLayout(false);
            this.groupPanel6.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.fecVenc)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.fRegistro)).EndInit();
            this.grpdua.ResumeLayout(false);
            this.grpdua.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.adufRegularizacion)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.adufEmbarque)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.GridExaminar)).EndInit();
            this.groupPanel1.ResumeLayout(false);
            this.groupPanel1.PerformLayout();
            this.groupPanel2.ResumeLayout(false);
            this.groupPanel2.PerformLayout();
            this.groupPanel3.ResumeLayout(false);
            this.groupPanel3.PerformLayout();
            this.groupPanel4.ResumeLayout(false);
            this.groupPanel4.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gbtnCompras)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();
        }
Пример #26
0
 /// <summary>
 /// 此為設計工具支援所需的方法 - 請勿使用程式碼編輯器
 /// 修改這個方法的內容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle18 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle13 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle14 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle15 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle16 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle17 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle19 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle20 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle21 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle22 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle23 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle24 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle25 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle26 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle27 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle28 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle29 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle30 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle31 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle32 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle33 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle34 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle35 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle36 = new System.Windows.Forms.DataGridViewCellStyle();
     this.ribbonBar1 = new DevComponents.DotNetBar.RibbonBar();
     this.ribbonControl1 = new DevComponents.DotNetBar.RibbonControl();
     this.ribbonPanel1 = new DevComponents.DotNetBar.RibbonPanel();
     this.ribbonBar2 = new DevComponents.DotNetBar.RibbonBar();
     this.btnTeacherAutoSchedule = new DevComponents.DotNetBar.ButtonItem();
     this.btnTeacherLock = new DevComponents.DotNetBar.ButtonItem();
     this.btnTeacherUnlock = new DevComponents.DotNetBar.ButtonItem();
     this.btnTeacherFree = new DevComponents.DotNetBar.ButtonItem();
     this.btnTeacherProperty = new DevComponents.DotNetBar.ButtonItem();
     this.btnTeacherPrint = new DevComponents.DotNetBar.ButtonItem();
     this.btnTeacherBusy = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonPanel2 = new DevComponents.DotNetBar.RibbonPanel();
     this.ribbonBar3 = new DevComponents.DotNetBar.RibbonBar();
     this.btnClassAutoSchedule = new DevComponents.DotNetBar.ButtonItem();
     this.btnClassLock = new DevComponents.DotNetBar.ButtonItem();
     this.btnClassUnLock = new DevComponents.DotNetBar.ButtonItem();
     this.btnClassFree = new DevComponents.DotNetBar.ButtonItem();
     this.btnClassProperty = new DevComponents.DotNetBar.ButtonItem();
     this.btnClassPrint = new DevComponents.DotNetBar.ButtonItem();
     this.btnClassBusy = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonPanel3 = new DevComponents.DotNetBar.RibbonPanel();
     this.ribbonBar4 = new DevComponents.DotNetBar.RibbonBar();
     this.btnClassroomAutoSchedule = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem2 = new DevComponents.DotNetBar.ButtonItem();
     this.btnClassroomLock = new DevComponents.DotNetBar.ButtonItem();
     this.btnClassroomUnLock = new DevComponents.DotNetBar.ButtonItem();
     this.btnClassroomFree = new DevComponents.DotNetBar.ButtonItem();
     this.btnClassroomProperty = new DevComponents.DotNetBar.ButtonItem();
     this.btnClassroomPrint = new DevComponents.DotNetBar.ButtonItem();
     this.btnClassroomBusy = new DevComponents.DotNetBar.ButtonItem();
     this.office2007StartButton1 = new DevComponents.DotNetBar.Office2007StartButton();
     this.itemContainer1 = new DevComponents.DotNetBar.ItemContainer();
     this.itemContainer2 = new DevComponents.DotNetBar.ItemContainer();
     this.itemContainer3 = new DevComponents.DotNetBar.ItemContainer();
     this.btnOpen = new DevComponents.DotNetBar.ButtonItem();
     this.btnSave = new DevComponents.DotNetBar.ButtonItem();
     this.btnSaveAs = new DevComponents.DotNetBar.ButtonItem();
     this.btnDownload = new DevComponents.DotNetBar.ButtonItem();
     this.btnUpload = new DevComponents.DotNetBar.ButtonItem();
     this.btnClose = new DevComponents.DotNetBar.ButtonItem();
     this.btnExit = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonTabTeacher = new DevComponents.DotNetBar.RibbonTabItem();
     this.ribbonTabClass = new DevComponents.DotNetBar.RibbonTabItem();
     this.ribbonTabClassroom = new DevComponents.DotNetBar.RibbonTabItem();
     this.btnUndo = new DevComponents.DotNetBar.ButtonItem();
     this.btnRedo = new DevComponents.DotNetBar.ButtonItem();
     this.qatCustomizeItem1 = new DevComponents.DotNetBar.QatCustomizeItem();
     this.styleManager1 = new DevComponents.DotNetBar.StyleManager(this.components);
     this.bar1 = new DevComponents.DotNetBar.Bar();
     this.lblMemoryUsage = new DevComponents.DotNetBar.LabelX();
     this.progressBarX1 = new DevComponents.DotNetBar.Controls.ProgressBarX();
     this.panel1 = new System.Windows.Forms.Panel();
     this.panel2 = new System.Windows.Forms.Panel();
     this.panel4 = new System.Windows.Forms.Panel();
     this.tabContent = new DevComponents.DotNetBar.SuperTabControl();
     this.superTabControlPanel1 = new DevComponents.DotNetBar.SuperTabControlPanel();
     this.pnlWhoList = new System.Windows.Forms.Panel();
     this.grdTeacherEvent = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.colLock = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colSolutionCount = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colWeekDay = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colPeriodNo = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colCourseName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colLength = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colWhoName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colWhomName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colWhereName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colWhatName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colWhatAliasName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colCourseGroup = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colWeekDayCondition = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colPeriodCondition = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colAllowLongBreak = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colAllowDuplicate = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colLimitNextDay = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colWeekFlag = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colPriority = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colTimeTable = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colColorIndex = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colEventID = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.panel5 = new System.Windows.Forms.Panel();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.lblTeacher = new DevComponents.DotNetBar.LabelX();
     this.btnTeacherEventExpand = new DevComponents.DotNetBar.ButtonX();
     this.splTeacher = new DevComponents.DotNetBar.ExpandableSplitter();
     this.pnlWhoLPView = new System.Windows.Forms.Panel();
     this.tabTeacherLPView = new DevComponents.DotNetBar.TabControl();
     this.tabControlPanel1 = new DevComponents.DotNetBar.TabControlPanel();
     this.tabItem2 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabTeacher = new DevComponents.DotNetBar.SuperTabItem();
     this.superTabControlPanel2 = new DevComponents.DotNetBar.SuperTabControlPanel();
     this.splClass = new DevComponents.DotNetBar.ExpandableSplitter();
     this.pnlWhomLPView = new System.Windows.Forms.Panel();
     this.tabClassLPView = new DevComponents.DotNetBar.TabControl();
     this.tabControlPanel2 = new DevComponents.DotNetBar.TabControlPanel();
     this.tabItem3 = new DevComponents.DotNetBar.TabItem(this.components);
     this.pnlWhomList = new System.Windows.Forms.Panel();
     this.panel10 = new System.Windows.Forms.Panel();
     this.grdClassEvent = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.dataGridViewTextBoxColumn69 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn70 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn71 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn72 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn78 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn80 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn73 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn74 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn75 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn76 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn77 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn79 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn81 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn82 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn83 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn84 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn85 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn86 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn87 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn88 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn89 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn90 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.panel3 = new System.Windows.Forms.Panel();
     this.labelX6 = new DevComponents.DotNetBar.LabelX();
     this.lblClass = new DevComponents.DotNetBar.LabelX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.btnClassEventExpand = new DevComponents.DotNetBar.ButtonX();
     this.tabClass = new DevComponents.DotNetBar.SuperTabItem();
     this.superTabControlPanel3 = new DevComponents.DotNetBar.SuperTabControlPanel();
     this.pnlWhereList = new System.Windows.Forms.Panel();
     this.panel9 = new System.Windows.Forms.Panel();
     this.grdClassroomEvent = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.dataGridViewTextBoxColumn91 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn92 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn93 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn94 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn100 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn102 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn95 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn96 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn97 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn98 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn99 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn101 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn103 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn104 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn105 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn106 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn107 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn108 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn109 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn110 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn111 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn112 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.panel6 = new System.Windows.Forms.Panel();
     this.labelX7 = new DevComponents.DotNetBar.LabelX();
     this.lblClassroom = new DevComponents.DotNetBar.LabelX();
     this.labelX4 = new DevComponents.DotNetBar.LabelX();
     this.labelX5 = new DevComponents.DotNetBar.LabelX();
     this.btnClassroomEventExpand = new DevComponents.DotNetBar.ButtonX();
     this.splClassroom = new DevComponents.DotNetBar.ExpandableSplitter();
     this.pnlWhereLPView = new System.Windows.Forms.Panel();
     this.tabClassroomLPView = new DevComponents.DotNetBar.TabControl();
     this.tabControlPanel3 = new DevComponents.DotNetBar.TabControlPanel();
     this.tabItem4 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabClassroom = new DevComponents.DotNetBar.SuperTabItem();
     this.expandableSplitter1 = new DevComponents.DotNetBar.ExpandableSplitter();
     this.LeftNavigationPanel = new DevComponents.DotNetBar.NavigationPane();
     this.pnlClassroom = new DevComponents.DotNetBar.NavigationPanePanel();
     this.btnClassroom = new DevComponents.DotNetBar.ButtonItem();
     this.pnlClass = new DevComponents.DotNetBar.NavigationPanePanel();
     this.btnClass = new DevComponents.DotNetBar.ButtonItem();
     this.pnlTeacher = new DevComponents.DotNetBar.NavigationPanePanel();
     this.btnTeacher = new DevComponents.DotNetBar.ButtonItem();
     this.tabItem1 = new DevComponents.DotNetBar.TabItem(this.components);
     this.buttonItem1 = new DevComponents.DotNetBar.ButtonItem();
     this.panel7 = new System.Windows.Forms.Panel();
     this.buttonX2 = new DevComponents.DotNetBar.ButtonX();
     this.buttonX1 = new DevComponents.DotNetBar.ButtonX();
     this.panel8 = new System.Windows.Forms.Panel();
     this.contextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn8 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn9 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn12 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn13 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn14 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn15 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn16 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn17 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn18 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn19 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn20 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn21 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn22 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn23 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn24 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn25 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn26 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn27 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn28 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn29 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn30 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn31 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn32 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn33 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn34 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn35 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn36 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn37 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn38 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn39 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn40 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn41 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn42 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn43 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn44 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn45 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn46 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn47 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn48 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn49 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn50 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn51 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn52 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn53 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn54 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn55 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn56 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn57 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn58 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn59 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn60 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn61 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn62 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn63 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn64 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn65 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn66 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn67 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn68 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ribbonControl1.SuspendLayout();
     this.ribbonPanel1.SuspendLayout();
     this.ribbonPanel2.SuspendLayout();
     this.ribbonPanel3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).BeginInit();
     this.bar1.SuspendLayout();
     this.panel1.SuspendLayout();
     this.panel2.SuspendLayout();
     this.panel4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabContent)).BeginInit();
     this.tabContent.SuspendLayout();
     this.superTabControlPanel1.SuspendLayout();
     this.pnlWhoList.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdTeacherEvent)).BeginInit();
     this.panel5.SuspendLayout();
     this.pnlWhoLPView.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabTeacherLPView)).BeginInit();
     this.tabTeacherLPView.SuspendLayout();
     this.superTabControlPanel2.SuspendLayout();
     this.pnlWhomLPView.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabClassLPView)).BeginInit();
     this.tabClassLPView.SuspendLayout();
     this.pnlWhomList.SuspendLayout();
     this.panel10.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdClassEvent)).BeginInit();
     this.panel3.SuspendLayout();
     this.superTabControlPanel3.SuspendLayout();
     this.pnlWhereList.SuspendLayout();
     this.panel9.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdClassroomEvent)).BeginInit();
     this.panel6.SuspendLayout();
     this.pnlWhereLPView.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabClassroomLPView)).BeginInit();
     this.tabClassroomLPView.SuspendLayout();
     this.LeftNavigationPanel.SuspendLayout();
     this.panel7.SuspendLayout();
     this.SuspendLayout();
     //
     // ribbonBar1
     //
     this.ribbonBar1.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar1.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar1.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar1.BackgroundStyle.Class = "";
     this.ribbonBar1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar1.ContainerControlProcessDialogKey = true;
     this.ribbonBar1.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
     this.ribbonBar1.Location = new System.Drawing.Point(190, 77);
     this.ribbonBar1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.ribbonBar1.Name = "ribbonBar1";
     this.ribbonBar1.Size = new System.Drawing.Size(87, 31);
     this.ribbonBar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar1.TabIndex = 0;
     this.ribbonBar1.Text = "ribbonBar1";
     //
     //
     //
     this.ribbonBar1.TitleStyle.Class = "";
     this.ribbonBar1.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar1.TitleStyleMouseOver.Class = "";
     this.ribbonBar1.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // ribbonControl1
     //
     //
     //
     //
     this.ribbonControl1.BackgroundStyle.Class = "";
     this.ribbonControl1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonControl1.CaptionVisible = true;
     this.ribbonControl1.Controls.Add(this.ribbonPanel1);
     this.ribbonControl1.Controls.Add(this.ribbonPanel3);
     this.ribbonControl1.Controls.Add(this.ribbonPanel2);
     this.ribbonControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.ribbonControl1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.office2007StartButton1,
     this.ribbonTabTeacher,
     this.ribbonTabClass,
     this.ribbonTabClassroom});
     this.ribbonControl1.KeyTipsFont = new System.Drawing.Font("Tahoma", 7F);
     this.ribbonControl1.Location = new System.Drawing.Point(5, 1);
     this.ribbonControl1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.ribbonControl1.Name = "ribbonControl1";
     this.ribbonControl1.Padding = new System.Windows.Forms.Padding(0, 0, 0, 3);
     this.ribbonControl1.QuickToolbarItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnUndo,
     this.btnRedo,
     this.qatCustomizeItem1});
     this.ribbonControl1.Size = new System.Drawing.Size(948, 140);
     this.ribbonControl1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonControl1.SystemText.MaximizeRibbonText = "&Maximize the Ribbon";
     this.ribbonControl1.SystemText.MinimizeRibbonText = "Mi&nimize the Ribbon";
     this.ribbonControl1.SystemText.QatAddItemText = "&Add to Quick Access Toolbar";
     this.ribbonControl1.SystemText.QatCustomizeMenuLabel = "<b>Customize Quick Access Toolbar</b>";
     this.ribbonControl1.SystemText.QatCustomizeText = "&Customize Quick Access Toolbar...";
     this.ribbonControl1.SystemText.QatDialogAddButton = "&Add >>";
     this.ribbonControl1.SystemText.QatDialogCancelButton = "Cancel";
     this.ribbonControl1.SystemText.QatDialogCaption = "Customize Quick Access Toolbar";
     this.ribbonControl1.SystemText.QatDialogCategoriesLabel = "&Choose commands from:";
     this.ribbonControl1.SystemText.QatDialogOkButton = "OK";
     this.ribbonControl1.SystemText.QatDialogPlacementCheckbox = "&Place Quick Access Toolbar below the Ribbon";
     this.ribbonControl1.SystemText.QatDialogRemoveButton = "&Remove";
     this.ribbonControl1.SystemText.QatPlaceAboveRibbonText = "&Place Quick Access Toolbar above the Ribbon";
     this.ribbonControl1.SystemText.QatPlaceBelowRibbonText = "&Place Quick Access Toolbar below the Ribbon";
     this.ribbonControl1.SystemText.QatRemoveItemText = "&Remove from Quick Access Toolbar";
     this.ribbonControl1.TabGroupHeight = 14;
     this.ribbonControl1.TabIndex = 1;
     this.ribbonControl1.Text = "ribbonControl1";
     this.ribbonControl1.TitleText = "ischedule";
     //
     // ribbonPanel1
     //
     this.ribbonPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonPanel1.Controls.Add(this.ribbonBar2);
     this.ribbonPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ribbonPanel1.Location = new System.Drawing.Point(0, 55);
     this.ribbonPanel1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.ribbonPanel1.Name = "ribbonPanel1";
     this.ribbonPanel1.Padding = new System.Windows.Forms.Padding(3, 0, 3, 4);
     this.ribbonPanel1.Size = new System.Drawing.Size(948, 82);
     //
     //
     //
     this.ribbonPanel1.Style.Class = "";
     this.ribbonPanel1.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonPanel1.StyleMouseDown.Class = "";
     this.ribbonPanel1.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonPanel1.StyleMouseOver.Class = "";
     this.ribbonPanel1.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonPanel1.TabIndex = 1;
     //
     // ribbonBar2
     //
     this.ribbonBar2.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar2.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar2.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar2.BackgroundStyle.Class = "";
     this.ribbonBar2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar2.ContainerControlProcessDialogKey = true;
     this.ribbonBar2.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar2.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnTeacherAutoSchedule,
     this.btnTeacherLock,
     this.btnTeacherUnlock,
     this.btnTeacherFree,
     this.btnTeacherProperty,
     this.btnTeacherPrint,
     this.btnTeacherBusy});
     this.ribbonBar2.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
     this.ribbonBar2.Location = new System.Drawing.Point(3, 0);
     this.ribbonBar2.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.ribbonBar2.Name = "ribbonBar2";
     this.ribbonBar2.Size = new System.Drawing.Size(436, 78);
     this.ribbonBar2.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar2.TabIndex = 0;
     //
     //
     //
     this.ribbonBar2.TitleStyle.Class = "";
     this.ribbonBar2.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar2.TitleStyleMouseOver.Class = "";
     this.ribbonBar2.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // btnTeacherAutoSchedule
     //
     this.btnTeacherAutoSchedule.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnTeacherAutoSchedule.Enabled = false;
     this.btnTeacherAutoSchedule.Image = global::ischedule.Properties.Resources.自動排課;
     this.btnTeacherAutoSchedule.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnTeacherAutoSchedule.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnTeacherAutoSchedule.ImageSmall = global::ischedule.Properties.Resources.自動排課;
     this.btnTeacherAutoSchedule.Name = "btnTeacherAutoSchedule";
     this.btnTeacherAutoSchedule.SubItemsExpandWidth = 14;
     this.btnTeacherAutoSchedule.Text = "自動排課";
     this.btnTeacherAutoSchedule.Tooltip = "提醒您自動排課會重新安排未鎖定的已排分課!";
     //
     // btnTeacherLock
     //
     this.btnTeacherLock.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnTeacherLock.Enabled = false;
     this.btnTeacherLock.Image = global::ischedule.Properties.Resources.鎖定;
     this.btnTeacherLock.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnTeacherLock.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnTeacherLock.Name = "btnTeacherLock";
     this.btnTeacherLock.SubItemsExpandWidth = 14;
     this.btnTeacherLock.Text = "鎖定";
     //
     // btnTeacherUnlock
     //
     this.btnTeacherUnlock.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnTeacherUnlock.Enabled = false;
     this.btnTeacherUnlock.Image = global::ischedule.Properties.Resources.解除鎖定;
     this.btnTeacherUnlock.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnTeacherUnlock.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnTeacherUnlock.Name = "btnTeacherUnlock";
     this.btnTeacherUnlock.SubItemsExpandWidth = 14;
     this.btnTeacherUnlock.Text = "解除鎖定";
     //
     // btnTeacherFree
     //
     this.btnTeacherFree.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnTeacherFree.Enabled = false;
     this.btnTeacherFree.Image = global::ischedule.Properties.Resources.回復至未排課72;
     this.btnTeacherFree.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnTeacherFree.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnTeacherFree.Name = "btnTeacherFree";
     this.btnTeacherFree.SubItemsExpandWidth = 14;
     this.btnTeacherFree.Text = "回復至未排課";
     //
     // btnTeacherProperty
     //
     this.btnTeacherProperty.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnTeacherProperty.Enabled = false;
     this.btnTeacherProperty.Image = global::ischedule.Properties.Resources.查詢分課屬性72;
     this.btnTeacherProperty.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnTeacherProperty.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnTeacherProperty.Name = "btnTeacherProperty";
     this.btnTeacherProperty.SubItemsExpandWidth = 14;
     this.btnTeacherProperty.Text = "修改屬性";
     //
     // btnTeacherPrint
     //
     this.btnTeacherPrint.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnTeacherPrint.Image = global::ischedule.Properties.Resources.列印;
     this.btnTeacherPrint.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnTeacherPrint.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnTeacherPrint.Name = "btnTeacherPrint";
     this.btnTeacherPrint.SubItemsExpandWidth = 14;
     this.btnTeacherPrint.Text = "列印";
     //
     // btnTeacherBusy
     //
     this.btnTeacherBusy.Enabled = false;
     this.btnTeacherBusy.Image = global::ischedule.Properties.Resources.biology_remove_128;
     this.btnTeacherBusy.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnTeacherBusy.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnTeacherBusy.Name = "btnTeacherBusy";
     this.btnTeacherBusy.SubItemsExpandWidth = 14;
     this.btnTeacherBusy.Text = "不排課時段";
     this.btnTeacherBusy.Click += new System.EventHandler(this.btnTeacherBusy_Click);
     //
     // ribbonPanel2
     //
     this.ribbonPanel2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonPanel2.Controls.Add(this.ribbonBar3);
     this.ribbonPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ribbonPanel2.Location = new System.Drawing.Point(0, 55);
     this.ribbonPanel2.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.ribbonPanel2.Name = "ribbonPanel2";
     this.ribbonPanel2.Padding = new System.Windows.Forms.Padding(3, 0, 3, 4);
     this.ribbonPanel2.Size = new System.Drawing.Size(948, 82);
     //
     //
     //
     this.ribbonPanel2.Style.Class = "";
     this.ribbonPanel2.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonPanel2.StyleMouseDown.Class = "";
     this.ribbonPanel2.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonPanel2.StyleMouseOver.Class = "";
     this.ribbonPanel2.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonPanel2.TabIndex = 2;
     this.ribbonPanel2.Visible = false;
     //
     // ribbonBar3
     //
     this.ribbonBar3.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar3.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar3.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar3.BackgroundStyle.Class = "";
     this.ribbonBar3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar3.ContainerControlProcessDialogKey = true;
     this.ribbonBar3.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar3.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnClassAutoSchedule,
     this.btnClassLock,
     this.btnClassUnLock,
     this.btnClassFree,
     this.btnClassProperty,
     this.btnClassPrint,
     this.btnClassBusy});
     this.ribbonBar3.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
     this.ribbonBar3.Location = new System.Drawing.Point(3, 0);
     this.ribbonBar3.Name = "ribbonBar3";
     this.ribbonBar3.Size = new System.Drawing.Size(436, 78);
     this.ribbonBar3.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar3.TabIndex = 0;
     //
     //
     //
     this.ribbonBar3.TitleStyle.Class = "";
     this.ribbonBar3.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar3.TitleStyleMouseOver.Class = "";
     this.ribbonBar3.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // btnClassAutoSchedule
     //
     this.btnClassAutoSchedule.Enabled = false;
     this.btnClassAutoSchedule.Image = global::ischedule.Properties.Resources.自動排課;
     this.btnClassAutoSchedule.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnClassAutoSchedule.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnClassAutoSchedule.Name = "btnClassAutoSchedule";
     this.btnClassAutoSchedule.SubItemsExpandWidth = 14;
     this.btnClassAutoSchedule.Text = "自動排課";
     //
     // btnClassLock
     //
     this.btnClassLock.Enabled = false;
     this.btnClassLock.Image = global::ischedule.Properties.Resources.鎖定;
     this.btnClassLock.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnClassLock.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnClassLock.Name = "btnClassLock";
     this.btnClassLock.SubItemsExpandWidth = 14;
     this.btnClassLock.Text = "鎖定";
     //
     // btnClassUnLock
     //
     this.btnClassUnLock.Enabled = false;
     this.btnClassUnLock.Image = global::ischedule.Properties.Resources.解除鎖定;
     this.btnClassUnLock.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnClassUnLock.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnClassUnLock.Name = "btnClassUnLock";
     this.btnClassUnLock.SubItemsExpandWidth = 14;
     this.btnClassUnLock.Text = "解除鎖定";
     //
     // btnClassFree
     //
     this.btnClassFree.Enabled = false;
     this.btnClassFree.Image = global::ischedule.Properties.Resources.回復至未排課72;
     this.btnClassFree.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnClassFree.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnClassFree.Name = "btnClassFree";
     this.btnClassFree.SubItemsExpandWidth = 14;
     this.btnClassFree.Text = "回復至未排課";
     //
     // btnClassProperty
     //
     this.btnClassProperty.Enabled = false;
     this.btnClassProperty.Image = global::ischedule.Properties.Resources.查詢分課屬性72;
     this.btnClassProperty.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnClassProperty.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnClassProperty.Name = "btnClassProperty";
     this.btnClassProperty.SubItemsExpandWidth = 14;
     this.btnClassProperty.Text = "修改屬性";
     //
     // btnClassPrint
     //
     this.btnClassPrint.Image = global::ischedule.Properties.Resources.列印;
     this.btnClassPrint.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnClassPrint.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnClassPrint.Name = "btnClassPrint";
     this.btnClassPrint.SubItemsExpandWidth = 14;
     this.btnClassPrint.Text = "列印";
     //
     // btnClassBusy
     //
     this.btnClassBusy.Enabled = false;
     this.btnClassBusy.Image = global::ischedule.Properties.Resources.biology_remove_128;
     this.btnClassBusy.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnClassBusy.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnClassBusy.Name = "btnClassBusy";
     this.btnClassBusy.SubItemsExpandWidth = 14;
     this.btnClassBusy.Text = "不排課時段";
     this.btnClassBusy.Click += new System.EventHandler(this.btnClassBusy_Click);
     //
     // ribbonPanel3
     //
     this.ribbonPanel3.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonPanel3.Controls.Add(this.ribbonBar4);
     this.ribbonPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ribbonPanel3.Location = new System.Drawing.Point(0, 55);
     this.ribbonPanel3.Name = "ribbonPanel3";
     this.ribbonPanel3.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
     this.ribbonPanel3.Size = new System.Drawing.Size(948, 82);
     //
     //
     //
     this.ribbonPanel3.Style.Class = "";
     this.ribbonPanel3.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonPanel3.StyleMouseDown.Class = "";
     this.ribbonPanel3.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonPanel3.StyleMouseOver.Class = "";
     this.ribbonPanel3.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonPanel3.TabIndex = 3;
     this.ribbonPanel3.Visible = false;
     //
     // ribbonBar4
     //
     this.ribbonBar4.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar4.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar4.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar4.BackgroundStyle.Class = "";
     this.ribbonBar4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar4.ContainerControlProcessDialogKey = true;
     this.ribbonBar4.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar4.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnClassroomAutoSchedule,
     this.btnClassroomLock,
     this.btnClassroomUnLock,
     this.btnClassroomFree,
     this.btnClassroomProperty,
     this.btnClassroomPrint,
     this.btnClassroomBusy});
     this.ribbonBar4.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
     this.ribbonBar4.Location = new System.Drawing.Point(3, 0);
     this.ribbonBar4.Name = "ribbonBar4";
     this.ribbonBar4.Size = new System.Drawing.Size(436, 79);
     this.ribbonBar4.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar4.TabIndex = 0;
     //
     //
     //
     this.ribbonBar4.TitleStyle.Class = "";
     this.ribbonBar4.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar4.TitleStyleMouseOver.Class = "";
     this.ribbonBar4.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // btnClassroomAutoSchedule
     //
     this.btnClassroomAutoSchedule.Enabled = false;
     this.btnClassroomAutoSchedule.Image = global::ischedule.Properties.Resources.自動排課;
     this.btnClassroomAutoSchedule.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnClassroomAutoSchedule.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnClassroomAutoSchedule.Name = "btnClassroomAutoSchedule";
     this.btnClassroomAutoSchedule.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem2});
     this.btnClassroomAutoSchedule.SubItemsExpandWidth = 14;
     this.btnClassroomAutoSchedule.Text = "自動排課";
     //
     // buttonItem2
     //
     this.buttonItem2.Name = "buttonItem2";
     this.buttonItem2.Text = "buttonItem2";
     //
     // btnClassroomLock
     //
     this.btnClassroomLock.Enabled = false;
     this.btnClassroomLock.Image = global::ischedule.Properties.Resources.鎖定;
     this.btnClassroomLock.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnClassroomLock.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnClassroomLock.Name = "btnClassroomLock";
     this.btnClassroomLock.SubItemsExpandWidth = 14;
     this.btnClassroomLock.Text = "鎖定";
     //
     // btnClassroomUnLock
     //
     this.btnClassroomUnLock.Enabled = false;
     this.btnClassroomUnLock.Image = global::ischedule.Properties.Resources.解除鎖定;
     this.btnClassroomUnLock.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnClassroomUnLock.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnClassroomUnLock.Name = "btnClassroomUnLock";
     this.btnClassroomUnLock.SubItemsExpandWidth = 14;
     this.btnClassroomUnLock.Text = "解除鎖定";
     //
     // btnClassroomFree
     //
     this.btnClassroomFree.Enabled = false;
     this.btnClassroomFree.Image = global::ischedule.Properties.Resources.回復至未排課72;
     this.btnClassroomFree.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnClassroomFree.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnClassroomFree.Name = "btnClassroomFree";
     this.btnClassroomFree.SubItemsExpandWidth = 14;
     this.btnClassroomFree.Text = "回復至未排課";
     //
     // btnClassroomProperty
     //
     this.btnClassroomProperty.Enabled = false;
     this.btnClassroomProperty.Image = global::ischedule.Properties.Resources.查詢分課屬性72;
     this.btnClassroomProperty.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnClassroomProperty.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnClassroomProperty.Name = "btnClassroomProperty";
     this.btnClassroomProperty.SubItemsExpandWidth = 14;
     this.btnClassroomProperty.Text = "修改屬性";
     //
     // btnClassroomPrint
     //
     this.btnClassroomPrint.Image = global::ischedule.Properties.Resources.列印;
     this.btnClassroomPrint.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnClassroomPrint.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnClassroomPrint.Name = "btnClassroomPrint";
     this.btnClassroomPrint.SubItemsExpandWidth = 14;
     this.btnClassroomPrint.Text = "列印";
     //
     // btnClassroomBusy
     //
     this.btnClassroomBusy.Enabled = false;
     this.btnClassroomBusy.Image = global::ischedule.Properties.Resources.biology_remove_128;
     this.btnClassroomBusy.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnClassroomBusy.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnClassroomBusy.Name = "btnClassroomBusy";
     this.btnClassroomBusy.SubItemsExpandWidth = 14;
     this.btnClassroomBusy.Text = "不排課時段";
     this.btnClassroomBusy.Click += new System.EventHandler(this.btnClassroomBusy_Click);
     //
     // office2007StartButton1
     //
     this.office2007StartButton1.AutoExpandOnClick = true;
     this.office2007StartButton1.CanCustomize = false;
     this.office2007StartButton1.HotTrackingStyle = DevComponents.DotNetBar.eHotTrackingStyle.Image;
     this.office2007StartButton1.Image = ((System.Drawing.Image)(resources.GetObject("office2007StartButton1.Image")));
     this.office2007StartButton1.ImageFixedSize = new System.Drawing.Size(16, 16);
     this.office2007StartButton1.ImagePaddingHorizontal = 0;
     this.office2007StartButton1.ImagePaddingVertical = 0;
     this.office2007StartButton1.Name = "office2007StartButton1";
     this.office2007StartButton1.ShowSubItems = false;
     this.office2007StartButton1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer1});
     this.office2007StartButton1.Text = "開始";
     this.office2007StartButton1.Click += new System.EventHandler(this.office2007StartButton1_Click);
     //
     // itemContainer1
     //
     //
     //
     //
     this.itemContainer1.BackgroundStyle.Class = "RibbonFileMenuContainer";
     this.itemContainer1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer1.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemContainer1.Name = "itemContainer1";
     this.itemContainer1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer2});
     //
     // itemContainer2
     //
     //
     //
     //
     this.itemContainer2.BackgroundStyle.Class = "RibbonFileMenuTwoColumnContainer";
     this.itemContainer2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer2.ItemSpacing = 0;
     this.itemContainer2.Name = "itemContainer2";
     this.itemContainer2.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer3});
     //
     // itemContainer3
     //
     //
     //
     //
     this.itemContainer3.BackgroundStyle.Class = "RibbonFileMenuColumnOneContainer";
     this.itemContainer3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer3.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemContainer3.MinimumSize = new System.Drawing.Size(120, 0);
     this.itemContainer3.Name = "itemContainer3";
     this.itemContainer3.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnOpen,
     this.btnSave,
     this.btnSaveAs,
     this.btnDownload,
     this.btnUpload,
     this.btnClose,
     this.btnExit});
     //
     // btnOpen
     //
     this.btnOpen.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnOpen.Image = global::ischedule.Properties.Resources.開啟檔案;
     this.btnOpen.Name = "btnOpen";
     this.btnOpen.SubItemsExpandWidth = 24;
     this.btnOpen.Text = "開啟資料";
     this.btnOpen.Click += new System.EventHandler(this.btnOpen_Click);
     //
     // btnSave
     //
     this.btnSave.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnSave.Image = global::ischedule.Properties.Resources.儲存;
     this.btnSave.Name = "btnSave";
     this.btnSave.SubItemsExpandWidth = 24;
     this.btnSave.Text = "儲存資料";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // btnSaveAs
     //
     this.btnSaveAs.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnSaveAs.Image = global::ischedule.Properties.Resources.另存新檔;
     this.btnSaveAs.Name = "btnSaveAs";
     this.btnSaveAs.Text = "另存資料";
     this.btnSaveAs.Click += new System.EventHandler(this.btnSaveAs_Click);
     //
     // btnDownload
     //
     this.btnDownload.BeginGroup = true;
     this.btnDownload.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnDownload.Image = global::ischedule.Properties.Resources.下載;
     this.btnDownload.Name = "btnDownload";
     this.btnDownload.SubItemsExpandWidth = 24;
     this.btnDownload.Text = "下載資料";
     this.btnDownload.Click += new System.EventHandler(this.btnDownload_Click);
     //
     // btnUpload
     //
     this.btnUpload.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnUpload.Image = global::ischedule.Properties.Resources.上載;
     this.btnUpload.Name = "btnUpload";
     this.btnUpload.SubItemsExpandWidth = 24;
     this.btnUpload.Text = "上傳資料";
     this.btnUpload.Click += new System.EventHandler(this.btnUpload_Click);
     //
     // btnClose
     //
     this.btnClose.BeginGroup = true;
     this.btnClose.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnClose.Image = global::ischedule.Properties.Resources.關閉檔案;
     this.btnClose.Name = "btnClose";
     this.btnClose.SubItemsExpandWidth = 24;
     this.btnClose.Text = "關閉資料";
     this.btnClose.Visible = false;
     //
     // btnExit
     //
     this.btnExit.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnExit.Image = global::ischedule.Properties.Resources.刪除;
     this.btnExit.Name = "btnExit";
     this.btnExit.Text = "關閉系統";
     //
     // ribbonTabTeacher
     //
     this.ribbonTabTeacher.Checked = true;
     this.ribbonTabTeacher.Name = "ribbonTabTeacher";
     this.ribbonTabTeacher.Panel = this.ribbonPanel1;
     this.ribbonTabTeacher.Text = "教師";
     //
     // ribbonTabClass
     //
     this.ribbonTabClass.Name = "ribbonTabClass";
     this.ribbonTabClass.Panel = this.ribbonPanel2;
     this.ribbonTabClass.Text = "班級";
     //
     // ribbonTabClassroom
     //
     this.ribbonTabClassroom.Name = "ribbonTabClassroom";
     this.ribbonTabClassroom.Panel = this.ribbonPanel3;
     this.ribbonTabClassroom.Text = "場地";
     //
     // btnUndo
     //
     this.btnUndo.Enabled = false;
     this.btnUndo.Image = global::ischedule.Properties.Resources.Undo_icon;
     this.btnUndo.ImageFixedSize = new System.Drawing.Size(16, 16);
     this.btnUndo.ImageListSizeSelection = DevComponents.DotNetBar.eButtonImageListSelection.Default;
     this.btnUndo.Name = "btnUndo";
     this.btnUndo.Text = "buttonItem3";
     this.btnUndo.Tooltip = "回復";
     this.btnUndo.Visible = false;
     this.btnUndo.Click += new System.EventHandler(this.btnUndo_Click);
     //
     // btnRedo
     //
     this.btnRedo.Enabled = false;
     this.btnRedo.Image = global::ischedule.Properties.Resources.Redo_icon;
     this.btnRedo.ImageFixedSize = new System.Drawing.Size(16, 16);
     this.btnRedo.ImageListSizeSelection = DevComponents.DotNetBar.eButtonImageListSelection.Default;
     this.btnRedo.Name = "btnRedo";
     this.btnRedo.Text = "重做";
     this.btnRedo.Visible = false;
     this.btnRedo.Click += new System.EventHandler(this.btnRedo_Click);
     //
     // qatCustomizeItem1
     //
     this.qatCustomizeItem1.Name = "qatCustomizeItem1";
     //
     // styleManager1
     //
     this.styleManager1.ManagerStyle = DevComponents.DotNetBar.eStyle.Office2010Blue;
     //
     // bar1
     //
     this.bar1.AntiAlias = true;
     this.bar1.BarType = DevComponents.DotNetBar.eBarType.StatusBar;
     this.bar1.Controls.Add(this.lblMemoryUsage);
     this.bar1.Controls.Add(this.progressBarX1);
     this.bar1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.bar1.Location = new System.Drawing.Point(5, 715);
     this.bar1.Name = "bar1";
     this.bar1.Size = new System.Drawing.Size(948, 25);
     this.bar1.Stretch = true;
     this.bar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.bar1.TabIndex = 7;
     this.bar1.TabStop = false;
     this.bar1.Text = "bar1";
     //
     // lblMemoryUsage
     //
     this.lblMemoryUsage.AutoSize = true;
     this.lblMemoryUsage.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.lblMemoryUsage.BackgroundStyle.Class = "";
     this.lblMemoryUsage.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblMemoryUsage.Dock = System.Windows.Forms.DockStyle.Right;
     this.lblMemoryUsage.Location = new System.Drawing.Point(948, 0);
     this.lblMemoryUsage.Name = "lblMemoryUsage";
     this.lblMemoryUsage.SingleLineColor = System.Drawing.Color.Transparent;
     this.lblMemoryUsage.Size = new System.Drawing.Size(0, 0);
     this.lblMemoryUsage.TabIndex = 1;
     //
     // progressBarX1
     //
     //
     //
     //
     this.progressBarX1.BackgroundStyle.Class = "";
     this.progressBarX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.progressBarX1.Location = new System.Drawing.Point(50, 3);
     this.progressBarX1.Name = "progressBarX1";
     this.progressBarX1.Size = new System.Drawing.Size(348, 20);
     this.progressBarX1.TabIndex = 0;
     this.progressBarX1.Text = "progressBarX1";
     this.progressBarX1.Visible = false;
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.panel1.Controls.Add(this.panel2);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(5, 141);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(948, 574);
     this.panel1.TabIndex = 9;
     //
     // panel2
     //
     this.panel2.Controls.Add(this.panel4);
     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(948, 574);
     this.panel2.TabIndex = 0;
     //
     // panel4
     //
     this.panel4.Controls.Add(this.tabContent);
     this.panel4.Controls.Add(this.expandableSplitter1);
     this.panel4.Controls.Add(this.LeftNavigationPanel);
     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(948, 574);
     this.panel4.TabIndex = 2;
     //
     // tabContent
     //
     //
     //
     //
     //
     //
     //
     this.tabContent.ControlBox.CloseBox.Name = "";
     //
     //
     //
     this.tabContent.ControlBox.MenuBox.Name = "";
     this.tabContent.ControlBox.Name = "";
     this.tabContent.ControlBox.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.tabContent.ControlBox.MenuBox,
     this.tabContent.ControlBox.CloseBox});
     this.tabContent.Controls.Add(this.superTabControlPanel1);
     this.tabContent.Controls.Add(this.superTabControlPanel2);
     this.tabContent.Controls.Add(this.superTabControlPanel3);
     this.tabContent.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabContent.Location = new System.Drawing.Point(209, 0);
     this.tabContent.Name = "tabContent";
     this.tabContent.ReorderTabsEnabled = true;
     this.tabContent.SelectedTabFont = new System.Drawing.Font("Microsoft JhengHei", 9F, System.Drawing.FontStyle.Bold);
     this.tabContent.SelectedTabIndex = 0;
     this.tabContent.Size = new System.Drawing.Size(739, 574);
     this.tabContent.TabFont = new System.Drawing.Font("Microsoft JhengHei", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.tabContent.TabIndex = 11;
     this.tabContent.Tabs.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.tabTeacher,
     this.tabClass,
     this.tabClassroom});
     this.tabContent.TabsVisible = false;
     this.tabContent.Text = "superTabControl1";
     //
     // superTabControlPanel1
     //
     this.superTabControlPanel1.Controls.Add(this.pnlWhoList);
     this.superTabControlPanel1.Controls.Add(this.splTeacher);
     this.superTabControlPanel1.Controls.Add(this.pnlWhoLPView);
     this.superTabControlPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.superTabControlPanel1.Location = new System.Drawing.Point(0, 30);
     this.superTabControlPanel1.Name = "superTabControlPanel1";
     this.superTabControlPanel1.Size = new System.Drawing.Size(739, 544);
     this.superTabControlPanel1.TabIndex = 1;
     this.superTabControlPanel1.TabItem = this.tabTeacher;
     //
     // pnlWhoList
     //
     this.pnlWhoList.Controls.Add(this.grdTeacherEvent);
     this.pnlWhoList.Controls.Add(this.panel5);
     this.pnlWhoList.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlWhoList.Location = new System.Drawing.Point(0, 0);
     this.pnlWhoList.Name = "pnlWhoList";
     this.pnlWhoList.Size = new System.Drawing.Size(136, 544);
     this.pnlWhoList.TabIndex = 6;
     //
     // grdTeacherEvent
     //
     this.grdTeacherEvent.AllowUserToAddRows = false;
     this.grdTeacherEvent.AllowUserToDeleteRows = false;
     this.grdTeacherEvent.AllowUserToOrderColumns = true;
     this.grdTeacherEvent.AllowUserToResizeRows = false;
     this.grdTeacherEvent.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
     this.grdTeacherEvent.BackgroundColor = System.Drawing.Color.White;
     this.grdTeacherEvent.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.grdTeacherEvent.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.colLock,
     this.colSolutionCount,
     this.colWeekDay,
     this.colPeriodNo,
     this.colCourseName,
     this.colLength,
     this.colWhoName,
     this.colWhomName,
     this.colWhereName,
     this.colWhatName,
     this.colWhatAliasName,
     this.colCourseGroup,
     this.colWeekDayCondition,
     this.colPeriodCondition,
     this.colAllowLongBreak,
     this.colAllowDuplicate,
     this.colLimitNextDay,
     this.colWeekFlag,
     this.colPriority,
     this.colTimeTable,
     this.colColorIndex,
     this.colEventID});
     dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle6.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle6.Font = new System.Drawing.Font("Microsoft JhengHei", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     dataGridViewCellStyle6.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle6.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle6.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle6.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.grdTeacherEvent.DefaultCellStyle = dataGridViewCellStyle6;
     this.grdTeacherEvent.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdTeacherEvent.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(170)))), ((int)(((byte)(170)))));
     this.grdTeacherEvent.Location = new System.Drawing.Point(0, 35);
     this.grdTeacherEvent.Name = "grdTeacherEvent";
     this.grdTeacherEvent.ReadOnly = true;
     this.grdTeacherEvent.RowHeadersVisible = false;
     this.grdTeacherEvent.RowTemplate.Height = 24;
     this.grdTeacherEvent.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.grdTeacherEvent.Size = new System.Drawing.Size(136, 509);
     this.grdTeacherEvent.TabIndex = 9;
     this.grdTeacherEvent.VirtualMode = true;
     //
     // colLock
     //
     this.colLock.DataPropertyName = "DisplayManualLock";
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.colLock.DefaultCellStyle = dataGridViewCellStyle1;
     this.colLock.HeaderText = "鎖定";
     this.colLock.MinimumWidth = 40;
     this.colLock.Name = "colLock";
     this.colLock.ReadOnly = true;
     this.colLock.Width = 57;
     //
     // colSolutionCount
     //
     this.colSolutionCount.DataPropertyName = "DisplaySolutionCount";
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.colSolutionCount.DefaultCellStyle = dataGridViewCellStyle2;
     this.colSolutionCount.HeaderText = "方案";
     this.colSolutionCount.MinimumWidth = 40;
     this.colSolutionCount.Name = "colSolutionCount";
     this.colSolutionCount.ReadOnly = true;
     this.colSolutionCount.Width = 57;
     //
     // colWeekDay
     //
     this.colWeekDay.DataPropertyName = "WeekDay";
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.colWeekDay.DefaultCellStyle = dataGridViewCellStyle3;
     this.colWeekDay.HeaderText = "星期";
     this.colWeekDay.MinimumWidth = 40;
     this.colWeekDay.Name = "colWeekDay";
     this.colWeekDay.ReadOnly = true;
     this.colWeekDay.Width = 57;
     //
     // colPeriodNo
     //
     this.colPeriodNo.DataPropertyName = "PeriodNo";
     dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.colPeriodNo.DefaultCellStyle = dataGridViewCellStyle4;
     this.colPeriodNo.HeaderText = "節次";
     this.colPeriodNo.Name = "colPeriodNo";
     this.colPeriodNo.ReadOnly = true;
     this.colPeriodNo.Width = 57;
     //
     // colCourseName
     //
     this.colCourseName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.colCourseName.DataPropertyName = "CourseName";
     this.colCourseName.HeaderText = "課程名稱";
     this.colCourseName.Name = "colCourseName";
     this.colCourseName.ReadOnly = true;
     this.colCourseName.Width = 81;
     //
     // colLength
     //
     this.colLength.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.colLength.DataPropertyName = "Length";
     dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.colLength.DefaultCellStyle = dataGridViewCellStyle5;
     this.colLength.HeaderText = "節數";
     this.colLength.Name = "colLength";
     this.colLength.ReadOnly = true;
     this.colLength.Width = 57;
     //
     // colWhoName
     //
     this.colWhoName.DataPropertyName = "DisplayTeacherName";
     this.colWhoName.HeaderText = "教師";
     this.colWhoName.Name = "colWhoName";
     this.colWhoName.ReadOnly = true;
     this.colWhoName.Width = 57;
     //
     // colWhomName
     //
     this.colWhomName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.colWhomName.DataPropertyName = "DisplayClassName";
     this.colWhomName.HeaderText = "班級";
     this.colWhomName.Name = "colWhomName";
     this.colWhomName.ReadOnly = true;
     this.colWhomName.Width = 57;
     //
     // colWhereName
     //
     this.colWhereName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.colWhereName.DataPropertyName = "DisplayClassroomName";
     this.colWhereName.HeaderText = "場地";
     this.colWhereName.Name = "colWhereName";
     this.colWhereName.ReadOnly = true;
     this.colWhereName.Width = 57;
     //
     // colWhatName
     //
     this.colWhatName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.colWhatName.DataPropertyName = "DisplaySubjectName";
     this.colWhatName.HeaderText = "科目";
     this.colWhatName.Name = "colWhatName";
     this.colWhatName.ReadOnly = true;
     this.colWhatName.Width = 57;
     //
     // colWhatAliasName
     //
     this.colWhatAliasName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.colWhatAliasName.DataPropertyName = "SubjectAlias";
     this.colWhatAliasName.HeaderText = "科目簡稱";
     this.colWhatAliasName.Name = "colWhatAliasName";
     this.colWhatAliasName.ReadOnly = true;
     this.colWhatAliasName.Width = 81;
     //
     // colCourseGroup
     //
     this.colCourseGroup.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.colCourseGroup.DataPropertyName = "CourseGroup";
     this.colCourseGroup.HeaderText = "課程群組";
     this.colCourseGroup.Name = "colCourseGroup";
     this.colCourseGroup.ReadOnly = true;
     this.colCourseGroup.Width = 81;
     //
     // colWeekDayCondition
     //
     this.colWeekDayCondition.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.colWeekDayCondition.DataPropertyName = "WeekDayCondition";
     this.colWeekDayCondition.HeaderText = "星期條件";
     this.colWeekDayCondition.Name = "colWeekDayCondition";
     this.colWeekDayCondition.ReadOnly = true;
     this.colWeekDayCondition.Width = 81;
     //
     // colPeriodCondition
     //
     this.colPeriodCondition.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.colPeriodCondition.DataPropertyName = "PeriodCondition";
     this.colPeriodCondition.HeaderText = "節次條件";
     this.colPeriodCondition.Name = "colPeriodCondition";
     this.colPeriodCondition.ReadOnly = true;
     this.colPeriodCondition.Width = 81;
     //
     // colAllowLongBreak
     //
     this.colAllowLongBreak.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.colAllowLongBreak.DataPropertyName = "DisplayAllowLongBreak";
     this.colAllowLongBreak.HeaderText = "跨中午";
     this.colAllowLongBreak.Name = "colAllowLongBreak";
     this.colAllowLongBreak.ReadOnly = true;
     this.colAllowLongBreak.Width = 69;
     //
     // colAllowDuplicate
     //
     this.colAllowDuplicate.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.colAllowDuplicate.DataPropertyName = "DisplayAllowDuplicate";
     this.colAllowDuplicate.HeaderText = "可重複";
     this.colAllowDuplicate.Name = "colAllowDuplicate";
     this.colAllowDuplicate.ReadOnly = true;
     this.colAllowDuplicate.Width = 69;
     //
     // colLimitNextDay
     //
     this.colLimitNextDay.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.colLimitNextDay.DataPropertyName = "DisplayLimitNextDay";
     this.colLimitNextDay.HeaderText = "不連天";
     this.colLimitNextDay.Name = "colLimitNextDay";
     this.colLimitNextDay.ReadOnly = true;
     this.colLimitNextDay.Width = 69;
     //
     // colWeekFlag
     //
     this.colWeekFlag.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.colWeekFlag.DataPropertyName = "DisplayWeekFlag";
     this.colWeekFlag.HeaderText = "單雙週";
     this.colWeekFlag.Name = "colWeekFlag";
     this.colWeekFlag.ReadOnly = true;
     this.colWeekFlag.Width = 69;
     //
     // colPriority
     //
     this.colPriority.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.colPriority.DataPropertyName = "Priority";
     this.colPriority.HeaderText = "優先";
     this.colPriority.Name = "colPriority";
     this.colPriority.ReadOnly = true;
     this.colPriority.Width = 57;
     //
     // colTimeTable
     //
     this.colTimeTable.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.colTimeTable.DataPropertyName = "DispalyTimeTableName";
     this.colTimeTable.HeaderText = "時間表";
     this.colTimeTable.Name = "colTimeTable";
     this.colTimeTable.ReadOnly = true;
     this.colTimeTable.Width = 69;
     //
     // colColorIndex
     //
     this.colColorIndex.DataPropertyName = "ColorIndex";
     this.colColorIndex.HeaderText = "顏色";
     this.colColorIndex.Name = "colColorIndex";
     this.colColorIndex.ReadOnly = true;
     this.colColorIndex.Visible = false;
     this.colColorIndex.Width = 54;
     //
     // colEventID
     //
     this.colEventID.DataPropertyName = "EventID";
     this.colEventID.HeaderText = "分課編號";
     this.colEventID.Name = "colEventID";
     this.colEventID.ReadOnly = true;
     this.colEventID.Width = 81;
     //
     // panel5
     //
     this.panel5.Controls.Add(this.labelX2);
     this.panel5.Controls.Add(this.lblTeacher);
     this.panel5.Controls.Add(this.btnTeacherEventExpand);
     this.panel5.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel5.Location = new System.Drawing.Point(0, 0);
     this.panel5.Name = "panel5";
     this.panel5.Size = new System.Drawing.Size(136, 35);
     this.panel5.TabIndex = 8;
     //
     // labelX2
     //
     this.labelX2.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.labelX2.AutoSize = true;
     //
     //
     //
     this.labelX2.BackgroundStyle.Class = "";
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Font = new System.Drawing.Font("Microsoft JhengHei", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.labelX2.Location = new System.Drawing.Point(-23, 3);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(123, 26);
     this.labelX2.TabIndex = 2;
     this.labelX2.Text = "黃色為未排分課";
     //
     // lblTeacher
     //
     this.lblTeacher.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.lblTeacher.AutoSize = true;
     //
     //
     //
     this.lblTeacher.BackgroundStyle.Class = "";
     this.lblTeacher.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblTeacher.Font = new System.Drawing.Font("Microsoft JhengHei", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.lblTeacher.Location = new System.Drawing.Point(7, 4);
     this.lblTeacher.Name = "lblTeacher";
     this.lblTeacher.Size = new System.Drawing.Size(0, 0);
     this.lblTeacher.TabIndex = 1;
     //
     // btnTeacherEventExpand
     //
     this.btnTeacherEventExpand.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnTeacherEventExpand.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.btnTeacherEventExpand.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnTeacherEventExpand.Location = new System.Drawing.Point(102, 5);
     this.btnTeacherEventExpand.Name = "btnTeacherEventExpand";
     this.btnTeacherEventExpand.Size = new System.Drawing.Size(28, 23);
     this.btnTeacherEventExpand.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnTeacherEventExpand.TabIndex = 0;
     this.btnTeacherEventExpand.Text = ">>";
     //
     // splTeacher
     //
     this.splTeacher.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(157)))), ((int)(((byte)(189)))));
     this.splTeacher.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.splTeacher.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.splTeacher.Dock = System.Windows.Forms.DockStyle.Right;
     this.splTeacher.ExpandableControl = this.pnlWhoLPView;
     this.splTeacher.ExpandFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(157)))), ((int)(((byte)(189)))));
     this.splTeacher.ExpandFillColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.splTeacher.ExpandLineColor = System.Drawing.Color.FromArgb(((int)(((byte)(31)))), ((int)(((byte)(57)))), ((int)(((byte)(120)))));
     this.splTeacher.ExpandLineColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.splTeacher.GripDarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(31)))), ((int)(((byte)(57)))), ((int)(((byte)(120)))));
     this.splTeacher.GripDarkColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.splTeacher.GripLightColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(232)))), ((int)(((byte)(246)))));
     this.splTeacher.GripLightColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.splTeacher.HotBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(200)))), ((int)(((byte)(103)))));
     this.splTeacher.HotBackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(226)))), ((int)(((byte)(135)))));
     this.splTeacher.HotBackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground2;
     this.splTeacher.HotBackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground;
     this.splTeacher.HotExpandFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(157)))), ((int)(((byte)(189)))));
     this.splTeacher.HotExpandFillColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.splTeacher.HotExpandLineColor = System.Drawing.Color.FromArgb(((int)(((byte)(31)))), ((int)(((byte)(57)))), ((int)(((byte)(120)))));
     this.splTeacher.HotExpandLineColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.splTeacher.HotGripDarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(157)))), ((int)(((byte)(189)))));
     this.splTeacher.HotGripDarkColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.splTeacher.HotGripLightColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(232)))), ((int)(((byte)(246)))));
     this.splTeacher.HotGripLightColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.splTeacher.Location = new System.Drawing.Point(136, 0);
     this.splTeacher.Name = "splTeacher";
     this.splTeacher.Size = new System.Drawing.Size(3, 544);
     this.splTeacher.Style = DevComponents.DotNetBar.eSplitterStyle.Office2007;
     this.splTeacher.TabIndex = 5;
     this.splTeacher.TabStop = false;
     //
     // pnlWhoLPView
     //
     this.pnlWhoLPView.Controls.Add(this.tabTeacherLPView);
     this.pnlWhoLPView.Dock = System.Windows.Forms.DockStyle.Right;
     this.pnlWhoLPView.Location = new System.Drawing.Point(139, 0);
     this.pnlWhoLPView.Name = "pnlWhoLPView";
     this.pnlWhoLPView.Size = new System.Drawing.Size(600, 544);
     this.pnlWhoLPView.TabIndex = 4;
     //
     // tabTeacherLPView
     //
     this.tabTeacherLPView.AutoCloseTabs = true;
     this.tabTeacherLPView.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.tabTeacherLPView.CanReorderTabs = true;
     this.tabTeacherLPView.CloseButtonOnTabsVisible = true;
     this.tabTeacherLPView.CloseButtonPosition = DevComponents.DotNetBar.eTabCloseButtonPosition.Right;
     this.tabTeacherLPView.Controls.Add(this.tabControlPanel1);
     this.tabTeacherLPView.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabTeacherLPView.Location = new System.Drawing.Point(0, 0);
     this.tabTeacherLPView.Name = "tabTeacherLPView";
     this.tabTeacherLPView.SelectedTabFont = new System.Drawing.Font("Microsoft JhengHei", 9F, System.Drawing.FontStyle.Bold);
     this.tabTeacherLPView.SelectedTabIndex = -1;
     this.tabTeacherLPView.Size = new System.Drawing.Size(600, 544);
     this.tabTeacherLPView.TabIndex = 1;
     this.tabTeacherLPView.TabLayoutType = DevComponents.DotNetBar.eTabLayoutType.FixedWithNavigationBox;
     this.tabTeacherLPView.Tabs.Add(this.tabItem2);
     this.tabTeacherLPView.Text = "tabControl1";
     //
     // tabControlPanel1
     //
     this.tabControlPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel1.Location = new System.Drawing.Point(0, 28);
     this.tabControlPanel1.Name = "tabControlPanel1";
     this.tabControlPanel1.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel1.Size = new System.Drawing.Size(600, 516);
     this.tabControlPanel1.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(142)))), ((int)(((byte)(179)))), ((int)(((byte)(231)))));
     this.tabControlPanel1.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(223)))), ((int)(((byte)(237)))), ((int)(((byte)(254)))));
     this.tabControlPanel1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel1.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.tabControlPanel1.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
     | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel1.Style.GradientAngle = 90;
     this.tabControlPanel1.TabIndex = 1;
     this.tabControlPanel1.TabItem = this.tabItem2;
     //
     // tabItem2
     //
     this.tabItem2.AttachedControl = this.tabControlPanel1;
     this.tabItem2.CloseButtonVisible = false;
     this.tabItem2.Name = "tabItem2";
     this.tabItem2.Text = "功課表";
     //
     // tabTeacher
     //
     this.tabTeacher.AttachedControl = this.superTabControlPanel1;
     this.tabTeacher.GlobalItem = false;
     this.tabTeacher.Name = "tabTeacher";
     this.tabTeacher.Text = "教師";
     //
     // superTabControlPanel2
     //
     this.superTabControlPanel2.Controls.Add(this.splClass);
     this.superTabControlPanel2.Controls.Add(this.pnlWhomList);
     this.superTabControlPanel2.Controls.Add(this.pnlWhomLPView);
     this.superTabControlPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.superTabControlPanel2.Location = new System.Drawing.Point(0, 0);
     this.superTabControlPanel2.Name = "superTabControlPanel2";
     this.superTabControlPanel2.Size = new System.Drawing.Size(739, 574);
     this.superTabControlPanel2.TabIndex = 0;
     this.superTabControlPanel2.TabItem = this.tabClass;
     //
     // splClass
     //
     this.splClass.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(157)))), ((int)(((byte)(189)))));
     this.splClass.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.splClass.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.splClass.Dock = System.Windows.Forms.DockStyle.Right;
     this.splClass.ExpandableControl = this.pnlWhomLPView;
     this.splClass.ExpandFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(157)))), ((int)(((byte)(189)))));
     this.splClass.ExpandFillColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.splClass.ExpandLineColor = System.Drawing.Color.FromArgb(((int)(((byte)(31)))), ((int)(((byte)(57)))), ((int)(((byte)(120)))));
     this.splClass.ExpandLineColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.splClass.GripDarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(31)))), ((int)(((byte)(57)))), ((int)(((byte)(120)))));
     this.splClass.GripDarkColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.splClass.GripLightColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(232)))), ((int)(((byte)(246)))));
     this.splClass.GripLightColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.splClass.HotBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(200)))), ((int)(((byte)(103)))));
     this.splClass.HotBackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(226)))), ((int)(((byte)(135)))));
     this.splClass.HotBackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground2;
     this.splClass.HotBackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground;
     this.splClass.HotExpandFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(157)))), ((int)(((byte)(189)))));
     this.splClass.HotExpandFillColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.splClass.HotExpandLineColor = System.Drawing.Color.FromArgb(((int)(((byte)(31)))), ((int)(((byte)(57)))), ((int)(((byte)(120)))));
     this.splClass.HotExpandLineColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.splClass.HotGripDarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(157)))), ((int)(((byte)(189)))));
     this.splClass.HotGripDarkColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.splClass.HotGripLightColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(232)))), ((int)(((byte)(246)))));
     this.splClass.HotGripLightColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.splClass.Location = new System.Drawing.Point(136, 0);
     this.splClass.Name = "splClass";
     this.splClass.Size = new System.Drawing.Size(3, 574);
     this.splClass.Style = DevComponents.DotNetBar.eSplitterStyle.Office2007;
     this.splClass.TabIndex = 2;
     this.splClass.TabStop = false;
     //
     // pnlWhomLPView
     //
     this.pnlWhomLPView.Controls.Add(this.tabClassLPView);
     this.pnlWhomLPView.Dock = System.Windows.Forms.DockStyle.Right;
     this.pnlWhomLPView.Location = new System.Drawing.Point(139, 0);
     this.pnlWhomLPView.Name = "pnlWhomLPView";
     this.pnlWhomLPView.Size = new System.Drawing.Size(600, 574);
     this.pnlWhomLPView.TabIndex = 0;
     //
     // tabClassLPView
     //
     this.tabClassLPView.AutoCloseTabs = true;
     this.tabClassLPView.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.tabClassLPView.CanReorderTabs = true;
     this.tabClassLPView.CloseButtonOnTabsVisible = true;
     this.tabClassLPView.CloseButtonPosition = DevComponents.DotNetBar.eTabCloseButtonPosition.Right;
     this.tabClassLPView.Controls.Add(this.tabControlPanel2);
     this.tabClassLPView.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabClassLPView.Location = new System.Drawing.Point(0, 0);
     this.tabClassLPView.Name = "tabClassLPView";
     this.tabClassLPView.SelectedTabFont = new System.Drawing.Font("Microsoft JhengHei", 9F, System.Drawing.FontStyle.Bold);
     this.tabClassLPView.SelectedTabIndex = -1;
     this.tabClassLPView.Size = new System.Drawing.Size(600, 574);
     this.tabClassLPView.TabIndex = 2;
     this.tabClassLPView.TabLayoutType = DevComponents.DotNetBar.eTabLayoutType.FixedWithNavigationBox;
     this.tabClassLPView.Tabs.Add(this.tabItem3);
     this.tabClassLPView.Text = "tabControl1";
     //
     // tabControlPanel2
     //
     this.tabControlPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel2.Location = new System.Drawing.Point(0, 28);
     this.tabControlPanel2.Name = "tabControlPanel2";
     this.tabControlPanel2.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel2.Size = new System.Drawing.Size(600, 546);
     this.tabControlPanel2.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(142)))), ((int)(((byte)(179)))), ((int)(((byte)(231)))));
     this.tabControlPanel2.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(223)))), ((int)(((byte)(237)))), ((int)(((byte)(254)))));
     this.tabControlPanel2.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel2.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.tabControlPanel2.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
     | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel2.Style.GradientAngle = 90;
     this.tabControlPanel2.TabIndex = 1;
     this.tabControlPanel2.TabItem = this.tabItem3;
     //
     // tabItem3
     //
     this.tabItem3.AttachedControl = this.tabControlPanel2;
     this.tabItem3.CloseButtonVisible = false;
     this.tabItem3.Name = "tabItem3";
     this.tabItem3.Text = "功課表";
     //
     // pnlWhomList
     //
     this.pnlWhomList.Controls.Add(this.panel10);
     this.pnlWhomList.Controls.Add(this.panel3);
     this.pnlWhomList.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlWhomList.Location = new System.Drawing.Point(0, 0);
     this.pnlWhomList.Name = "pnlWhomList";
     this.pnlWhomList.Size = new System.Drawing.Size(139, 574);
     this.pnlWhomList.TabIndex = 1;
     //
     // panel10
     //
     this.panel10.Controls.Add(this.grdClassEvent);
     this.panel10.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel10.Location = new System.Drawing.Point(0, 35);
     this.panel10.Name = "panel10";
     this.panel10.Size = new System.Drawing.Size(139, 539);
     this.panel10.TabIndex = 10;
     //
     // grdClassEvent
     //
     this.grdClassEvent.AllowUserToAddRows = false;
     this.grdClassEvent.AllowUserToDeleteRows = false;
     this.grdClassEvent.AllowUserToOrderColumns = true;
     this.grdClassEvent.AllowUserToResizeRows = false;
     this.grdClassEvent.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
     this.grdClassEvent.BackgroundColor = System.Drawing.Color.White;
     this.grdClassEvent.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.grdClassEvent.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.dataGridViewTextBoxColumn69,
     this.dataGridViewTextBoxColumn70,
     this.dataGridViewTextBoxColumn71,
     this.dataGridViewTextBoxColumn72,
     this.dataGridViewTextBoxColumn78,
     this.dataGridViewTextBoxColumn80,
     this.dataGridViewTextBoxColumn73,
     this.dataGridViewTextBoxColumn74,
     this.dataGridViewTextBoxColumn75,
     this.dataGridViewTextBoxColumn76,
     this.dataGridViewTextBoxColumn77,
     this.dataGridViewTextBoxColumn79,
     this.dataGridViewTextBoxColumn81,
     this.dataGridViewTextBoxColumn82,
     this.dataGridViewTextBoxColumn83,
     this.dataGridViewTextBoxColumn84,
     this.dataGridViewTextBoxColumn85,
     this.dataGridViewTextBoxColumn86,
     this.dataGridViewTextBoxColumn87,
     this.dataGridViewTextBoxColumn88,
     this.dataGridViewTextBoxColumn89,
     this.dataGridViewTextBoxColumn90});
     dataGridViewCellStyle12.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle12.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle12.Font = new System.Drawing.Font("Microsoft JhengHei", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     dataGridViewCellStyle12.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle12.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle12.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle12.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.grdClassEvent.DefaultCellStyle = dataGridViewCellStyle12;
     this.grdClassEvent.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdClassEvent.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(170)))), ((int)(((byte)(170)))));
     this.grdClassEvent.Location = new System.Drawing.Point(0, 0);
     this.grdClassEvent.Name = "grdClassEvent";
     this.grdClassEvent.ReadOnly = true;
     this.grdClassEvent.RowHeadersVisible = false;
     this.grdClassEvent.RowTemplate.Height = 24;
     this.grdClassEvent.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.grdClassEvent.Size = new System.Drawing.Size(139, 539);
     this.grdClassEvent.TabIndex = 10;
     this.grdClassEvent.VirtualMode = true;
     //
     // dataGridViewTextBoxColumn69
     //
     this.dataGridViewTextBoxColumn69.DataPropertyName = "DisplayManualLock";
     dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn69.DefaultCellStyle = dataGridViewCellStyle7;
     this.dataGridViewTextBoxColumn69.HeaderText = "鎖定";
     this.dataGridViewTextBoxColumn69.MinimumWidth = 40;
     this.dataGridViewTextBoxColumn69.Name = "dataGridViewTextBoxColumn69";
     this.dataGridViewTextBoxColumn69.ReadOnly = true;
     this.dataGridViewTextBoxColumn69.Width = 57;
     //
     // dataGridViewTextBoxColumn70
     //
     this.dataGridViewTextBoxColumn70.DataPropertyName = "DisplaySolutionCount";
     dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn70.DefaultCellStyle = dataGridViewCellStyle8;
     this.dataGridViewTextBoxColumn70.HeaderText = "方案";
     this.dataGridViewTextBoxColumn70.MinimumWidth = 40;
     this.dataGridViewTextBoxColumn70.Name = "dataGridViewTextBoxColumn70";
     this.dataGridViewTextBoxColumn70.ReadOnly = true;
     this.dataGridViewTextBoxColumn70.Width = 57;
     //
     // dataGridViewTextBoxColumn71
     //
     this.dataGridViewTextBoxColumn71.DataPropertyName = "WeekDay";
     dataGridViewCellStyle9.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn71.DefaultCellStyle = dataGridViewCellStyle9;
     this.dataGridViewTextBoxColumn71.HeaderText = "星期";
     this.dataGridViewTextBoxColumn71.MinimumWidth = 40;
     this.dataGridViewTextBoxColumn71.Name = "dataGridViewTextBoxColumn71";
     this.dataGridViewTextBoxColumn71.ReadOnly = true;
     this.dataGridViewTextBoxColumn71.Width = 57;
     //
     // dataGridViewTextBoxColumn72
     //
     this.dataGridViewTextBoxColumn72.DataPropertyName = "PeriodNo";
     dataGridViewCellStyle10.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn72.DefaultCellStyle = dataGridViewCellStyle10;
     this.dataGridViewTextBoxColumn72.HeaderText = "節次";
     this.dataGridViewTextBoxColumn72.Name = "dataGridViewTextBoxColumn72";
     this.dataGridViewTextBoxColumn72.ReadOnly = true;
     this.dataGridViewTextBoxColumn72.Width = 57;
     //
     // dataGridViewTextBoxColumn78
     //
     this.dataGridViewTextBoxColumn78.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn78.DataPropertyName = "CourseName";
     this.dataGridViewTextBoxColumn78.HeaderText = "課程名稱";
     this.dataGridViewTextBoxColumn78.Name = "dataGridViewTextBoxColumn78";
     this.dataGridViewTextBoxColumn78.ReadOnly = true;
     this.dataGridViewTextBoxColumn78.Width = 81;
     //
     // dataGridViewTextBoxColumn80
     //
     this.dataGridViewTextBoxColumn80.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn80.DataPropertyName = "Length";
     dataGridViewCellStyle11.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn80.DefaultCellStyle = dataGridViewCellStyle11;
     this.dataGridViewTextBoxColumn80.HeaderText = "節數";
     this.dataGridViewTextBoxColumn80.Name = "dataGridViewTextBoxColumn80";
     this.dataGridViewTextBoxColumn80.ReadOnly = true;
     this.dataGridViewTextBoxColumn80.Width = 57;
     //
     // dataGridViewTextBoxColumn73
     //
     this.dataGridViewTextBoxColumn73.DataPropertyName = "DisplayTeacherName";
     this.dataGridViewTextBoxColumn73.HeaderText = "教師";
     this.dataGridViewTextBoxColumn73.Name = "dataGridViewTextBoxColumn73";
     this.dataGridViewTextBoxColumn73.ReadOnly = true;
     this.dataGridViewTextBoxColumn73.Width = 57;
     //
     // dataGridViewTextBoxColumn74
     //
     this.dataGridViewTextBoxColumn74.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn74.DataPropertyName = "DisplayClassName";
     this.dataGridViewTextBoxColumn74.HeaderText = "班級";
     this.dataGridViewTextBoxColumn74.Name = "dataGridViewTextBoxColumn74";
     this.dataGridViewTextBoxColumn74.ReadOnly = true;
     this.dataGridViewTextBoxColumn74.Width = 57;
     //
     // dataGridViewTextBoxColumn75
     //
     this.dataGridViewTextBoxColumn75.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn75.DataPropertyName = "DisplayClassroomName";
     this.dataGridViewTextBoxColumn75.HeaderText = "場地";
     this.dataGridViewTextBoxColumn75.Name = "dataGridViewTextBoxColumn75";
     this.dataGridViewTextBoxColumn75.ReadOnly = true;
     this.dataGridViewTextBoxColumn75.Width = 57;
     //
     // dataGridViewTextBoxColumn76
     //
     this.dataGridViewTextBoxColumn76.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn76.DataPropertyName = "DisplaySubjectName";
     this.dataGridViewTextBoxColumn76.HeaderText = "科目";
     this.dataGridViewTextBoxColumn76.Name = "dataGridViewTextBoxColumn76";
     this.dataGridViewTextBoxColumn76.ReadOnly = true;
     this.dataGridViewTextBoxColumn76.Width = 57;
     //
     // dataGridViewTextBoxColumn77
     //
     this.dataGridViewTextBoxColumn77.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn77.DataPropertyName = "SubjectAlias";
     this.dataGridViewTextBoxColumn77.HeaderText = "科目簡稱";
     this.dataGridViewTextBoxColumn77.Name = "dataGridViewTextBoxColumn77";
     this.dataGridViewTextBoxColumn77.ReadOnly = true;
     this.dataGridViewTextBoxColumn77.Width = 81;
     //
     // dataGridViewTextBoxColumn79
     //
     this.dataGridViewTextBoxColumn79.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn79.DataPropertyName = "CourseGroup";
     this.dataGridViewTextBoxColumn79.HeaderText = "課程群組";
     this.dataGridViewTextBoxColumn79.Name = "dataGridViewTextBoxColumn79";
     this.dataGridViewTextBoxColumn79.ReadOnly = true;
     this.dataGridViewTextBoxColumn79.Width = 81;
     //
     // dataGridViewTextBoxColumn81
     //
     this.dataGridViewTextBoxColumn81.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn81.DataPropertyName = "WeekDayCondition";
     this.dataGridViewTextBoxColumn81.HeaderText = "星期條件";
     this.dataGridViewTextBoxColumn81.Name = "dataGridViewTextBoxColumn81";
     this.dataGridViewTextBoxColumn81.ReadOnly = true;
     this.dataGridViewTextBoxColumn81.Width = 81;
     //
     // dataGridViewTextBoxColumn82
     //
     this.dataGridViewTextBoxColumn82.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn82.DataPropertyName = "PeriodCondition";
     this.dataGridViewTextBoxColumn82.HeaderText = "節次條件";
     this.dataGridViewTextBoxColumn82.Name = "dataGridViewTextBoxColumn82";
     this.dataGridViewTextBoxColumn82.ReadOnly = true;
     this.dataGridViewTextBoxColumn82.Width = 81;
     //
     // dataGridViewTextBoxColumn83
     //
     this.dataGridViewTextBoxColumn83.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn83.DataPropertyName = "DisplayAllowLongBreak";
     this.dataGridViewTextBoxColumn83.HeaderText = "跨中午";
     this.dataGridViewTextBoxColumn83.Name = "dataGridViewTextBoxColumn83";
     this.dataGridViewTextBoxColumn83.ReadOnly = true;
     this.dataGridViewTextBoxColumn83.Width = 69;
     //
     // dataGridViewTextBoxColumn84
     //
     this.dataGridViewTextBoxColumn84.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn84.DataPropertyName = "DisplayAllowDuplicate";
     this.dataGridViewTextBoxColumn84.HeaderText = "可重複";
     this.dataGridViewTextBoxColumn84.Name = "dataGridViewTextBoxColumn84";
     this.dataGridViewTextBoxColumn84.ReadOnly = true;
     this.dataGridViewTextBoxColumn84.Width = 69;
     //
     // dataGridViewTextBoxColumn85
     //
     this.dataGridViewTextBoxColumn85.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn85.DataPropertyName = "DisplayLimitNextDay";
     this.dataGridViewTextBoxColumn85.HeaderText = "不連天";
     this.dataGridViewTextBoxColumn85.Name = "dataGridViewTextBoxColumn85";
     this.dataGridViewTextBoxColumn85.ReadOnly = true;
     this.dataGridViewTextBoxColumn85.Width = 69;
     //
     // dataGridViewTextBoxColumn86
     //
     this.dataGridViewTextBoxColumn86.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn86.DataPropertyName = "DisplayWeekFlag";
     this.dataGridViewTextBoxColumn86.HeaderText = "單雙週";
     this.dataGridViewTextBoxColumn86.Name = "dataGridViewTextBoxColumn86";
     this.dataGridViewTextBoxColumn86.ReadOnly = true;
     this.dataGridViewTextBoxColumn86.Width = 69;
     //
     // dataGridViewTextBoxColumn87
     //
     this.dataGridViewTextBoxColumn87.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn87.DataPropertyName = "Priority";
     this.dataGridViewTextBoxColumn87.HeaderText = "優先";
     this.dataGridViewTextBoxColumn87.Name = "dataGridViewTextBoxColumn87";
     this.dataGridViewTextBoxColumn87.ReadOnly = true;
     this.dataGridViewTextBoxColumn87.Width = 57;
     //
     // dataGridViewTextBoxColumn88
     //
     this.dataGridViewTextBoxColumn88.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn88.DataPropertyName = "DispalyTimeTableName";
     this.dataGridViewTextBoxColumn88.HeaderText = "時間表";
     this.dataGridViewTextBoxColumn88.Name = "dataGridViewTextBoxColumn88";
     this.dataGridViewTextBoxColumn88.ReadOnly = true;
     this.dataGridViewTextBoxColumn88.Width = 69;
     //
     // dataGridViewTextBoxColumn89
     //
     this.dataGridViewTextBoxColumn89.DataPropertyName = "ColorIndex";
     this.dataGridViewTextBoxColumn89.HeaderText = "顏色";
     this.dataGridViewTextBoxColumn89.Name = "dataGridViewTextBoxColumn89";
     this.dataGridViewTextBoxColumn89.ReadOnly = true;
     this.dataGridViewTextBoxColumn89.Visible = false;
     this.dataGridViewTextBoxColumn89.Width = 54;
     //
     // dataGridViewTextBoxColumn90
     //
     this.dataGridViewTextBoxColumn90.DataPropertyName = "EventID";
     this.dataGridViewTextBoxColumn90.HeaderText = "分課編號";
     this.dataGridViewTextBoxColumn90.Name = "dataGridViewTextBoxColumn90";
     this.dataGridViewTextBoxColumn90.ReadOnly = true;
     this.dataGridViewTextBoxColumn90.Width = 81;
     //
     // panel3
     //
     this.panel3.Controls.Add(this.labelX6);
     this.panel3.Controls.Add(this.lblClass);
     this.panel3.Controls.Add(this.labelX3);
     this.panel3.Controls.Add(this.labelX1);
     this.panel3.Controls.Add(this.btnClassEventExpand);
     this.panel3.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel3.Location = new System.Drawing.Point(0, 0);
     this.panel3.Name = "panel3";
     this.panel3.Size = new System.Drawing.Size(139, 35);
     this.panel3.TabIndex = 9;
     //
     // labelX6
     //
     this.labelX6.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.labelX6.AutoSize = true;
     //
     //
     //
     this.labelX6.BackgroundStyle.Class = "";
     this.labelX6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX6.Font = new System.Drawing.Font("Microsoft JhengHei", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.labelX6.Location = new System.Drawing.Point(-20, 4);
     this.labelX6.Name = "labelX6";
     this.labelX6.Size = new System.Drawing.Size(123, 26);
     this.labelX6.TabIndex = 4;
     this.labelX6.Text = "黃色為未排分課";
     //
     // lblClass
     //
     this.lblClass.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.lblClass.AutoSize = true;
     //
     //
     //
     this.lblClass.BackgroundStyle.Class = "";
     this.lblClass.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblClass.Font = new System.Drawing.Font("Microsoft JhengHei", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.lblClass.Location = new System.Drawing.Point(7, 4);
     this.lblClass.Name = "lblClass";
     this.lblClass.Size = new System.Drawing.Size(0, 0);
     this.lblClass.TabIndex = 3;
     //
     // labelX3
     //
     this.labelX3.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelX3.AutoSize = true;
     //
     //
     //
     this.labelX3.BackgroundStyle.Class = "";
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Font = new System.Drawing.Font("Microsoft JhengHei", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.labelX3.Location = new System.Drawing.Point(7, 4);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(0, 0);
     this.labelX3.TabIndex = 2;
     //
     // labelX1
     //
     this.labelX1.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelX1.AutoSize = true;
     //
     //
     //
     this.labelX1.BackgroundStyle.Class = "";
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Font = new System.Drawing.Font("Microsoft JhengHei", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.labelX1.Location = new System.Drawing.Point(7, 4);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(0, 0);
     this.labelX1.TabIndex = 1;
     //
     // btnClassEventExpand
     //
     this.btnClassEventExpand.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnClassEventExpand.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.btnClassEventExpand.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnClassEventExpand.Location = new System.Drawing.Point(105, 5);
     this.btnClassEventExpand.Name = "btnClassEventExpand";
     this.btnClassEventExpand.Size = new System.Drawing.Size(28, 23);
     this.btnClassEventExpand.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnClassEventExpand.TabIndex = 0;
     this.btnClassEventExpand.Text = ">>";
     //
     // tabClass
     //
     this.tabClass.AttachedControl = this.superTabControlPanel2;
     this.tabClass.GlobalItem = false;
     this.tabClass.Name = "tabClass";
     this.tabClass.Text = "班級";
     //
     // superTabControlPanel3
     //
     this.superTabControlPanel3.Controls.Add(this.pnlWhereList);
     this.superTabControlPanel3.Controls.Add(this.splClassroom);
     this.superTabControlPanel3.Controls.Add(this.pnlWhereLPView);
     this.superTabControlPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.superTabControlPanel3.Location = new System.Drawing.Point(0, 0);
     this.superTabControlPanel3.Name = "superTabControlPanel3";
     this.superTabControlPanel3.Size = new System.Drawing.Size(739, 574);
     this.superTabControlPanel3.TabIndex = 0;
     this.superTabControlPanel3.TabItem = this.tabClassroom;
     //
     // pnlWhereList
     //
     this.pnlWhereList.Controls.Add(this.panel9);
     this.pnlWhereList.Controls.Add(this.panel6);
     this.pnlWhereList.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlWhereList.Location = new System.Drawing.Point(0, 0);
     this.pnlWhereList.Name = "pnlWhereList";
     this.pnlWhereList.Size = new System.Drawing.Size(136, 574);
     this.pnlWhereList.TabIndex = 2;
     //
     // panel9
     //
     this.panel9.Controls.Add(this.grdClassroomEvent);
     this.panel9.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel9.Location = new System.Drawing.Point(0, 35);
     this.panel9.Name = "panel9";
     this.panel9.Size = new System.Drawing.Size(136, 539);
     this.panel9.TabIndex = 11;
     //
     // grdClassroomEvent
     //
     this.grdClassroomEvent.AllowUserToAddRows = false;
     this.grdClassroomEvent.AllowUserToDeleteRows = false;
     this.grdClassroomEvent.AllowUserToOrderColumns = true;
     this.grdClassroomEvent.AllowUserToResizeRows = false;
     this.grdClassroomEvent.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
     this.grdClassroomEvent.BackgroundColor = System.Drawing.Color.White;
     this.grdClassroomEvent.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.grdClassroomEvent.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.dataGridViewTextBoxColumn91,
     this.dataGridViewTextBoxColumn92,
     this.dataGridViewTextBoxColumn93,
     this.dataGridViewTextBoxColumn94,
     this.dataGridViewTextBoxColumn100,
     this.dataGridViewTextBoxColumn102,
     this.dataGridViewTextBoxColumn95,
     this.dataGridViewTextBoxColumn96,
     this.dataGridViewTextBoxColumn97,
     this.dataGridViewTextBoxColumn98,
     this.dataGridViewTextBoxColumn99,
     this.dataGridViewTextBoxColumn101,
     this.dataGridViewTextBoxColumn103,
     this.dataGridViewTextBoxColumn104,
     this.dataGridViewTextBoxColumn105,
     this.dataGridViewTextBoxColumn106,
     this.dataGridViewTextBoxColumn107,
     this.dataGridViewTextBoxColumn108,
     this.dataGridViewTextBoxColumn109,
     this.dataGridViewTextBoxColumn110,
     this.dataGridViewTextBoxColumn111,
     this.dataGridViewTextBoxColumn112});
     dataGridViewCellStyle18.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle18.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle18.Font = new System.Drawing.Font("Microsoft JhengHei", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     dataGridViewCellStyle18.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle18.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle18.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle18.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.grdClassroomEvent.DefaultCellStyle = dataGridViewCellStyle18;
     this.grdClassroomEvent.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdClassroomEvent.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(170)))), ((int)(((byte)(170)))));
     this.grdClassroomEvent.Location = new System.Drawing.Point(0, 0);
     this.grdClassroomEvent.Name = "grdClassroomEvent";
     this.grdClassroomEvent.ReadOnly = true;
     this.grdClassroomEvent.RowHeadersVisible = false;
     this.grdClassroomEvent.RowTemplate.Height = 24;
     this.grdClassroomEvent.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.grdClassroomEvent.Size = new System.Drawing.Size(136, 539);
     this.grdClassroomEvent.TabIndex = 11;
     this.grdClassroomEvent.VirtualMode = true;
     //
     // dataGridViewTextBoxColumn91
     //
     this.dataGridViewTextBoxColumn91.DataPropertyName = "DisplayManualLock";
     dataGridViewCellStyle13.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn91.DefaultCellStyle = dataGridViewCellStyle13;
     this.dataGridViewTextBoxColumn91.HeaderText = "鎖定";
     this.dataGridViewTextBoxColumn91.MinimumWidth = 40;
     this.dataGridViewTextBoxColumn91.Name = "dataGridViewTextBoxColumn91";
     this.dataGridViewTextBoxColumn91.ReadOnly = true;
     this.dataGridViewTextBoxColumn91.Width = 57;
     //
     // dataGridViewTextBoxColumn92
     //
     this.dataGridViewTextBoxColumn92.DataPropertyName = "DisplaySolutionCount";
     dataGridViewCellStyle14.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn92.DefaultCellStyle = dataGridViewCellStyle14;
     this.dataGridViewTextBoxColumn92.HeaderText = "方案";
     this.dataGridViewTextBoxColumn92.MinimumWidth = 40;
     this.dataGridViewTextBoxColumn92.Name = "dataGridViewTextBoxColumn92";
     this.dataGridViewTextBoxColumn92.ReadOnly = true;
     this.dataGridViewTextBoxColumn92.Width = 57;
     //
     // dataGridViewTextBoxColumn93
     //
     this.dataGridViewTextBoxColumn93.DataPropertyName = "WeekDay";
     dataGridViewCellStyle15.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn93.DefaultCellStyle = dataGridViewCellStyle15;
     this.dataGridViewTextBoxColumn93.HeaderText = "星期";
     this.dataGridViewTextBoxColumn93.MinimumWidth = 40;
     this.dataGridViewTextBoxColumn93.Name = "dataGridViewTextBoxColumn93";
     this.dataGridViewTextBoxColumn93.ReadOnly = true;
     this.dataGridViewTextBoxColumn93.Width = 57;
     //
     // dataGridViewTextBoxColumn94
     //
     this.dataGridViewTextBoxColumn94.DataPropertyName = "PeriodNo";
     dataGridViewCellStyle16.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn94.DefaultCellStyle = dataGridViewCellStyle16;
     this.dataGridViewTextBoxColumn94.HeaderText = "節次";
     this.dataGridViewTextBoxColumn94.Name = "dataGridViewTextBoxColumn94";
     this.dataGridViewTextBoxColumn94.ReadOnly = true;
     this.dataGridViewTextBoxColumn94.Width = 57;
     //
     // dataGridViewTextBoxColumn100
     //
     this.dataGridViewTextBoxColumn100.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn100.DataPropertyName = "CourseName";
     this.dataGridViewTextBoxColumn100.HeaderText = "課程名稱";
     this.dataGridViewTextBoxColumn100.Name = "dataGridViewTextBoxColumn100";
     this.dataGridViewTextBoxColumn100.ReadOnly = true;
     this.dataGridViewTextBoxColumn100.Width = 81;
     //
     // dataGridViewTextBoxColumn102
     //
     this.dataGridViewTextBoxColumn102.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn102.DataPropertyName = "Length";
     dataGridViewCellStyle17.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn102.DefaultCellStyle = dataGridViewCellStyle17;
     this.dataGridViewTextBoxColumn102.HeaderText = "節數";
     this.dataGridViewTextBoxColumn102.Name = "dataGridViewTextBoxColumn102";
     this.dataGridViewTextBoxColumn102.ReadOnly = true;
     this.dataGridViewTextBoxColumn102.Width = 57;
     //
     // dataGridViewTextBoxColumn95
     //
     this.dataGridViewTextBoxColumn95.DataPropertyName = "DisplayTeacherName";
     this.dataGridViewTextBoxColumn95.HeaderText = "教師";
     this.dataGridViewTextBoxColumn95.Name = "dataGridViewTextBoxColumn95";
     this.dataGridViewTextBoxColumn95.ReadOnly = true;
     this.dataGridViewTextBoxColumn95.Width = 57;
     //
     // dataGridViewTextBoxColumn96
     //
     this.dataGridViewTextBoxColumn96.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn96.DataPropertyName = "DisplayClassName";
     this.dataGridViewTextBoxColumn96.HeaderText = "班級";
     this.dataGridViewTextBoxColumn96.Name = "dataGridViewTextBoxColumn96";
     this.dataGridViewTextBoxColumn96.ReadOnly = true;
     this.dataGridViewTextBoxColumn96.Width = 57;
     //
     // dataGridViewTextBoxColumn97
     //
     this.dataGridViewTextBoxColumn97.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn97.DataPropertyName = "DisplayClassroomName";
     this.dataGridViewTextBoxColumn97.HeaderText = "場地";
     this.dataGridViewTextBoxColumn97.Name = "dataGridViewTextBoxColumn97";
     this.dataGridViewTextBoxColumn97.ReadOnly = true;
     this.dataGridViewTextBoxColumn97.Width = 57;
     //
     // dataGridViewTextBoxColumn98
     //
     this.dataGridViewTextBoxColumn98.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn98.DataPropertyName = "DisplaySubjectName";
     this.dataGridViewTextBoxColumn98.HeaderText = "科目";
     this.dataGridViewTextBoxColumn98.Name = "dataGridViewTextBoxColumn98";
     this.dataGridViewTextBoxColumn98.ReadOnly = true;
     this.dataGridViewTextBoxColumn98.Width = 57;
     //
     // dataGridViewTextBoxColumn99
     //
     this.dataGridViewTextBoxColumn99.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn99.DataPropertyName = "SubjectAlias";
     this.dataGridViewTextBoxColumn99.HeaderText = "科目簡稱";
     this.dataGridViewTextBoxColumn99.Name = "dataGridViewTextBoxColumn99";
     this.dataGridViewTextBoxColumn99.ReadOnly = true;
     this.dataGridViewTextBoxColumn99.Width = 81;
     //
     // dataGridViewTextBoxColumn101
     //
     this.dataGridViewTextBoxColumn101.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn101.DataPropertyName = "CourseGroup";
     this.dataGridViewTextBoxColumn101.HeaderText = "課程群組";
     this.dataGridViewTextBoxColumn101.Name = "dataGridViewTextBoxColumn101";
     this.dataGridViewTextBoxColumn101.ReadOnly = true;
     this.dataGridViewTextBoxColumn101.Width = 81;
     //
     // dataGridViewTextBoxColumn103
     //
     this.dataGridViewTextBoxColumn103.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn103.DataPropertyName = "WeekDayCondition";
     this.dataGridViewTextBoxColumn103.HeaderText = "星期條件";
     this.dataGridViewTextBoxColumn103.Name = "dataGridViewTextBoxColumn103";
     this.dataGridViewTextBoxColumn103.ReadOnly = true;
     this.dataGridViewTextBoxColumn103.Width = 81;
     //
     // dataGridViewTextBoxColumn104
     //
     this.dataGridViewTextBoxColumn104.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn104.DataPropertyName = "PeriodCondition";
     this.dataGridViewTextBoxColumn104.HeaderText = "節次條件";
     this.dataGridViewTextBoxColumn104.Name = "dataGridViewTextBoxColumn104";
     this.dataGridViewTextBoxColumn104.ReadOnly = true;
     this.dataGridViewTextBoxColumn104.Width = 81;
     //
     // dataGridViewTextBoxColumn105
     //
     this.dataGridViewTextBoxColumn105.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn105.DataPropertyName = "DisplayAllowLongBreak";
     this.dataGridViewTextBoxColumn105.HeaderText = "跨中午";
     this.dataGridViewTextBoxColumn105.Name = "dataGridViewTextBoxColumn105";
     this.dataGridViewTextBoxColumn105.ReadOnly = true;
     this.dataGridViewTextBoxColumn105.Width = 69;
     //
     // dataGridViewTextBoxColumn106
     //
     this.dataGridViewTextBoxColumn106.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn106.DataPropertyName = "DisplayAllowDuplicate";
     this.dataGridViewTextBoxColumn106.HeaderText = "可重複";
     this.dataGridViewTextBoxColumn106.Name = "dataGridViewTextBoxColumn106";
     this.dataGridViewTextBoxColumn106.ReadOnly = true;
     this.dataGridViewTextBoxColumn106.Width = 69;
     //
     // dataGridViewTextBoxColumn107
     //
     this.dataGridViewTextBoxColumn107.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn107.DataPropertyName = "DisplayLimitNextDay";
     this.dataGridViewTextBoxColumn107.HeaderText = "不連天";
     this.dataGridViewTextBoxColumn107.Name = "dataGridViewTextBoxColumn107";
     this.dataGridViewTextBoxColumn107.ReadOnly = true;
     this.dataGridViewTextBoxColumn107.Width = 69;
     //
     // dataGridViewTextBoxColumn108
     //
     this.dataGridViewTextBoxColumn108.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn108.DataPropertyName = "DisplayWeekFlag";
     this.dataGridViewTextBoxColumn108.HeaderText = "單雙週";
     this.dataGridViewTextBoxColumn108.Name = "dataGridViewTextBoxColumn108";
     this.dataGridViewTextBoxColumn108.ReadOnly = true;
     this.dataGridViewTextBoxColumn108.Width = 69;
     //
     // dataGridViewTextBoxColumn109
     //
     this.dataGridViewTextBoxColumn109.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn109.DataPropertyName = "Priority";
     this.dataGridViewTextBoxColumn109.HeaderText = "優先";
     this.dataGridViewTextBoxColumn109.Name = "dataGridViewTextBoxColumn109";
     this.dataGridViewTextBoxColumn109.ReadOnly = true;
     this.dataGridViewTextBoxColumn109.Width = 57;
     //
     // dataGridViewTextBoxColumn110
     //
     this.dataGridViewTextBoxColumn110.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn110.DataPropertyName = "DispalyTimeTableName";
     this.dataGridViewTextBoxColumn110.HeaderText = "時間表";
     this.dataGridViewTextBoxColumn110.Name = "dataGridViewTextBoxColumn110";
     this.dataGridViewTextBoxColumn110.ReadOnly = true;
     this.dataGridViewTextBoxColumn110.Width = 69;
     //
     // dataGridViewTextBoxColumn111
     //
     this.dataGridViewTextBoxColumn111.DataPropertyName = "ColorIndex";
     this.dataGridViewTextBoxColumn111.HeaderText = "顏色";
     this.dataGridViewTextBoxColumn111.Name = "dataGridViewTextBoxColumn111";
     this.dataGridViewTextBoxColumn111.ReadOnly = true;
     this.dataGridViewTextBoxColumn111.Visible = false;
     this.dataGridViewTextBoxColumn111.Width = 54;
     //
     // dataGridViewTextBoxColumn112
     //
     this.dataGridViewTextBoxColumn112.DataPropertyName = "EventID";
     this.dataGridViewTextBoxColumn112.HeaderText = "分課編號";
     this.dataGridViewTextBoxColumn112.Name = "dataGridViewTextBoxColumn112";
     this.dataGridViewTextBoxColumn112.ReadOnly = true;
     this.dataGridViewTextBoxColumn112.Width = 81;
     //
     // panel6
     //
     this.panel6.Controls.Add(this.labelX7);
     this.panel6.Controls.Add(this.lblClassroom);
     this.panel6.Controls.Add(this.labelX4);
     this.panel6.Controls.Add(this.labelX5);
     this.panel6.Controls.Add(this.btnClassroomEventExpand);
     this.panel6.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel6.Location = new System.Drawing.Point(0, 0);
     this.panel6.Name = "panel6";
     this.panel6.Size = new System.Drawing.Size(136, 35);
     this.panel6.TabIndex = 10;
     //
     // labelX7
     //
     this.labelX7.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.labelX7.AutoSize = true;
     //
     //
     //
     this.labelX7.BackgroundStyle.Class = "";
     this.labelX7.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX7.Font = new System.Drawing.Font("Microsoft JhengHei", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.labelX7.Location = new System.Drawing.Point(-23, 4);
     this.labelX7.Name = "labelX7";
     this.labelX7.Size = new System.Drawing.Size(123, 26);
     this.labelX7.TabIndex = 5;
     this.labelX7.Text = "黃色為未排分課";
     //
     // lblClassroom
     //
     this.lblClassroom.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.lblClassroom.AutoSize = true;
     //
     //
     //
     this.lblClassroom.BackgroundStyle.Class = "";
     this.lblClassroom.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblClassroom.Font = new System.Drawing.Font("Microsoft JhengHei", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.lblClassroom.Location = new System.Drawing.Point(7, 4);
     this.lblClassroom.Name = "lblClassroom";
     this.lblClassroom.Size = new System.Drawing.Size(0, 0);
     this.lblClassroom.TabIndex = 3;
     //
     // labelX4
     //
     this.labelX4.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelX4.AutoSize = true;
     //
     //
     //
     this.labelX4.BackgroundStyle.Class = "";
     this.labelX4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX4.Font = new System.Drawing.Font("Microsoft JhengHei", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.labelX4.Location = new System.Drawing.Point(7, 4);
     this.labelX4.Name = "labelX4";
     this.labelX4.Size = new System.Drawing.Size(0, 0);
     this.labelX4.TabIndex = 2;
     //
     // labelX5
     //
     this.labelX5.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelX5.AutoSize = true;
     //
     //
     //
     this.labelX5.BackgroundStyle.Class = "";
     this.labelX5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX5.Font = new System.Drawing.Font("Microsoft JhengHei", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.labelX5.Location = new System.Drawing.Point(7, 4);
     this.labelX5.Name = "labelX5";
     this.labelX5.Size = new System.Drawing.Size(0, 0);
     this.labelX5.TabIndex = 1;
     //
     // btnClassroomEventExpand
     //
     this.btnClassroomEventExpand.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnClassroomEventExpand.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.btnClassroomEventExpand.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnClassroomEventExpand.Location = new System.Drawing.Point(102, 5);
     this.btnClassroomEventExpand.Name = "btnClassroomEventExpand";
     this.btnClassroomEventExpand.Size = new System.Drawing.Size(28, 23);
     this.btnClassroomEventExpand.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnClassroomEventExpand.TabIndex = 0;
     this.btnClassroomEventExpand.Text = ">>";
     //
     // splClassroom
     //
     this.splClassroom.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(157)))), ((int)(((byte)(189)))));
     this.splClassroom.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.splClassroom.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.splClassroom.Dock = System.Windows.Forms.DockStyle.Right;
     this.splClassroom.ExpandableControl = this.pnlWhereLPView;
     this.splClassroom.ExpandFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(157)))), ((int)(((byte)(189)))));
     this.splClassroom.ExpandFillColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.splClassroom.ExpandLineColor = System.Drawing.Color.FromArgb(((int)(((byte)(31)))), ((int)(((byte)(57)))), ((int)(((byte)(120)))));
     this.splClassroom.ExpandLineColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.splClassroom.GripDarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(31)))), ((int)(((byte)(57)))), ((int)(((byte)(120)))));
     this.splClassroom.GripDarkColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.splClassroom.GripLightColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(232)))), ((int)(((byte)(246)))));
     this.splClassroom.GripLightColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.splClassroom.HotBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(200)))), ((int)(((byte)(103)))));
     this.splClassroom.HotBackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(226)))), ((int)(((byte)(135)))));
     this.splClassroom.HotBackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground2;
     this.splClassroom.HotBackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground;
     this.splClassroom.HotExpandFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(157)))), ((int)(((byte)(189)))));
     this.splClassroom.HotExpandFillColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.splClassroom.HotExpandLineColor = System.Drawing.Color.FromArgb(((int)(((byte)(31)))), ((int)(((byte)(57)))), ((int)(((byte)(120)))));
     this.splClassroom.HotExpandLineColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.splClassroom.HotGripDarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(157)))), ((int)(((byte)(189)))));
     this.splClassroom.HotGripDarkColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.splClassroom.HotGripLightColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(232)))), ((int)(((byte)(246)))));
     this.splClassroom.HotGripLightColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.splClassroom.Location = new System.Drawing.Point(136, 0);
     this.splClassroom.Name = "splClassroom";
     this.splClassroom.Size = new System.Drawing.Size(3, 574);
     this.splClassroom.Style = DevComponents.DotNetBar.eSplitterStyle.Office2007;
     this.splClassroom.TabIndex = 1;
     this.splClassroom.TabStop = false;
     //
     // pnlWhereLPView
     //
     this.pnlWhereLPView.Controls.Add(this.tabClassroomLPView);
     this.pnlWhereLPView.Dock = System.Windows.Forms.DockStyle.Right;
     this.pnlWhereLPView.Location = new System.Drawing.Point(139, 0);
     this.pnlWhereLPView.Name = "pnlWhereLPView";
     this.pnlWhereLPView.Size = new System.Drawing.Size(600, 574);
     this.pnlWhereLPView.TabIndex = 0;
     //
     // tabClassroomLPView
     //
     this.tabClassroomLPView.AutoCloseTabs = true;
     this.tabClassroomLPView.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.tabClassroomLPView.CanReorderTabs = true;
     this.tabClassroomLPView.CloseButtonOnTabsVisible = true;
     this.tabClassroomLPView.CloseButtonPosition = DevComponents.DotNetBar.eTabCloseButtonPosition.Right;
     this.tabClassroomLPView.Controls.Add(this.tabControlPanel3);
     this.tabClassroomLPView.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabClassroomLPView.Location = new System.Drawing.Point(0, 0);
     this.tabClassroomLPView.Name = "tabClassroomLPView";
     this.tabClassroomLPView.SelectedTabFont = new System.Drawing.Font("Microsoft JhengHei", 9F, System.Drawing.FontStyle.Bold);
     this.tabClassroomLPView.SelectedTabIndex = -1;
     this.tabClassroomLPView.Size = new System.Drawing.Size(600, 574);
     this.tabClassroomLPView.TabIndex = 3;
     this.tabClassroomLPView.TabLayoutType = DevComponents.DotNetBar.eTabLayoutType.FixedWithNavigationBox;
     this.tabClassroomLPView.Tabs.Add(this.tabItem4);
     this.tabClassroomLPView.Text = "tabControl1";
     //
     // tabControlPanel3
     //
     this.tabControlPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel3.Location = new System.Drawing.Point(0, 28);
     this.tabControlPanel3.Name = "tabControlPanel3";
     this.tabControlPanel3.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel3.Size = new System.Drawing.Size(600, 546);
     this.tabControlPanel3.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(142)))), ((int)(((byte)(179)))), ((int)(((byte)(231)))));
     this.tabControlPanel3.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(223)))), ((int)(((byte)(237)))), ((int)(((byte)(254)))));
     this.tabControlPanel3.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel3.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.tabControlPanel3.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
     | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel3.Style.GradientAngle = 90;
     this.tabControlPanel3.TabIndex = 1;
     this.tabControlPanel3.TabItem = this.tabItem4;
     //
     // tabItem4
     //
     this.tabItem4.AttachedControl = this.tabControlPanel3;
     this.tabItem4.CloseButtonVisible = false;
     this.tabItem4.Name = "tabItem4";
     this.tabItem4.Text = "功課表";
     //
     // tabClassroom
     //
     this.tabClassroom.AttachedControl = this.superTabControlPanel3;
     this.tabClassroom.GlobalItem = false;
     this.tabClassroom.Name = "tabClassroom";
     this.tabClassroom.Text = "場地";
     //
     // expandableSplitter1
     //
     this.expandableSplitter1.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(157)))), ((int)(((byte)(189)))));
     this.expandableSplitter1.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.expandableSplitter1.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.expandableSplitter1.ExpandFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(157)))), ((int)(((byte)(189)))));
     this.expandableSplitter1.ExpandFillColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.expandableSplitter1.ExpandLineColor = System.Drawing.Color.FromArgb(((int)(((byte)(31)))), ((int)(((byte)(57)))), ((int)(((byte)(120)))));
     this.expandableSplitter1.ExpandLineColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.expandableSplitter1.GripDarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(31)))), ((int)(((byte)(57)))), ((int)(((byte)(120)))));
     this.expandableSplitter1.GripDarkColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.expandableSplitter1.GripLightColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(232)))), ((int)(((byte)(246)))));
     this.expandableSplitter1.GripLightColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.expandableSplitter1.HotBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(200)))), ((int)(((byte)(103)))));
     this.expandableSplitter1.HotBackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(226)))), ((int)(((byte)(135)))));
     this.expandableSplitter1.HotBackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground2;
     this.expandableSplitter1.HotBackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground;
     this.expandableSplitter1.HotExpandFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(157)))), ((int)(((byte)(189)))));
     this.expandableSplitter1.HotExpandFillColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.expandableSplitter1.HotExpandLineColor = System.Drawing.Color.FromArgb(((int)(((byte)(31)))), ((int)(((byte)(57)))), ((int)(((byte)(120)))));
     this.expandableSplitter1.HotExpandLineColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.expandableSplitter1.HotGripDarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(157)))), ((int)(((byte)(189)))));
     this.expandableSplitter1.HotGripDarkColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.expandableSplitter1.HotGripLightColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(232)))), ((int)(((byte)(246)))));
     this.expandableSplitter1.HotGripLightColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.expandableSplitter1.Location = new System.Drawing.Point(206, 0);
     this.expandableSplitter1.Name = "expandableSplitter1";
     this.expandableSplitter1.Size = new System.Drawing.Size(3, 574);
     this.expandableSplitter1.Style = DevComponents.DotNetBar.eSplitterStyle.Office2007;
     this.expandableSplitter1.TabIndex = 10;
     this.expandableSplitter1.TabStop = false;
     //
     // LeftNavigationPanel
     //
     this.LeftNavigationPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.LeftNavigationPanel.CanCollapse = true;
     this.LeftNavigationPanel.Controls.Add(this.pnlClassroom);
     this.LeftNavigationPanel.Controls.Add(this.pnlClass);
     this.LeftNavigationPanel.Controls.Add(this.pnlTeacher);
     this.LeftNavigationPanel.Dock = System.Windows.Forms.DockStyle.Left;
     this.LeftNavigationPanel.ItemPaddingBottom = 2;
     this.LeftNavigationPanel.ItemPaddingTop = 2;
     this.LeftNavigationPanel.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnTeacher,
     this.btnClass,
     this.btnClassroom});
     this.LeftNavigationPanel.Location = new System.Drawing.Point(0, 0);
     this.LeftNavigationPanel.Name = "LeftNavigationPanel";
     this.LeftNavigationPanel.Padding = new System.Windows.Forms.Padding(1);
     this.LeftNavigationPanel.Size = new System.Drawing.Size(206, 574);
     this.LeftNavigationPanel.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.LeftNavigationPanel.TabIndex = 9;
     //
     //
     //
     this.LeftNavigationPanel.TitlePanel.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.LeftNavigationPanel.TitlePanel.Dock = System.Windows.Forms.DockStyle.Top;
     this.LeftNavigationPanel.TitlePanel.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.LeftNavigationPanel.TitlePanel.Location = new System.Drawing.Point(1, 1);
     this.LeftNavigationPanel.TitlePanel.Name = "panelTitle";
     this.LeftNavigationPanel.TitlePanel.Size = new System.Drawing.Size(202, 24);
     this.LeftNavigationPanel.TitlePanel.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.LeftNavigationPanel.TitlePanel.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.LeftNavigationPanel.TitlePanel.Style.Border = DevComponents.DotNetBar.eBorderType.RaisedInner;
     this.LeftNavigationPanel.TitlePanel.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.LeftNavigationPanel.TitlePanel.Style.BorderSide = DevComponents.DotNetBar.eBorderSide.Bottom;
     this.LeftNavigationPanel.TitlePanel.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.LeftNavigationPanel.TitlePanel.Style.GradientAngle = 90;
     this.LeftNavigationPanel.TitlePanel.Style.MarginLeft = 4;
     this.LeftNavigationPanel.TitlePanel.TabIndex = 0;
     this.LeftNavigationPanel.TitlePanel.Text = "場地";
     //
     // pnlClassroom
     //
     this.pnlClassroom.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.pnlClassroom.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlClassroom.Location = new System.Drawing.Point(1, 25);
     this.pnlClassroom.Name = "pnlClassroom";
     this.pnlClassroom.ParentItem = this.btnClassroom;
     this.pnlClassroom.Size = new System.Drawing.Size(202, 514);
     this.pnlClassroom.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.pnlClassroom.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.pnlClassroom.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.pnlClassroom.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.pnlClassroom.Style.GradientAngle = 90;
     this.pnlClassroom.TabIndex = 4;
     //
     // btnClassroom
     //
     this.btnClassroom.Checked = true;
     this.btnClassroom.ImageFixedSize = new System.Drawing.Size(16, 16);
     this.btnClassroom.Name = "btnClassroom";
     this.btnClassroom.OptionGroup = "navBar";
     this.btnClassroom.Text = "場地";
     this.btnClassroom.Visible = false;
     //
     // pnlClass
     //
     this.pnlClass.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.pnlClass.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlClass.Location = new System.Drawing.Point(1, 1);
     this.pnlClass.Name = "pnlClass";
     this.pnlClass.ParentItem = this.btnClass;
     this.pnlClass.Size = new System.Drawing.Size(202, 538);
     this.pnlClass.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.pnlClass.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.pnlClass.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.pnlClass.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.pnlClass.Style.GradientAngle = 90;
     this.pnlClass.TabIndex = 3;
     //
     // btnClass
     //
     this.btnClass.ImageFixedSize = new System.Drawing.Size(16, 16);
     this.btnClass.Name = "btnClass";
     this.btnClass.OptionGroup = "navBar";
     this.btnClass.Text = "班級";
     this.btnClass.Visible = false;
     //
     // pnlTeacher
     //
     this.pnlTeacher.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.pnlTeacher.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlTeacher.Location = new System.Drawing.Point(1, 1);
     this.pnlTeacher.Name = "pnlTeacher";
     this.pnlTeacher.ParentItem = this.btnTeacher;
     this.pnlTeacher.Size = new System.Drawing.Size(202, 538);
     this.pnlTeacher.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.pnlTeacher.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.pnlTeacher.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.pnlTeacher.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.pnlTeacher.Style.GradientAngle = 90;
     this.pnlTeacher.TabIndex = 2;
     //
     // btnTeacher
     //
     this.btnTeacher.ImageFixedSize = new System.Drawing.Size(16, 16);
     this.btnTeacher.Name = "btnTeacher";
     this.btnTeacher.OptionGroup = "navBar";
     this.btnTeacher.Text = "教師";
     this.btnTeacher.Visible = false;
     //
     // tabItem1
     //
     this.tabItem1.Name = "tabItem1";
     this.tabItem1.Text = "tabItem1";
     //
     // buttonItem1
     //
     this.buttonItem1.Name = "buttonItem1";
     this.buttonItem1.Text = "buttonItem1";
     //
     // panel7
     //
     this.panel7.Controls.Add(this.buttonX2);
     this.panel7.Controls.Add(this.buttonX1);
     this.panel7.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panel7.Location = new System.Drawing.Point(0, 412);
     this.panel7.Name = "panel7";
     this.panel7.Size = new System.Drawing.Size(208, 100);
     this.panel7.TabIndex = 0;
     //
     // buttonX2
     //
     this.buttonX2.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX2.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonX2.Dock = System.Windows.Forms.DockStyle.Top;
     this.buttonX2.Location = new System.Drawing.Point(0, 23);
     this.buttonX2.Name = "buttonX2";
     this.buttonX2.Size = new System.Drawing.Size(208, 23);
     this.buttonX2.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.buttonX2.TabIndex = 1;
     this.buttonX2.Text = "待處理分課表";
     //
     // buttonX1
     //
     this.buttonX1.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX1.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonX1.Dock = System.Windows.Forms.DockStyle.Top;
     this.buttonX1.Location = new System.Drawing.Point(0, 0);
     this.buttonX1.Name = "buttonX1";
     this.buttonX1.Size = new System.Drawing.Size(208, 23);
     this.buttonX1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.buttonX1.TabIndex = 0;
     this.buttonX1.Text = "顯示所有分課";
     //
     // panel8
     //
     this.panel8.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel8.Location = new System.Drawing.Point(0, 0);
     this.panel8.Name = "panel8";
     this.panel8.Size = new System.Drawing.Size(208, 412);
     this.panel8.TabIndex = 1;
     //
     // contextMenu
     //
     this.contextMenu.Name = "contextMenu";
     this.contextMenu.Size = new System.Drawing.Size(61, 4);
     //
     // dataGridViewTextBoxColumn1
     //
     this.dataGridViewTextBoxColumn1.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn1.DataPropertyName = "Lock";
     dataGridViewCellStyle19.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn1.DefaultCellStyle = dataGridViewCellStyle19;
     this.dataGridViewTextBoxColumn1.HeaderText = "*";
     this.dataGridViewTextBoxColumn1.MinimumWidth = 30;
     this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
     this.dataGridViewTextBoxColumn1.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn2
     //
     this.dataGridViewTextBoxColumn2.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn2.DataPropertyName = "SolutionCount";
     dataGridViewCellStyle20.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn2.DefaultCellStyle = dataGridViewCellStyle20;
     this.dataGridViewTextBoxColumn2.HeaderText = "教師";
     this.dataGridViewTextBoxColumn2.MinimumWidth = 30;
     this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
     this.dataGridViewTextBoxColumn2.ReadOnly = true;
     this.dataGridViewTextBoxColumn2.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Programmatic;
     //
     // dataGridViewTextBoxColumn3
     //
     this.dataGridViewTextBoxColumn3.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn3.DataPropertyName = "WhoName";
     dataGridViewCellStyle21.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn3.DefaultCellStyle = dataGridViewCellStyle21;
     this.dataGridViewTextBoxColumn3.HeaderText = "課程";
     this.dataGridViewTextBoxColumn3.MinimumWidth = 40;
     this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3";
     this.dataGridViewTextBoxColumn3.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn4
     //
     this.dataGridViewTextBoxColumn4.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn4.DataPropertyName = "WhomName";
     dataGridViewCellStyle22.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn4.DefaultCellStyle = dataGridViewCellStyle22;
     this.dataGridViewTextBoxColumn4.HeaderText = "星期";
     this.dataGridViewTextBoxColumn4.Name = "dataGridViewTextBoxColumn4";
     this.dataGridViewTextBoxColumn4.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn5
     //
     this.dataGridViewTextBoxColumn5.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn5.DataPropertyName = "WhereName";
     dataGridViewCellStyle23.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn5.DefaultCellStyle = dataGridViewCellStyle23;
     this.dataGridViewTextBoxColumn5.HeaderText = "場地";
     this.dataGridViewTextBoxColumn5.Name = "dataGridViewTextBoxColumn5";
     this.dataGridViewTextBoxColumn5.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn6
     //
     this.dataGridViewTextBoxColumn6.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn6.DataPropertyName = "WhatName";
     dataGridViewCellStyle24.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn6.DefaultCellStyle = dataGridViewCellStyle24;
     this.dataGridViewTextBoxColumn6.HeaderText = "科目";
     this.dataGridViewTextBoxColumn6.Name = "dataGridViewTextBoxColumn6";
     this.dataGridViewTextBoxColumn6.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn7
     //
     this.dataGridViewTextBoxColumn7.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn7.DataPropertyName = "WhatAliasName";
     this.dataGridViewTextBoxColumn7.HeaderText = "科目簡稱";
     this.dataGridViewTextBoxColumn7.Name = "dataGridViewTextBoxColumn7";
     this.dataGridViewTextBoxColumn7.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn8
     //
     this.dataGridViewTextBoxColumn8.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn8.DataPropertyName = "CourseName";
     this.dataGridViewTextBoxColumn8.HeaderText = "課程名稱";
     this.dataGridViewTextBoxColumn8.Name = "dataGridViewTextBoxColumn8";
     this.dataGridViewTextBoxColumn8.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn9
     //
     this.dataGridViewTextBoxColumn9.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn9.DataPropertyName = "CourseGroup";
     this.dataGridViewTextBoxColumn9.HeaderText = "課程群組";
     this.dataGridViewTextBoxColumn9.Name = "dataGridViewTextBoxColumn9";
     this.dataGridViewTextBoxColumn9.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn10
     //
     this.dataGridViewTextBoxColumn10.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn10.DataPropertyName = "WeekDay";
     this.dataGridViewTextBoxColumn10.HeaderText = "星期";
     this.dataGridViewTextBoxColumn10.Name = "dataGridViewTextBoxColumn10";
     this.dataGridViewTextBoxColumn10.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn11
     //
     this.dataGridViewTextBoxColumn11.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn11.DataPropertyName = "PeriodNo";
     this.dataGridViewTextBoxColumn11.HeaderText = "節次";
     this.dataGridViewTextBoxColumn11.Name = "dataGridViewTextBoxColumn11";
     this.dataGridViewTextBoxColumn11.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn12
     //
     this.dataGridViewTextBoxColumn12.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn12.DataPropertyName = "Length";
     this.dataGridViewTextBoxColumn12.HeaderText = "節數";
     this.dataGridViewTextBoxColumn12.Name = "dataGridViewTextBoxColumn12";
     this.dataGridViewTextBoxColumn12.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn13
     //
     this.dataGridViewTextBoxColumn13.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn13.DataPropertyName = "WeekDayCondition";
     this.dataGridViewTextBoxColumn13.HeaderText = "星期條件";
     this.dataGridViewTextBoxColumn13.Name = "dataGridViewTextBoxColumn13";
     this.dataGridViewTextBoxColumn13.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn14
     //
     this.dataGridViewTextBoxColumn14.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn14.DataPropertyName = "PeriodCondition";
     this.dataGridViewTextBoxColumn14.HeaderText = "節次條件";
     this.dataGridViewTextBoxColumn14.Name = "dataGridViewTextBoxColumn14";
     this.dataGridViewTextBoxColumn14.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn15
     //
     this.dataGridViewTextBoxColumn15.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn15.DataPropertyName = "AllowLongBreak";
     this.dataGridViewTextBoxColumn15.HeaderText = "跨中午";
     this.dataGridViewTextBoxColumn15.Name = "dataGridViewTextBoxColumn15";
     this.dataGridViewTextBoxColumn15.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn16
     //
     this.dataGridViewTextBoxColumn16.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn16.DataPropertyName = "AllowDuplicate";
     this.dataGridViewTextBoxColumn16.HeaderText = "可重複";
     this.dataGridViewTextBoxColumn16.Name = "dataGridViewTextBoxColumn16";
     this.dataGridViewTextBoxColumn16.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn17
     //
     this.dataGridViewTextBoxColumn17.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn17.DataPropertyName = "LimitNextDay";
     this.dataGridViewTextBoxColumn17.HeaderText = "不連天";
     this.dataGridViewTextBoxColumn17.Name = "dataGridViewTextBoxColumn17";
     this.dataGridViewTextBoxColumn17.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn18
     //
     this.dataGridViewTextBoxColumn18.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn18.DataPropertyName = "WeekFlag";
     this.dataGridViewTextBoxColumn18.HeaderText = "單雙週";
     this.dataGridViewTextBoxColumn18.Name = "dataGridViewTextBoxColumn18";
     this.dataGridViewTextBoxColumn18.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn19
     //
     this.dataGridViewTextBoxColumn19.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn19.DataPropertyName = "Priority";
     this.dataGridViewTextBoxColumn19.HeaderText = "優先";
     this.dataGridViewTextBoxColumn19.Name = "dataGridViewTextBoxColumn19";
     this.dataGridViewTextBoxColumn19.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn20
     //
     this.dataGridViewTextBoxColumn20.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn20.DataPropertyName = "TimeTableName";
     this.dataGridViewTextBoxColumn20.HeaderText = "時間表";
     this.dataGridViewTextBoxColumn20.Name = "dataGridViewTextBoxColumn20";
     this.dataGridViewTextBoxColumn20.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn21
     //
     this.dataGridViewTextBoxColumn21.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn21.DataPropertyName = "ColorIndex";
     this.dataGridViewTextBoxColumn21.HeaderText = "分課編號";
     this.dataGridViewTextBoxColumn21.Name = "dataGridViewTextBoxColumn21";
     this.dataGridViewTextBoxColumn21.ReadOnly = true;
     this.dataGridViewTextBoxColumn21.Visible = false;
     //
     // dataGridViewTextBoxColumn22
     //
     this.dataGridViewTextBoxColumn22.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn22.DataPropertyName = "EventID";
     this.dataGridViewTextBoxColumn22.HeaderText = "姓名";
     this.dataGridViewTextBoxColumn22.Name = "dataGridViewTextBoxColumn22";
     this.dataGridViewTextBoxColumn22.ReadOnly = true;
     this.dataGridViewTextBoxColumn22.Visible = false;
     //
     // dataGridViewTextBoxColumn23
     //
     this.dataGridViewTextBoxColumn23.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn23.DataPropertyName = "Lock";
     dataGridViewCellStyle25.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn23.DefaultCellStyle = dataGridViewCellStyle25;
     this.dataGridViewTextBoxColumn23.HeaderText = "總時數";
     this.dataGridViewTextBoxColumn23.MinimumWidth = 40;
     this.dataGridViewTextBoxColumn23.Name = "dataGridViewTextBoxColumn23";
     this.dataGridViewTextBoxColumn23.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn24
     //
     this.dataGridViewTextBoxColumn24.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn24.DataPropertyName = "SolutionCount";
     dataGridViewCellStyle26.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn24.DefaultCellStyle = dataGridViewCellStyle26;
     this.dataGridViewTextBoxColumn24.HeaderText = "未排時數";
     this.dataGridViewTextBoxColumn24.MinimumWidth = 40;
     this.dataGridViewTextBoxColumn24.Name = "dataGridViewTextBoxColumn24";
     this.dataGridViewTextBoxColumn24.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn25
     //
     this.dataGridViewTextBoxColumn25.DataPropertyName = "Lock";
     dataGridViewCellStyle27.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn25.DefaultCellStyle = dataGridViewCellStyle27;
     this.dataGridViewTextBoxColumn25.HeaderText = "鎖定";
     this.dataGridViewTextBoxColumn25.MinimumWidth = 40;
     this.dataGridViewTextBoxColumn25.Name = "dataGridViewTextBoxColumn25";
     this.dataGridViewTextBoxColumn25.ReadOnly = true;
     this.dataGridViewTextBoxColumn25.Width = 57;
     //
     // dataGridViewTextBoxColumn26
     //
     this.dataGridViewTextBoxColumn26.DataPropertyName = "SolutionCount";
     dataGridViewCellStyle28.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn26.DefaultCellStyle = dataGridViewCellStyle28;
     this.dataGridViewTextBoxColumn26.HeaderText = "方案";
     this.dataGridViewTextBoxColumn26.MinimumWidth = 40;
     this.dataGridViewTextBoxColumn26.Name = "dataGridViewTextBoxColumn26";
     this.dataGridViewTextBoxColumn26.ReadOnly = true;
     this.dataGridViewTextBoxColumn26.Width = 57;
     //
     // dataGridViewTextBoxColumn27
     //
     this.dataGridViewTextBoxColumn27.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn27.DataPropertyName = "WeekDay";
     dataGridViewCellStyle29.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn27.DefaultCellStyle = dataGridViewCellStyle29;
     this.dataGridViewTextBoxColumn27.HeaderText = "星期";
     this.dataGridViewTextBoxColumn27.MinimumWidth = 40;
     this.dataGridViewTextBoxColumn27.Name = "dataGridViewTextBoxColumn27";
     this.dataGridViewTextBoxColumn27.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn28
     //
     this.dataGridViewTextBoxColumn28.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn28.DataPropertyName = "PeriodNo";
     dataGridViewCellStyle30.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn28.DefaultCellStyle = dataGridViewCellStyle30;
     this.dataGridViewTextBoxColumn28.HeaderText = "節次";
     this.dataGridViewTextBoxColumn28.Name = "dataGridViewTextBoxColumn28";
     this.dataGridViewTextBoxColumn28.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn29
     //
     this.dataGridViewTextBoxColumn29.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn29.DataPropertyName = "WhoName";
     this.dataGridViewTextBoxColumn29.HeaderText = "教師";
     this.dataGridViewTextBoxColumn29.Name = "dataGridViewTextBoxColumn29";
     this.dataGridViewTextBoxColumn29.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn30
     //
     this.dataGridViewTextBoxColumn30.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn30.DataPropertyName = "WhomName";
     this.dataGridViewTextBoxColumn30.HeaderText = "班級";
     this.dataGridViewTextBoxColumn30.Name = "dataGridViewTextBoxColumn30";
     this.dataGridViewTextBoxColumn30.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn31
     //
     this.dataGridViewTextBoxColumn31.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn31.DataPropertyName = "WhereName";
     this.dataGridViewTextBoxColumn31.HeaderText = "場地";
     this.dataGridViewTextBoxColumn31.Name = "dataGridViewTextBoxColumn31";
     this.dataGridViewTextBoxColumn31.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn32
     //
     this.dataGridViewTextBoxColumn32.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn32.DataPropertyName = "WhatName";
     this.dataGridViewTextBoxColumn32.HeaderText = "科目";
     this.dataGridViewTextBoxColumn32.Name = "dataGridViewTextBoxColumn32";
     this.dataGridViewTextBoxColumn32.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn33
     //
     this.dataGridViewTextBoxColumn33.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn33.DataPropertyName = "WhatAliasName";
     this.dataGridViewTextBoxColumn33.HeaderText = "科目簡稱";
     this.dataGridViewTextBoxColumn33.Name = "dataGridViewTextBoxColumn33";
     this.dataGridViewTextBoxColumn33.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn34
     //
     this.dataGridViewTextBoxColumn34.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn34.DataPropertyName = "CourseName";
     this.dataGridViewTextBoxColumn34.HeaderText = "課程名稱";
     this.dataGridViewTextBoxColumn34.Name = "dataGridViewTextBoxColumn34";
     this.dataGridViewTextBoxColumn34.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn35
     //
     this.dataGridViewTextBoxColumn35.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn35.DataPropertyName = "CourseGroup";
     this.dataGridViewTextBoxColumn35.HeaderText = "課程群組";
     this.dataGridViewTextBoxColumn35.Name = "dataGridViewTextBoxColumn35";
     this.dataGridViewTextBoxColumn35.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn36
     //
     this.dataGridViewTextBoxColumn36.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn36.DataPropertyName = "Length";
     this.dataGridViewTextBoxColumn36.HeaderText = "節數";
     this.dataGridViewTextBoxColumn36.Name = "dataGridViewTextBoxColumn36";
     this.dataGridViewTextBoxColumn36.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn37
     //
     this.dataGridViewTextBoxColumn37.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn37.DataPropertyName = "WeekDayCondition";
     this.dataGridViewTextBoxColumn37.HeaderText = "星期條件";
     this.dataGridViewTextBoxColumn37.Name = "dataGridViewTextBoxColumn37";
     this.dataGridViewTextBoxColumn37.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn38
     //
     this.dataGridViewTextBoxColumn38.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn38.DataPropertyName = "PeriodCondition";
     this.dataGridViewTextBoxColumn38.HeaderText = "節次條件";
     this.dataGridViewTextBoxColumn38.Name = "dataGridViewTextBoxColumn38";
     this.dataGridViewTextBoxColumn38.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn39
     //
     this.dataGridViewTextBoxColumn39.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn39.DataPropertyName = "AllowLongBreak";
     this.dataGridViewTextBoxColumn39.HeaderText = "跨中午";
     this.dataGridViewTextBoxColumn39.Name = "dataGridViewTextBoxColumn39";
     this.dataGridViewTextBoxColumn39.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn40
     //
     this.dataGridViewTextBoxColumn40.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn40.DataPropertyName = "AllowDuplicate";
     this.dataGridViewTextBoxColumn40.HeaderText = "可重複";
     this.dataGridViewTextBoxColumn40.Name = "dataGridViewTextBoxColumn40";
     this.dataGridViewTextBoxColumn40.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn41
     //
     this.dataGridViewTextBoxColumn41.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn41.DataPropertyName = "LimitNextDay";
     this.dataGridViewTextBoxColumn41.HeaderText = "不連天";
     this.dataGridViewTextBoxColumn41.Name = "dataGridViewTextBoxColumn41";
     this.dataGridViewTextBoxColumn41.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn42
     //
     this.dataGridViewTextBoxColumn42.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn42.DataPropertyName = "WeekFlag";
     this.dataGridViewTextBoxColumn42.HeaderText = "單雙週";
     this.dataGridViewTextBoxColumn42.Name = "dataGridViewTextBoxColumn42";
     this.dataGridViewTextBoxColumn42.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn43
     //
     this.dataGridViewTextBoxColumn43.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn43.DataPropertyName = "Priority";
     this.dataGridViewTextBoxColumn43.HeaderText = "優先";
     this.dataGridViewTextBoxColumn43.Name = "dataGridViewTextBoxColumn43";
     this.dataGridViewTextBoxColumn43.ReadOnly = true;
     this.dataGridViewTextBoxColumn43.Visible = false;
     //
     // dataGridViewTextBoxColumn44
     //
     this.dataGridViewTextBoxColumn44.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn44.DataPropertyName = "TimeTableName";
     this.dataGridViewTextBoxColumn44.HeaderText = "時間表";
     this.dataGridViewTextBoxColumn44.Name = "dataGridViewTextBoxColumn44";
     this.dataGridViewTextBoxColumn44.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn45
     //
     this.dataGridViewTextBoxColumn45.DataPropertyName = "ColorIndex";
     dataGridViewCellStyle31.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn45.DefaultCellStyle = dataGridViewCellStyle31;
     this.dataGridViewTextBoxColumn45.HeaderText = "顏色";
     this.dataGridViewTextBoxColumn45.MinimumWidth = 40;
     this.dataGridViewTextBoxColumn45.Name = "dataGridViewTextBoxColumn45";
     this.dataGridViewTextBoxColumn45.ReadOnly = true;
     this.dataGridViewTextBoxColumn45.Visible = false;
     this.dataGridViewTextBoxColumn45.Width = 57;
     //
     // dataGridViewTextBoxColumn46
     //
     this.dataGridViewTextBoxColumn46.DataPropertyName = "EventID";
     dataGridViewCellStyle32.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn46.DefaultCellStyle = dataGridViewCellStyle32;
     this.dataGridViewTextBoxColumn46.HeaderText = "分課編號";
     this.dataGridViewTextBoxColumn46.MinimumWidth = 40;
     this.dataGridViewTextBoxColumn46.Name = "dataGridViewTextBoxColumn46";
     this.dataGridViewTextBoxColumn46.ReadOnly = true;
     this.dataGridViewTextBoxColumn46.Width = 78;
     //
     // dataGridViewTextBoxColumn47
     //
     this.dataGridViewTextBoxColumn47.DataPropertyName = "Lock";
     dataGridViewCellStyle33.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn47.DefaultCellStyle = dataGridViewCellStyle33;
     this.dataGridViewTextBoxColumn47.HeaderText = "鎖定";
     this.dataGridViewTextBoxColumn47.MinimumWidth = 40;
     this.dataGridViewTextBoxColumn47.Name = "dataGridViewTextBoxColumn47";
     this.dataGridViewTextBoxColumn47.ReadOnly = true;
     this.dataGridViewTextBoxColumn47.Width = 54;
     //
     // dataGridViewTextBoxColumn48
     //
     this.dataGridViewTextBoxColumn48.DataPropertyName = "SolutionCount";
     dataGridViewCellStyle34.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn48.DefaultCellStyle = dataGridViewCellStyle34;
     this.dataGridViewTextBoxColumn48.HeaderText = "方案";
     this.dataGridViewTextBoxColumn48.MinimumWidth = 40;
     this.dataGridViewTextBoxColumn48.Name = "dataGridViewTextBoxColumn48";
     this.dataGridViewTextBoxColumn48.ReadOnly = true;
     this.dataGridViewTextBoxColumn48.Width = 54;
     //
     // dataGridViewTextBoxColumn49
     //
     this.dataGridViewTextBoxColumn49.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn49.DataPropertyName = "WeekDay";
     dataGridViewCellStyle35.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn49.DefaultCellStyle = dataGridViewCellStyle35;
     this.dataGridViewTextBoxColumn49.HeaderText = "星期";
     this.dataGridViewTextBoxColumn49.MinimumWidth = 40;
     this.dataGridViewTextBoxColumn49.Name = "dataGridViewTextBoxColumn49";
     this.dataGridViewTextBoxColumn49.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn50
     //
     this.dataGridViewTextBoxColumn50.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn50.DataPropertyName = "PeriodNo";
     dataGridViewCellStyle36.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn50.DefaultCellStyle = dataGridViewCellStyle36;
     this.dataGridViewTextBoxColumn50.HeaderText = "節次";
     this.dataGridViewTextBoxColumn50.Name = "dataGridViewTextBoxColumn50";
     this.dataGridViewTextBoxColumn50.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn51
     //
     this.dataGridViewTextBoxColumn51.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn51.DataPropertyName = "WhoName";
     this.dataGridViewTextBoxColumn51.HeaderText = "教師";
     this.dataGridViewTextBoxColumn51.Name = "dataGridViewTextBoxColumn51";
     this.dataGridViewTextBoxColumn51.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn52
     //
     this.dataGridViewTextBoxColumn52.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn52.DataPropertyName = "WhomName";
     this.dataGridViewTextBoxColumn52.HeaderText = "班級";
     this.dataGridViewTextBoxColumn52.Name = "dataGridViewTextBoxColumn52";
     this.dataGridViewTextBoxColumn52.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn53
     //
     this.dataGridViewTextBoxColumn53.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn53.DataPropertyName = "WhereName";
     this.dataGridViewTextBoxColumn53.HeaderText = "場地";
     this.dataGridViewTextBoxColumn53.Name = "dataGridViewTextBoxColumn53";
     this.dataGridViewTextBoxColumn53.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn54
     //
     this.dataGridViewTextBoxColumn54.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn54.DataPropertyName = "WhatName";
     this.dataGridViewTextBoxColumn54.HeaderText = "科目";
     this.dataGridViewTextBoxColumn54.Name = "dataGridViewTextBoxColumn54";
     this.dataGridViewTextBoxColumn54.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn55
     //
     this.dataGridViewTextBoxColumn55.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn55.DataPropertyName = "WhatAliasName";
     this.dataGridViewTextBoxColumn55.HeaderText = "科目簡稱";
     this.dataGridViewTextBoxColumn55.Name = "dataGridViewTextBoxColumn55";
     this.dataGridViewTextBoxColumn55.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn56
     //
     this.dataGridViewTextBoxColumn56.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn56.DataPropertyName = "CourseName";
     this.dataGridViewTextBoxColumn56.HeaderText = "課程名稱";
     this.dataGridViewTextBoxColumn56.Name = "dataGridViewTextBoxColumn56";
     this.dataGridViewTextBoxColumn56.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn57
     //
     this.dataGridViewTextBoxColumn57.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn57.DataPropertyName = "CourseGroup";
     this.dataGridViewTextBoxColumn57.HeaderText = "課程群組";
     this.dataGridViewTextBoxColumn57.Name = "dataGridViewTextBoxColumn57";
     this.dataGridViewTextBoxColumn57.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn58
     //
     this.dataGridViewTextBoxColumn58.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn58.DataPropertyName = "Length";
     this.dataGridViewTextBoxColumn58.HeaderText = "節數";
     this.dataGridViewTextBoxColumn58.Name = "dataGridViewTextBoxColumn58";
     this.dataGridViewTextBoxColumn58.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn59
     //
     this.dataGridViewTextBoxColumn59.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn59.DataPropertyName = "WeekDayCondition";
     this.dataGridViewTextBoxColumn59.HeaderText = "星期條件";
     this.dataGridViewTextBoxColumn59.Name = "dataGridViewTextBoxColumn59";
     this.dataGridViewTextBoxColumn59.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn60
     //
     this.dataGridViewTextBoxColumn60.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn60.DataPropertyName = "PeriodCondition";
     this.dataGridViewTextBoxColumn60.HeaderText = "節次條件";
     this.dataGridViewTextBoxColumn60.Name = "dataGridViewTextBoxColumn60";
     this.dataGridViewTextBoxColumn60.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn61
     //
     this.dataGridViewTextBoxColumn61.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn61.DataPropertyName = "AllowLongBreak";
     this.dataGridViewTextBoxColumn61.HeaderText = "跨中午";
     this.dataGridViewTextBoxColumn61.Name = "dataGridViewTextBoxColumn61";
     this.dataGridViewTextBoxColumn61.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn62
     //
     this.dataGridViewTextBoxColumn62.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn62.DataPropertyName = "AllowDuplicate";
     this.dataGridViewTextBoxColumn62.HeaderText = "可重複";
     this.dataGridViewTextBoxColumn62.Name = "dataGridViewTextBoxColumn62";
     this.dataGridViewTextBoxColumn62.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn63
     //
     this.dataGridViewTextBoxColumn63.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn63.DataPropertyName = "LimitNextDay";
     this.dataGridViewTextBoxColumn63.HeaderText = "不連天";
     this.dataGridViewTextBoxColumn63.Name = "dataGridViewTextBoxColumn63";
     this.dataGridViewTextBoxColumn63.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn64
     //
     this.dataGridViewTextBoxColumn64.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn64.DataPropertyName = "WeekFlag";
     this.dataGridViewTextBoxColumn64.HeaderText = "單雙週";
     this.dataGridViewTextBoxColumn64.Name = "dataGridViewTextBoxColumn64";
     this.dataGridViewTextBoxColumn64.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn65
     //
     this.dataGridViewTextBoxColumn65.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn65.DataPropertyName = "Priority";
     this.dataGridViewTextBoxColumn65.HeaderText = "優先";
     this.dataGridViewTextBoxColumn65.Name = "dataGridViewTextBoxColumn65";
     this.dataGridViewTextBoxColumn65.ReadOnly = true;
     this.dataGridViewTextBoxColumn65.Visible = false;
     //
     // dataGridViewTextBoxColumn66
     //
     this.dataGridViewTextBoxColumn66.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn66.DataPropertyName = "TimeTableName";
     this.dataGridViewTextBoxColumn66.HeaderText = "時間表";
     this.dataGridViewTextBoxColumn66.Name = "dataGridViewTextBoxColumn66";
     this.dataGridViewTextBoxColumn66.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn67
     //
     this.dataGridViewTextBoxColumn67.DataPropertyName = "ColorIndex";
     this.dataGridViewTextBoxColumn67.HeaderText = "顏色";
     this.dataGridViewTextBoxColumn67.Name = "dataGridViewTextBoxColumn67";
     this.dataGridViewTextBoxColumn67.ReadOnly = true;
     this.dataGridViewTextBoxColumn67.Visible = false;
     this.dataGridViewTextBoxColumn67.Width = 54;
     //
     // dataGridViewTextBoxColumn68
     //
     this.dataGridViewTextBoxColumn68.DataPropertyName = "EventID";
     this.dataGridViewTextBoxColumn68.HeaderText = "分課編號";
     this.dataGridViewTextBoxColumn68.Name = "dataGridViewTextBoxColumn68";
     this.dataGridViewTextBoxColumn68.ReadOnly = true;
     this.dataGridViewTextBoxColumn68.Width = 81;
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 16F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(958, 742);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.bar1);
     this.Controls.Add(this.ribbonControl1);
     this.Controls.Add(this.ribbonBar1);
     this.Font = new System.Drawing.Font("Microsoft JhengHei", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.Name = "MainForm";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
     this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.MainForm_FormClosed);
     this.Load += new System.EventHandler(this.Form1_Load);
     this.ribbonControl1.ResumeLayout(false);
     this.ribbonControl1.PerformLayout();
     this.ribbonPanel1.ResumeLayout(false);
     this.ribbonPanel2.ResumeLayout(false);
     this.ribbonPanel3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).EndInit();
     this.bar1.ResumeLayout(false);
     this.bar1.PerformLayout();
     this.panel1.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.panel4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tabContent)).EndInit();
     this.tabContent.ResumeLayout(false);
     this.superTabControlPanel1.ResumeLayout(false);
     this.pnlWhoList.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdTeacherEvent)).EndInit();
     this.panel5.ResumeLayout(false);
     this.panel5.PerformLayout();
     this.pnlWhoLPView.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tabTeacherLPView)).EndInit();
     this.tabTeacherLPView.ResumeLayout(false);
     this.superTabControlPanel2.ResumeLayout(false);
     this.pnlWhomLPView.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tabClassLPView)).EndInit();
     this.tabClassLPView.ResumeLayout(false);
     this.pnlWhomList.ResumeLayout(false);
     this.panel10.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdClassEvent)).EndInit();
     this.panel3.ResumeLayout(false);
     this.panel3.PerformLayout();
     this.superTabControlPanel3.ResumeLayout(false);
     this.pnlWhereList.ResumeLayout(false);
     this.panel9.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdClassroomEvent)).EndInit();
     this.panel6.ResumeLayout(false);
     this.panel6.PerformLayout();
     this.pnlWhereLPView.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tabClassroomLPView)).EndInit();
     this.tabClassroomLPView.ResumeLayout(false);
     this.LeftNavigationPanel.ResumeLayout(false);
     this.panel7.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Пример #27
0
        private void btnOK_Click(object sender, EventArgs e)
        {
            //没有当前图层直接退出
            if (m_pCurrentLayer == null)
            {
                return;
            }

            string whereClause = this.richTextExpression.Text.Trim();

            if (CheckExpression(whereClause, false) == false)
            {
                return;
            }

            //获取当前图层的 featureclass
            IFeatureClass pFeatClass = m_pCurrentLayer.FeatureClass;

            //构造查询过滤器
            IQueryFilter pQueryFilter = null;

            if (m_pGeometryFilter == null)
            {
                pQueryFilter = new QueryFilterClass();
            }
            else
            {
                pQueryFilter = new SpatialFilterClass();
                ISpatialFilter pSpatialFilter = pQueryFilter as ISpatialFilter;
                pSpatialFilter.Geometry   = m_pGeometryFilter;
                pSpatialFilter.SpatialRel = esriSpatialRelEnum.esriSpatialRelIntersects;
            }


            //赋值查许条件
            pQueryFilter.WhereClause = whereClause;

            //赋值查询方式,由查询方式的combo获得
            esriSelectionResultEnum pSelectionResult;

            switch (this.cmbselmode.SelectedItem.ToString())
            {
            case ("创建一个新的选择结果"):
                pSelectionResult = esriSelectionResultEnum.esriSelectionResultNew;
                break;

            case ("添加到当前选择集中"):
                pSelectionResult = esriSelectionResultEnum.esriSelectionResultAdd;
                break;

            case ("从当前选择结果中移除"):
                pSelectionResult = esriSelectionResultEnum.esriSelectionResultSubtract;
                break;

            case ("从当前选择结果中选择"):
                pSelectionResult = esriSelectionResultEnum.esriSelectionResultAnd;
                break;

            default:
                return;
            }

            if (m_Show)
            {
                //进行查询,并将结果显示出来
                // frmQuery frm = new frmQuery(m_MapControlDefault);
                //frm.FillData(m_pCurrentLayer, pQueryFilter, pSelectionResult);
                //frm.TopMost = true;//防止查询结果最小化     张琪   20110709
                //frm.Show();
                _QueryBar.m_pMapControl = m_MapControlDefault;
                _QueryBar.EmergeQueryData(m_MapControlDefault.Map, m_pCurrentLayer, pQueryFilter, pSelectionResult);
                try
                {
                    DevComponents.DotNetBar.Bar pBar = _QueryBar.Parent.Parent as DevComponents.DotNetBar.Bar;
                    if (pBar != null)
                    {
                        pBar.AutoHide = false;
                        //pBar.SelectedDockTab = 1;
                        int tmpindex = pBar.Items.IndexOf("dockItemDataCheck");
                        pBar.SelectedDockTab = tmpindex;
                    }
                }
                catch
                { }
            }
            else
            {
                IFeatureSelection pFeatureSelection = m_pCurrentLayer as IFeatureSelection;
                pFeatureSelection.SelectFeatures(pQueryFilter, pSelectionResult, false);
                m_MapControlDefault.ActiveView.PartialRefresh(esriViewDrawPhase.esriViewGeoSelection, null, m_MapControlDefault.ActiveView.FullExtent);
            }

            this.DialogResult = DialogResult.OK;
            this.Close();
        }
Пример #28
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(TabsMainForm));
     this.barMainToolbar = new DevComponents.DotNetBar.Bar();
     this.btnSystem = new DevComponents.DotNetBar.ButtonItem();
     this.btnReLogin = new DevComponents.DotNetBar.ButtonItem();
     this.btnModifPWD = new DevComponents.DotNetBar.ButtonItem();
     this.btnQuit = new DevComponents.DotNetBar.ButtonItem();
     this.btnWindows = new DevComponents.DotNetBar.ButtonItem();
     this.btnMainTabs = new DevComponents.DotNetBar.ButtonItem();
     this.btnRemoveSelectedTab = new DevComponents.DotNetBar.ButtonItem();
     this.btnRemoveAllTab = new DevComponents.DotNetBar.ButtonItem();
     this.btnTool = new DevComponents.DotNetBar.ButtonItem();
     this.btnCalculator = new DevComponents.DotNetBar.ButtonItem();
     this.btnNoteBook = new DevComponents.DotNetBar.ButtonItem();
     this.btnOthers = new DevComponents.DotNetBar.ButtonItem();
     this.btnLanguages = new DevComponents.DotNetBar.ButtonItem();
     this.btnLangCN = new DevComponents.DotNetBar.ButtonItem();
     this.btnLangTW = new DevComponents.DotNetBar.ButtonItem();
     this.btnLangUS = new DevComponents.DotNetBar.ButtonItem();
     this.btnSelectTheme = new DevComponents.DotNetBar.ButtonItem();
     this.btnDefault = new DevComponents.DotNetBar.ButtonItem();
     this.btnWindowsXP = new DevComponents.DotNetBar.ButtonItem();
     this.btnWindows7Blue = new DevComponents.DotNetBar.ButtonItem();
     this.btnOffice2007Blue = new DevComponents.DotNetBar.ButtonItem();
     this.btnOffice2007Silver = new DevComponents.DotNetBar.ButtonItem();
     this.btnOffice2007Black = new DevComponents.DotNetBar.ButtonItem();
     this.btnOffice2007Vista = new DevComponents.DotNetBar.ButtonItem();
     this.btnOffice2010Silver = new DevComponents.DotNetBar.ButtonItem();
     this.btnHelps = new DevComponents.DotNetBar.ButtonItem();
     this.btnAbout = new DevComponents.DotNetBar.ButtonItem();
     this.barSecondToolbar = new DevComponents.DotNetBar.Bar();
     this.btnToMain = new DevComponents.DotNetBar.ButtonItem();
     this.btnReLoadMenu = new DevComponents.DotNetBar.ButtonItem();
     this.btnQuitSystem = new DevComponents.DotNetBar.ButtonItem();
     this.barBottom = new DevComponents.DotNetBar.Bar();
     this.lblBottomInfo = new DevComponents.DotNetBar.LabelX();
     this.lblCompany = new DevComponents.DotNetBar.LabelItem();
     this.lblDept = new DevComponents.DotNetBar.LabelItem();
     this.lblUser = new DevComponents.DotNetBar.LabelItem();
     this.btnHiddle = new DevComponents.DotNetBar.ButtonItem();
     this.dotNetBarManager = new DevComponents.DotNetBar.DotNetBarManager(this.components);
     this.dockSite4 = new DevComponents.DotNetBar.DockSite();
     this.dockSiteLeft = new DevComponents.DotNetBar.DockSite();
     this.barLeft = new DevComponents.DotNetBar.Bar();
     this.panelDockContainer1 = new DevComponents.DotNetBar.PanelDockContainer();
     this.tvMain = new System.Windows.Forms.TreeView();
     this.imageList = new System.Windows.Forms.ImageList(this.components);
     this.navigationBar = new DevComponents.DotNetBar.NavigationBar();
     this.dockContainerItem1 = new DevComponents.DotNetBar.DockContainerItem();
     this.dockSiteRight = new DevComponents.DotNetBar.DockSite();
     this.barRight = new DevComponents.DotNetBar.Bar();
     this.panelDockContainer2 = new DevComponents.DotNetBar.PanelDockContainer();
     this.pnlMessage = new System.Windows.Forms.Panel();
     this.dockContainerItem2 = new DevComponents.DotNetBar.DockContainerItem();
     this.barRightN = new DevComponents.DotNetBar.Bar();
     this.panelDockContainer3 = new DevComponents.DotNetBar.PanelDockContainer();
     this.txtNoteBook = new System.Windows.Forms.RichTextBox();
     this.barNoteBook = new DevComponents.DotNetBar.Bar();
     this.btnSaveNoteBook = new DevComponents.DotNetBar.ButtonItem();
     this.dockContainerItem3 = new DevComponents.DotNetBar.DockContainerItem();
     this.dockSite8 = new DevComponents.DotNetBar.DockSite();
     this.dockSite5 = new DevComponents.DotNetBar.DockSite();
     this.dockSiteRightN = new DevComponents.DotNetBar.DockSite();
     this.dockSite7 = new DevComponents.DotNetBar.DockSite();
     this.dockSite3 = new DevComponents.DotNetBar.DockSite();
     this.tabControlMain = new DevComponents.DotNetBar.TabControl();
     this.tabItemMainPanel = new DevComponents.DotNetBar.TabControlPanel();
     this.panelMain = new DevComponents.DotNetBar.PanelEx();
     this.webBrowser = new System.Windows.Forms.WebBrowser();
     this.tabItemMain = new DevComponents.DotNetBar.TabItem(this.components);
     this.contextMenuStripTab = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.tsMenuItemCloseThis = new System.Windows.Forms.ToolStripMenuItem();
     this.tsMenuItemCloseOther = new System.Windows.Forms.ToolStripMenuItem();
     this.tsMenuItemCloseAll = new System.Windows.Forms.ToolStripMenuItem();
     this.contextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.tsMenuItemShowFull = new System.Windows.Forms.ToolStripMenuItem();
     this.tsMenuItemReLogOn = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.tsMenuItemExit = new System.Windows.Forms.ToolStripMenuItem();
     this.styleManager = new DevComponents.DotNetBar.StyleManager(this.components);
     this.tmrTask = new System.Windows.Forms.Timer(this.components);
     this.tmrLock = new System.Windows.Forms.Timer(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.barMainToolbar)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.barSecondToolbar)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.barBottom)).BeginInit();
     this.barBottom.SuspendLayout();
     this.dockSiteLeft.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.barLeft)).BeginInit();
     this.barLeft.SuspendLayout();
     this.panelDockContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.navigationBar)).BeginInit();
     this.dockSiteRight.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.barRight)).BeginInit();
     this.barRight.SuspendLayout();
     this.panelDockContainer2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.barRightN)).BeginInit();
     this.barRightN.SuspendLayout();
     this.panelDockContainer3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.barNoteBook)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabControlMain)).BeginInit();
     this.tabControlMain.SuspendLayout();
     this.tabItemMainPanel.SuspendLayout();
     this.panelMain.SuspendLayout();
     this.contextMenuStripTab.SuspendLayout();
     this.contextMenuStrip.SuspendLayout();
     this.SuspendLayout();
     //
     // barMainToolbar
     //
     this.barMainToolbar.AccessibleDescription = "DotNetBar Bar (barMainToolbar)";
     this.barMainToolbar.AccessibleName = "DotNetBar Bar";
     this.barMainToolbar.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuBar;
     this.barMainToolbar.BarType = DevComponents.DotNetBar.eBarType.MenuBar;
     this.barMainToolbar.CloseSingleTab = true;
     this.barMainToolbar.Dock = System.Windows.Forms.DockStyle.Top;
     this.barMainToolbar.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnSystem,
     this.btnWindows,
     this.btnTool,
     this.btnOthers,
     this.btnHelps});
     this.barMainToolbar.Location = new System.Drawing.Point(0, 0);
     this.barMainToolbar.MenuBar = true;
     this.barMainToolbar.Name = "barMainToolbar";
     this.barMainToolbar.Size = new System.Drawing.Size(935, 26);
     this.barMainToolbar.Stretch = true;
     this.barMainToolbar.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.barMainToolbar.TabIndex = 41;
     this.barMainToolbar.TabStop = false;
     this.barMainToolbar.Text = "bar2";
     //
     // btnSystem
     //
     this.btnSystem.Name = "btnSystem";
     this.btnSystem.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnReLogin,
     this.btnModifPWD,
     this.btnQuit});
     this.btnSystem.Text = "系统(&S)";
     //
     // btnReLogin
     //
     this.btnReLogin.Name = "btnReLogin";
     this.btnReLogin.Text = "重新登录";
     this.btnReLogin.Click += new System.EventHandler(this.tsMenuItemReLogOn_Click);
     //
     // btnModifPWD
     //
     this.btnModifPWD.Name = "btnModifPWD";
     this.btnModifPWD.Text = "修改密码";
     this.btnModifPWD.Click += new System.EventHandler(this.btnModifPWD_Click);
     //
     // btnQuit
     //
     this.btnQuit.Name = "btnQuit";
     this.btnQuit.Text = "退出系统";
     this.btnQuit.Click += new System.EventHandler(this.tsMenuItemExit_Click);
     //
     // btnWindows
     //
     this.btnWindows.Name = "btnWindows";
     this.btnWindows.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnMainTabs,
     this.btnRemoveSelectedTab,
     this.btnRemoveAllTab});
     this.btnWindows.Text = "窗口(&W)";
     //
     // btnMainTabs
     //
     this.btnMainTabs.Name = "btnMainTabs";
     this.btnMainTabs.Text = "主控窗口";
     this.btnMainTabs.Click += new System.EventHandler(this.btnToMain_Click);
     //
     // btnRemoveSelectedTab
     //
     this.btnRemoveSelectedTab.Name = "btnRemoveSelectedTab";
     this.btnRemoveSelectedTab.Text = "关闭当前窗口";
     this.btnRemoveSelectedTab.Click += new System.EventHandler(this.tsMenuItemCloseThis_Click);
     //
     // btnRemoveAllTab
     //
     this.btnRemoveAllTab.Name = "btnRemoveAllTab";
     this.btnRemoveAllTab.Text = "关闭所有窗口";
     this.btnRemoveAllTab.Click += new System.EventHandler(this.tsMenuItemCloseAll_Click);
     //
     // btnTool
     //
     this.btnTool.Name = "btnTool";
     this.btnTool.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnCalculator,
     this.btnNoteBook});
     this.btnTool.Text = "工具(&T)";
     //
     // btnCalculator
     //
     this.btnCalculator.Name = "btnCalculator";
     this.btnCalculator.Text = "计算器";
     this.btnCalculator.Click += new System.EventHandler(this.btnCalculator_Click);
     //
     // btnNoteBook
     //
     this.btnNoteBook.Name = "btnNoteBook";
     this.btnNoteBook.Text = "记事本";
     this.btnNoteBook.Click += new System.EventHandler(this.btnNoteBook_Click);
     //
     // btnOthers
     //
     this.btnOthers.Name = "btnOthers";
     this.btnOthers.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnLanguages,
     this.btnSelectTheme});
     this.btnOthers.Text = "其它(&O)";
     //
     // btnLanguages
     //
     this.btnLanguages.Name = "btnLanguages";
     this.btnLanguages.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnLangCN,
     this.btnLangTW,
     this.btnLangUS});
     this.btnLanguages.Text = "语言选择";
     //
     // btnLangCN
     //
     this.btnLangCN.Name = "btnLangCN";
     this.btnLangCN.Tag = "zh-CN";
     this.btnLangCN.Text = "中文(简体)";
     this.btnLangCN.Click += new System.EventHandler(this.btSelectLang_Click);
     //
     // btnLangTW
     //
     this.btnLangTW.Name = "btnLangTW";
     this.btnLangTW.Tag = "zh-TW";
     this.btnLangTW.Text = "中文(繁体)";
     this.btnLangTW.Click += new System.EventHandler(this.btSelectLang_Click);
     //
     // btnLangUS
     //
     this.btnLangUS.Name = "btnLangUS";
     this.btnLangUS.Tag = "en-US";
     this.btnLangUS.Text = "英文";
     this.btnLangUS.Click += new System.EventHandler(this.btSelectLang_Click);
     //
     // btnSelectTheme
     //
     this.btnSelectTheme.Name = "btnSelectTheme";
     this.btnSelectTheme.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnDefault,
     this.btnWindowsXP,
     this.btnWindows7Blue,
     this.btnOffice2007Blue,
     this.btnOffice2007Silver,
     this.btnOffice2007Black,
     this.btnOffice2007Vista,
     this.btnOffice2010Silver});
     this.btnSelectTheme.Text = "风格选择";
     //
     // btnDefault
     //
     this.btnDefault.Name = "btnDefault";
     this.btnDefault.Text = "Default";
     this.btnDefault.MouseMove += new System.Windows.Forms.MouseEventHandler(this.btnStyle_MouseMove);
     //
     // btnWindowsXP
     //
     this.btnWindowsXP.Name = "btnWindowsXP";
     this.btnWindowsXP.Text = "WindowsXP";
     this.btnWindowsXP.MouseMove += new System.Windows.Forms.MouseEventHandler(this.btnStyle_MouseMove);
     //
     // btnWindows7Blue
     //
     this.btnWindows7Blue.Name = "btnWindows7Blue";
     this.btnWindows7Blue.Text = "Windows7Blue";
     this.btnWindows7Blue.MouseMove += new System.Windows.Forms.MouseEventHandler(this.btnStyle_MouseMove);
     //
     // btnOffice2007Blue
     //
     this.btnOffice2007Blue.Name = "btnOffice2007Blue";
     this.btnOffice2007Blue.Text = "Office2007Blue";
     this.btnOffice2007Blue.MouseMove += new System.Windows.Forms.MouseEventHandler(this.btnStyle_MouseMove);
     //
     // btnOffice2007Silver
     //
     this.btnOffice2007Silver.Name = "btnOffice2007Silver";
     this.btnOffice2007Silver.Text = "Office2007Silver";
     this.btnOffice2007Silver.MouseMove += new System.Windows.Forms.MouseEventHandler(this.btnStyle_MouseMove);
     //
     // btnOffice2007Black
     //
     this.btnOffice2007Black.Name = "btnOffice2007Black";
     this.btnOffice2007Black.Text = "Office2007Black";
     this.btnOffice2007Black.MouseMove += new System.Windows.Forms.MouseEventHandler(this.btnStyle_MouseMove);
     //
     // btnOffice2007Vista
     //
     this.btnOffice2007Vista.Name = "btnOffice2007Vista";
     this.btnOffice2007Vista.Text = "Office2007Vista";
     this.btnOffice2007Vista.MouseMove += new System.Windows.Forms.MouseEventHandler(this.btnStyle_MouseMove);
     //
     // btnOffice2010Silver
     //
     this.btnOffice2010Silver.Name = "btnOffice2010Silver";
     this.btnOffice2010Silver.Text = "Office2010Silver";
     this.btnOffice2010Silver.MouseMove += new System.Windows.Forms.MouseEventHandler(this.btnStyle_MouseMove);
     //
     // btnHelps
     //
     this.btnHelps.Name = "btnHelps";
     this.btnHelps.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnAbout});
     this.btnHelps.Text = "帮助(&H)";
     //
     // btnAbout
     //
     this.btnAbout.Name = "btnAbout";
     this.btnAbout.Text = "关于";
     this.btnAbout.Click += new System.EventHandler(this.btnAbout_Click);
     //
     // barSecondToolbar
     //
     this.barSecondToolbar.AccessibleDescription = "DotNetBar Bar (barSecondToolbar)";
     this.barSecondToolbar.AccessibleName = "DotNetBar Bar";
     this.barSecondToolbar.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuBar;
     this.barSecondToolbar.Dock = System.Windows.Forms.DockStyle.Top;
     this.barSecondToolbar.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnToMain,
     this.btnReLoadMenu,
     this.btnQuitSystem});
     this.barSecondToolbar.Location = new System.Drawing.Point(0, 26);
     this.barSecondToolbar.MenuBar = true;
     this.barSecondToolbar.Name = "barSecondToolbar";
     this.barSecondToolbar.Size = new System.Drawing.Size(935, 40);
     this.barSecondToolbar.Stretch = true;
     this.barSecondToolbar.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.barSecondToolbar.TabIndex = 44;
     this.barSecondToolbar.TabStop = false;
     this.barSecondToolbar.Text = "bar3";
     //
     // btnToMain
     //
     this.btnToMain.Image = ((System.Drawing.Image)(resources.GetObject("btnToMain.Image")));
     this.btnToMain.Name = "btnToMain";
     this.btnToMain.Text = "主控窗口";
     this.btnToMain.Tooltip = "主控窗口";
     this.btnToMain.Click += new System.EventHandler(this.btnToMain_Click);
     //
     // btnReLoadMenu
     //
     this.btnReLoadMenu.Image = ((System.Drawing.Image)(resources.GetObject("btnReLoadMenu.Image")));
     this.btnReLoadMenu.Name = "btnReLoadMenu";
     this.btnReLoadMenu.Text = "重置功能菜单";
     this.btnReLoadMenu.Tooltip = "重置功能菜单";
     this.btnReLoadMenu.Click += new System.EventHandler(this.btnReLoadMenu_Click);
     //
     // btnQuitSystem
     //
     this.btnQuitSystem.Image = ((System.Drawing.Image)(resources.GetObject("btnQuitSystem.Image")));
     this.btnQuitSystem.Name = "btnQuitSystem";
     this.btnQuitSystem.Text = "退出系统";
     this.btnQuitSystem.Tooltip = "退出系统";
     this.btnQuitSystem.Click += new System.EventHandler(this.tsMenuItemExit_Click);
     //
     // barBottom
     //
     this.barBottom.BarType = DevComponents.DotNetBar.eBarType.StatusBar;
     this.barBottom.Controls.Add(this.lblBottomInfo);
     this.barBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barBottom.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.lblCompany,
     this.lblDept,
     this.lblUser,
     this.btnHiddle});
     this.barBottom.Location = new System.Drawing.Point(0, 552);
     this.barBottom.Name = "barBottom";
     this.barBottom.Size = new System.Drawing.Size(935, 25);
     this.barBottom.Stretch = true;
     this.barBottom.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.barBottom.TabIndex = 57;
     this.barBottom.TabStop = false;
     this.barBottom.Text = "bar1";
     //
     // lblBottomInfo
     //
     this.lblBottomInfo.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.lblBottomInfo.BackgroundStyle.Class = "";
     this.lblBottomInfo.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblBottomInfo.Location = new System.Drawing.Point(10, 3);
     this.lblBottomInfo.Name = "lblBottomInfo";
     this.lblBottomInfo.Size = new System.Drawing.Size(302, 25);
     this.lblBottomInfo.TabIndex = 8;
     this.lblBottomInfo.Text = "欢迎使用C#.NET通用权限管理系统组件";
     //
     // lblCompany
     //
     this.lblCompany.Image = ((System.Drawing.Image)(resources.GetObject("lblCompany.Image")));
     this.lblCompany.ItemAlignment = DevComponents.DotNetBar.eItemAlignment.Far;
     this.lblCompany.Name = "lblCompany";
     //
     // lblDept
     //
     this.lblDept.Image = ((System.Drawing.Image)(resources.GetObject("lblDept.Image")));
     this.lblDept.ItemAlignment = DevComponents.DotNetBar.eItemAlignment.Far;
     this.lblDept.Name = "lblDept";
     //
     // lblUser
     //
     this.lblUser.Image = ((System.Drawing.Image)(resources.GetObject("lblUser.Image")));
     this.lblUser.ItemAlignment = DevComponents.DotNetBar.eItemAlignment.Far;
     this.lblUser.Name = "lblUser";
     //
     // btnHiddle
     //
     this.btnHiddle.ItemAlignment = DevComponents.DotNetBar.eItemAlignment.Far;
     this.btnHiddle.Name = "btnHiddle";
     //
     // dotNetBarManager
     //
     this.dotNetBarManager.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.F1);
     this.dotNetBarManager.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlC);
     this.dotNetBarManager.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlA);
     this.dotNetBarManager.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlV);
     this.dotNetBarManager.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlX);
     this.dotNetBarManager.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlZ);
     this.dotNetBarManager.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlY);
     this.dotNetBarManager.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Del);
     this.dotNetBarManager.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Ins);
     this.dotNetBarManager.BottomDockSite = this.dockSite4;
     this.dotNetBarManager.EnableFullSizeDock = false;
     this.dotNetBarManager.LeftDockSite = this.dockSiteLeft;
     this.dotNetBarManager.ParentForm = this;
     this.dotNetBarManager.RightDockSite = this.dockSiteRight;
     this.dotNetBarManager.Style = DevComponents.DotNetBar.eDotNetBarStyle.Windows7;
     this.dotNetBarManager.ToolbarBottomDockSite = this.dockSite8;
     this.dotNetBarManager.ToolbarLeftDockSite = this.dockSite5;
     this.dotNetBarManager.ToolbarRightDockSite = this.dockSiteRightN;
     this.dotNetBarManager.ToolbarTopDockSite = this.dockSite7;
     this.dotNetBarManager.TopDockSite = this.dockSite3;
     //
     // dockSite4
     //
     this.dockSite4.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite4.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.dockSite4.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite4.Location = new System.Drawing.Point(0, 552);
     this.dockSite4.Name = "dockSite4";
     this.dockSite4.Size = new System.Drawing.Size(935, 0);
     this.dockSite4.TabIndex = 62;
     this.dockSite4.TabStop = false;
     //
     // dockSiteLeft
     //
     this.dockSiteLeft.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSiteLeft.Controls.Add(this.barLeft);
     this.dockSiteLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.dockSiteLeft.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer(new DevComponents.DotNetBar.DocumentBaseContainer[] {
     ((DevComponents.DotNetBar.DocumentBaseContainer)(new DevComponents.DotNetBar.DocumentBarContainer(this.barLeft, 255, 486)))}, DevComponents.DotNetBar.eOrientation.Horizontal);
     this.dockSiteLeft.Location = new System.Drawing.Point(0, 66);
     this.dockSiteLeft.Name = "dockSiteLeft";
     this.dockSiteLeft.Size = new System.Drawing.Size(258, 486);
     this.dockSiteLeft.TabIndex = 59;
     this.dockSiteLeft.TabStop = false;
     //
     // barLeft
     //
     this.barLeft.AccessibleDescription = "DotNetBar Bar (barLeft)";
     this.barLeft.AccessibleName = "DotNetBar Bar";
     this.barLeft.AccessibleRole = System.Windows.Forms.AccessibleRole.ToolBar;
     this.barLeft.AutoSyncBarCaption = true;
     this.barLeft.CanDockBottom = false;
     this.barLeft.CanDockTop = false;
     this.barLeft.CloseSingleTab = true;
     this.barLeft.Controls.Add(this.panelDockContainer1);
     this.barLeft.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.barLeft.GrabHandleStyle = DevComponents.DotNetBar.eGrabHandleStyle.Caption;
     this.barLeft.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.dockContainerItem1});
     this.barLeft.LayoutType = DevComponents.DotNetBar.eLayoutType.DockContainer;
     this.barLeft.Location = new System.Drawing.Point(0, 0);
     this.barLeft.Name = "barLeft";
     this.barLeft.Size = new System.Drawing.Size(255, 486);
     this.barLeft.Stretch = true;
     this.barLeft.Style = DevComponents.DotNetBar.eDotNetBarStyle.Windows7;
     this.barLeft.TabIndex = 0;
     this.barLeft.TabStop = false;
     this.barLeft.Text = "功能导航菜单";
     //
     // panelDockContainer1
     //
     this.panelDockContainer1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Windows7;
     this.panelDockContainer1.Controls.Add(this.tvMain);
     this.panelDockContainer1.Controls.Add(this.navigationBar);
     this.panelDockContainer1.Location = new System.Drawing.Point(3, 23);
     this.panelDockContainer1.Name = "panelDockContainer1";
     this.panelDockContainer1.Size = new System.Drawing.Size(249, 460);
     this.panelDockContainer1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelDockContainer1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.panelDockContainer1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.panelDockContainer1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.panelDockContainer1.Style.GradientAngle = 90;
     this.panelDockContainer1.TabIndex = 0;
     //
     // tvMain
     //
     this.tvMain.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tvMain.Font = new System.Drawing.Font("SimSun", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tvMain.ImageIndex = 0;
     this.tvMain.ImageList = this.imageList;
     this.tvMain.Location = new System.Drawing.Point(0, 0);
     this.tvMain.Name = "tvMain";
     this.tvMain.SelectedImageIndex = 0;
     this.tvMain.Size = new System.Drawing.Size(249, 420);
     this.tvMain.TabIndex = 13;
     this.tvMain.AfterExpand += new System.Windows.Forms.TreeViewEventHandler(this.tvMain_AfterExpand);
     this.tvMain.MouseClick += new System.Windows.Forms.MouseEventHandler(this.tvMain_MouseClick);
     this.tvMain.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.tvMain_MouseDoubleClick);
     //
     // imageList
     //
     this.imageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList.ImageStream")));
     this.imageList.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList.Images.SetKeyName(0, "books-stack.png");
     this.imageList.Images.SetKeyName(1, "books.png");
     this.imageList.Images.SetKeyName(2, "book-small.png");
     this.imageList.Images.SetKeyName(3, "book-open.png");
     //
     // navigationBar
     //
     this.navigationBar.BackgroundStyle.BackColor1.Color = System.Drawing.SystemColors.Control;
     this.navigationBar.BackgroundStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.navigationBar.BackgroundStyle.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.navigationBar.ConfigureAddRemoveVisible = false;
     this.navigationBar.ConfigureItemVisible = false;
     this.navigationBar.Cursor = System.Windows.Forms.Cursors.Arrow;
     this.navigationBar.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.navigationBar.Font = new System.Drawing.Font("SimSun", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.navigationBar.ItemPaddingBottom = 2;
     this.navigationBar.ItemPaddingTop = 2;
     this.navigationBar.Location = new System.Drawing.Point(0, 420);
     this.navigationBar.Name = "navigationBar";
     this.navigationBar.ShowShortcutKeysInToolTips = true;
     this.navigationBar.Size = new System.Drawing.Size(249, 40);
     this.navigationBar.SplitterVisible = true;
     this.navigationBar.SummaryLineVisible = false;
     this.navigationBar.TabIndex = 12;
     this.navigationBar.Text = "navigationBar1";
     //
     // dockContainerItem1
     //
     this.dockContainerItem1.Control = this.panelDockContainer1;
     this.dockContainerItem1.Name = "dockContainerItem1";
     this.dockContainerItem1.Text = "功能导航菜单";
     //
     // dockSiteRight
     //
     this.dockSiteRight.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSiteRight.Controls.Add(this.barRight);
     this.dockSiteRight.Controls.Add(this.barRightN);
     this.dockSiteRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.dockSiteRight.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer(new DevComponents.DotNetBar.DocumentBaseContainer[] {
     ((DevComponents.DotNetBar.DocumentBaseContainer)(new DevComponents.DotNetBar.DocumentBarContainer(this.barRight, 255, 486))),
     ((DevComponents.DotNetBar.DocumentBaseContainer)(new DevComponents.DotNetBar.DocumentBarContainer(this.barRightN, 226, 486)))}, DevComponents.DotNetBar.eOrientation.Horizontal);
     this.dockSiteRight.Location = new System.Drawing.Point(448, 66);
     this.dockSiteRight.Name = "dockSiteRight";
     this.dockSiteRight.Size = new System.Drawing.Size(487, 486);
     this.dockSiteRight.TabIndex = 60;
     this.dockSiteRight.TabStop = false;
     this.dockSiteRight.Text = "即时通信";
     //
     // barRight
     //
     this.barRight.AccessibleDescription = "DotNetBar Bar (barRight)";
     this.barRight.AccessibleName = "DotNetBar Bar";
     this.barRight.AccessibleRole = System.Windows.Forms.AccessibleRole.ToolBar;
     this.barRight.AutoSyncBarCaption = true;
     this.barRight.CanDockBottom = false;
     this.barRight.CanDockTop = false;
     this.barRight.CloseSingleTab = true;
     this.barRight.Controls.Add(this.panelDockContainer2);
     this.barRight.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.barRight.GrabHandleStyle = DevComponents.DotNetBar.eGrabHandleStyle.Caption;
     this.barRight.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.dockContainerItem2});
     this.barRight.LayoutType = DevComponents.DotNetBar.eLayoutType.DockContainer;
     this.barRight.Location = new System.Drawing.Point(3, 0);
     this.barRight.Name = "barRight";
     this.barRight.Size = new System.Drawing.Size(255, 486);
     this.barRight.Stretch = true;
     this.barRight.Style = DevComponents.DotNetBar.eDotNetBarStyle.Windows7;
     this.barRight.TabIndex = 1;
     this.barRight.TabStop = false;
     this.barRight.Text = "即时通信";
     //
     // panelDockContainer2
     //
     this.panelDockContainer2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Windows7;
     this.panelDockContainer2.Controls.Add(this.pnlMessage);
     this.panelDockContainer2.Location = new System.Drawing.Point(3, 23);
     this.panelDockContainer2.Name = "panelDockContainer2";
     this.panelDockContainer2.Size = new System.Drawing.Size(249, 460);
     this.panelDockContainer2.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelDockContainer2.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.panelDockContainer2.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.panelDockContainer2.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.panelDockContainer2.Style.GradientAngle = 90;
     this.panelDockContainer2.TabIndex = 0;
     //
     // pnlMessage
     //
     this.pnlMessage.BackColor = System.Drawing.Color.Transparent;
     this.pnlMessage.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlMessage.Location = new System.Drawing.Point(0, 0);
     this.pnlMessage.Name = "pnlMessage";
     this.pnlMessage.Size = new System.Drawing.Size(249, 460);
     this.pnlMessage.TabIndex = 9;
     //
     // dockContainerItem2
     //
     this.dockContainerItem2.Control = this.panelDockContainer2;
     this.dockContainerItem2.Name = "dockContainerItem2";
     this.dockContainerItem2.Text = "即时通信";
     //
     // barRightN
     //
     this.barRightN.AccessibleDescription = "DotNetBar Bar (barRightN)";
     this.barRightN.AccessibleName = "DotNetBar Bar";
     this.barRightN.AccessibleRole = System.Windows.Forms.AccessibleRole.ToolBar;
     this.barRightN.AutoSyncBarCaption = true;
     this.barRightN.CanDockBottom = false;
     this.barRightN.CanDockTop = false;
     this.barRightN.CloseSingleTab = true;
     this.barRightN.Controls.Add(this.panelDockContainer3);
     this.barRightN.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.barRightN.GrabHandleStyle = DevComponents.DotNetBar.eGrabHandleStyle.Caption;
     this.barRightN.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.dockContainerItem3});
     this.barRightN.LayoutType = DevComponents.DotNetBar.eLayoutType.DockContainer;
     this.barRightN.Location = new System.Drawing.Point(261, 0);
     this.barRightN.Name = "barRightN";
     this.barRightN.Size = new System.Drawing.Size(226, 486);
     this.barRightN.Stretch = true;
     this.barRightN.Style = DevComponents.DotNetBar.eDotNetBarStyle.Windows7;
     this.barRightN.TabIndex = 2;
     this.barRightN.TabStop = false;
     this.barRightN.Text = "备忘录";
     //
     // panelDockContainer3
     //
     this.panelDockContainer3.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Windows7;
     this.panelDockContainer3.Controls.Add(this.txtNoteBook);
     this.panelDockContainer3.Controls.Add(this.barNoteBook);
     this.panelDockContainer3.Location = new System.Drawing.Point(3, 23);
     this.panelDockContainer3.Name = "panelDockContainer3";
     this.panelDockContainer3.Size = new System.Drawing.Size(220, 460);
     this.panelDockContainer3.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelDockContainer3.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.panelDockContainer3.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.panelDockContainer3.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.panelDockContainer3.Style.GradientAngle = 90;
     this.panelDockContainer3.TabIndex = 0;
     this.panelDockContainer3.Text = "备忘录";
     //
     // txtNoteBook
     //
     this.txtNoteBook.Dock = System.Windows.Forms.DockStyle.Fill;
     this.txtNoteBook.Location = new System.Drawing.Point(0, 27);
     this.txtNoteBook.Name = "txtNoteBook";
     this.txtNoteBook.Size = new System.Drawing.Size(220, 433);
     this.txtNoteBook.TabIndex = 11;
     this.txtNoteBook.Text = "";
     //
     // barNoteBook
     //
     this.barNoteBook.Dock = System.Windows.Forms.DockStyle.Top;
     this.barNoteBook.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnSaveNoteBook});
     this.barNoteBook.Location = new System.Drawing.Point(0, 0);
     this.barNoteBook.Name = "barNoteBook";
     this.barNoteBook.Size = new System.Drawing.Size(220, 27);
     this.barNoteBook.Stretch = true;
     this.barNoteBook.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.barNoteBook.TabIndex = 10;
     this.barNoteBook.TabStop = false;
     this.barNoteBook.Text = "bar1";
     //
     // btnSaveNoteBook
     //
     this.btnSaveNoteBook.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnSaveNoteBook.Image = ((System.Drawing.Image)(resources.GetObject("btnSaveNoteBook.Image")));
     this.btnSaveNoteBook.Name = "btnSaveNoteBook";
     this.btnSaveNoteBook.Text = "保存";
     //
     // dockContainerItem3
     //
     this.dockContainerItem3.Control = this.panelDockContainer3;
     this.dockContainerItem3.Name = "dockContainerItem3";
     this.dockContainerItem3.Text = "备忘录";
     //
     // dockSite8
     //
     this.dockSite8.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite8.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.dockSite8.Location = new System.Drawing.Point(0, 552);
     this.dockSite8.Name = "dockSite8";
     this.dockSite8.Size = new System.Drawing.Size(935, 0);
     this.dockSite8.TabIndex = 66;
     this.dockSite8.TabStop = false;
     //
     // dockSite5
     //
     this.dockSite5.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite5.Dock = System.Windows.Forms.DockStyle.Left;
     this.dockSite5.Location = new System.Drawing.Point(0, 0);
     this.dockSite5.Name = "dockSite5";
     this.dockSite5.Size = new System.Drawing.Size(0, 552);
     this.dockSite5.TabIndex = 63;
     this.dockSite5.TabStop = false;
     //
     // dockSiteRightN
     //
     this.dockSiteRightN.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSiteRightN.Dock = System.Windows.Forms.DockStyle.Right;
     this.dockSiteRightN.Location = new System.Drawing.Point(935, 0);
     this.dockSiteRightN.Name = "dockSiteRightN";
     this.dockSiteRightN.Size = new System.Drawing.Size(0, 552);
     this.dockSiteRightN.TabIndex = 64;
     this.dockSiteRightN.TabStop = false;
     //
     // dockSite7
     //
     this.dockSite7.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite7.Dock = System.Windows.Forms.DockStyle.Top;
     this.dockSite7.Location = new System.Drawing.Point(0, 0);
     this.dockSite7.Name = "dockSite7";
     this.dockSite7.Size = new System.Drawing.Size(935, 0);
     this.dockSite7.TabIndex = 65;
     this.dockSite7.TabStop = false;
     //
     // dockSite3
     //
     this.dockSite3.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite3.Dock = System.Windows.Forms.DockStyle.Top;
     this.dockSite3.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite3.Location = new System.Drawing.Point(0, 0);
     this.dockSite3.Name = "dockSite3";
     this.dockSite3.Size = new System.Drawing.Size(935, 0);
     this.dockSite3.TabIndex = 61;
     this.dockSite3.TabStop = false;
     //
     // tabControlMain
     //
     this.tabControlMain.AutoCloseTabs = true;
     this.tabControlMain.AutoHideSystemBox = false;
     this.tabControlMain.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.tabControlMain.CanReorderTabs = true;
     this.tabControlMain.CloseButtonOnTabsVisible = true;
     this.tabControlMain.CloseButtonPosition = DevComponents.DotNetBar.eTabCloseButtonPosition.Right;
     this.tabControlMain.ColorScheme.TabItemSelectedBackground = System.Drawing.Color.WhiteSmoke;
     this.tabControlMain.ColorScheme.TabItemSelectedBackground2 = System.Drawing.Color.WhiteSmoke;
     this.tabControlMain.Controls.Add(this.tabItemMainPanel);
     this.tabControlMain.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlMain.Location = new System.Drawing.Point(258, 66);
     this.tabControlMain.Name = "tabControlMain";
     this.tabControlMain.SelectedTabFont = new System.Drawing.Font("SimSun", 9F, System.Drawing.FontStyle.Bold);
     this.tabControlMain.SelectedTabIndex = 0;
     this.tabControlMain.Size = new System.Drawing.Size(190, 486);
     this.tabControlMain.Style = DevComponents.DotNetBar.eTabStripStyle.Office2003;
     this.tabControlMain.TabCloseButtonHot = ((System.Drawing.Image)(resources.GetObject("tabControlMain.TabCloseButtonHot")));
     this.tabControlMain.TabCloseButtonNormal = ((System.Drawing.Image)(resources.GetObject("tabControlMain.TabCloseButtonNormal")));
     this.tabControlMain.TabIndex = 67;
     this.tabControlMain.TabLayoutType = DevComponents.DotNetBar.eTabLayoutType.FixedWithNavigationBox;
     this.tabControlMain.Tabs.Add(this.tabItemMain);
     this.tabControlMain.Text = "tabControl1";
     this.tabControlMain.SelectedTabChanged += new DevComponents.DotNetBar.TabStrip.SelectedTabChangedEventHandler(this.tabControlMain_SelectedTabChanged);
     this.tabControlMain.TabMoved += new DevComponents.DotNetBar.TabStrip.TabMovedEventHandler(this.tabControlMain_TabMoved);
     this.tabControlMain.TabRemoved += new System.EventHandler(this.tabControlMain_TabRemoved);
     //
     // tabItemMainPanel
     //
     this.tabItemMainPanel.Controls.Add(this.panelMain);
     this.tabItemMainPanel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabItemMainPanel.Location = new System.Drawing.Point(0, 25);
     this.tabItemMainPanel.Name = "tabItemMainPanel";
     this.tabItemMainPanel.Padding = new System.Windows.Forms.Padding(1);
     this.tabItemMainPanel.Size = new System.Drawing.Size(190, 461);
     this.tabItemMainPanel.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(142)))), ((int)(((byte)(179)))), ((int)(((byte)(231)))));
     this.tabItemMainPanel.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(223)))), ((int)(((byte)(237)))), ((int)(((byte)(254)))));
     this.tabItemMainPanel.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabItemMainPanel.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))));
     this.tabItemMainPanel.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
     | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabItemMainPanel.Style.GradientAngle = 90;
     this.tabItemMainPanel.TabIndex = 1;
     this.tabItemMainPanel.TabItem = this.tabItemMain;
     //
     // panelMain
     //
     this.panelMain.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelMain.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelMain.Controls.Add(this.webBrowser);
     this.panelMain.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelMain.Location = new System.Drawing.Point(1, 1);
     this.panelMain.Name = "panelMain";
     this.panelMain.Size = new System.Drawing.Size(188, 459);
     this.panelMain.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelMain.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.panelMain.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.panelMain.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.panelMain.Style.GradientAngle = 90;
     this.panelMain.TabIndex = 0;
     //
     // webBrowser
     //
     this.webBrowser.Dock = System.Windows.Forms.DockStyle.Fill;
     this.webBrowser.Location = new System.Drawing.Point(0, 0);
     this.webBrowser.MinimumSize = new System.Drawing.Size(20, 22);
     this.webBrowser.Name = "webBrowser";
     this.webBrowser.Size = new System.Drawing.Size(188, 459);
     this.webBrowser.TabIndex = 0;
     this.webBrowser.Url = new System.Uri("", System.UriKind.Relative);
     //
     // tabItemMain
     //
     this.tabItemMain.AttachedControl = this.tabItemMainPanel;
     this.tabItemMain.CloseButtonVisible = false;
     this.tabItemMain.Image = ((System.Drawing.Image)(resources.GetObject("tabItemMain.Image")));
     this.tabItemMain.Name = "tabItemMain";
     this.tabItemMain.Text = "主页";
     //
     // contextMenuStripTab
     //
     this.contextMenuStripTab.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.tsMenuItemCloseThis,
     this.tsMenuItemCloseOther,
     this.tsMenuItemCloseAll});
     this.contextMenuStripTab.Name = "contextMenuStrip";
     this.contextMenuStripTab.Size = new System.Drawing.Size(185, 70);
     //
     // tsMenuItemCloseThis
     //
     this.tsMenuItemCloseThis.Name = "tsMenuItemCloseThis";
     this.tsMenuItemCloseThis.Size = new System.Drawing.Size(184, 22);
     this.tsMenuItemCloseThis.Text = "关闭当前(&C)";
     this.tsMenuItemCloseThis.Click += new System.EventHandler(this.tsMenuItemCloseThis_Click);
     //
     // tsMenuItemCloseOther
     //
     this.tsMenuItemCloseOther.Name = "tsMenuItemCloseOther";
     this.tsMenuItemCloseOther.Size = new System.Drawing.Size(184, 22);
     this.tsMenuItemCloseOther.Text = "除此之外全部关闭(&E)";
     this.tsMenuItemCloseOther.Click += new System.EventHandler(this.tsMenuItemCloseOther_Click);
     //
     // tsMenuItemCloseAll
     //
     this.tsMenuItemCloseAll.Name = "tsMenuItemCloseAll";
     this.tsMenuItemCloseAll.Size = new System.Drawing.Size(184, 22);
     this.tsMenuItemCloseAll.Text = "全部关闭(&A)";
     this.tsMenuItemCloseAll.Click += new System.EventHandler(this.tsMenuItemCloseAll_Click);
     //
     // contextMenuStrip
     //
     this.contextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.tsMenuItemShowFull,
     this.tsMenuItemReLogOn,
     this.toolStripSeparator1,
     this.tsMenuItemExit});
     this.contextMenuStrip.Name = "contextMenuStrip";
     this.contextMenuStrip.Size = new System.Drawing.Size(123, 76);
     //
     // tsMenuItemShowFull
     //
     this.tsMenuItemShowFull.Name = "tsMenuItemShowFull";
     this.tsMenuItemShowFull.Size = new System.Drawing.Size(122, 22);
     this.tsMenuItemShowFull.Text = "全屏显示";
     this.tsMenuItemShowFull.Click += new System.EventHandler(this.tsMenuItemShowFull_Click);
     //
     // tsMenuItemReLogOn
     //
     this.tsMenuItemReLogOn.Name = "tsMenuItemReLogOn";
     this.tsMenuItemReLogOn.Size = new System.Drawing.Size(122, 22);
     this.tsMenuItemReLogOn.Text = "重新登录";
     this.tsMenuItemReLogOn.Click += new System.EventHandler(this.tsMenuItemReLogOn_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(119, 6);
     //
     // tsMenuItemExit
     //
     this.tsMenuItemExit.Name = "tsMenuItemExit";
     this.tsMenuItemExit.Size = new System.Drawing.Size(122, 22);
     this.tsMenuItemExit.Text = "退出";
     this.tsMenuItemExit.Click += new System.EventHandler(this.tsMenuItemExit_Click);
     //
     // styleManager
     //
     this.styleManager.ManagerStyle = DevComponents.DotNetBar.eStyle.Office2007Blue;
     //
     // tmrTask
     //
     this.tmrTask.Enabled = true;
     this.tmrTask.Interval = 3000;
     this.tmrTask.Tick += new System.EventHandler(this.tmrTask_Tick);
     //
     // tmrLock
     //
     this.tmrLock.Interval = 10000;
     this.tmrLock.Tick += new System.EventHandler(this.tmrLock_Tick);
     //
     // TabsMainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(935, 577);
     this.Controls.Add(this.tabControlMain);
     this.Controls.Add(this.dockSiteRight);
     this.Controls.Add(this.dockSiteLeft);
     this.Controls.Add(this.barSecondToolbar);
     this.Controls.Add(this.barMainToolbar);
     this.Controls.Add(this.dockSite3);
     this.Controls.Add(this.dockSite4);
     this.Controls.Add(this.dockSite5);
     this.Controls.Add(this.dockSiteRightN);
     this.Controls.Add(this.dockSite7);
     this.Controls.Add(this.dockSite8);
     this.Controls.Add(this.barBottom);
     this.Name = "TabsMainForm";
     this.ShowInTaskbar = true;
     this.Text = "C#.NET通用快速开发架构";
     this.WindowState = System.Windows.Forms.FormWindowState.Minimized;
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.TabsMainFrm_FormClosing);
     this.Load += new System.EventHandler(this.TabsMainForm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.barMainToolbar)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.barSecondToolbar)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.barBottom)).EndInit();
     this.barBottom.ResumeLayout(false);
     this.dockSiteLeft.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.barLeft)).EndInit();
     this.barLeft.ResumeLayout(false);
     this.panelDockContainer1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.navigationBar)).EndInit();
     this.dockSiteRight.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.barRight)).EndInit();
     this.barRight.ResumeLayout(false);
     this.panelDockContainer2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.barRightN)).EndInit();
     this.barRightN.ResumeLayout(false);
     this.panelDockContainer3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.barNoteBook)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabControlMain)).EndInit();
     this.tabControlMain.ResumeLayout(false);
     this.tabItemMainPanel.ResumeLayout(false);
     this.panelMain.ResumeLayout(false);
     this.contextMenuStripTab.ResumeLayout(false);
     this.contextMenuStrip.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Пример #29
0
        //private void radioXZDM_CheckedChanged(object sender, EventArgs e)
        //{
        //    if (radioXZDM.Checked)
        //    {
        //        _QueryTag = "XZ";
        //        //cmbClass1.Items.Clear();
        //        //cmbClass2.Items.Clear();
        //        //cmbClass2.Text = "";
        //        //cmbClass1.Items.Add("省、直辖市、自治区");//AB
        //        //cmbClass1.Items.Add("地级市、自治州、地区");//AC  AD
        //        //cmbClass1.Items.Add("县、县级市");// AE  AF  AG
        //        //cmbClass1.Items.Add("乡镇、街道办"); //AH  AI AJ
        //        //cmbClass1.Items.Add("行政村");// AK
        //        //cmbClass1.Items.Add("自然村");//BA、BB、BC、BD
        //        //cmbClass1.Items.Add("企事业单位");//CA-CH

        //        //cmbClass2.Enabled = false;
        //        //cmbClass1.SelectedIndex = 0;
        //    }
        //}

        //private void radioZRDM_CheckedChanged(object sender, EventArgs e)
        //{
        //    if (radioZRDM.Checked)
        //    {
        //        _QueryTag = "ZR";
        //        //cmbClass2.Enabled = true;
        //        //cmbClass1.Items.Clear();
        //        //cmbClass2.Items.Clear();
        //        //cmbClass1.Items.Add("交通要素");
        //        //cmbClass1.Items.Add("纪念地和古迹名");
        //        //cmbClass1.Items.Add("山名");
        //        //cmbClass1.Items.Add("陆地水域");
        //        //cmbClass1.Items.Add("海洋水域");
        //        //cmbClass1.Items.Add("自然地域");
        //        //cmbClass1.Items.Add("境界标志");
        //        //cmbClass1.SelectedIndex = 0;
        //    }
        //}

        //private void cmbClass1_SelectedIndexChanged(object sender, EventArgs e)
        //{
        //    #region radioZRDM.Checked
        //    if (radioZRDM.Checked)
        //    {
        //        switch (cmbClass1.Text)
        //        {
        //            case "交通要素":
        //                {
        //                    zrdm1 = new Dictionary<string, string>();
        //                    zrdm1.Clear();
        //                    zrdm1.Add("空运站、机场名", "DA");
        //                    zrdm1.Add("海运航线名", "DB");
        //                    zrdm1.Add("海港名", "DC");
        //                    zrdm1.Add("内河航线名", "DD");
        //                    zrdm1.Add("内河港口名", "DE");
        //                    zrdm1.Add("渡口名", "DF");
        //                    zrdm1.Add("铁路线路名", "DG");
        //                    zrdm1.Add("铁路车站名", "DH");
        //                    zrdm1.Add("公路及乡村路名", "DI");
        //                    zrdm1.Add("公路站名", "DJ");
        //                    zrdm1.Add("桥梁、涵洞、隧道名", "DK");
        //                    zrdm1.Add("城市路、街、巷等名", "DL");
        //                    zrdm1.Add("管线、索道名", "DM");
        //                    zrdm1.Add("地铁线路名", "DN");
        //                    zrdm1.Add("地铁站名", "DO");
        //                    zrdm1.Add("其它", "DP");
        //                    cmbClass2.Items.Clear();
        //                    foreach (KeyValuePair<string, string> kvp in zrdm1)
        //                    {
        //                        cmbClass2.Items.Add(kvp.Key);
        //                    }
        //                    cmbClass2.SelectedIndex = 0;
        //                    break;
        //                }
        //            case "纪念地和古迹名":
        //                {
        //                    zrdm1 = new Dictionary<string, string>();
        //                    zrdm1.Clear();
        //                    zrdm1.Add("具有历史意义的纪念地", "EA");
        //                    zrdm1.Add("公园、风景名胜名", "EB");
        //                    zrdm1.Add("古建筑名(包括钟楼、鼓楼、城楼、关塞、庙宇、塔、宫殿、官邸、府衙、牌坊、碑、寺、石窟、祠、古桥等)", "EC");
        //                    zrdm1.Add("古长城名", "ED");
        //                    zrdm1.Add("古石刻名、摩岩名", "EE");
        //                    zrdm1.Add("古遗址名", "EF");
        //                    zrdm1.Add("古墓葬名", "EG");
        //                    zrdm1.Add("古战场名", "EH");
        //                    zrdm1.Add("其它", "EI");
        //                    cmbClass2.Items.Clear();
        //                    foreach (KeyValuePair<string, string> kvp in zrdm1)
        //                    {
        //                        cmbClass2.Items.Add(kvp.Key);
        //                    }
        //                    cmbClass2.SelectedIndex = 0;
        //                    break;
        //                }
        //            case "山名":
        //                {
        //                    zrdm1 = new Dictionary<string, string>();
        //                    zrdm1.Clear();
        //                    zrdm1.Add("山体名(包括山脉、山岭、火山、冰山、雪山等)", "HA");
        //                    zrdm1.Add("山峰名(山丘、崮等)", "HB");
        //                    zrdm1.Add("山坡名", "HC");
        //                    zrdm1.Add("谷地名", "HD");
        //                    zrdm1.Add("山崖名", "HE");
        //                    zrdm1.Add("洞穴名", "HF");
        //                    zrdm1.Add("山口名(包括垭口、关口、隘口等)", "HG");
        //                    zrdm1.Add("台地名(塬、坝子名)", "HH");
        //                    zrdm1.Add("其它", "HI");
        //                    cmbClass2.Items.Clear();
        //                    foreach (KeyValuePair<string, string> kvp in zrdm1)
        //                    {
        //                        cmbClass2.Items.Add(kvp.Key);
        //                    }
        //                    cmbClass2.SelectedIndex = 0;
        //                    break;
        //                }
        //            case "陆地水域":
        //                {
        //                    zrdm1 = new Dictionary<string, string>();
        //                    zrdm1.Clear();
        //                    zrdm1.Add("常年河流名", "IA");
        //                    zrdm1.Add("季节性河流名", "IB");
        //                    zrdm1.Add("消失河名", "IC");
        //                    zrdm1.Add("伏流河名", "ID");
        //                    zrdm1.Add("运河名", "IE");
        //                    zrdm1.Add("渠道名", "IF");
        //                    zrdm1.Add("湖泊名", "IG");
        //                    zrdm1.Add("水库名", "IH");
        //                    zrdm1.Add("蓄洪区名", "II");
        //                    zrdm1.Add("瀑布名", "IJ");
        //                    zrdm1.Add("泉名", "IK");
        //                    zrdm1.Add("井名", "IL");
        //                    zrdm1.Add("干涸河名", "IM");
        //                    zrdm1.Add("干涸湖名", "IN");
        //                    zrdm1.Add("冰川名", "IO");
        //                    zrdm1.Add("河口名", "IP");
        //                    zrdm1.Add("河滩名", "IQ");
        //                    zrdm1.Add("河曲、河湾、峡名", "IR");
        //                    zrdm1.Add("洲岛名", "IS");
        //                    zrdm1.Add("沼泽、湿地名", "IT");
        //                    zrdm1.Add("水利设施名(包括堤坝、水闸、输水隧道等)", "IU");
        //                    zrdm1.Add("其它", "IV");
        //                    cmbClass2.Items.Clear();
        //                    foreach (KeyValuePair<string, string> kvp in zrdm1)
        //                    {
        //                        cmbClass2.Items.Add(kvp.Key);
        //                    }
        //                    cmbClass2.SelectedIndex = 0;
        //                    break;
        //                }
        //            case "海洋水域":
        //                {
        //                    zrdm1 = new Dictionary<string, string>();
        //                    zrdm1.Clear();
        //                    zrdm1.Add("海洋名", "JA");
        //                    zrdm1.Add("海湾、港湾名", "JB");
        //                    zrdm1.Add("海峡名", "JC");
        //                    zrdm1.Add("水道名", "JD");
        //                    zrdm1.Add("岛、礁名", "JE");
        //                    zrdm1.Add("群岛、列岛名", "JF");
        //                    zrdm1.Add("半岛、岬角名", "JG");
        //                    zrdm1.Add("滩涂名", "JH");
        //                    zrdm1.Add("海盆名", "JI");
        //                    zrdm1.Add("海沟名", "JJ");
        //                    zrdm1.Add("海底山脉名", "JK");
        //                    zrdm1.Add("海岸名", "JL");
        //                    zrdm1.Add("海槽名", "JM");
        //                    zrdm1.Add("海底断裂带名", "JN");
        //                    zrdm1.Add("海底峡谷名", "JO");
        //                    zrdm1.Add("海底高原名", "JP");
        //                    zrdm1.Add("海底平原名", "JQ");
        //                    zrdm1.Add("大陆架、大陆坡名", "JR");
        //                    zrdm1.Add("其它", "JS");
        //                    cmbClass2.Items.Clear();
        //                    foreach (KeyValuePair<string, string> kvp in zrdm1)
        //                    {
        //                        cmbClass2.Items.Add(kvp.Key);
        //                    }
        //                    cmbClass2.SelectedIndex = 0;
        //                    break;
        //                }
        //            case "自然地域":
        //                {
        //                    zrdm1 = new Dictionary<string, string>();
        //                    zrdm1.Clear();
        //                    zrdm1.Add("平原名", "KA");
        //                    zrdm1.Add("凹地、盆地名", "KB");
        //                    zrdm1.Add("山地、丘陵名", "KC");
        //                    zrdm1.Add("高原名", "KD");
        //                    zrdm1.Add("草原名", "KE");
        //                    zrdm1.Add("绿洲名", "KF");
        //                    zrdm1.Add("荒漠、沙漠名", "KH");
        //                    zrdm1.Add("森林名", "KI");
        //                    zrdm1.Add("三角洲名", "KJ");
        //                    zrdm1.Add("盐田名", "KK");
        //                    zrdm1.Add("自然保护区名", "KL");
        //                    zrdm1.Add("其它", "KM");
        //                    cmbClass2.Items.Clear();
        //                    foreach (KeyValuePair<string, string> kvp in zrdm1)
        //                    {
        //                        cmbClass2.Items.Add(kvp.Key);
        //                    }
        //                    cmbClass2.SelectedIndex = 0;
        //                    break;
        //                }
        //            case "境界标志":
        //                {
        //                    zrdm1 = new Dictionary<string, string>();
        //                    zrdm1.Clear();
        //                    zrdm1.Add("界碑名", "LA");
        //                    zrdm1.Add("界桩名", "LB");
        //                    zrdm1.Add("其它", "LC");
        //                    cmbClass2.Items.Clear();
        //                    foreach (KeyValuePair<string, string> kvp in zrdm1)
        //                    {
        //                        cmbClass2.Items.Add(kvp.Key);
        //                    }
        //                    cmbClass2.SelectedIndex = 0;
        //                    break;
        //                }
        //        }
        //    }
        //    #endregion radioZRDM.Checked
        //    #region else
        //    else
        //    {
        //        switch (cmbClass1.Text)
        //        {
        //            case "省、直辖市、自治区":
        //                {
        //                    xzdmBH = "'AB'";
        //                    break;
        //                }
        //            case "地级市、自治州、地区":
        //                {
        //                    xzdmBH = "'AC','AD'";
        //                    break;
        //                }
        //            case "县、县级市":
        //                {
        //                    xzdmBH = "'AE','AF','AG'";
        //                    break;
        //                }
        //            case "乡镇、街道办":
        //                {
        //                    xzdmBH = "'AH','AI','AJ'";
        //                    break;
        //                }
        //            case "行政村":
        //                {
        //                    xzdmBH = "'AK'";
        //                    break;
        //                }
        //            case "自然村":
        //                {
        //                    xzdmBH = "'BA','BB','BC','BD'";
        //                    break;
        //                }
        //            case "企事业单位":
        //                {
        //                    xzdmBH = "'CA','CB','CC','CD','CE','CF','CG','CH'";
        //                    break;
        //                }
        //        }
        //        #endregion
        //    }
        //}
        #endregion
        private void btnQuery_Click(object sender, EventArgs e)
        {
            //if (radioZRDM.Checked)
            //{
            //    _QueryTag = "ZR";
            //    //strSqlWhere = fdDMFL + " =  '" + zrdm1[cmbClass2.Text] + "' AND " + fdDM + " LIKE '%" + txtName.Text.Trim() + "%'";
            //}
            //else
            //{
            //    _QueryTag = "XZ";
            //    //strSqlWhere = fdDMFL + " IN(" + xzdmBH + ") AND " + fdDM + " LIKE '%" + txtName.Text.Trim() + "%'";
            //}
            int Index = ComField.SelectedIndex;

            if (Index > 0)
            {
                fdDM = m_ListField[Index];
            }
            if (_ListFeatureClasses == null)
            {
                return;
            }
            if (_ListFeatureClasses.Count == 0)
            {
                return;
            }
            if (this.WriteLog)
            {
                Plugin.LogTable.Writelog("林班查询");//xisheng 日志记录 0928;
            }
            string strWKSdescrip = ModQuery.GetDescriptionOfWorkspace((_ListFeatureClasses[0] as IDataset).Workspace);

            int indexName = _ListFeatureClasses[0].Fields.FindField(fdDM);

            if (indexName < 0)
            {
                MessageBox.Show("找不到名称字段,请检查配置文件!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
                return;
            }
            esriFieldType typeName = _ListFeatureClasses[0].Fields.get_Field(indexName).Type;

            string strLike = "";

            switch (strWKSdescrip)
            {
            case "Personal Geodatabase":    //mdb数据库 使用*作匹配符
                strLike = "*";
                break;

            case "File Geodatabase":    //gdb数据库 使用%作匹配符
                strLike = "%";
                break;

            case "Spatial Database Connection":    //sde(oracle数据库) 使用%作匹配符(sql server数据库,现在暂未考虑)
                strLike = "%";
                break;

            default:
                strLike = "%";
                break;
            }
            string strSqlWhere2 = "", strSqlWhere3 = "";

            if (txtBoxName.Text.Trim().Equals(""))
            {
                if (this.rdbAccurate.Checked)
                {
                    MessageBox.Show("精确查询,需输入小班号!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
                    return;
                }
                if (MessageBox.Show("该操作将会查询全库数据,查询速度较慢,是否继续?", "提示", MessageBoxButtons.YesNo, MessageBoxIcon.Asterisk) != DialogResult.Yes)
                {
                    return;
                }
                strSqlWhere  = "";
                strSqlWhere2 = "";
                strSqlWhere3 = "1=0";
            }
            else
            {
                if (this.rdbAccurate.Checked)
                {
                    if (m_SelectXZQ != "")
                    {
                        string tempString = GetWhereCase(m_SelectXZQ);
                        strSqlWhere = fdDM + " = '" + txtBoxName.Text.Trim() + "' and " + tempString;
                    }
                    else
                    {
                        strSqlWhere = fdDM + " = '" + txtBoxName.Text.Trim() + "'";
                    }
                    if (typeName.Equals(esriFieldType.esriFieldTypeString))
                    {
                        strSqlWhere2 = fdDM + " = '" + txtBoxName.Text.Trim() + "'";
                    }
                    else
                    {
                        strSqlWhere2 = fdDM + " = " + txtBoxName.Text.Trim();
                    }

                    strSqlWhere3 = "1=0";
                }
                else
                {
                    if (m_SelectXZQ != "")
                    {
                        string temp = GetWhereCase(m_SelectXZQ);
                        strSqlWhere = fdDM + " LIKE '" + strLike + txtBoxName.Text.Trim() + strLike + "' and " + temp;
                    }
                    else
                    {
                        strSqlWhere = fdDM + " LIKE '" + strLike + txtBoxName.Text.Trim() + strLike + "'";
                    }
                    //strSqlWhere = " contains(" + fdDM + ",'" + txtBoxName.Text.Trim() + "')>0";
                    if (typeName.Equals(esriFieldType.esriFieldTypeString))
                    {
                        strSqlWhere2 = fdDM + " = '" + txtBoxName.Text.Trim() + "'";
                        strSqlWhere3 = fdDM + "<> '" + txtBoxName.Text.Trim() + "'";
                    }
                    else
                    {
                        strSqlWhere2 = fdDM + " = " + txtBoxName.Text.Trim();
                        strSqlWhere3 = fdDM + "<> " + txtBoxName.Text.Trim();
                    }
                }
            }
            this.Hide();

            if (_QueryFilterAll == null)
            {
                _QueryFilterAll = new QueryFilterClass();
            }
            if (_QueryFilterPart1 == null)
            {
                _QueryFilterPart1 = new QueryFilterClass();
            }
            if (_QueryFilterPart2 == null)
            {
                _QueryFilterPart2 = new QueryFilterClass();
            }
            //deleted by chulili 20110802 查询道路地物类,不再查询自然地名注记,就不必增加查询条件
            ////added by chulili 20110801
            //if (RoadWhere.Equals(""))
            //{
            //    RoadWhere = "CLASS ='DI' OR CLASS='DG'";
            //}
            //else
            //{
            //    RoadWhere = RoadWhere + " AND (CLASS ='DI' OR CLASS='DG')";
            //}

            ////end added by chulili
            _QueryFilterAll.WhereClause   = strSqlWhere;
            _QueryFilterPart1.WhereClause = strSqlWhere2;
            _QueryFilterPart2.WhereClause = strSqlWhere3;
            if (m_frmQuery == null)
            {
                m_frmQuery = new frmQuerytoTable(_MapControl);
            }
            //用查询地物类,查询条件填充查询窗体
            //if (this.rdbAccurate.Checked)
            //{
            //    m_frmQuery.FillData(_QueryFeaClass_XZ, _QueryFilterPart1, true);
            //}
            //else
            //{
            //    m_frmQuery.FillData(_QueryFeaClass_XZ, _QueryFilterAll, _QueryFilterPart1, _QueryFilterPart2, true);
            //    //m_frmQuery.FillData(_QueryFeaClass_ZR, pQF, pQF2, pQF3, true);
            //}

            SysCommon.CProgress vProgress = new SysCommon.CProgress("林班查询");
            vProgress.EnableCancel    = false;
            vProgress.ShowDescription = true;
            vProgress.FakeProgress    = true;
            vProgress.TopMost         = true;
            vProgress.ShowProgress();
            vProgress.SetProgress("进行查询");
            try
            {
                // m_frmQuery.FillData(ListLayerName, ListFeatureClass, _QueryFilterAll, _QueryFilterPart1, _QueryFilterPart2, true);
                // QueryBar.EmergeQueryData(_ListNodeKeys, _ListLayers, _ListLayerNames, _ListFeatureClasses, _QueryFilterAll, _QueryFilterPart1, _QueryFilterPart2, true);
                QueryBar.EmergeQueryData(_ListLayers[0] as IFeatureLayer, _QueryFilterAll, vProgress);
                QueryBar.m_pMapControl = _MapControl;
                try
                {
                    DevComponents.DotNetBar.Bar pBar = QueryBar.Parent.Parent as DevComponents.DotNetBar.Bar;
                    if (pBar != null)
                    {
                        pBar.AutoHide = false;
                        //pBar.SelectedDockTab = 1;
                        int tmpindex = pBar.Items.IndexOf("dockItemDataCheck");
                        pBar.SelectedDockTab = tmpindex;
                    }
                }
                catch
                { }
            }
            catch (Exception err2)
            {
                vProgress.Close();
            }
            vProgress.Close();
            //m_frmQuery.Show(_OwnerFrm);
            // m_frmQuery.FormClosed += new FormClosedEventHandler(frmQuery_FormClosed);
        }
 /// <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(FormularioSeleccionDestinatarios));
     this.dataGridViewContactos = new System.Windows.Forms.DataGridView();
     this.icon = new System.Windows.Forms.DataGridViewImageColumn();
     this.nombreContactoDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.cargoContactoDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.correoElectrónicoDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.carnetEmpresaDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.nombreEmpresaDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.contactoEmpresaBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.empresaDataSet = new Sistema_De_Administracion_De_Servicios.EmpresaDataSet();
     this.txtCco = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txtCc = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txtPara = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.btnAceptar = new System.Windows.Forms.Button();
     this.btnCancelar = new System.Windows.Forms.Button();
     this.btnPara = new System.Windows.Forms.CheckBox();
     this.btnCc = new System.Windows.Forms.CheckBox();
     this.btnCco = new System.Windows.Forms.CheckBox();
     this.btnAgregar = new System.Windows.Forms.Button();
     this.ribbonBar1 = new DevComponents.DotNetBar.RibbonBar();
     this.buttonItem1 = new DevComponents.DotNetBar.ButtonItem();
     this.sliderItem1 = new DevComponents.DotNetBar.SliderItem();
     this.ribbonBar2 = new DevComponents.DotNetBar.RibbonBar();
     this.buttonItem2 = new DevComponents.DotNetBar.ButtonItem();
     this.controlContainerItem1 = new DevComponents.DotNetBar.ControlContainerItem();
     this.ribbonBar3 = new DevComponents.DotNetBar.RibbonBar();
     this.controlContainerItem2 = new DevComponents.DotNetBar.ControlContainerItem();
     this.bar1 = new DevComponents.DotNetBar.Bar();
     this.labelItem2 = new DevComponents.DotNetBar.LabelItem();
     this.optPrincipal = new DevComponents.DotNetBar.ButtonItem();
     this.optSuplente1 = new DevComponents.DotNetBar.ButtonItem();
     this.optSuplente2 = new DevComponents.DotNetBar.ButtonItem();
     this.optSuplente3 = new DevComponents.DotNetBar.ButtonItem();
     this.btnFiltrar = new DevComponents.DotNetBar.ButtonItem();
     this.controlContainerItem7 = new DevComponents.DotNetBar.ControlContainerItem();
     this.controlContainerItem3 = new DevComponents.DotNetBar.ControlContainerItem();
     this.contactoEmpresaTableAdapter = new Sistema_De_Administracion_De_Servicios.EmpresaDataSetTableAdapters.ContactoEmpresaTableAdapter();
     this.ico = new System.Windows.Forms.DataGridViewImageColumn();
     this.nombreContactoDataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.cargoContactoDataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.correoElectrónicoDataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewContactos)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.contactoEmpresaBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.empresaDataSet)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).BeginInit();
     this.SuspendLayout();
     //
     // dataGridViewContactos
     //
     this.dataGridViewContactos.AllowUserToAddRows = false;
     this.dataGridViewContactos.AllowUserToDeleteRows = false;
     this.dataGridViewContactos.AllowUserToResizeRows = false;
     this.dataGridViewContactos.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.dataGridViewContactos.AutoGenerateColumns = false;
     this.dataGridViewContactos.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dataGridViewContactos.BackgroundColor = System.Drawing.Color.White;
     this.dataGridViewContactos.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.dataGridViewContactos.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.None;
     this.dataGridViewContactos.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.None;
     this.dataGridViewContactos.ColumnHeadersHeight = 20;
     this.dataGridViewContactos.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
     this.dataGridViewContactos.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.icon,
     this.nombreContactoDataGridViewTextBoxColumn,
     this.cargoContactoDataGridViewTextBoxColumn,
     this.correoElectrónicoDataGridViewTextBoxColumn,
     this.carnetEmpresaDataGridViewTextBoxColumn,
     this.nombreEmpresaDataGridViewTextBoxColumn});
     this.dataGridViewContactos.DataSource = this.contactoEmpresaBindingSource;
     this.dataGridViewContactos.EnableHeadersVisualStyles = false;
     this.dataGridViewContactos.GridColor = System.Drawing.Color.White;
     this.dataGridViewContactos.Location = new System.Drawing.Point(12, 67);
     this.dataGridViewContactos.Name = "dataGridViewContactos";
     this.dataGridViewContactos.ReadOnly = true;
     this.dataGridViewContactos.RowHeadersVisible = false;
     this.dataGridViewContactos.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
     this.dataGridViewContactos.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dataGridViewContactos.Size = new System.Drawing.Size(604, 137);
     this.dataGridViewContactos.TabIndex = 1;
     this.dataGridViewContactos.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridViewContactos_CellDoubleClick);
     this.dataGridViewContactos.CellFormatting += new System.Windows.Forms.DataGridViewCellFormattingEventHandler(this.dataGridViewContactos_CellFormatting);
     //
     // icon
     //
     this.icon.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
     this.icon.HeaderText = "";
     this.icon.Image = ((System.Drawing.Image)(resources.GetObject("icon.Image")));
     this.icon.Name = "icon";
     this.icon.ReadOnly = true;
     this.icon.Width = 20;
     //
     // nombreContactoDataGridViewTextBoxColumn
     //
     this.nombreContactoDataGridViewTextBoxColumn.DataPropertyName = "Nombre Contacto";
     this.nombreContactoDataGridViewTextBoxColumn.HeaderText = "Nombre Contacto";
     this.nombreContactoDataGridViewTextBoxColumn.Name = "nombreContactoDataGridViewTextBoxColumn";
     this.nombreContactoDataGridViewTextBoxColumn.ReadOnly = true;
     //
     // cargoContactoDataGridViewTextBoxColumn
     //
     this.cargoContactoDataGridViewTextBoxColumn.DataPropertyName = "Cargo Contacto";
     this.cargoContactoDataGridViewTextBoxColumn.HeaderText = "Cargo Contacto";
     this.cargoContactoDataGridViewTextBoxColumn.Name = "cargoContactoDataGridViewTextBoxColumn";
     this.cargoContactoDataGridViewTextBoxColumn.ReadOnly = true;
     //
     // correoElectrónicoDataGridViewTextBoxColumn
     //
     this.correoElectrónicoDataGridViewTextBoxColumn.DataPropertyName = "Correo Electrónico";
     this.correoElectrónicoDataGridViewTextBoxColumn.HeaderText = "Correo Electrónico";
     this.correoElectrónicoDataGridViewTextBoxColumn.Name = "correoElectrónicoDataGridViewTextBoxColumn";
     this.correoElectrónicoDataGridViewTextBoxColumn.ReadOnly = true;
     //
     // carnetEmpresaDataGridViewTextBoxColumn
     //
     this.carnetEmpresaDataGridViewTextBoxColumn.DataPropertyName = "Carnet Empresa";
     this.carnetEmpresaDataGridViewTextBoxColumn.HeaderText = "Carnet Empresa";
     this.carnetEmpresaDataGridViewTextBoxColumn.Name = "carnetEmpresaDataGridViewTextBoxColumn";
     this.carnetEmpresaDataGridViewTextBoxColumn.ReadOnly = true;
     //
     // nombreEmpresaDataGridViewTextBoxColumn
     //
     this.nombreEmpresaDataGridViewTextBoxColumn.DataPropertyName = "Nombre Empresa";
     this.nombreEmpresaDataGridViewTextBoxColumn.HeaderText = "Nombre Empresa";
     this.nombreEmpresaDataGridViewTextBoxColumn.Name = "nombreEmpresaDataGridViewTextBoxColumn";
     this.nombreEmpresaDataGridViewTextBoxColumn.ReadOnly = true;
     //
     // contactoEmpresaBindingSource
     //
     this.contactoEmpresaBindingSource.DataMember = "ContactoEmpresa";
     this.contactoEmpresaBindingSource.DataSource = this.empresaDataSet;
     //
     // empresaDataSet
     //
     this.empresaDataSet.DataSetName = "EmpresaDataSet";
     this.empresaDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // txtCco
     //
     this.txtCco.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.txtCco.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.txtCco.Border.Class = "TextBoxBorder";
     this.txtCco.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtCco.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtCco.ForeColor = System.Drawing.SystemColors.ControlText;
     this.txtCco.Location = new System.Drawing.Point(78, 348);
     this.txtCco.MaximumSize = new System.Drawing.Size(0, 60);
     this.txtCco.MinimumSize = new System.Drawing.Size(537, 20);
     this.txtCco.Multiline = true;
     this.txtCco.Name = "txtCco";
     this.txtCco.Size = new System.Drawing.Size(537, 40);
     this.txtCco.TabIndex = 13;
     //
     // txtCc
     //
     this.txtCc.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.txtCc.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.txtCc.Border.Class = "TextBoxBorder";
     this.txtCc.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtCc.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtCc.ForeColor = System.Drawing.SystemColors.ControlText;
     this.txtCc.Location = new System.Drawing.Point(79, 302);
     this.txtCc.MaximumSize = new System.Drawing.Size(0, 60);
     this.txtCc.MinimumSize = new System.Drawing.Size(537, 20);
     this.txtCc.Multiline = true;
     this.txtCc.Name = "txtCc";
     this.txtCc.Size = new System.Drawing.Size(537, 40);
     this.txtCc.TabIndex = 12;
     //
     // txtPara
     //
     this.txtPara.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.txtPara.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.txtPara.Border.Class = "TextBoxBorder";
     this.txtPara.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtPara.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtPara.ForeColor = System.Drawing.SystemColors.ControlText;
     this.txtPara.Location = new System.Drawing.Point(79, 256);
     this.txtPara.MaximumSize = new System.Drawing.Size(0, 60);
     this.txtPara.MinimumSize = new System.Drawing.Size(537, 20);
     this.txtPara.Multiline = true;
     this.txtPara.Name = "txtPara";
     this.txtPara.PreventEnterBeep = true;
     this.txtPara.Size = new System.Drawing.Size(537, 40);
     this.txtPara.TabIndex = 11;
     //
     // btnAceptar
     //
     this.btnAceptar.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnAceptar.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.btnAceptar.Location = new System.Drawing.Point(460, 403);
     this.btnAceptar.Name = "btnAceptar";
     this.btnAceptar.Size = new System.Drawing.Size(75, 23);
     this.btnAceptar.TabIndex = 17;
     this.btnAceptar.Text = "Aceptar";
     this.btnAceptar.UseVisualStyleBackColor = true;
     this.btnAceptar.Click += new System.EventHandler(this.btnAceptar_Click);
     //
     // btnCancelar
     //
     this.btnCancelar.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnCancelar.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancelar.Location = new System.Drawing.Point(541, 403);
     this.btnCancelar.Name = "btnCancelar";
     this.btnCancelar.Size = new System.Drawing.Size(75, 23);
     this.btnCancelar.TabIndex = 18;
     this.btnCancelar.Text = "Cancelar";
     this.btnCancelar.UseVisualStyleBackColor = true;
     this.btnCancelar.Click += new System.EventHandler(this.btnCancelar_Click);
     //
     // btnPara
     //
     this.btnPara.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnPara.Appearance = System.Windows.Forms.Appearance.Button;
     this.btnPara.Location = new System.Drawing.Point(13, 256);
     this.btnPara.Name = "btnPara";
     this.btnPara.Size = new System.Drawing.Size(60, 40);
     this.btnPara.TabIndex = 25;
     this.btnPara.Text = "Para";
     this.btnPara.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnPara.UseVisualStyleBackColor = true;
     //
     // btnCc
     //
     this.btnCc.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnCc.Appearance = System.Windows.Forms.Appearance.Button;
     this.btnCc.Location = new System.Drawing.Point(13, 302);
     this.btnCc.Name = "btnCc";
     this.btnCc.Size = new System.Drawing.Size(60, 40);
     this.btnCc.TabIndex = 26;
     this.btnCc.Text = "Cc";
     this.btnCc.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnCc.UseVisualStyleBackColor = true;
     //
     // btnCco
     //
     this.btnCco.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnCco.Appearance = System.Windows.Forms.Appearance.Button;
     this.btnCco.Location = new System.Drawing.Point(12, 349);
     this.btnCco.Name = "btnCco";
     this.btnCco.Size = new System.Drawing.Size(60, 40);
     this.btnCco.TabIndex = 27;
     this.btnCco.Text = "Cco";
     this.btnCco.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnCco.UseVisualStyleBackColor = true;
     //
     // btnAgregar
     //
     this.btnAgregar.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
     this.btnAgregar.Location = new System.Drawing.Point(185, 210);
     this.btnAgregar.Name = "btnAgregar";
     this.btnAgregar.Size = new System.Drawing.Size(259, 40);
     this.btnAgregar.TabIndex = 31;
     this.btnAgregar.Text = "Agregar";
     this.btnAgregar.UseVisualStyleBackColor = true;
     this.btnAgregar.Click += new System.EventHandler(this.btnAgregar_Click);
     //
     // ribbonBar1
     //
     this.ribbonBar1.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar1.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar1.ContainerControlProcessDialogKey = true;
     this.ribbonBar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem1});
     this.ribbonBar1.Location = new System.Drawing.Point(65, 84);
     this.ribbonBar1.Name = "ribbonBar1";
     this.ribbonBar1.Size = new System.Drawing.Size(75, 78);
     this.ribbonBar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar1.TabIndex = 0;
     this.ribbonBar1.Text = "ribbonBar1";
     //
     //
     //
     this.ribbonBar1.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar1.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonItem1
     //
     this.buttonItem1.Name = "buttonItem1";
     this.buttonItem1.SubItemsExpandWidth = 14;
     this.buttonItem1.Text = "buttonItem1";
     //
     // sliderItem1
     //
     this.sliderItem1.Name = "sliderItem1";
     this.sliderItem1.Text = "sliderItem1";
     this.sliderItem1.Value = 0;
     //
     // ribbonBar2
     //
     this.ribbonBar2.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar2.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar2.ContainerControlProcessDialogKey = true;
     this.ribbonBar2.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem2,
     this.controlContainerItem1});
     this.ribbonBar2.Location = new System.Drawing.Point(39, 79);
     this.ribbonBar2.Name = "ribbonBar2";
     this.ribbonBar2.Size = new System.Drawing.Size(136, 96);
     this.ribbonBar2.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar2.TabIndex = 33;
     this.ribbonBar2.Text = "ribbonBar2";
     //
     //
     //
     this.ribbonBar2.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar2.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonItem2
     //
     this.buttonItem2.Image = global::Sistema_De_Administracion_De_Servicios.Properties.Resources.find48;
     this.buttonItem2.Name = "buttonItem2";
     this.buttonItem2.SubItemsExpandWidth = 14;
     this.buttonItem2.Text = "buttonItem2";
     //
     // controlContainerItem1
     //
     this.controlContainerItem1.AllowItemResize = true;
     this.controlContainerItem1.MenuVisibility = DevComponents.DotNetBar.eMenuVisibility.VisibleAlways;
     this.controlContainerItem1.Name = "controlContainerItem1";
     //
     // ribbonBar3
     //
     this.ribbonBar3.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar3.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar3.ContainerControlProcessDialogKey = true;
     this.ribbonBar3.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.controlContainerItem2});
     this.ribbonBar3.Location = new System.Drawing.Point(78, 32);
     this.ribbonBar3.Name = "ribbonBar3";
     this.ribbonBar3.Size = new System.Drawing.Size(75, 23);
     this.ribbonBar3.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar3.TabIndex = 33;
     this.ribbonBar3.Text = "ribbonBar3";
     //
     //
     //
     this.ribbonBar3.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar3.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // controlContainerItem2
     //
     this.controlContainerItem2.AllowItemResize = true;
     this.controlContainerItem2.MenuVisibility = DevComponents.DotNetBar.eMenuVisibility.VisibleAlways;
     this.controlContainerItem2.Name = "controlContainerItem2";
     //
     // bar1
     //
     this.bar1.AccessibleDescription = "bar1 (bar1)";
     this.bar1.AccessibleName = "bar1";
     this.bar1.AccessibleRole = System.Windows.Forms.AccessibleRole.ToolBar;
     this.bar1.AntiAlias = true;
     this.bar1.Dock = System.Windows.Forms.DockStyle.Top;
     this.bar1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.bar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.labelItem2,
     this.optPrincipal,
     this.optSuplente1,
     this.optSuplente2,
     this.optSuplente3,
     this.btnFiltrar});
     this.bar1.Location = new System.Drawing.Point(0, 0);
     this.bar1.Name = "bar1";
     this.bar1.Size = new System.Drawing.Size(628, 41);
     this.bar1.Stretch = true;
     this.bar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.bar1.TabIndex = 32;
     this.bar1.TabStop = false;
     this.bar1.Text = "bar1";
     //
     // labelItem2
     //
     this.labelItem2.Name = "labelItem2";
     this.labelItem2.PaddingLeft = 20;
     this.labelItem2.PaddingRight = 20;
     this.labelItem2.Text = "Mostrar Contactos";
     //
     // optPrincipal
     //
     this.optPrincipal.AutoCheckOnClick = true;
     this.optPrincipal.Image = ((System.Drawing.Image)(resources.GetObject("optPrincipal.Image")));
     this.optPrincipal.Name = "optPrincipal";
     this.optPrincipal.OptionGroup = "groupContactos";
     this.optPrincipal.Tooltip = "Contacto Principal";
     this.optPrincipal.CheckedChanged += new System.EventHandler(this.radioButtonMostrarContactos_CheckedChanged);
     //
     // optSuplente1
     //
     this.optSuplente1.AutoCheckOnClick = true;
     this.optSuplente1.Image = ((System.Drawing.Image)(resources.GetObject("optSuplente1.Image")));
     this.optSuplente1.Name = "optSuplente1";
     this.optSuplente1.OptionGroup = "groupContactos";
     this.optSuplente1.Tooltip = "Suplente 1";
     this.optSuplente1.CheckedChanged += new System.EventHandler(this.radioButtonMostrarContactos_CheckedChanged);
     //
     // optSuplente2
     //
     this.optSuplente2.AutoCheckOnClick = true;
     this.optSuplente2.Image = ((System.Drawing.Image)(resources.GetObject("optSuplente2.Image")));
     this.optSuplente2.Name = "optSuplente2";
     this.optSuplente2.OptionGroup = "groupContactos";
     this.optSuplente2.Tooltip = "Suplente 2";
     this.optSuplente2.CheckedChanged += new System.EventHandler(this.radioButtonMostrarContactos_CheckedChanged);
     //
     // optSuplente3
     //
     this.optSuplente3.AutoCheckOnClick = true;
     this.optSuplente3.Image = ((System.Drawing.Image)(resources.GetObject("optSuplente3.Image")));
     this.optSuplente3.Name = "optSuplente3";
     this.optSuplente3.OptionGroup = "groupContactos";
     this.optSuplente3.Tooltip = "Suplente 3";
     this.optSuplente3.CheckedChanged += new System.EventHandler(this.radioButtonMostrarContactos_CheckedChanged);
     //
     // btnFiltrar
     //
     this.btnFiltrar.BeginGroup = true;
     this.btnFiltrar.Image = ((System.Drawing.Image)(resources.GetObject("btnFiltrar.Image")));
     this.btnFiltrar.Name = "btnFiltrar";
     this.btnFiltrar.Tooltip = "Filtrar";
     this.btnFiltrar.Click += new System.EventHandler(this.btnFiltrar_Click);
     //
     // controlContainerItem7
     //
     this.controlContainerItem7.AllowItemResize = false;
     this.controlContainerItem7.MenuVisibility = DevComponents.DotNetBar.eMenuVisibility.VisibleAlways;
     this.controlContainerItem7.Name = "controlContainerItem7";
     //
     // controlContainerItem3
     //
     this.controlContainerItem3.AllowItemResize = false;
     this.controlContainerItem3.MenuVisibility = DevComponents.DotNetBar.eMenuVisibility.VisibleAlways;
     this.controlContainerItem3.Name = "controlContainerItem3";
     //
     // contactoEmpresaTableAdapter
     //
     this.contactoEmpresaTableAdapter.ClearBeforeFill = true;
     //
     // ico
     //
     this.ico.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
     this.ico.FillWeight = 60.9137F;
     this.ico.HeaderText = "";
     this.ico.Image = ((System.Drawing.Image)(resources.GetObject("ico.Image")));
     this.ico.MinimumWidth = 20;
     this.ico.Name = "ico";
     this.ico.Resizable = System.Windows.Forms.DataGridViewTriState.False;
     this.ico.Width = 20;
     //
     // nombreContactoDataGridViewTextBoxColumn1
     //
     this.nombreContactoDataGridViewTextBoxColumn1.DataPropertyName = "Nombre Contacto";
     this.nombreContactoDataGridViewTextBoxColumn1.FillWeight = 107.8173F;
     this.nombreContactoDataGridViewTextBoxColumn1.HeaderText = "Nombre Contacto";
     this.nombreContactoDataGridViewTextBoxColumn1.Name = "nombreContactoDataGridViewTextBoxColumn1";
     this.nombreContactoDataGridViewTextBoxColumn1.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.nombreContactoDataGridViewTextBoxColumn1.Width = 116;
     //
     // cargoContactoDataGridViewTextBoxColumn1
     //
     this.cargoContactoDataGridViewTextBoxColumn1.DataPropertyName = "Cargo Contacto";
     this.cargoContactoDataGridViewTextBoxColumn1.FillWeight = 107.8173F;
     this.cargoContactoDataGridViewTextBoxColumn1.HeaderText = "Cargo Contacto";
     this.cargoContactoDataGridViewTextBoxColumn1.Name = "cargoContactoDataGridViewTextBoxColumn1";
     this.cargoContactoDataGridViewTextBoxColumn1.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.cargoContactoDataGridViewTextBoxColumn1.Width = 117;
     //
     // correoElectrónicoDataGridViewTextBoxColumn1
     //
     this.correoElectrónicoDataGridViewTextBoxColumn1.DataPropertyName = "Correo Electrónico";
     this.correoElectrónicoDataGridViewTextBoxColumn1.FillWeight = 107.8173F;
     this.correoElectrónicoDataGridViewTextBoxColumn1.HeaderText = "Correo Electrónico";
     this.correoElectrónicoDataGridViewTextBoxColumn1.Name = "correoElectrónicoDataGridViewTextBoxColumn1";
     this.correoElectrónicoDataGridViewTextBoxColumn1.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.correoElectrónicoDataGridViewTextBoxColumn1.Width = 116;
     //
     // FormularioSeleccionDestinatarios
     //
     this.AcceptButton = this.btnAceptar;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.SystemColors.InactiveBorder;
     this.CancelButton = this.btnCancelar;
     this.ClientSize = new System.Drawing.Size(628, 438);
     this.Controls.Add(this.bar1);
     this.Controls.Add(this.btnAgregar);
     this.Controls.Add(this.btnCco);
     this.Controls.Add(this.btnCc);
     this.Controls.Add(this.btnPara);
     this.Controls.Add(this.btnCancelar);
     this.Controls.Add(this.btnAceptar);
     this.Controls.Add(this.txtCco);
     this.Controls.Add(this.txtCc);
     this.Controls.Add(this.txtPara);
     this.Controls.Add(this.dataGridViewContactos);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Name = "FormularioSeleccionDestinatarios";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "FormularioSeleccionDestinatarios";
     this.Load += new System.EventHandler(this.FormularioSeleccionDestinatarios_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewContactos)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.contactoEmpresaBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.empresaDataSet)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).EndInit();
     this.ResumeLayout(false);
 }
Пример #31
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(TabShell));
     this.bar2 = new DevComponents.DotNetBar.Bar();
     this.mifExit = new DevComponents.DotNetBar.ButtonItem();
     this.btnLogin = new DevComponents.DotNetBar.ButtonItem();
     this.btnWindows = new DevComponents.DotNetBar.ButtonItem();
     this.btnCloseCurrentWindow = new DevComponents.DotNetBar.ButtonItem();
     this.btnCloseAllWindow = new DevComponents.DotNetBar.ButtonItem();
     this.btnChangePass = new DevComponents.DotNetBar.ButtonItem();
     this.panBottom = new System.Windows.Forms.Panel();
     this.navMainTool = new System.Windows.Forms.Panel();
     this.buttonItem1 = new DevComponents.DotNetBar.ButtonItem();
     this.dotNetBarManager1 = new DevComponents.DotNetBar.DotNetBarManager(this.components);
     this.dockSite4 = new DevComponents.DotNetBar.DockSite();
     this.dockSite9 = new DevComponents.DotNetBar.DockSite();
     this.barDocuments = new DevComponents.DotNetBar.Bar();
     this.dockSite1 = new DevComponents.DotNetBar.DockSite();
     this.dockSite2 = new DevComponents.DotNetBar.DockSite();
     this.dockSite8 = new DevComponents.DotNetBar.DockSite();
     this.dockSite5 = new DevComponents.DotNetBar.DockSite();
     this.dockSite6 = new DevComponents.DotNetBar.DockSite();
     this.dockSite7 = new DevComponents.DotNetBar.DockSite();
     this.barMenu = new DevComponents.DotNetBar.Bar();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.buttonItem2 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem3 = new DevComponents.DotNetBar.ButtonItem();
     this.dockSite3 = new DevComponents.DotNetBar.DockSite();
     this.bottomControl1 = new Gas_test2.Res.BottomControl();
     ((System.ComponentModel.ISupportInitialize)(this.bar2)).BeginInit();
     this.panBottom.SuspendLayout();
     this.dockSite9.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.barDocuments)).BeginInit();
     this.dockSite7.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.barMenu)).BeginInit();
     this.SuspendLayout();
     //
     // bar2
     //
     this.bar2.AccessibleDescription = "DotNetBar Bar (bar2)";
     this.bar2.AccessibleName = "DotNetBar Bar";
     this.bar2.AccessibleRole = System.Windows.Forms.AccessibleRole.ToolBar;
     this.bar2.Dock = System.Windows.Forms.DockStyle.Top;
     this.bar2.Font = new System.Drawing.Font("Microsoft YaHei UI", 9F);
     this.bar2.GrabHandleStyle = DevComponents.DotNetBar.eGrabHandleStyle.Office2003;
     this.bar2.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.mifExit,
     this.btnLogin,
     this.btnWindows,
     this.btnChangePass});
     this.bar2.Location = new System.Drawing.Point(0, 26);
     this.bar2.Name = "bar2";
     this.bar2.Size = new System.Drawing.Size(933, 41);
     this.bar2.Stretch = true;
     this.bar2.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.bar2.TabIndex = 62;
     this.bar2.TabStop = false;
     this.bar2.Text = "bar2";
     //
     // mifExit
     //
     this.mifExit.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.mifExit.Image = ((System.Drawing.Image)(resources.GetObject("mifExit.Image")));
     this.mifExit.ImageFixedSize = new System.Drawing.Size(30, 30);
     this.mifExit.Name = "mifExit";
     this.mifExit.Text = "退出";
     this.mifExit.Click += new System.EventHandler(this.btnExit_Click);
     //
     // btnLogin
     //
     this.btnLogin.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnLogin.Image = ((System.Drawing.Image)(resources.GetObject("btnLogin.Image")));
     this.btnLogin.ImageFixedSize = new System.Drawing.Size(30, 30);
     this.btnLogin.Name = "btnLogin";
     this.btnLogin.Text = "重新登录";
     this.btnLogin.Click += new System.EventHandler(this.btnLogin_Click);
     //
     // btnWindows
     //
     this.btnWindows.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnWindows.Image = ((System.Drawing.Image)(resources.GetObject("btnWindows.Image")));
     this.btnWindows.Name = "btnWindows";
     this.btnWindows.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnCloseCurrentWindow,
     this.btnCloseAllWindow});
     this.btnWindows.Text = "窗口";
     //
     // btnCloseCurrentWindow
     //
     this.btnCloseCurrentWindow.Name = "btnCloseCurrentWindow";
     this.btnCloseCurrentWindow.Text = "关闭当前窗口";
     this.btnCloseCurrentWindow.Click += new System.EventHandler(this.btnCloseNowWindow_Click);
     //
     // btnCloseAllWindow
     //
     this.btnCloseAllWindow.Name = "btnCloseAllWindow";
     this.btnCloseAllWindow.Text = "关闭所有窗口";
     this.btnCloseAllWindow.Click += new System.EventHandler(this.btnCloseAllWindow_Click);
     //
     // btnChangePass
     //
     this.btnChangePass.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnChangePass.Image = ((System.Drawing.Image)(resources.GetObject("btnChangePass.Image")));
     this.btnChangePass.ImageFixedSize = new System.Drawing.Size(30, 30);
     this.btnChangePass.Name = "btnChangePass";
     this.btnChangePass.Text = "修改密码";
     this.btnChangePass.Click += new System.EventHandler(this.btnChangePass_Click);
     //
     // panBottom
     //
     this.panBottom.Controls.Add(this.bottomControl1);
     this.panBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panBottom.Location = new System.Drawing.Point(0, 586);
     this.panBottom.Margin = new System.Windows.Forms.Padding(0);
     this.panBottom.Name = "panBottom";
     this.panBottom.Size = new System.Drawing.Size(933, 25);
     this.panBottom.TabIndex = 85;
     //
     // navMainTool
     //
     this.navMainTool.Location = new System.Drawing.Point(0, 0);
     this.navMainTool.Name = "navMainTool";
     this.navMainTool.Size = new System.Drawing.Size(200, 100);
     this.navMainTool.TabIndex = 0;
     //
     // buttonItem1
     //
     this.buttonItem1.Name = "buttonItem1";
     this.buttonItem1.Text = "buttonItem1";
     //
     // dotNetBarManager1
     //
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.F1);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlC);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlA);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlV);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlX);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlZ);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlY);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Del);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Ins);
     this.dotNetBarManager1.BottomDockSite = this.dockSite4;
     this.dotNetBarManager1.EnableFullSizeDock = false;
     this.dotNetBarManager1.FillDockSite = this.dockSite9;
     this.dotNetBarManager1.LeftDockSite = this.dockSite1;
     this.dotNetBarManager1.ParentForm = this;
     this.dotNetBarManager1.RightDockSite = this.dockSite2;
     this.dotNetBarManager1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Windows7;
     this.dotNetBarManager1.ToolbarBottomDockSite = this.dockSite8;
     this.dotNetBarManager1.ToolbarLeftDockSite = this.dockSite5;
     this.dotNetBarManager1.ToolbarRightDockSite = this.dockSite6;
     this.dotNetBarManager1.ToolbarTopDockSite = this.dockSite7;
     this.dotNetBarManager1.TopDockSite = this.dockSite3;
     //
     // dockSite4
     //
     this.dockSite4.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite4.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.dockSite4.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite4.Location = new System.Drawing.Point(0, 611);
     this.dockSite4.Name = "dockSite4";
     this.dockSite4.Size = new System.Drawing.Size(933, 0);
     this.dockSite4.TabIndex = 100;
     this.dockSite4.TabStop = false;
     //
     // dockSite9
     //
     this.dockSite9.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite9.Controls.Add(this.barDocuments);
     this.dockSite9.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dockSite9.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer(new DevComponents.DotNetBar.DocumentBaseContainer[] {
     ((DevComponents.DotNetBar.DocumentBaseContainer)(new DevComponents.DotNetBar.DocumentBarContainer(this.barDocuments, 933, 519)))}, DevComponents.DotNetBar.eOrientation.Horizontal);
     this.dockSite9.Location = new System.Drawing.Point(0, 67);
     this.dockSite9.Name = "dockSite9";
     this.dockSite9.Size = new System.Drawing.Size(933, 519);
     this.dockSite9.TabIndex = 105;
     this.dockSite9.TabStop = false;
     //
     // barDocuments
     //
     this.barDocuments.AccessibleDescription = "DotNetBar Bar (barDocuments)";
     this.barDocuments.AccessibleName = "DotNetBar Bar";
     this.barDocuments.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.barDocuments.AlwaysDisplayDockTab = true;
     this.barDocuments.CanCustomize = false;
     this.barDocuments.CanDockBottom = false;
     this.barDocuments.CanDockDocument = true;
     this.barDocuments.CanDockLeft = false;
     this.barDocuments.CanDockRight = false;
     this.barDocuments.CanDockTop = false;
     this.barDocuments.CanHide = true;
     this.barDocuments.CanUndock = false;
     this.barDocuments.DockTabAlignment = DevComponents.DotNetBar.eTabStripAlignment.Top;
     this.barDocuments.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.barDocuments.LayoutType = DevComponents.DotNetBar.eLayoutType.DockContainer;
     this.barDocuments.Location = new System.Drawing.Point(0, 0);
     this.barDocuments.Name = "barDocuments";
     this.barDocuments.Size = new System.Drawing.Size(933, 519);
     this.barDocuments.Stretch = true;
     this.barDocuments.Style = DevComponents.DotNetBar.eDotNetBarStyle.Windows7;
     this.barDocuments.TabIndex = 0;
     this.barDocuments.TabNavigation = true;
     this.barDocuments.TabStop = false;
     this.barDocuments.DockTabClosing += new DevComponents.DotNetBar.DockTabClosingEventHandler(this.barDocuments_DockTabClosing);
     //
     // dockSite1
     //
     this.dockSite1.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite1.Dock = System.Windows.Forms.DockStyle.Left;
     this.dockSite1.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite1.Location = new System.Drawing.Point(0, 67);
     this.dockSite1.Name = "dockSite1";
     this.dockSite1.Size = new System.Drawing.Size(0, 519);
     this.dockSite1.TabIndex = 97;
     this.dockSite1.TabStop = false;
     //
     // dockSite2
     //
     this.dockSite2.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite2.Dock = System.Windows.Forms.DockStyle.Right;
     this.dockSite2.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite2.Location = new System.Drawing.Point(933, 67);
     this.dockSite2.Name = "dockSite2";
     this.dockSite2.Size = new System.Drawing.Size(0, 519);
     this.dockSite2.TabIndex = 98;
     this.dockSite2.TabStop = false;
     //
     // dockSite8
     //
     this.dockSite8.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite8.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.dockSite8.Location = new System.Drawing.Point(0, 611);
     this.dockSite8.Name = "dockSite8";
     this.dockSite8.Size = new System.Drawing.Size(933, 0);
     this.dockSite8.TabIndex = 104;
     this.dockSite8.TabStop = false;
     //
     // dockSite5
     //
     this.dockSite5.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite5.Dock = System.Windows.Forms.DockStyle.Left;
     this.dockSite5.Location = new System.Drawing.Point(0, 26);
     this.dockSite5.Name = "dockSite5";
     this.dockSite5.Size = new System.Drawing.Size(0, 585);
     this.dockSite5.TabIndex = 101;
     this.dockSite5.TabStop = false;
     //
     // dockSite6
     //
     this.dockSite6.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite6.Dock = System.Windows.Forms.DockStyle.Right;
     this.dockSite6.Location = new System.Drawing.Point(933, 26);
     this.dockSite6.Name = "dockSite6";
     this.dockSite6.Size = new System.Drawing.Size(0, 585);
     this.dockSite6.TabIndex = 102;
     this.dockSite6.TabStop = false;
     //
     // dockSite7
     //
     this.dockSite7.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite7.Controls.Add(this.barMenu);
     this.dockSite7.Dock = System.Windows.Forms.DockStyle.Top;
     this.dockSite7.Location = new System.Drawing.Point(0, 0);
     this.dockSite7.Name = "dockSite7";
     this.dockSite7.Size = new System.Drawing.Size(933, 26);
     this.dockSite7.TabIndex = 103;
     this.dockSite7.TabStop = false;
     //
     // barMenu
     //
     this.barMenu.AccessibleDescription = "DotNetBar Bar (barMenu)";
     this.barMenu.AccessibleName = "DotNetBar Bar";
     this.barMenu.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuBar;
     this.barMenu.DockSide = DevComponents.DotNetBar.eDockSide.Top;
     this.barMenu.Font = new System.Drawing.Font("Microsoft YaHei UI", 9F);
     this.barMenu.Images = this.imageList1;
     this.barMenu.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem2});
     this.barMenu.Location = new System.Drawing.Point(0, 0);
     this.barMenu.MenuBar = true;
     this.barMenu.Name = "barMenu";
     this.barMenu.Size = new System.Drawing.Size(933, 25);
     this.barMenu.Stretch = true;
     this.barMenu.Style = DevComponents.DotNetBar.eDotNetBarStyle.Windows7;
     this.barMenu.TabIndex = 0;
     this.barMenu.TabStop = false;
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "folder_closed_ii.ico");
     this.imageList1.Images.SetKeyName(1, "closed_floder.ico");
     //
     // buttonItem2
     //
     this.buttonItem2.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem2.Name = "buttonItem2";
     this.buttonItem2.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem3});
     this.buttonItem2.Text = "buttonItem2";
     //
     // buttonItem3
     //
     this.buttonItem3.Name = "buttonItem3";
     this.buttonItem3.Text = "buttonItem3";
     //
     // dockSite3
     //
     this.dockSite3.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite3.Dock = System.Windows.Forms.DockStyle.Top;
     this.dockSite3.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite3.Location = new System.Drawing.Point(0, 26);
     this.dockSite3.Name = "dockSite3";
     this.dockSite3.Size = new System.Drawing.Size(933, 0);
     this.dockSite3.TabIndex = 99;
     this.dockSite3.TabStop = false;
     //
     // bottomControl1
     //
     this.bottomControl1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.bottomControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.bottomControl1.Location = new System.Drawing.Point(0, 0);
     this.bottomControl1.Margin = new System.Windows.Forms.Padding(0);
     this.bottomControl1.Name = "bottomControl1";
     this.bottomControl1.Size = new System.Drawing.Size(933, 25);
     this.bottomControl1.TabIndex = 0;
     //
     // TabShell
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(933, 611);
     this.Controls.Add(this.dockSite9);
     this.Controls.Add(this.dockSite2);
     this.Controls.Add(this.dockSite1);
     this.Controls.Add(this.panBottom);
     this.Controls.Add(this.bar2);
     this.Controls.Add(this.dockSite3);
     this.Controls.Add(this.dockSite4);
     this.Controls.Add(this.dockSite5);
     this.Controls.Add(this.dockSite6);
     this.Controls.Add(this.dockSite7);
     this.Controls.Add(this.dockSite8);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.IsMdiContainer = true;
     this.Name = "TabShell";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "AgileEAS.NET SOA中间件";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     ((System.ComponentModel.ISupportInitialize)(this.bar2)).EndInit();
     this.panBottom.ResumeLayout(false);
     this.dockSite9.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.barDocuments)).EndInit();
     this.dockSite7.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.barMenu)).EndInit();
     this.ResumeLayout(false);
 }
Пример #32
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(main));
     this.ribbonControl1 = new DevComponents.DotNetBar.RibbonControl();
     this.ribbonPanel1 = new DevComponents.DotNetBar.RibbonPanel();
     this.ribbonBar16 = new DevComponents.DotNetBar.RibbonBar();
     this.Exit = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBar13 = new DevComponents.DotNetBar.RibbonBar();
     this.Refresh = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBar3 = new DevComponents.DotNetBar.RibbonBar();
     this._save = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBar2 = new DevComponents.DotNetBar.RibbonBar();
     this._open = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBar1 = new DevComponents.DotNetBar.RibbonBar();
     this._newproject = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonPanel2 = new DevComponents.DotNetBar.RibbonPanel();
     this.ribbonBar9 = new DevComponents.DotNetBar.RibbonBar();
     this.buttonItem14 = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBar8 = new DevComponents.DotNetBar.RibbonBar();
     this.buttonItem13 = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBar7 = new DevComponents.DotNetBar.RibbonBar();
     this.buttonItem12 = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBar6 = new DevComponents.DotNetBar.RibbonBar();
     this.buttonItem8 = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBar5 = new DevComponents.DotNetBar.RibbonBar();
     this.buttonItem11 = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonPanel4 = new DevComponents.DotNetBar.RibbonPanel();
     this.ribbonBar4 = new DevComponents.DotNetBar.RibbonBar();
     this.buttonItem5 = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBar15 = new DevComponents.DotNetBar.RibbonBar();
     this.buttonItem2 = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBar12 = new DevComponents.DotNetBar.RibbonBar();
     this.buttonItem4 = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBar11 = new DevComponents.DotNetBar.RibbonBar();
     this.buttonItem16 = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBar10 = new DevComponents.DotNetBar.RibbonBar();
     this.buttonItem15 = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonPanel5 = new DevComponents.DotNetBar.RibbonPanel();
     this.ribbonBar14 = new DevComponents.DotNetBar.RibbonBar();
     this.buttonItem3 = new DevComponents.DotNetBar.ButtonItem();
     this._File = new DevComponents.DotNetBar.RibbonTabItem();
     this._Edit = new DevComponents.DotNetBar.RibbonTabItem();
     this._Test = new DevComponents.DotNetBar.RibbonTabItem();
     this.ribbonTabItem3 = new DevComponents.DotNetBar.RibbonTabItem();
     this.styleManager1 = new DevComponents.DotNetBar.StyleManager(this.components);
     this._New = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem1 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem9 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem10 = new DevComponents.DotNetBar.ButtonItem();
     this.dotNetBarManager1 = new DevComponents.DotNetBar.DotNetBarManager(this.components);
     this.dockSite4 = new DevComponents.DotNetBar.DockSite();
     this.dockSite1 = new DevComponents.DotNetBar.DockSite();
     this.bar1 = new DevComponents.DotNetBar.Bar();
     this.panelDockContainer1 = new DevComponents.DotNetBar.PanelDockContainer();
     this.treeViewproject = new System.Windows.Forms.TreeView();
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.addNewFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.deleteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.runToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.spyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.refreshToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.dockContainerItem1 = new DevComponents.DotNetBar.DockContainerItem();
     this.dockSite2 = new DevComponents.DotNetBar.DockSite();
     this.dockSite8 = new DevComponents.DotNetBar.DockSite();
     this.dockSite5 = new DevComponents.DotNetBar.DockSite();
     this.dockSite6 = new DevComponents.DotNetBar.DockSite();
     this.dockSite7 = new DevComponents.DotNetBar.DockSite();
     this.dockSite3 = new DevComponents.DotNetBar.DockSite();
     this.metroTileItem2 = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.contextMenuStrip2 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.closeTabToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.copyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
     this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
     this.tabPage1 = new System.Windows.Forms.TabPage();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.tabControl1 = new System.Windows.Forms.CustomTabControl();
     this.ribbonControl1.SuspendLayout();
     this.ribbonPanel1.SuspendLayout();
     this.ribbonPanel2.SuspendLayout();
     this.ribbonPanel4.SuspendLayout();
     this.ribbonPanel5.SuspendLayout();
     this.dockSite1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).BeginInit();
     this.bar1.SuspendLayout();
     this.panelDockContainer1.SuspendLayout();
     this.contextMenuStrip1.SuspendLayout();
     this.contextMenuStrip2.SuspendLayout();
     this.tabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.tabControl1.SuspendLayout();
     this.SuspendLayout();
     //
     // ribbonControl1
     //
     //
     //
     //
     this.ribbonControl1.BackgroundStyle.Class = "";
     this.ribbonControl1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonControl1.CaptionVisible = true;
     this.ribbonControl1.Controls.Add(this.ribbonPanel1);
     this.ribbonControl1.Controls.Add(this.ribbonPanel2);
     this.ribbonControl1.Controls.Add(this.ribbonPanel4);
     this.ribbonControl1.Controls.Add(this.ribbonPanel5);
     this.ribbonControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.ribbonControl1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this._File,
     this._Edit,
     this._Test,
     this.ribbonTabItem3});
     this.ribbonControl1.KeyTipsFont = new System.Drawing.Font("Tahoma", 7F);
     this.ribbonControl1.Location = new System.Drawing.Point(5, 1);
     this.ribbonControl1.Name = "ribbonControl1";
     this.ribbonControl1.Padding = new System.Windows.Forms.Padding(0, 0, 0, 2);
     this.ribbonControl1.Size = new System.Drawing.Size(996, 129);
     this.ribbonControl1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonControl1.SystemText.MaximizeRibbonText = "&Maximize the Ribbon";
     this.ribbonControl1.SystemText.MinimizeRibbonText = "Mi&nimize the Ribbon";
     this.ribbonControl1.SystemText.QatAddItemText = "&Add to Quick Access Toolbar";
     this.ribbonControl1.SystemText.QatCustomizeMenuLabel = "<b>Customize Quick Access Toolbar</b>";
     this.ribbonControl1.SystemText.QatCustomizeText = "&Customize Quick Access Toolbar...";
     this.ribbonControl1.SystemText.QatDialogAddButton = "&Add >>";
     this.ribbonControl1.SystemText.QatDialogCancelButton = "Cancel";
     this.ribbonControl1.SystemText.QatDialogCaption = "Customize Quick Access Toolbar";
     this.ribbonControl1.SystemText.QatDialogCategoriesLabel = "&Choose commands from:";
     this.ribbonControl1.SystemText.QatDialogOkButton = "OK";
     this.ribbonControl1.SystemText.QatDialogPlacementCheckbox = "&Place Quick Access Toolbar below the Ribbon";
     this.ribbonControl1.SystemText.QatDialogRemoveButton = "&Remove";
     this.ribbonControl1.SystemText.QatPlaceAboveRibbonText = "&Place Quick Access Toolbar above the Ribbon";
     this.ribbonControl1.SystemText.QatPlaceBelowRibbonText = "&Place Quick Access Toolbar below the Ribbon";
     this.ribbonControl1.SystemText.QatRemoveItemText = "&Remove from Quick Access Toolbar";
     this.ribbonControl1.TabGroupHeight = 14;
     this.ribbonControl1.TabIndex = 0;
     this.ribbonControl1.Text = "ribbonControl1";
     //
     // ribbonPanel1
     //
     this.ribbonPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonPanel1.Controls.Add(this.ribbonBar16);
     this.ribbonPanel1.Controls.Add(this.ribbonBar13);
     this.ribbonPanel1.Controls.Add(this.ribbonBar3);
     this.ribbonPanel1.Controls.Add(this.ribbonBar2);
     this.ribbonPanel1.Controls.Add(this.ribbonBar1);
     this.ribbonPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ribbonPanel1.Location = new System.Drawing.Point(0, 53);
     this.ribbonPanel1.MaximumSize = new System.Drawing.Size(0, 70);
     this.ribbonPanel1.Name = "ribbonPanel1";
     this.ribbonPanel1.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
     this.ribbonPanel1.Size = new System.Drawing.Size(996, 70);
     //
     //
     //
     this.ribbonPanel1.Style.Class = "";
     this.ribbonPanel1.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonPanel1.StyleMouseDown.Class = "";
     this.ribbonPanel1.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonPanel1.StyleMouseOver.Class = "";
     this.ribbonPanel1.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonPanel1.TabIndex = 1;
     //
     // ribbonBar16
     //
     this.ribbonBar16.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar16.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar16.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar16.BackgroundStyle.Class = "";
     this.ribbonBar16.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar16.ContainerControlProcessDialogKey = true;
     this.ribbonBar16.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar16.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.Exit});
     this.ribbonBar16.Location = new System.Drawing.Point(306, 0);
     this.ribbonBar16.Name = "ribbonBar16";
     this.ribbonBar16.Size = new System.Drawing.Size(100, 67);
     this.ribbonBar16.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar16.TabIndex = 4;
     //
     //
     //
     this.ribbonBar16.TitleStyle.Class = "";
     this.ribbonBar16.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar16.TitleStyleMouseOver.Class = "";
     this.ribbonBar16.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // Exit
     //
     this.Exit.Image = ((System.Drawing.Image)(resources.GetObject("Exit.Image")));
     this.Exit.ImageFixedSize = new System.Drawing.Size(30, 30);
     this.Exit.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.Exit.Name = "Exit";
     this.Exit.SubItemsExpandWidth = 14;
     this.Exit.Text = "<div width=\"70\"  align=\"center\">Exit</div>";
     this.Exit.Click += new System.EventHandler(this.Exit_Click);
     //
     // ribbonBar13
     //
     this.ribbonBar13.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar13.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar13.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar13.BackgroundStyle.Class = "";
     this.ribbonBar13.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar13.ContainerControlProcessDialogKey = true;
     this.ribbonBar13.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar13.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.Refresh});
     this.ribbonBar13.Location = new System.Drawing.Point(232, 0);
     this.ribbonBar13.MaximumSize = new System.Drawing.Size(100, 100);
     this.ribbonBar13.Name = "ribbonBar13";
     this.ribbonBar13.Size = new System.Drawing.Size(74, 67);
     this.ribbonBar13.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar13.TabIndex = 3;
     //
     //
     //
     this.ribbonBar13.TitleStyle.Class = "";
     this.ribbonBar13.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar13.TitleStyleMouseOver.Class = "";
     this.ribbonBar13.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // Refresh
     //
     this.Refresh.Image = ((System.Drawing.Image)(resources.GetObject("Refresh.Image")));
     this.Refresh.ImageFixedSize = new System.Drawing.Size(30, 30);
     this.Refresh.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.Refresh.Name = "Refresh";
     this.Refresh.SubItemsExpandWidth = 14;
     this.Refresh.Text = "<div width=\"70\"  align=\"center\">Refersh</div>";
     this.Refresh.Click += new System.EventHandler(this.Refresh_Click);
     //
     // ribbonBar3
     //
     this.ribbonBar3.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar3.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar3.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar3.BackgroundStyle.Class = "";
     this.ribbonBar3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar3.ContainerControlProcessDialogKey = true;
     this.ribbonBar3.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar3.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this._save});
     this.ribbonBar3.Location = new System.Drawing.Point(158, 0);
     this.ribbonBar3.MaximumSize = new System.Drawing.Size(100, 100);
     this.ribbonBar3.Name = "ribbonBar3";
     this.ribbonBar3.Size = new System.Drawing.Size(74, 67);
     this.ribbonBar3.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar3.TabIndex = 2;
     //
     //
     //
     this.ribbonBar3.TitleStyle.Class = "";
     this.ribbonBar3.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar3.TitleStyleMouseOver.Class = "";
     this.ribbonBar3.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // _save
     //
     this._save.Image = ((System.Drawing.Image)(resources.GetObject("_save.Image")));
     this._save.ImageFixedSize = new System.Drawing.Size(30, 30);
     this._save.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this._save.Name = "_save";
     this._save.SubItemsExpandWidth = 14;
     this._save.Text = "<div width=\"70\"  align=\"center\">Save</div>";
     this._save.Click += new System.EventHandler(this.buttonItem5_Click);
     //
     // ribbonBar2
     //
     this.ribbonBar2.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar2.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar2.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar2.BackgroundStyle.Class = "";
     this.ribbonBar2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar2.ContainerControlProcessDialogKey = true;
     this.ribbonBar2.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar2.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this._open});
     this.ribbonBar2.Location = new System.Drawing.Point(79, 0);
     this.ribbonBar2.MaximumSize = new System.Drawing.Size(100, 100);
     this.ribbonBar2.Name = "ribbonBar2";
     this.ribbonBar2.Size = new System.Drawing.Size(79, 67);
     this.ribbonBar2.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar2.TabIndex = 1;
     //
     //
     //
     this.ribbonBar2.TitleStyle.Class = "";
     this.ribbonBar2.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar2.TitleStyleMouseOver.Class = "";
     this.ribbonBar2.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // _open
     //
     this._open.Image = ((System.Drawing.Image)(resources.GetObject("_open.Image")));
     this._open.ImageFixedSize = new System.Drawing.Size(30, 30);
     this._open.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this._open.Name = "_open";
     this._open.SubItemsExpandWidth = 14;
     this._open.Text = "<div width=\"70\"  align=\"center\">Open</div>";
     this._open.Click += new System.EventHandler(this.buttonItem3_Click);
     //
     // ribbonBar1
     //
     this.ribbonBar1.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar1.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar1.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar1.BackgroundStyle.Class = "";
     this.ribbonBar1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar1.ContainerControlProcessDialogKey = true;
     this.ribbonBar1.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this._newproject});
     this.ribbonBar1.Location = new System.Drawing.Point(3, 0);
     this.ribbonBar1.MaximumSize = new System.Drawing.Size(100, 100);
     this.ribbonBar1.Name = "ribbonBar1";
     this.ribbonBar1.Size = new System.Drawing.Size(76, 67);
     this.ribbonBar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar1.TabIndex = 0;
     //
     //
     //
     this.ribbonBar1.TitleStyle.Class = "";
     this.ribbonBar1.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar1.TitleStyleMouseOver.Class = "";
     this.ribbonBar1.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // _newproject
     //
     this._newproject.Image = ((System.Drawing.Image)(resources.GetObject("_newproject.Image")));
     this._newproject.ImageFixedSize = new System.Drawing.Size(30, 30);
     this._newproject.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this._newproject.Name = "_newproject";
     this._newproject.SubItemsExpandWidth = 14;
     this._newproject.Text = "<div width=\"70\"  align=\"center\">New Project</div>";
     this._newproject.Click += new System.EventHandler(this.buttonItem2_Click);
     //
     // ribbonPanel2
     //
     this.ribbonPanel2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonPanel2.Controls.Add(this.ribbonBar9);
     this.ribbonPanel2.Controls.Add(this.ribbonBar8);
     this.ribbonPanel2.Controls.Add(this.ribbonBar7);
     this.ribbonPanel2.Controls.Add(this.ribbonBar6);
     this.ribbonPanel2.Controls.Add(this.ribbonBar5);
     this.ribbonPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ribbonPanel2.Location = new System.Drawing.Point(0, 53);
     this.ribbonPanel2.Name = "ribbonPanel2";
     this.ribbonPanel2.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
     this.ribbonPanel2.Size = new System.Drawing.Size(996, 74);
     //
     //
     //
     this.ribbonPanel2.Style.Class = "";
     this.ribbonPanel2.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonPanel2.StyleMouseDown.Class = "";
     this.ribbonPanel2.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonPanel2.StyleMouseOver.Class = "";
     this.ribbonPanel2.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonPanel2.TabIndex = 2;
     this.ribbonPanel2.Visible = false;
     //
     // ribbonBar9
     //
     this.ribbonBar9.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar9.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar9.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar9.BackgroundStyle.Class = "";
     this.ribbonBar9.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar9.ContainerControlProcessDialogKey = true;
     this.ribbonBar9.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar9.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem14});
     this.ribbonBar9.Location = new System.Drawing.Point(403, 0);
     this.ribbonBar9.Name = "ribbonBar9";
     this.ribbonBar9.Size = new System.Drawing.Size(100, 71);
     this.ribbonBar9.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar9.TabIndex = 4;
     //
     //
     //
     this.ribbonBar9.TitleStyle.Class = "";
     this.ribbonBar9.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar9.TitleStyleMouseOver.Class = "";
     this.ribbonBar9.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonItem14
     //
     this.buttonItem14.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem14.Image")));
     this.buttonItem14.ImageFixedSize = new System.Drawing.Size(30, 30);
     this.buttonItem14.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem14.Name = "buttonItem14";
     this.buttonItem14.SubItemsExpandWidth = 14;
     this.buttonItem14.Text = "<div width=\"70\"  align=\"center\">Parse</div>";
     //
     // ribbonBar8
     //
     this.ribbonBar8.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar8.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar8.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar8.BackgroundStyle.Class = "";
     this.ribbonBar8.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar8.ContainerControlProcessDialogKey = true;
     this.ribbonBar8.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar8.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem13});
     this.ribbonBar8.Location = new System.Drawing.Point(303, 0);
     this.ribbonBar8.Name = "ribbonBar8";
     this.ribbonBar8.Size = new System.Drawing.Size(100, 71);
     this.ribbonBar8.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar8.TabIndex = 3;
     //
     //
     //
     this.ribbonBar8.TitleStyle.Class = "";
     this.ribbonBar8.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar8.TitleStyleMouseOver.Class = "";
     this.ribbonBar8.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonItem13
     //
     this.buttonItem13.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem13.Image")));
     this.buttonItem13.ImageFixedSize = new System.Drawing.Size(30, 30);
     this.buttonItem13.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem13.Name = "buttonItem13";
     this.buttonItem13.SubItemsExpandWidth = 14;
     this.buttonItem13.Text = "<div width=\"70\"  align=\"center\">Cut</div>";
     //
     // ribbonBar7
     //
     this.ribbonBar7.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar7.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar7.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar7.BackgroundStyle.Class = "";
     this.ribbonBar7.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar7.ContainerControlProcessDialogKey = true;
     this.ribbonBar7.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar7.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem12});
     this.ribbonBar7.Location = new System.Drawing.Point(203, 0);
     this.ribbonBar7.Name = "ribbonBar7";
     this.ribbonBar7.Size = new System.Drawing.Size(100, 71);
     this.ribbonBar7.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar7.TabIndex = 2;
     //
     //
     //
     this.ribbonBar7.TitleStyle.Class = "";
     this.ribbonBar7.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar7.TitleStyleMouseOver.Class = "";
     this.ribbonBar7.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonItem12
     //
     this.buttonItem12.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem12.Image")));
     this.buttonItem12.ImageFixedSize = new System.Drawing.Size(30, 30);
     this.buttonItem12.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem12.Name = "buttonItem12";
     this.buttonItem12.SubItemsExpandWidth = 14;
     this.buttonItem12.Text = "<div width=\"70\"  align=\"center\">Copy</div>";
     //
     // ribbonBar6
     //
     this.ribbonBar6.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar6.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar6.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar6.BackgroundStyle.Class = "";
     this.ribbonBar6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar6.ContainerControlProcessDialogKey = true;
     this.ribbonBar6.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar6.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem8});
     this.ribbonBar6.Location = new System.Drawing.Point(103, 0);
     this.ribbonBar6.Name = "ribbonBar6";
     this.ribbonBar6.Size = new System.Drawing.Size(100, 71);
     this.ribbonBar6.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar6.TabIndex = 1;
     //
     //
     //
     this.ribbonBar6.TitleStyle.Class = "";
     this.ribbonBar6.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar6.TitleStyleMouseOver.Class = "";
     this.ribbonBar6.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonItem8
     //
     this.buttonItem8.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem8.Image")));
     this.buttonItem8.ImageFixedSize = new System.Drawing.Size(30, 30);
     this.buttonItem8.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem8.Name = "buttonItem8";
     this.buttonItem8.SubItemsExpandWidth = 14;
     this.buttonItem8.Text = "<div width=\"70\"  align=\"center\">Redo</div>";
     //
     // ribbonBar5
     //
     this.ribbonBar5.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar5.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar5.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar5.BackgroundStyle.Class = "";
     this.ribbonBar5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar5.ContainerControlProcessDialogKey = true;
     this.ribbonBar5.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar5.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem11});
     this.ribbonBar5.Location = new System.Drawing.Point(3, 0);
     this.ribbonBar5.Name = "ribbonBar5";
     this.ribbonBar5.Size = new System.Drawing.Size(100, 71);
     this.ribbonBar5.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar5.TabIndex = 0;
     //
     //
     //
     this.ribbonBar5.TitleStyle.Class = "";
     this.ribbonBar5.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar5.TitleStyleMouseOver.Class = "";
     this.ribbonBar5.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonItem11
     //
     this.buttonItem11.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem11.Image")));
     this.buttonItem11.ImageFixedSize = new System.Drawing.Size(30, 30);
     this.buttonItem11.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem11.Name = "buttonItem11";
     this.buttonItem11.SubItemsExpandWidth = 14;
     this.buttonItem11.Text = "<div width=\"70\"  align=\"center\">Undo</div>";
     //
     // ribbonPanel4
     //
     this.ribbonPanel4.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonPanel4.Controls.Add(this.ribbonBar4);
     this.ribbonPanel4.Controls.Add(this.ribbonBar15);
     this.ribbonPanel4.Controls.Add(this.ribbonBar12);
     this.ribbonPanel4.Controls.Add(this.ribbonBar11);
     this.ribbonPanel4.Controls.Add(this.ribbonBar10);
     this.ribbonPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ribbonPanel4.Location = new System.Drawing.Point(0, 53);
     this.ribbonPanel4.Name = "ribbonPanel4";
     this.ribbonPanel4.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
     this.ribbonPanel4.Size = new System.Drawing.Size(996, 74);
     //
     //
     //
     this.ribbonPanel4.Style.Class = "";
     this.ribbonPanel4.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonPanel4.StyleMouseDown.Class = "";
     this.ribbonPanel4.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonPanel4.StyleMouseOver.Class = "";
     this.ribbonPanel4.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonPanel4.TabIndex = 4;
     this.ribbonPanel4.Visible = false;
     //
     // ribbonBar4
     //
     this.ribbonBar4.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar4.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar4.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar4.BackgroundStyle.Class = "";
     this.ribbonBar4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar4.ContainerControlProcessDialogKey = true;
     this.ribbonBar4.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar4.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem5});
     this.ribbonBar4.Location = new System.Drawing.Point(403, 0);
     this.ribbonBar4.Name = "ribbonBar4";
     this.ribbonBar4.Size = new System.Drawing.Size(100, 71);
     this.ribbonBar4.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar4.TabIndex = 4;
     //
     //
     //
     this.ribbonBar4.TitleStyle.Class = "";
     this.ribbonBar4.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar4.TitleStyleMouseOver.Class = "";
     this.ribbonBar4.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonItem5
     //
     this.buttonItem5.Enabled = false;
     this.buttonItem5.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem5.Image")));
     this.buttonItem5.ImageFixedSize = new System.Drawing.Size(30, 30);
     this.buttonItem5.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem5.Name = "buttonItem5";
     this.buttonItem5.SubItemsExpandWidth = 14;
     this.buttonItem5.Text = "<div width=\"70\"  align=\"center\">Spy</div>";
     this.buttonItem5.Click += new System.EventHandler(this.buttonItem5_Click_1);
     //
     // ribbonBar15
     //
     this.ribbonBar15.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar15.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar15.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar15.BackgroundStyle.Class = "";
     this.ribbonBar15.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar15.ContainerControlProcessDialogKey = true;
     this.ribbonBar15.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar15.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem2});
     this.ribbonBar15.Location = new System.Drawing.Point(303, 0);
     this.ribbonBar15.Name = "ribbonBar15";
     this.ribbonBar15.Size = new System.Drawing.Size(100, 71);
     this.ribbonBar15.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar15.TabIndex = 3;
     this.ribbonBar15.Text = " ";
     //
     //
     //
     this.ribbonBar15.TitleStyle.Class = "";
     this.ribbonBar15.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar15.TitleStyleMouseOver.Class = "";
     this.ribbonBar15.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonItem2
     //
     this.buttonItem2.Enabled = false;
     this.buttonItem2.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem2.Image")));
     this.buttonItem2.ImageFixedSize = new System.Drawing.Size(30, 30);
     this.buttonItem2.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem2.Name = "buttonItem2";
     this.buttonItem2.SubItemsExpandWidth = 14;
     this.buttonItem2.Text = "<div width=\"70\"  align=\"center\">Resum</div>";
     this.buttonItem2.Click += new System.EventHandler(this.buttonItem2_Click_1);
     //
     // ribbonBar12
     //
     this.ribbonBar12.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar12.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar12.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar12.BackgroundStyle.Class = "";
     this.ribbonBar12.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar12.ContainerControlProcessDialogKey = true;
     this.ribbonBar12.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar12.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem4});
     this.ribbonBar12.Location = new System.Drawing.Point(203, 0);
     this.ribbonBar12.Name = "ribbonBar12";
     this.ribbonBar12.Size = new System.Drawing.Size(100, 71);
     this.ribbonBar12.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar12.TabIndex = 2;
     //
     //
     //
     this.ribbonBar12.TitleStyle.Class = "";
     this.ribbonBar12.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar12.TitleStyleMouseOver.Class = "";
     this.ribbonBar12.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonItem4
     //
     this.buttonItem4.Enabled = false;
     this.buttonItem4.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem4.Image")));
     this.buttonItem4.ImageFixedSize = new System.Drawing.Size(30, 30);
     this.buttonItem4.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem4.Name = "buttonItem4";
     this.buttonItem4.SubItemsExpandWidth = 14;
     this.buttonItem4.Text = "<div width=\"70\"  align=\"center\">Stop</div>";
     this.buttonItem4.Click += new System.EventHandler(this.buttonItem4_Click);
     //
     // ribbonBar11
     //
     this.ribbonBar11.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar11.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar11.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar11.BackgroundStyle.Class = "";
     this.ribbonBar11.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar11.ContainerControlProcessDialogKey = true;
     this.ribbonBar11.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar11.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem16});
     this.ribbonBar11.Location = new System.Drawing.Point(103, 0);
     this.ribbonBar11.Name = "ribbonBar11";
     this.ribbonBar11.Size = new System.Drawing.Size(100, 71);
     this.ribbonBar11.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar11.TabIndex = 1;
     //
     //
     //
     this.ribbonBar11.TitleStyle.Class = "";
     this.ribbonBar11.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar11.TitleStyleMouseOver.Class = "";
     this.ribbonBar11.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonItem16
     //
     this.buttonItem16.Enabled = false;
     this.buttonItem16.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem16.Image")));
     this.buttonItem16.ImageFixedSize = new System.Drawing.Size(30, 30);
     this.buttonItem16.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem16.Name = "buttonItem16";
     this.buttonItem16.SubItemsExpandWidth = 14;
     this.buttonItem16.Text = "<div width=\"70\"  align=\"center\">Pause</div>";
     this.buttonItem16.Click += new System.EventHandler(this.buttonItem16_Click);
     //
     // ribbonBar10
     //
     this.ribbonBar10.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar10.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar10.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar10.BackgroundStyle.Class = "";
     this.ribbonBar10.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar10.ContainerControlProcessDialogKey = true;
     this.ribbonBar10.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar10.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem15});
     this.ribbonBar10.Location = new System.Drawing.Point(3, 0);
     this.ribbonBar10.Name = "ribbonBar10";
     this.ribbonBar10.Size = new System.Drawing.Size(100, 71);
     this.ribbonBar10.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar10.TabIndex = 0;
     //
     //
     //
     this.ribbonBar10.TitleStyle.Class = "";
     this.ribbonBar10.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar10.TitleStyleMouseOver.Class = "";
     this.ribbonBar10.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonItem15
     //
     this.buttonItem15.Enabled = false;
     this.buttonItem15.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem15.Image")));
     this.buttonItem15.ImageFixedSize = new System.Drawing.Size(30, 30);
     this.buttonItem15.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem15.Name = "buttonItem15";
     this.buttonItem15.SubItemsExpandWidth = 14;
     this.buttonItem15.Text = "<div width=\"70\"  align=\"center\">Run</div>";
     this.buttonItem15.Click += new System.EventHandler(this.buttonItem15_Click);
     //
     // ribbonPanel5
     //
     this.ribbonPanel5.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonPanel5.Controls.Add(this.ribbonBar14);
     this.ribbonPanel5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ribbonPanel5.Location = new System.Drawing.Point(0, 53);
     this.ribbonPanel5.Name = "ribbonPanel5";
     this.ribbonPanel5.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
     this.ribbonPanel5.Size = new System.Drawing.Size(996, 74);
     //
     //
     //
     this.ribbonPanel5.Style.Class = "";
     this.ribbonPanel5.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonPanel5.StyleMouseDown.Class = "";
     this.ribbonPanel5.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonPanel5.StyleMouseOver.Class = "";
     this.ribbonPanel5.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonPanel5.TabIndex = 5;
     this.ribbonPanel5.Visible = false;
     //
     // ribbonBar14
     //
     this.ribbonBar14.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar14.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar14.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar14.BackgroundStyle.Class = "";
     this.ribbonBar14.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar14.ContainerControlProcessDialogKey = true;
     this.ribbonBar14.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar14.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem3});
     this.ribbonBar14.Location = new System.Drawing.Point(3, 0);
     this.ribbonBar14.Name = "ribbonBar14";
     this.ribbonBar14.Size = new System.Drawing.Size(100, 71);
     this.ribbonBar14.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar14.TabIndex = 0;
     //
     //
     //
     this.ribbonBar14.TitleStyle.Class = "";
     this.ribbonBar14.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar14.TitleStyleMouseOver.Class = "";
     this.ribbonBar14.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonItem3
     //
     this.buttonItem3.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem3.Image")));
     this.buttonItem3.ImageFixedSize = new System.Drawing.Size(30, 30);
     this.buttonItem3.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem3.Name = "buttonItem3";
     this.buttonItem3.SubItemsExpandWidth = 14;
     this.buttonItem3.Text = "<div width=\"70\"  align=\"center\">Hướng dẫn\r\n</div>";
     //
     // _File
     //
     this._File.Checked = true;
     this._File.Name = "_File";
     this._File.Panel = this.ribbonPanel1;
     this._File.Text = "FILE";
     //
     // _Edit
     //
     this._Edit.Name = "_Edit";
     this._Edit.Panel = this.ribbonPanel2;
     this._Edit.Text = "EDIT";
     //
     // _Test
     //
     this._Test.Name = "_Test";
     this._Test.Panel = this.ribbonPanel4;
     this._Test.Text = "TEST";
     //
     // ribbonTabItem3
     //
     this.ribbonTabItem3.Name = "ribbonTabItem3";
     this.ribbonTabItem3.Panel = this.ribbonPanel5;
     this.ribbonTabItem3.Text = "ABOUT";
     //
     // styleManager1
     //
     this.styleManager1.ManagerStyle = DevComponents.DotNetBar.eStyle.Office2010Blue;
     this.styleManager1.MetroColorParameters = new DevComponents.DotNetBar.Metro.ColorTables.MetroColorGeneratorParameters(System.Drawing.Color.White, System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(163)))), ((int)(((byte)(26))))));
     //
     // _New
     //
     this._New.Image = ((System.Drawing.Image)(resources.GetObject("_New.Image")));
     this._New.ImageFixedSize = new System.Drawing.Size(40, 40);
     this._New.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this._New.Name = "_New";
     this._New.SubItemsExpandWidth = 14;
     this._New.Text = "New File";
     //
     // buttonItem1
     //
     this.buttonItem1.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem1.Image")));
     this.buttonItem1.ImageFixedSize = new System.Drawing.Size(40, 40);
     this.buttonItem1.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem1.Name = "buttonItem1";
     this.buttonItem1.SubItemsExpandWidth = 14;
     this.buttonItem1.Text = "New File";
     //
     // buttonItem9
     //
     this.buttonItem9.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem9.Image")));
     this.buttonItem9.ImageFixedSize = new System.Drawing.Size(30, 30);
     this.buttonItem9.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem9.Name = "buttonItem9";
     this.buttonItem9.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem10});
     this.buttonItem9.SubItemsExpandWidth = 14;
     this.buttonItem9.Text = "<div width=\"70\"  align=\"center\">New File</div>";
     //
     // buttonItem10
     //
     this.buttonItem10.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem10.Image")));
     this.buttonItem10.ImageFixedSize = new System.Drawing.Size(40, 40);
     this.buttonItem10.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem10.Name = "buttonItem10";
     this.buttonItem10.SubItemsExpandWidth = 14;
     this.buttonItem10.Text = "<div width=\"70\" align=\"center\">Close</div>";
     //
     // dotNetBarManager1
     //
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.F1);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlC);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlA);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlV);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlX);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlZ);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlY);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Del);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Ins);
     this.dotNetBarManager1.BottomDockSite = this.dockSite4;
     this.dotNetBarManager1.EnableFullSizeDock = false;
     this.dotNetBarManager1.LeftDockSite = this.dockSite1;
     this.dotNetBarManager1.ParentForm = this;
     this.dotNetBarManager1.RightDockSite = this.dockSite2;
     this.dotNetBarManager1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
     this.dotNetBarManager1.ToolbarBottomDockSite = this.dockSite8;
     this.dotNetBarManager1.ToolbarLeftDockSite = this.dockSite5;
     this.dotNetBarManager1.ToolbarRightDockSite = this.dockSite6;
     this.dotNetBarManager1.ToolbarTopDockSite = this.dockSite7;
     this.dotNetBarManager1.TopDockSite = this.dockSite3;
     //
     // dockSite4
     //
     this.dockSite4.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite4.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.dockSite4.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite4.Location = new System.Drawing.Point(5, 516);
     this.dockSite4.Name = "dockSite4";
     this.dockSite4.Size = new System.Drawing.Size(996, 0);
     this.dockSite4.TabIndex = 4;
     this.dockSite4.TabStop = false;
     //
     // dockSite1
     //
     this.dockSite1.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite1.Controls.Add(this.bar1);
     this.dockSite1.Dock = System.Windows.Forms.DockStyle.Left;
     this.dockSite1.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer(new DevComponents.DotNetBar.DocumentBaseContainer[] {
     ((DevComponents.DotNetBar.DocumentBaseContainer)(new DevComponents.DotNetBar.DocumentBarContainer(this.bar1, 246, 386)))}, DevComponents.DotNetBar.eOrientation.Horizontal);
     this.dockSite1.Location = new System.Drawing.Point(5, 130);
     this.dockSite1.Name = "dockSite1";
     this.dockSite1.Size = new System.Drawing.Size(249, 386);
     this.dockSite1.TabIndex = 1;
     this.dockSite1.TabStop = false;
     //
     // bar1
     //
     this.bar1.AccessibleDescription = "DotNetBar Bar (bar1)";
     this.bar1.AccessibleName = "DotNetBar Bar";
     this.bar1.AccessibleRole = System.Windows.Forms.AccessibleRole.ToolBar;
     this.bar1.CanDockBottom = false;
     this.bar1.CloseSingleTab = true;
     this.bar1.Controls.Add(this.panelDockContainer1);
     this.bar1.Dock = System.Windows.Forms.DockStyle.Left;
     this.bar1.DockOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.bar1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.bar1.GrabHandleStyle = DevComponents.DotNetBar.eGrabHandleStyle.Caption;
     this.bar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.dockContainerItem1});
     this.bar1.LayoutType = DevComponents.DotNetBar.eLayoutType.DockContainer;
     this.bar1.Location = new System.Drawing.Point(0, 0);
     this.bar1.Name = "bar1";
     this.bar1.Size = new System.Drawing.Size(246, 386);
     this.bar1.Stretch = true;
     this.bar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
     this.bar1.TabIndex = 0;
     this.bar1.TabStop = false;
     this.bar1.Text = "Solution Explorer";
     //
     // panelDockContainer1
     //
     this.panelDockContainer1.Controls.Add(this.treeViewproject);
     this.panelDockContainer1.Location = new System.Drawing.Point(3, 23);
     this.panelDockContainer1.Name = "panelDockContainer1";
     this.panelDockContainer1.Size = new System.Drawing.Size(240, 360);
     this.panelDockContainer1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelDockContainer1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.panelDockContainer1.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(142)))), ((int)(((byte)(179)))), ((int)(((byte)(231)))));
     this.panelDockContainer1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.panelDockContainer1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.panelDockContainer1.Style.GradientAngle = 90;
     this.panelDockContainer1.StyleMouseDown.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(142)))), ((int)(((byte)(75)))));
     this.panelDockContainer1.StyleMouseDown.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(207)))), ((int)(((byte)(139)))));
     this.panelDockContainer1.StyleMouseDown.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))));
     this.panelDockContainer1.StyleMouseDown.ForeColor.Color = System.Drawing.SystemColors.ControlText;
     this.panelDockContainer1.StyleMouseOver.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(244)))), ((int)(((byte)(204)))));
     this.panelDockContainer1.StyleMouseOver.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(208)))), ((int)(((byte)(145)))));
     this.panelDockContainer1.StyleMouseOver.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))));
     this.panelDockContainer1.StyleMouseOver.ForeColor.Color = System.Drawing.SystemColors.ControlText;
     this.panelDockContainer1.TabIndex = 0;
     //
     // treeViewproject
     //
     this.treeViewproject.ContextMenuStrip = this.contextMenuStrip1;
     this.treeViewproject.Dock = System.Windows.Forms.DockStyle.Fill;
     this.treeViewproject.ImageIndex = 0;
     this.treeViewproject.ImageList = this.imageList1;
     this.treeViewproject.Location = new System.Drawing.Point(0, 0);
     this.treeViewproject.Name = "treeViewproject";
     this.treeViewproject.SelectedImageIndex = 0;
     this.treeViewproject.Size = new System.Drawing.Size(240, 360);
     this.treeViewproject.TabIndex = 0;
     this.treeViewproject.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeView1_AfterSelect);
     this.treeViewproject.DoubleClick += new System.EventHandler(this.treeViewproject_DoubleClick);
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.addNewFileToolStripMenuItem,
     this.deleteToolStripMenuItem,
     this.runToolStripMenuItem,
     this.spyToolStripMenuItem,
     this.refreshToolStripMenuItem});
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(145, 114);
     //
     // addNewFileToolStripMenuItem
     //
     this.addNewFileToolStripMenuItem.Name = "addNewFileToolStripMenuItem";
     this.addNewFileToolStripMenuItem.Size = new System.Drawing.Size(144, 22);
     this.addNewFileToolStripMenuItem.Text = "Add New File";
     this.addNewFileToolStripMenuItem.Click += new System.EventHandler(this.addNewFileToolStripMenuItem_Click);
     //
     // deleteToolStripMenuItem
     //
     this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem";
     this.deleteToolStripMenuItem.Size = new System.Drawing.Size(144, 22);
     this.deleteToolStripMenuItem.Text = "Delete";
     this.deleteToolStripMenuItem.Click += new System.EventHandler(this.deleteToolStripMenuItem_Click);
     //
     // runToolStripMenuItem
     //
     this.runToolStripMenuItem.Enabled = false;
     this.runToolStripMenuItem.Name = "runToolStripMenuItem";
     this.runToolStripMenuItem.Size = new System.Drawing.Size(144, 22);
     this.runToolStripMenuItem.Text = "Run";
     this.runToolStripMenuItem.Click += new System.EventHandler(this.runToolStripMenuItem_Click);
     //
     // spyToolStripMenuItem
     //
     this.spyToolStripMenuItem.Name = "spyToolStripMenuItem";
     this.spyToolStripMenuItem.Size = new System.Drawing.Size(144, 22);
     this.spyToolStripMenuItem.Text = "Spy";
     this.spyToolStripMenuItem.Click += new System.EventHandler(this.spyToolStripMenuItem_Click_1);
     //
     // refreshToolStripMenuItem
     //
     this.refreshToolStripMenuItem.Name = "refreshToolStripMenuItem";
     this.refreshToolStripMenuItem.Size = new System.Drawing.Size(144, 22);
     this.refreshToolStripMenuItem.Text = "Refresh";
     this.refreshToolStripMenuItem.Click += new System.EventHandler(this.refreshToolStripMenuItem_Click);
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "xls.png");
     this.imageList1.Images.SetKeyName(1, "folder-512.png");
     //
     // dockContainerItem1
     //
     this.dockContainerItem1.Control = this.panelDockContainer1;
     this.dockContainerItem1.Name = "dockContainerItem1";
     this.dockContainerItem1.Text = "Solution Explorer";
     //
     // dockSite2
     //
     this.dockSite2.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite2.Dock = System.Windows.Forms.DockStyle.Right;
     this.dockSite2.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite2.Location = new System.Drawing.Point(1001, 130);
     this.dockSite2.Name = "dockSite2";
     this.dockSite2.Size = new System.Drawing.Size(0, 386);
     this.dockSite2.TabIndex = 2;
     this.dockSite2.TabStop = false;
     //
     // dockSite8
     //
     this.dockSite8.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite8.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.dockSite8.Location = new System.Drawing.Point(5, 516);
     this.dockSite8.Name = "dockSite8";
     this.dockSite8.Size = new System.Drawing.Size(996, 0);
     this.dockSite8.TabIndex = 8;
     this.dockSite8.TabStop = false;
     //
     // dockSite5
     //
     this.dockSite5.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite5.Dock = System.Windows.Forms.DockStyle.Left;
     this.dockSite5.Location = new System.Drawing.Point(5, 1);
     this.dockSite5.Name = "dockSite5";
     this.dockSite5.Size = new System.Drawing.Size(0, 515);
     this.dockSite5.TabIndex = 5;
     this.dockSite5.TabStop = false;
     //
     // dockSite6
     //
     this.dockSite6.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite6.Dock = System.Windows.Forms.DockStyle.Right;
     this.dockSite6.Location = new System.Drawing.Point(1001, 1);
     this.dockSite6.Name = "dockSite6";
     this.dockSite6.Size = new System.Drawing.Size(0, 515);
     this.dockSite6.TabIndex = 6;
     this.dockSite6.TabStop = false;
     //
     // dockSite7
     //
     this.dockSite7.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite7.Dock = System.Windows.Forms.DockStyle.Top;
     this.dockSite7.Location = new System.Drawing.Point(5, 1);
     this.dockSite7.Name = "dockSite7";
     this.dockSite7.Size = new System.Drawing.Size(996, 0);
     this.dockSite7.TabIndex = 7;
     this.dockSite7.TabStop = false;
     //
     // dockSite3
     //
     this.dockSite3.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite3.Dock = System.Windows.Forms.DockStyle.Top;
     this.dockSite3.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite3.Location = new System.Drawing.Point(5, 1);
     this.dockSite3.Name = "dockSite3";
     this.dockSite3.Size = new System.Drawing.Size(996, 0);
     this.dockSite3.TabIndex = 3;
     this.dockSite3.TabStop = false;
     //
     // metroTileItem2
     //
     this.metroTileItem2.Name = "metroTileItem2";
     this.metroTileItem2.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Default;
     //
     //
     //
     this.metroTileItem2.TileStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(36)))), ((int)(((byte)(83)))), ((int)(((byte)(117)))));
     this.metroTileItem2.TileStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(103)))), ((int)(((byte)(155)))));
     this.metroTileItem2.TileStyle.BackColorGradientAngle = 45;
     this.metroTileItem2.TileStyle.Class = "";
     this.metroTileItem2.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.metroTileItem2.TileStyle.PaddingBottom = 4;
     this.metroTileItem2.TileStyle.PaddingLeft = 4;
     this.metroTileItem2.TileStyle.PaddingRight = 4;
     this.metroTileItem2.TileStyle.PaddingTop = 4;
     this.metroTileItem2.TileStyle.TextColor = System.Drawing.Color.White;
     //
     // contextMenuStrip2
     //
     this.contextMenuStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.closeTabToolStripMenuItem,
     this.copyToolStripMenuItem});
     this.contextMenuStrip2.Name = "contextMenuStrip2";
     this.contextMenuStrip2.Size = new System.Drawing.Size(127, 48);
     //
     // closeTabToolStripMenuItem
     //
     this.closeTabToolStripMenuItem.Name = "closeTabToolStripMenuItem";
     this.closeTabToolStripMenuItem.Size = new System.Drawing.Size(126, 22);
     this.closeTabToolStripMenuItem.Text = "Close Tab";
     this.closeTabToolStripMenuItem.Click += new System.EventHandler(this.closeTabToolStripMenuItem_Click_1);
     //
     // copyToolStripMenuItem
     //
     this.copyToolStripMenuItem.Name = "copyToolStripMenuItem";
     this.copyToolStripMenuItem.Size = new System.Drawing.Size(126, 22);
     this.copyToolStripMenuItem.Text = "Copy";
     //
     // openFileDialog1
     //
     this.openFileDialog1.FileName = "openFileDialog1";
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.pictureBox1);
     this.tabPage1.Location = new System.Drawing.Point(4, 28);
     this.tabPage1.Name = "tabPage1";
     this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage1.Size = new System.Drawing.Size(739, 354);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text = "Start Page";
     this.tabPage1.UseVisualStyleBackColor = true;
     //
     // pictureBox1
     //
     this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.Location = new System.Drawing.Point(3, 3);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(733, 348);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox1.TabIndex = 0;
     this.pictureBox1.TabStop = false;
     //
     // tabControl1
     //
     this.tabControl1.AllowDrop = true;
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.DisplayStyle = System.Windows.Forms.TabStyle.IE8;
     //
     //
     //
     this.tabControl1.DisplayStyleProvider.BorderColor = System.Drawing.SystemColors.ControlDark;
     this.tabControl1.DisplayStyleProvider.BorderColorHot = System.Drawing.SystemColors.ControlDark;
     this.tabControl1.DisplayStyleProvider.BorderColorSelected = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(157)))), ((int)(((byte)(185)))));
     this.tabControl1.DisplayStyleProvider.CloserColor = System.Drawing.Color.DarkGray;
     this.tabControl1.DisplayStyleProvider.CloserColorActive = System.Drawing.Color.Red;
     this.tabControl1.DisplayStyleProvider.FocusTrack = false;
     this.tabControl1.DisplayStyleProvider.HotTrack = true;
     this.tabControl1.DisplayStyleProvider.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.tabControl1.DisplayStyleProvider.Opacity = 1F;
     this.tabControl1.DisplayStyleProvider.Overlap = 0;
     this.tabControl1.DisplayStyleProvider.Padding = new System.Drawing.Point(6, 5);
     this.tabControl1.DisplayStyleProvider.Radius = 3;
     this.tabControl1.DisplayStyleProvider.ShowTabCloser = true;
     this.tabControl1.DisplayStyleProvider.TextColor = System.Drawing.SystemColors.ControlText;
     this.tabControl1.DisplayStyleProvider.TextColorDisabled = System.Drawing.SystemColors.ControlDark;
     this.tabControl1.DisplayStyleProvider.TextColorSelected = System.Drawing.SystemColors.ControlText;
     this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControl1.HotTrack = true;
     this.tabControl1.ImageList = this.imageList1;
     this.tabControl1.Location = new System.Drawing.Point(254, 130);
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size = new System.Drawing.Size(747, 386);
     this.tabControl1.TabIndex = 9;
     this.tabControl1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.tabControl1_MouseDown);
     //
     // main
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.White;
     this.ClientSize = new System.Drawing.Size(1006, 518);
     this.Controls.Add(this.tabControl1);
     this.Controls.Add(this.dockSite2);
     this.Controls.Add(this.dockSite1);
     this.Controls.Add(this.ribbonControl1);
     this.Controls.Add(this.dockSite3);
     this.Controls.Add(this.dockSite4);
     this.Controls.Add(this.dockSite5);
     this.Controls.Add(this.dockSite6);
     this.Controls.Add(this.dockSite7);
     this.Controls.Add(this.dockSite8);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "main";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Automation Test";
     this.Load += new System.EventHandler(this.main_Load);
     this.ribbonControl1.ResumeLayout(false);
     this.ribbonControl1.PerformLayout();
     this.ribbonPanel1.ResumeLayout(false);
     this.ribbonPanel2.ResumeLayout(false);
     this.ribbonPanel4.ResumeLayout(false);
     this.ribbonPanel5.ResumeLayout(false);
     this.dockSite1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).EndInit();
     this.bar1.ResumeLayout(false);
     this.panelDockContainer1.ResumeLayout(false);
     this.contextMenuStrip1.ResumeLayout(false);
     this.contextMenuStrip2.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.tabControl1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Пример #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();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Spy));
     this.galleryContainer2 = new DevComponents.DotNetBar.GalleryContainer();
     this.labelItem1 = new DevComponents.DotNetBar.LabelItem();
     this.dockContainerItem1 = new DevComponents.DotNetBar.DockContainerItem();
     this.galleryContainer3 = new DevComponents.DotNetBar.GalleryContainer();
     this.labelItem2 = new DevComponents.DotNetBar.LabelItem();
     this.dockContainerItem2 = new DevComponents.DotNetBar.DockContainerItem();
     this.ribbonControl1 = new DevComponents.DotNetBar.RibbonControl();
     this.styleManager1 = new DevComponents.DotNetBar.StyleManager(this.components);
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton2 = new System.Windows.Forms.ToolStripButton();
     this.dotNetBarManager1 = new DevComponents.DotNetBar.DotNetBarManager(this.components);
     this.dockSite4 = new DevComponents.DotNetBar.DockSite();
     this.dockSite1 = new DevComponents.DotNetBar.DockSite();
     this.bar1 = new DevComponents.DotNetBar.Bar();
     this.panelDockContainer1 = new DevComponents.DotNetBar.PanelDockContainer();
     this.trvTree = new System.Windows.Forms.TreeView();
     this.dockContainerItem3 = new DevComponents.DotNetBar.DockContainerItem();
     this.dockSite2 = new DevComponents.DotNetBar.DockSite();
     this.dockSite8 = new DevComponents.DotNetBar.DockSite();
     this.dockSite5 = new DevComponents.DotNetBar.DockSite();
     this.dockSite6 = new DevComponents.DotNetBar.DockSite();
     this.dockSite7 = new DevComponents.DotNetBar.DockSite();
     this.dockSite3 = new DevComponents.DotNetBar.DockSite();
     this.datagridviewprob = new System.Windows.Forms.DataGridView();
     this.qatCustomizeItem1 = new DevComponents.DotNetBar.QatCustomizeItem();
     this.toolStrip1.SuspendLayout();
     this.dockSite1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).BeginInit();
     this.bar1.SuspendLayout();
     this.panelDockContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.datagridviewprob)).BeginInit();
     this.SuspendLayout();
     //
     // galleryContainer2
     //
     //
     //
     //
     this.galleryContainer2.BackgroundStyle.Class = "RibbonFileMenuColumnTwoContainer";
     this.galleryContainer2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.galleryContainer2.EnableGalleryPopup = false;
     this.galleryContainer2.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.galleryContainer2.MinimumSize = new System.Drawing.Size(180, 240);
     this.galleryContainer2.MultiLine = false;
     this.galleryContainer2.Name = "galleryContainer2";
     this.galleryContainer2.PopupUsesStandardScrollbars = false;
     //
     // labelItem1
     //
     this.labelItem1.BorderSide = DevComponents.DotNetBar.eBorderSide.Bottom;
     this.labelItem1.BorderType = DevComponents.DotNetBar.eBorderType.Etched;
     this.labelItem1.CanCustomize = false;
     this.labelItem1.ForeColor = System.Drawing.SystemColors.ControlText;
     this.labelItem1.Name = "labelItem1";
     //
     // dockContainerItem1
     //
     this.dockContainerItem1.Name = "dockContainerItem1";
     this.dockContainerItem1.Text = "dockContainerItem1";
     //
     // galleryContainer3
     //
     //
     //
     //
     this.galleryContainer3.BackgroundStyle.Class = "RibbonFileMenuColumnTwoContainer";
     this.galleryContainer3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.galleryContainer3.EnableGalleryPopup = false;
     this.galleryContainer3.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.galleryContainer3.MinimumSize = new System.Drawing.Size(180, 240);
     this.galleryContainer3.MultiLine = false;
     this.galleryContainer3.Name = "galleryContainer3";
     this.galleryContainer3.PopupUsesStandardScrollbars = false;
     //
     // labelItem2
     //
     this.labelItem2.BorderSide = DevComponents.DotNetBar.eBorderSide.Bottom;
     this.labelItem2.BorderType = DevComponents.DotNetBar.eBorderType.Etched;
     this.labelItem2.CanCustomize = false;
     this.labelItem2.ForeColor = System.Drawing.SystemColors.ControlText;
     this.labelItem2.Name = "labelItem2";
     //
     // dockContainerItem2
     //
     this.dockContainerItem2.Name = "dockContainerItem2";
     this.dockContainerItem2.Text = "dockContainerItem2";
     //
     // ribbonControl1
     //
     //
     //
     //
     this.ribbonControl1.BackgroundStyle.Class = "";
     this.ribbonControl1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonControl1.CaptionVisible = true;
     this.ribbonControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.ribbonControl1.Font = new System.Drawing.Font("Microsoft Sans Serif", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ribbonControl1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.qatCustomizeItem1});
     this.ribbonControl1.KeyTipsFont = new System.Drawing.Font("Tahoma", 7F);
     this.ribbonControl1.Location = new System.Drawing.Point(5, 1);
     this.ribbonControl1.Name = "ribbonControl1";
     this.ribbonControl1.Padding = new System.Windows.Forms.Padding(0, 0, 0, 2);
     this.ribbonControl1.Size = new System.Drawing.Size(799, 41);
     this.ribbonControl1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonControl1.SystemText.MaximizeRibbonText = "&Maximize the Ribbon";
     this.ribbonControl1.SystemText.MinimizeRibbonText = "Mi&nimize the Ribbon";
     this.ribbonControl1.SystemText.QatAddItemText = "&Add to Quick Access Toolbar";
     this.ribbonControl1.SystemText.QatCustomizeMenuLabel = "<b>Customize Quick Access Toolbar</b>";
     this.ribbonControl1.SystemText.QatCustomizeText = "&Customize Quick Access Toolbar...";
     this.ribbonControl1.SystemText.QatDialogAddButton = "&Add >>";
     this.ribbonControl1.SystemText.QatDialogCancelButton = "Cancel";
     this.ribbonControl1.SystemText.QatDialogCaption = "Customize Quick Access Toolbar";
     this.ribbonControl1.SystemText.QatDialogCategoriesLabel = "&Choose commands from:";
     this.ribbonControl1.SystemText.QatDialogOkButton = "OK";
     this.ribbonControl1.SystemText.QatDialogPlacementCheckbox = "&Place Quick Access Toolbar below the Ribbon";
     this.ribbonControl1.SystemText.QatDialogRemoveButton = "&Remove";
     this.ribbonControl1.SystemText.QatPlaceAboveRibbonText = "&Place Quick Access Toolbar above the Ribbon";
     this.ribbonControl1.SystemText.QatPlaceBelowRibbonText = "&Place Quick Access Toolbar below the Ribbon";
     this.ribbonControl1.SystemText.QatRemoveItemText = "&Remove from Quick Access Toolbar";
     this.ribbonControl1.TabGroupHeight = 14;
     this.ribbonControl1.TabIndex = 0;
     this.ribbonControl1.Text = "Spy Interface";
     this.ribbonControl1.TitleText = "<div >Spy Interface</div>";
     //
     // styleManager1
     //
     this.styleManager1.ManagerStyle = DevComponents.DotNetBar.eStyle.Office2010Blue;
     this.styleManager1.MetroColorParameters = new DevComponents.DotNetBar.Metro.ColorTables.MetroColorGeneratorParameters(System.Drawing.Color.White, System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(163)))), ((int)(((byte)(26))))));
     //
     // toolStrip1
     //
     this.toolStrip1.Font = new System.Drawing.Font("Khmer UI", 9F);
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripButton1,
     this.toolStripButton2});
     this.toolStrip1.Location = new System.Drawing.Point(5, 42);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Size = new System.Drawing.Size(799, 25);
     this.toolStrip1.TabIndex = 1;
     this.toolStrip1.Text = "toolStrip1";
     //
     // toolStripButton1
     //
     this.toolStripButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
     this.toolStripButton1.Name = "toolStripButton1";
     this.toolStripButton1.Size = new System.Drawing.Size(52, 22);
     this.toolStripButton1.Text = "Save";
     //
     // toolStripButton2
     //
     this.toolStripButton2.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton2.Image")));
     this.toolStripButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton2.Name = "toolStripButton2";
     this.toolStripButton2.Size = new System.Drawing.Size(66, 22);
     this.toolStripButton2.Text = "Refresh";
     //
     // dotNetBarManager1
     //
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.F1);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlC);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlA);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlV);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlX);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlZ);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlY);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Del);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Ins);
     this.dotNetBarManager1.BottomDockSite = this.dockSite4;
     this.dotNetBarManager1.EnableFullSizeDock = false;
     this.dotNetBarManager1.LeftDockSite = this.dockSite1;
     this.dotNetBarManager1.ParentForm = this;
     this.dotNetBarManager1.RightDockSite = this.dockSite2;
     this.dotNetBarManager1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
     this.dotNetBarManager1.ToolbarBottomDockSite = this.dockSite8;
     this.dotNetBarManager1.ToolbarLeftDockSite = this.dockSite5;
     this.dotNetBarManager1.ToolbarRightDockSite = this.dockSite6;
     this.dotNetBarManager1.ToolbarTopDockSite = this.dockSite7;
     this.dotNetBarManager1.TopDockSite = this.dockSite3;
     //
     // dockSite4
     //
     this.dockSite4.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite4.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.dockSite4.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite4.Location = new System.Drawing.Point(5, 417);
     this.dockSite4.Name = "dockSite4";
     this.dockSite4.Size = new System.Drawing.Size(799, 0);
     this.dockSite4.TabIndex = 5;
     this.dockSite4.TabStop = false;
     //
     // dockSite1
     //
     this.dockSite1.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite1.Controls.Add(this.bar1);
     this.dockSite1.Dock = System.Windows.Forms.DockStyle.Left;
     this.dockSite1.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer(new DevComponents.DotNetBar.DocumentBaseContainer[] {
     ((DevComponents.DotNetBar.DocumentBaseContainer)(new DevComponents.DotNetBar.DocumentBarContainer(this.bar1, 217, 350)))}, DevComponents.DotNetBar.eOrientation.Horizontal);
     this.dockSite1.Location = new System.Drawing.Point(5, 67);
     this.dockSite1.Name = "dockSite1";
     this.dockSite1.Size = new System.Drawing.Size(220, 350);
     this.dockSite1.TabIndex = 2;
     this.dockSite1.TabStop = false;
     //
     // bar1
     //
     this.bar1.AccessibleDescription = "DotNetBar Bar (bar1)";
     this.bar1.AccessibleName = "DotNetBar Bar";
     this.bar1.AccessibleRole = System.Windows.Forms.AccessibleRole.ToolBar;
     this.bar1.CloseSingleTab = true;
     this.bar1.Controls.Add(this.panelDockContainer1);
     this.bar1.DockOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.bar1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.bar1.GrabHandleStyle = DevComponents.DotNetBar.eGrabHandleStyle.Caption;
     this.bar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.dockContainerItem3});
     this.bar1.LayoutType = DevComponents.DotNetBar.eLayoutType.DockContainer;
     this.bar1.Location = new System.Drawing.Point(0, 0);
     this.bar1.Name = "bar1";
     this.bar1.Size = new System.Drawing.Size(217, 350);
     this.bar1.Stretch = true;
     this.bar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
     this.bar1.TabIndex = 0;
     this.bar1.TabStop = false;
     this.bar1.Text = "Spy Windows";
     //
     // panelDockContainer1
     //
     this.panelDockContainer1.Controls.Add(this.trvTree);
     this.panelDockContainer1.Location = new System.Drawing.Point(3, 23);
     this.panelDockContainer1.Name = "panelDockContainer1";
     this.panelDockContainer1.Size = new System.Drawing.Size(211, 324);
     this.panelDockContainer1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelDockContainer1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.panelDockContainer1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.panelDockContainer1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.panelDockContainer1.Style.GradientAngle = 90;
     this.panelDockContainer1.TabIndex = 0;
     //
     // trvTree
     //
     this.trvTree.Dock = System.Windows.Forms.DockStyle.Fill;
     this.trvTree.Location = new System.Drawing.Point(0, 0);
     this.trvTree.Name = "trvTree";
     this.trvTree.Size = new System.Drawing.Size(211, 324);
     this.trvTree.TabIndex = 0;
     //
     // dockContainerItem3
     //
     this.dockContainerItem3.Control = this.panelDockContainer1;
     this.dockContainerItem3.Name = "dockContainerItem3";
     this.dockContainerItem3.Text = "dockContainerItem3";
     //
     // dockSite2
     //
     this.dockSite2.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite2.Dock = System.Windows.Forms.DockStyle.Right;
     this.dockSite2.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite2.Location = new System.Drawing.Point(804, 67);
     this.dockSite2.Name = "dockSite2";
     this.dockSite2.Size = new System.Drawing.Size(0, 350);
     this.dockSite2.TabIndex = 3;
     this.dockSite2.TabStop = false;
     //
     // dockSite8
     //
     this.dockSite8.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite8.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.dockSite8.Location = new System.Drawing.Point(5, 417);
     this.dockSite8.Name = "dockSite8";
     this.dockSite8.Size = new System.Drawing.Size(799, 0);
     this.dockSite8.TabIndex = 9;
     this.dockSite8.TabStop = false;
     //
     // dockSite5
     //
     this.dockSite5.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite5.Dock = System.Windows.Forms.DockStyle.Left;
     this.dockSite5.Location = new System.Drawing.Point(5, 1);
     this.dockSite5.Name = "dockSite5";
     this.dockSite5.Size = new System.Drawing.Size(0, 416);
     this.dockSite5.TabIndex = 6;
     this.dockSite5.TabStop = false;
     //
     // dockSite6
     //
     this.dockSite6.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite6.Dock = System.Windows.Forms.DockStyle.Right;
     this.dockSite6.Location = new System.Drawing.Point(804, 1);
     this.dockSite6.Name = "dockSite6";
     this.dockSite6.Size = new System.Drawing.Size(0, 416);
     this.dockSite6.TabIndex = 7;
     this.dockSite6.TabStop = false;
     //
     // dockSite7
     //
     this.dockSite7.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite7.Dock = System.Windows.Forms.DockStyle.Top;
     this.dockSite7.Location = new System.Drawing.Point(5, 1);
     this.dockSite7.Name = "dockSite7";
     this.dockSite7.Size = new System.Drawing.Size(799, 0);
     this.dockSite7.TabIndex = 8;
     this.dockSite7.TabStop = false;
     //
     // dockSite3
     //
     this.dockSite3.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite3.Dock = System.Windows.Forms.DockStyle.Top;
     this.dockSite3.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite3.Location = new System.Drawing.Point(5, 1);
     this.dockSite3.Name = "dockSite3";
     this.dockSite3.Size = new System.Drawing.Size(799, 0);
     this.dockSite3.TabIndex = 4;
     this.dockSite3.TabStop = false;
     //
     // datagridviewprob
     //
     this.datagridviewprob.BackgroundColor = System.Drawing.Color.White;
     this.datagridviewprob.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.datagridviewprob.Dock = System.Windows.Forms.DockStyle.Fill;
     this.datagridviewprob.Location = new System.Drawing.Point(225, 67);
     this.datagridviewprob.Name = "datagridviewprob";
     this.datagridviewprob.Size = new System.Drawing.Size(579, 350);
     this.datagridviewprob.TabIndex = 10;
     //
     // qatCustomizeItem1
     //
     this.qatCustomizeItem1.Name = "qatCustomizeItem1";
     //
     // Spy
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(809, 419);
     this.Controls.Add(this.datagridviewprob);
     this.Controls.Add(this.dockSite2);
     this.Controls.Add(this.dockSite1);
     this.Controls.Add(this.toolStrip1);
     this.Controls.Add(this.ribbonControl1);
     this.Controls.Add(this.dockSite3);
     this.Controls.Add(this.dockSite4);
     this.Controls.Add(this.dockSite5);
     this.Controls.Add(this.dockSite6);
     this.Controls.Add(this.dockSite7);
     this.Controls.Add(this.dockSite8);
     this.Name = "Spy";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Spy";
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.dockSite1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).EndInit();
     this.bar1.ResumeLayout(false);
     this.panelDockContainer1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.datagridviewprob)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Пример #34
0
        //双击则创建该线,并弹出缓冲窗体
        public override void OnDblClick()
        {
            //获取折线 并获取当前视图的屏幕显示
            if (m_pNewPolygonFeedback == null)
            {
                return;
            }
            IPolygon pPolygon = m_pNewPolygonFeedback.Stop();

            m_pNewPolygonFeedback = null;

            //不存在,为空。尺寸不够均退出
            if (pPolygon == null || pPolygon.IsEmpty)
            {
                return;
            }
            //xisheng 判断面积的高度,宽度时需判断是什么单位,若是经纬度则需要转换。20111220
            double        w      = pPolygon.Envelope.Width;
            double        h      = pPolygon.Envelope.Height;
            UnitConverter conver = new UnitConverterClass();

            if (m_MapControl.Map.MapUnits == esriUnits.esriDecimalDegrees)
            {
                w = conver.ConvertUnits(w, esriUnits.esriDecimalDegrees, esriUnits.esriMeters);
                h = conver.ConvertUnits(h, esriUnits.esriDecimalDegrees, esriUnits.esriMeters);
            }
            if (w < 0.01 || h < 0.01)
            {
                return;
            }
            //xisheng 20111220 end *********************************************************

            //创建Topo对象,简化后统一空间参考
            ITopologicalOperator pTopo = (ITopologicalOperator)pPolygon;

            pTopo.Simplify();
            pPolygon.Project(m_MapControl.Map.SpatialReference);

            if (m_frmQuery == null)
            {
                m_frmQuery             = new frmQuery(m_MapControl, m_enumQueryMode);
                m_frmQuery.Owner       = m_mainFrm;
                m_frmQuery.FormClosed += new FormClosedEventHandler(frmQuery_FormClosed);
            }
            if (this.WriteLog)
            {
                Plugin.LogTable.Writelog("面缓冲查询");//xisheng 日志记录 0928;
            }
            //清除上次的所有元素
            (m_MapControl.Map as IGraphicsContainer).DeleteAllElements();
            m_frmBufferSet = new frmBufferSet(pPolygon as IGeometry, m_MapControl.Map, m_frmQuery);
            IGeometry pGeometry = m_frmBufferSet.GetBufferGeometry();

            if (pGeometry == null || m_frmBufferSet.Res == false)
            {
                return;
            }
            // m_frmQuery.Show();
            ///ZQ 20111119  modify
            //m_frmQuery.FillData(m_MapControl.ActiveView.FocusMap, pGeometry,m_frmBufferSet.pesriSpatialRelEnum);
            _QueryBar.m_pMapControl = m_MapControl;
            _QueryBar.EmergeQueryData(m_MapControl.ActiveView.FocusMap, pGeometry, m_frmBufferSet.pesriSpatialRelEnum);
            try
            {
                DevComponents.DotNetBar.Bar pBar = _QueryBar.Parent.Parent as DevComponents.DotNetBar.Bar;
                if (pBar != null)
                {
                    pBar.AutoHide = false;
                    //pBar.SelectedDockTab = 1;
                    int tmpindex = pBar.Items.IndexOf("dockItemDataCheck");
                    pBar.SelectedDockTab = tmpindex;
                }
            }
            catch
            { }
        }
Пример #35
0
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainFrame));
            this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
            this.ilToolbar = new System.Windows.Forms.ImageList(this.components);
            this.theViewer = new Genetibase.Debug.ObjViewer.ObjViewer();
            this.bar1 = new DevComponents.DotNetBar.Bar();
            this.item_2 = new DevComponents.DotNetBar.ButtonItem();
            this.item_3 = new DevComponents.DotNetBar.ButtonItem();
            this.item_13 = new DevComponents.DotNetBar.ButtonItem();
            this.item_14 = new DevComponents.DotNetBar.ButtonItem();
            this.uiPanelManager1 = new Janus.Windows.UI.Dock.UIPanelManager(this.components);
            this.uiPanel0 = new Janus.Windows.UI.Dock.UIPanel();
            this.uiPanel0Container = new Janus.Windows.UI.Dock.UIPanelInnerContainer();
            ((System.ComponentModel.ISupportInitialize)(this.bar1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.uiPanelManager1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.uiPanel0)).BeginInit();
            this.uiPanel0.SuspendLayout();
            this.uiPanel0Container.SuspendLayout();
            this.SuspendLayout();
            // 
            // openFileDialog1
            // 
            resources.ApplyResources(this.openFileDialog1, "openFileDialog1");
            // 
            // ilToolbar
            // 
            this.ilToolbar.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
            resources.ApplyResources(this.ilToolbar, "ilToolbar");
            this.ilToolbar.TransparentColor = System.Drawing.Color.Transparent;
            // 
            // theViewer
            // 
            this.theViewer.AccessibleDescription = null;
            this.theViewer.AccessibleName = null;
            resources.ApplyResources(this.theViewer, "theViewer");
            this.theViewer.BackgroundImage = null;
            this.theViewer.Font = null;
            this.theViewer.Name = "theViewer";
            // 
            // bar1
            // 
            this.bar1.AccessibleDescription = null;
            this.bar1.AccessibleName = null;
            resources.ApplyResources(this.bar1, "bar1");
            this.bar1.BackgroundImage = null;
            this.bar1.BackgroundImageAlpha = ((byte)(255));
            this.bar1.Font = null;
            this.bar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            this.item_2,
            this.item_3,
            this.item_13,
            this.item_14});
            this.bar1.Name = "bar1";
            this.bar1.Stretch = true;
            this.bar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.VS2005;
            this.bar1.TabStop = false;
            // 
            // item_2
            // 
            this.item_2.Name = "item_2";
            resources.ApplyResources(this.item_2, "item_2");
            this.item_2.Click += new System.EventHandler(this.item_2_Click);
            // 
            // item_3
            // 
            this.item_3.Name = "item_3";
            resources.ApplyResources(this.item_3, "item_3");
            this.item_3.Click += new System.EventHandler(this.item_3_Click);
            // 
            // item_13
            // 
            this.item_13.Name = "item_13";
            resources.ApplyResources(this.item_13, "item_13");
            this.item_13.Click += new System.EventHandler(this.item_13_Click);
            // 
            // item_14
            // 
            this.item_14.Name = "item_14";
            resources.ApplyResources(this.item_14, "item_14");
            this.item_14.Click += new System.EventHandler(this.item_14_Click);
            // 
            // uiPanelManager1
            // 
            this.uiPanelManager1.BackColorGradientAutoHideStrip = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(243)))), ((int)(((byte)(247)))));
            this.uiPanelManager1.ContainerControl = this;
            this.uiPanelManager1.DefaultPanelSettings.AutoHideButtonVisible = ((bool)(resources.GetObject("uiPanelManager1.DefaultPanelSettings.AutoHideButtonVisible")));
            this.uiPanelManager1.DefaultPanelSettings.BorderCaption = ((bool)(resources.GetObject("uiPanelManager1.DefaultPanelSettings.BorderCaption")));
            this.uiPanelManager1.DefaultPanelSettings.CaptionHeight = ((int)(resources.GetObject("uiPanelManager1.DefaultPanelSettings.CaptionHeight")));
            this.uiPanelManager1.DefaultPanelSettings.CaptionVisible = ((bool)(resources.GetObject("uiPanelManager1.DefaultPanelSettings.CaptionVisible")));
            this.uiPanelManager1.DefaultPanelSettings.CloseButtonVisible = ((bool)(resources.GetObject("uiPanelManager1.DefaultPanelSettings.CloseButtonVisible")));
            this.uiPanelManager1.DefaultPanelSettings.UseActiveCaptionStyle = ((bool)(resources.GetObject("uiPanelManager1.DefaultPanelSettings.UseActiveCaptionStyle")));
            this.uiPanelManager1.ImageList = null;
            this.uiPanelManager1.LargeImageList = null;
            this.uiPanelManager1.LayoutStream = null;
            resources.ApplyResources(this.uiPanelManager1, "uiPanelManager1");
            this.uiPanelManager1.TabbedMdiSettings.AllowDrag = ((bool)(resources.GetObject("uiPanelManager1.TabbedMdiSettings.AllowDrag")));
            this.uiPanelManager1.TabbedMdiSettings.MaxTabSize = ((int)(resources.GetObject("uiPanelManager1.TabbedMdiSettings.MaxTabSize")));
            this.uiPanelManager1.TabbedMdiSettings.ShowCloseButton = ((bool)(resources.GetObject("uiPanelManager1.TabbedMdiSettings.ShowCloseButton")));
            this.uiPanelManager1.TabbedMdiSettings.TabCaptionTrimming = ((System.Drawing.StringTrimming)(resources.GetObject("uiPanelManager1.TabbedMdiSettings.TabCaptionTrimming")));
            this.uiPanelManager1.TabbedMdiSettings.UseFormIcons = ((bool)(resources.GetObject("uiPanelManager1.TabbedMdiSettings.UseFormIcons")));
            this.uiPanel0.Id = new System.Guid("a7968a0c-6f4c-4839-ae9f-b95098a1cd1f");
            this.uiPanelManager1.Panels.Add(this.uiPanel0);
            // 
            // Design Time Panel Info:
            // 
            this.uiPanelManager1.BeginPanelInfo();
            this.uiPanelManager1.AddDockPanelInfo(new System.Guid("a7968a0c-6f4c-4839-ae9f-b95098a1cd1f"), Janus.Windows.UI.Dock.PanelDockStyle.Right, new System.Drawing.Size(273, 516), true);
            this.uiPanelManager1.AddFloatingPanelInfo(new System.Guid("a7968a0c-6f4c-4839-ae9f-b95098a1cd1f"), new System.Drawing.Point(-1, -1), new System.Drawing.Size(-1, -1), false);
            this.uiPanelManager1.EndPanelInfo();
            // 
            // uiPanel0
            // 
            this.uiPanel0.AccessibleDescription = null;
            this.uiPanel0.AccessibleName = null;
            this.uiPanel0.AllowPanelDrag = Janus.Windows.UI.InheritableBoolean.False;
            this.uiPanel0.AllowPanelDrop = Janus.Windows.UI.InheritableBoolean.False;
            resources.ApplyResources(this.uiPanel0, "uiPanel0");
            this.uiPanel0.BackgroundImage = null;
            this.uiPanel0.CloseButtonVisible = Janus.Windows.UI.InheritableBoolean.False;
            this.uiPanel0.Font = null;
            this.uiPanel0.Icon = null;
            this.uiPanel0.Image = null;
            this.uiPanel0.InnerContainer = this.uiPanel0Container;
            this.uiPanel0.LargeIcon = null;
            this.uiPanel0.LargeImage = null;
            this.uiPanel0.Name = "uiPanel0";
            // 
            // uiPanel0Container
            // 
            this.uiPanel0Container.AccessibleDescription = null;
            this.uiPanel0Container.AccessibleName = null;
            resources.ApplyResources(this.uiPanel0Container, "uiPanel0Container");
            this.uiPanel0Container.BackgroundImage = null;
            this.uiPanel0Container.Controls.Add(this.theViewer);
            this.uiPanel0Container.Font = null;
            this.uiPanel0Container.Name = "uiPanel0Container";
            // 
            // MainFrame
            // 
            this.AccessibleDescription = null;
            this.AccessibleName = null;
            this.AllowDrop = true;
            resources.ApplyResources(this, "$this");
            this.BackgroundImage = null;
            this.Controls.Add(this.bar1);
            this.DoubleBuffered = true;
            this.Font = null;
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
            this.IsMdiContainer = true;
            this.MaximizeBox = false;
            this.Name = "MainFrame";
            this.DragDrop += new System.Windows.Forms.DragEventHandler(this.OnDrop);
            this.MdiChildActivate += new System.EventHandler(this.OnMdiChildActivate);
            this.DragEnter += new System.Windows.Forms.DragEventHandler(this.OnDragEnter);
            this.Load += new System.EventHandler(this.MainFrame_Load);
            ((System.ComponentModel.ISupportInitialize)(this.bar1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.uiPanelManager1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.uiPanel0)).EndInit();
            this.uiPanel0.ResumeLayout(false);
            this.uiPanel0Container.ResumeLayout(false);
            this.ResumeLayout(false);

		}
Пример #36
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(MainFrame));
			this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
			this.ilToolbar = new System.Windows.Forms.ImageList(this.components);
			this.theViewer = new Genetibase.Debug.ObjViewer.ObjViewer();
			this.bar1 = new DevComponents.DotNetBar.Bar();
			this.item_2 = new DevComponents.DotNetBar.ButtonItem();
			this.item_3 = new DevComponents.DotNetBar.ButtonItem();
			this.item_13 = new DevComponents.DotNetBar.ButtonItem();
			this.item_14 = new DevComponents.DotNetBar.ButtonItem();
			this.uiPanelManager1 = new Janus.Windows.UI.Dock.UIPanelManager(this.components);
			this.uiPanel0 = new Janus.Windows.UI.Dock.UIPanel();
			this.uiPanel0Container = new Janus.Windows.UI.Dock.UIPanelInnerContainer();
			((System.ComponentModel.ISupportInitialize)(this.uiPanelManager1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.uiPanel0)).BeginInit();
			this.uiPanel0.SuspendLayout();
			this.uiPanel0Container.SuspendLayout();
			this.SuspendLayout();
			// 
			// ilToolbar
			// 
			this.ilToolbar.ImageSize = new System.Drawing.Size(16, 16);
			this.ilToolbar.TransparentColor = System.Drawing.Color.Transparent;
			// 
			// theViewer
			// 
			this.theViewer.Dock = System.Windows.Forms.DockStyle.Fill;
			this.theViewer.Location = new System.Drawing.Point(0, 0);
			this.theViewer.Name = "theViewer";
			this.theViewer.Size = new System.Drawing.Size(267, 492);
			this.theViewer.TabIndex = 4;
			this.bar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.VS2005;
			// 
			// bar1
			// 
			this.bar1.BackgroundImageAlpha = ((System.Byte)(255));
			this.bar1.Dock = System.Windows.Forms.DockStyle.Top;
			this.bar1.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.World);
			this.bar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
																				this.item_2,
																				this.item_3,
																				this.item_13,
																				this.item_14});
			this.bar1.Location = new System.Drawing.Point(0, 0);
			this.bar1.Name = "bar1";
			this.bar1.Size = new System.Drawing.Size(794, 23);
			this.bar1.Stretch = true;
			this.bar1.TabIndex = 6;
			this.bar1.TabStop = false;
			this.bar1.Text = "bar1";
			this.bar1.RecalcSize();
			// 
			// item_2
			// 
			this.item_2.Name = "item_2";
			this.item_2.Style = DevComponents.DotNetBar.eDotNetBarStyle.VS2005;
			this.item_2.Text = "Open File";
			this.item_2.Click += new System.EventHandler(this.item_2_Click);
			// 
			// item_3
			// 
			this.item_3.Name = "item_3";
			this.item_3.Style = DevComponents.DotNetBar.eDotNetBarStyle.VS2005;
			this.item_3.Text = "Open Assembly From GAC";
			this.item_3.Click += new System.EventHandler(this.item_3_Click);
			// 
			// item_13
			// 
			this.item_13.Name = "item_13";
			this.item_13.Style = DevComponents.DotNetBar.eDotNetBarStyle.VS2005;
			this.item_13.Text = "Find";
			this.item_13.Click += new System.EventHandler(this.item_13_Click);
			// 
			// item_14
			// 
			this.item_14.Name = "item_14";
			this.item_14.Style = DevComponents.DotNetBar.eDotNetBarStyle.VS2005;
			this.item_14.Text = "Find Again";
			this.item_14.Click += new System.EventHandler(this.item_14_Click);
			// 
			// uiPanelManager1
			// 
			this.uiPanelManager1.ContainerControl = this;
			this.uiPanel0.Id = new System.Guid("a7968a0c-6f4c-4839-ae9f-b95098a1cd1f");
			this.uiPanelManager1.Panels.Add(this.uiPanel0);
			// 
			// Design Time Panel Info:
			// 
			this.uiPanelManager1.BeginPanelInfo();
			this.uiPanelManager1.AddDockPanelInfo(new System.Guid("a7968a0c-6f4c-4839-ae9f-b95098a1cd1f"), Janus.Windows.UI.Dock.PanelDockStyle.Right, new System.Drawing.Size(273, 516), true);
			this.uiPanelManager1.AddFloatingPanelInfo(new System.Guid("a7968a0c-6f4c-4839-ae9f-b95098a1cd1f"), new System.Drawing.Point(-1, -1), new System.Drawing.Size(-1, -1), false);
			this.uiPanelManager1.EndPanelInfo();
			// 
			// uiPanel0
			// 
			this.uiPanel0.AllowPanelDrag = Janus.Windows.UI.InheritableBoolean.False;
			this.uiPanel0.AllowPanelDrop = Janus.Windows.UI.InheritableBoolean.False;
			this.uiPanel0.AutoHide = true;
			this.uiPanel0.CloseButtonVisible = Janus.Windows.UI.InheritableBoolean.False;
			this.uiPanel0.InnerContainer = this.uiPanel0Container;
			this.uiPanel0.Location = new System.Drawing.Point(516, 26);
			this.uiPanel0.Name = "uiPanel0";
			this.uiPanel0.Size = new System.Drawing.Size(273, 516);
			this.uiPanel0.TabIndex = 4;
			this.uiPanel0.Text = "Details";
			// 
			// uiPanel0Container
			// 
			this.uiPanel0Container.Controls.Add(this.theViewer);
			this.uiPanel0Container.Location = new System.Drawing.Point(5, 23);
			this.uiPanel0Container.Name = "uiPanel0Container";
			this.uiPanel0Container.Size = new System.Drawing.Size(267, 492);
			this.uiPanel0Container.TabIndex = 0;
			// 
			// MainFrame
			// 
			this.AllowDrop = true;
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.ClientSize = new System.Drawing.Size(794, 568);
			this.Controls.Add(this.bar1);
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
			this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
			this.IsMdiContainer = true;
			this.MaximizeBox = false;
			this.Name = "MainFrame";
			this.Text = "NuGenReflect.Net";
			this.MdiChildActivate += new System.EventHandler(this.OnMdiChildActivate);
			this.Load += new System.EventHandler(this.MainFrame_Load);
			this.DragDrop += new System.Windows.Forms.DragEventHandler(this.OnDrop);
			this.DragEnter += new System.Windows.Forms.DragEventHandler(this.OnDragEnter);
			((System.ComponentModel.ISupportInitialize)(this.uiPanelManager1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.uiPanel0)).EndInit();
			this.uiPanel0.ResumeLayout(false);
			this.uiPanel0Container.ResumeLayout(false);
			this.ResumeLayout(false);

		}
Пример #37
0
        public override void OnClick()
        {
            Plugin.Application.IAppGisUpdateRef phook = _AppHk as Plugin.Application.IAppGisUpdateRef;
            SysCommon.BottomQueryBar            pBar  = phook.QueryBar;
            if (pBar.m_WorkSpace == null)
            {
                pBar.m_WorkSpace = Plugin.ModuleCommon.TmpWorkSpace;
            }
            if (_AppHk == null)
            {
                return;
            }
            if (_AppHk.MapControl == null)
            {
                return;
            }
            IMap pMap = _AppHk.MapControl.Map;

            if (frmSQL != null)
            {
                frmSQL.Close();
                frmSQL = null;
            }
            if (WriteLog)
            {
                Plugin.LogTable.Writelog("打开查询方案"); //ygc 2012-9-14 写日志
            }
            SysCommon.CProgress vProgress = new SysCommon.CProgress("进度条");
            vProgress.EnableCancel = true;
            vProgress.EnableUserCancel(true);

            vProgress.ShowDescription = false;
            vProgress.FakeProgress    = true;
            vProgress.TopMost         = true;
            //vProgress.ShowProgress();
            vProgress.SetProgress("开始查询");
            FrmOpenSQLCondition newfrm = new FrmOpenSQLCondition(Plugin.ModuleCommon.TmpWorkSpace);

            newfrm.m_TableName    = "SQLSOLUTION";
            newfrm.m_showAllLayer = true;
            if (newfrm.ShowDialog() != DialogResult.OK)
            {
                return;
            }
            vProgress.ShowProgress();
            string strSQL    = newfrm.m_Condition;
            string layerName = newfrm.m_LayerName;

            if (strSQL == "")
            {
                MessageBox.Show("未选择查看的查询方案!", "提示", MessageBoxButtons.OKCancel, MessageBoxIcon.Stop);
                return;
            }
            IFeatureLayer pFeatureLayer = GetLayerByName(layerName, pMap);

            if (pFeatureLayer == null)
            {
                MessageBox.Show("当前地图无该查询方案图层!", "提示");
                return;
            }
            //构造查询过滤器
            IQueryFilter pQueryFilter = new QueryFilterClass();

            pQueryFilter.WhereClause = strSQL;
            esriSelectionResultEnum pSelectionResult = esriSelectionResultEnum.esriSelectionResultNew;

            vProgress.SetProgress("正在查询符合条件的结果");
            pBar.m_pMapControl = _AppHk.MapControl;
            pBar.EmergeQueryData(_AppHk.MapControl.Map, pFeatureLayer, pQueryFilter, pSelectionResult, vProgress);
            vProgress.Close();

            try
            {
                DevComponents.DotNetBar.Bar pBar0 = pBar.Parent.Parent as DevComponents.DotNetBar.Bar;
                if (pBar0 != null)
                {
                    pBar0.AutoHide = false;
                    //pBar0.SelectedDockTab = 1;
                    int tmpindex = pBar0.Items.IndexOf("dockItemDataCheck");
                    pBar0.SelectedDockTab = tmpindex;
                }
            }
            catch
            { }
        }
Пример #38
0
        private DevComponents.DotNetBar.DockContainerItem CreateDockContainerItem(string ItemName, string ItemText, DevComponents.DotNetBar.PanelDockContainer panelDockContainer, DevComponents.DotNetBar.Bar bar)
        {
            DevComponents.DotNetBar.DockContainerItem dockContainerItem = new DevComponents.DotNetBar.DockContainerItem();
            dockContainerItem.Control = panelDockContainer;
            dockContainerItem.Name    = ItemName;
            dockContainerItem.Text    = ItemText;

            bar.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] { dockContainerItem });

            return(dockContainerItem);
        }
 /// <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.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     this.dgvTasks = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column2 = new System.Windows.Forms.DataGridViewButtonColumn();
     this.dotNetBarManager1 = new DevComponents.DotNetBar.DotNetBarManager(this.components);
     this.dockSite4 = new DevComponents.DotNetBar.DockSite();
     this.dockSite1 = new DevComponents.DotNetBar.DockSite();
     this.dockSite2 = new DevComponents.DotNetBar.DockSite();
     this.dockSite8 = new DevComponents.DotNetBar.DockSite();
     this.dockSite5 = new DevComponents.DotNetBar.DockSite();
     this.dockSite6 = new DevComponents.DotNetBar.DockSite();
     this.dockSite7 = new DevComponents.DotNetBar.DockSite();
     this.bar1 = new DevComponents.DotNetBar.Bar();
     this.btnFile = new DevComponents.DotNetBar.ButtonItem();
     this.btnExport = new DevComponents.DotNetBar.ButtonItem();
     this.btnExit = new DevComponents.DotNetBar.ButtonItem();
     this.dockSite3 = new DevComponents.DotNetBar.DockSite();
     ((System.ComponentModel.ISupportInitialize)(this.dgvTasks)).BeginInit();
     this.dockSite7.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).BeginInit();
     this.SuspendLayout();
     //
     // dgvTasks
     //
     this.dgvTasks.AllowUserToAddRows = false;
     this.dgvTasks.AllowUserToDeleteRows = false;
     this.dgvTasks.BackgroundColor = System.Drawing.Color.White;
     this.dgvTasks.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgvTasks.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.Column1,
     this.Column3,
     this.Column4,
     this.Column2});
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("微軟正黑體", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dgvTasks.DefaultCellStyle = dataGridViewCellStyle1;
     this.dgvTasks.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dgvTasks.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.dgvTasks.Location = new System.Drawing.Point(0, 27);
     this.dgvTasks.Name = "dgvTasks";
     this.dgvTasks.ReadOnly = true;
     this.dgvTasks.RowTemplate.Height = 24;
     this.dgvTasks.Size = new System.Drawing.Size(784, 535);
     this.dgvTasks.TabIndex = 0;
     this.dgvTasks.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvTasks_CellContentClick);
     this.dgvTasks.CellContentDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvTasks_CellContentDoubleClick);
     //
     // Column1
     //
     this.Column1.HeaderText = "狀態";
     this.Column1.Name = "Column1";
     this.Column1.ReadOnly = true;
     //
     // Column3
     //
     this.Column3.HeaderText = "工作名稱";
     this.Column3.Name = "Column3";
     this.Column3.ReadOnly = true;
     this.Column3.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.Column3.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.Column3.Width = 341;
     //
     // Column4
     //
     this.Column4.HeaderText = "訊息";
     this.Column4.Name = "Column4";
     this.Column4.ReadOnly = true;
     this.Column4.Width = 200;
     //
     // Column2
     //
     this.Column2.HeaderText = "取消";
     this.Column2.Name = "Column2";
     this.Column2.ReadOnly = true;
     this.Column2.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.Column2.Visible = false;
     //
     // dotNetBarManager1
     //
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.F1);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlC);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlA);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlV);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlX);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlZ);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlY);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Del);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Ins);
     this.dotNetBarManager1.BottomDockSite = this.dockSite4;
     this.dotNetBarManager1.EnableFullSizeDock = false;
     this.dotNetBarManager1.LeftDockSite = this.dockSite1;
     this.dotNetBarManager1.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
     this.dotNetBarManager1.ParentForm = this;
     this.dotNetBarManager1.RightDockSite = this.dockSite2;
     this.dotNetBarManager1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
     this.dotNetBarManager1.ToolbarBottomDockSite = this.dockSite8;
     this.dotNetBarManager1.ToolbarLeftDockSite = this.dockSite5;
     this.dotNetBarManager1.ToolbarRightDockSite = this.dockSite6;
     this.dotNetBarManager1.ToolbarTopDockSite = this.dockSite7;
     this.dotNetBarManager1.TopDockSite = this.dockSite3;
     //
     // dockSite4
     //
     this.dockSite4.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite4.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.dockSite4.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite4.Location = new System.Drawing.Point(0, 562);
     this.dockSite4.Name = "dockSite4";
     this.dockSite4.Size = new System.Drawing.Size(784, 0);
     this.dockSite4.TabIndex = 5;
     this.dockSite4.TabStop = false;
     //
     // dockSite1
     //
     this.dockSite1.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite1.Dock = System.Windows.Forms.DockStyle.Left;
     this.dockSite1.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite1.Location = new System.Drawing.Point(0, 27);
     this.dockSite1.Name = "dockSite1";
     this.dockSite1.Size = new System.Drawing.Size(0, 535);
     this.dockSite1.TabIndex = 2;
     this.dockSite1.TabStop = false;
     //
     // dockSite2
     //
     this.dockSite2.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite2.Dock = System.Windows.Forms.DockStyle.Right;
     this.dockSite2.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite2.Location = new System.Drawing.Point(784, 27);
     this.dockSite2.Name = "dockSite2";
     this.dockSite2.Size = new System.Drawing.Size(0, 535);
     this.dockSite2.TabIndex = 3;
     this.dockSite2.TabStop = false;
     //
     // dockSite8
     //
     this.dockSite8.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite8.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.dockSite8.Location = new System.Drawing.Point(0, 562);
     this.dockSite8.Name = "dockSite8";
     this.dockSite8.Size = new System.Drawing.Size(784, 0);
     this.dockSite8.TabIndex = 9;
     this.dockSite8.TabStop = false;
     //
     // dockSite5
     //
     this.dockSite5.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite5.Dock = System.Windows.Forms.DockStyle.Left;
     this.dockSite5.Location = new System.Drawing.Point(0, 27);
     this.dockSite5.Name = "dockSite5";
     this.dockSite5.Size = new System.Drawing.Size(0, 535);
     this.dockSite5.TabIndex = 6;
     this.dockSite5.TabStop = false;
     //
     // dockSite6
     //
     this.dockSite6.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite6.Dock = System.Windows.Forms.DockStyle.Right;
     this.dockSite6.Location = new System.Drawing.Point(784, 27);
     this.dockSite6.Name = "dockSite6";
     this.dockSite6.Size = new System.Drawing.Size(0, 535);
     this.dockSite6.TabIndex = 7;
     this.dockSite6.TabStop = false;
     //
     // dockSite7
     //
     this.dockSite7.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite7.Controls.Add(this.bar1);
     this.dockSite7.Dock = System.Windows.Forms.DockStyle.Top;
     this.dockSite7.Location = new System.Drawing.Point(0, 0);
     this.dockSite7.Name = "dockSite7";
     this.dockSite7.Size = new System.Drawing.Size(784, 27);
     this.dockSite7.TabIndex = 8;
     this.dockSite7.TabStop = false;
     //
     // bar1
     //
     this.bar1.AccessibleDescription = "DotNetBar Bar (bar1)";
     this.bar1.AccessibleName = "DotNetBar Bar";
     this.bar1.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuBar;
     this.bar1.DockSide = DevComponents.DotNetBar.eDockSide.Top;
     this.bar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnFile});
     this.bar1.Location = new System.Drawing.Point(0, 0);
     this.bar1.MenuBar = true;
     this.bar1.Name = "bar1";
     this.bar1.Size = new System.Drawing.Size(784, 26);
     this.bar1.Stretch = true;
     this.bar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
     this.bar1.TabIndex = 0;
     this.bar1.TabStop = false;
     this.bar1.Text = "bar1";
     //
     // btnFile
     //
     this.btnFile.Name = "btnFile";
     this.btnFile.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnExport,
     this.btnExit});
     this.btnFile.Text = "檔案";
     //
     // btnExport
     //
     this.btnExport.Enabled = false;
     this.btnExport.Name = "btnExport";
     this.btnExport.Text = "匯出";
     //
     // btnExit
     //
     this.btnExit.BeginGroup = true;
     this.btnExit.Name = "btnExit";
     this.btnExit.Text = "離開";
     this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
     //
     // dockSite3
     //
     this.dockSite3.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite3.Dock = System.Windows.Forms.DockStyle.Top;
     this.dockSite3.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite3.Location = new System.Drawing.Point(0, 27);
     this.dockSite3.Name = "dockSite3";
     this.dockSite3.Size = new System.Drawing.Size(784, 0);
     this.dockSite3.TabIndex = 4;
     this.dockSite3.TabStop = false;
     //
     // MultiTaskingRunner
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 17F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(784, 562);
     this.ControlBox = false;
     this.Controls.Add(this.dockSite2);
     this.Controls.Add(this.dockSite1);
     this.Controls.Add(this.dgvTasks);
     this.Controls.Add(this.dockSite3);
     this.Controls.Add(this.dockSite4);
     this.Controls.Add(this.dockSite5);
     this.Controls.Add(this.dockSite6);
     this.Controls.Add(this.dockSite7);
     this.Controls.Add(this.dockSite8);
     this.DoubleBuffered = true;
     this.Font = new System.Drawing.Font("微軟正黑體", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.Margin = new System.Windows.Forms.Padding(4);
     this.Name = "MultiTaskingRunner";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "批次工作執行";
     this.Load += new System.EventHandler(this.MultiTaskingRunner_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dgvTasks)).EndInit();
     this.dockSite7.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).EndInit();
     this.ResumeLayout(false);
 }
Пример #40
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainFrame));
     this.openFileDialog1   = new System.Windows.Forms.OpenFileDialog();
     this.ilToolbar         = new System.Windows.Forms.ImageList(this.components);
     this.theViewer         = new Genetibase.Debug.ObjViewer.ObjViewer();
     this.bar1              = new DevComponents.DotNetBar.Bar();
     this.item_2            = new DevComponents.DotNetBar.ButtonItem();
     this.item_3            = new DevComponents.DotNetBar.ButtonItem();
     this.item_13           = new DevComponents.DotNetBar.ButtonItem();
     this.item_14           = new DevComponents.DotNetBar.ButtonItem();
     this.uiPanelManager1   = new Janus.Windows.UI.Dock.UIPanelManager(this.components);
     this.uiPanel0          = new Janus.Windows.UI.Dock.UIPanel();
     this.uiPanel0Container = new Janus.Windows.UI.Dock.UIPanelInnerContainer();
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.uiPanelManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.uiPanel0)).BeginInit();
     this.uiPanel0.SuspendLayout();
     this.uiPanel0Container.SuspendLayout();
     this.SuspendLayout();
     //
     // openFileDialog1
     //
     resources.ApplyResources(this.openFileDialog1, "openFileDialog1");
     //
     // ilToolbar
     //
     this.ilToolbar.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
     resources.ApplyResources(this.ilToolbar, "ilToolbar");
     this.ilToolbar.TransparentColor = System.Drawing.Color.Transparent;
     //
     // theViewer
     //
     this.theViewer.AccessibleDescription = null;
     this.theViewer.AccessibleName        = null;
     resources.ApplyResources(this.theViewer, "theViewer");
     this.theViewer.BackgroundImage = null;
     this.theViewer.Font            = null;
     this.theViewer.Name            = "theViewer";
     //
     // bar1
     //
     this.bar1.AccessibleDescription = null;
     this.bar1.AccessibleName        = null;
     resources.ApplyResources(this.bar1, "bar1");
     this.bar1.BackgroundImage      = null;
     this.bar1.BackgroundImageAlpha = ((byte)(255));
     this.bar1.Font = null;
     this.bar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
         this.item_2,
         this.item_3,
         this.item_13,
         this.item_14
     });
     this.bar1.Name    = "bar1";
     this.bar1.Stretch = true;
     this.bar1.Style   = DevComponents.DotNetBar.eDotNetBarStyle.VS2005;
     this.bar1.TabStop = false;
     //
     // item_2
     //
     this.item_2.Name = "item_2";
     resources.ApplyResources(this.item_2, "item_2");
     this.item_2.Click += new System.EventHandler(this.item_2_Click);
     //
     // item_3
     //
     this.item_3.Name = "item_3";
     resources.ApplyResources(this.item_3, "item_3");
     this.item_3.Click += new System.EventHandler(this.item_3_Click);
     //
     // item_13
     //
     this.item_13.Name = "item_13";
     resources.ApplyResources(this.item_13, "item_13");
     this.item_13.Click += new System.EventHandler(this.item_13_Click);
     //
     // item_14
     //
     this.item_14.Name = "item_14";
     resources.ApplyResources(this.item_14, "item_14");
     this.item_14.Click += new System.EventHandler(this.item_14_Click);
     //
     // uiPanelManager1
     //
     this.uiPanelManager1.BackColorGradientAutoHideStrip = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(243)))), ((int)(((byte)(247)))));
     this.uiPanelManager1.ContainerControl = this;
     this.uiPanelManager1.DefaultPanelSettings.AutoHideButtonVisible = ((bool)(resources.GetObject("uiPanelManager1.DefaultPanelSettings.AutoHideButtonVisible")));
     this.uiPanelManager1.DefaultPanelSettings.BorderCaption         = ((bool)(resources.GetObject("uiPanelManager1.DefaultPanelSettings.BorderCaption")));
     this.uiPanelManager1.DefaultPanelSettings.CaptionHeight         = ((int)(resources.GetObject("uiPanelManager1.DefaultPanelSettings.CaptionHeight")));
     this.uiPanelManager1.DefaultPanelSettings.CaptionVisible        = ((bool)(resources.GetObject("uiPanelManager1.DefaultPanelSettings.CaptionVisible")));
     this.uiPanelManager1.DefaultPanelSettings.CloseButtonVisible    = ((bool)(resources.GetObject("uiPanelManager1.DefaultPanelSettings.CloseButtonVisible")));
     this.uiPanelManager1.DefaultPanelSettings.UseActiveCaptionStyle = ((bool)(resources.GetObject("uiPanelManager1.DefaultPanelSettings.UseActiveCaptionStyle")));
     this.uiPanelManager1.ImageList      = null;
     this.uiPanelManager1.LargeImageList = null;
     this.uiPanelManager1.LayoutStream   = null;
     resources.ApplyResources(this.uiPanelManager1, "uiPanelManager1");
     this.uiPanelManager1.TabbedMdiSettings.AllowDrag          = ((bool)(resources.GetObject("uiPanelManager1.TabbedMdiSettings.AllowDrag")));
     this.uiPanelManager1.TabbedMdiSettings.MaxTabSize         = ((int)(resources.GetObject("uiPanelManager1.TabbedMdiSettings.MaxTabSize")));
     this.uiPanelManager1.TabbedMdiSettings.ShowCloseButton    = ((bool)(resources.GetObject("uiPanelManager1.TabbedMdiSettings.ShowCloseButton")));
     this.uiPanelManager1.TabbedMdiSettings.TabCaptionTrimming = ((System.Drawing.StringTrimming)(resources.GetObject("uiPanelManager1.TabbedMdiSettings.TabCaptionTrimming")));
     this.uiPanelManager1.TabbedMdiSettings.UseFormIcons       = ((bool)(resources.GetObject("uiPanelManager1.TabbedMdiSettings.UseFormIcons")));
     this.uiPanel0.Id = new System.Guid("a7968a0c-6f4c-4839-ae9f-b95098a1cd1f");
     this.uiPanelManager1.Panels.Add(this.uiPanel0);
     //
     // Design Time Panel Info:
     //
     this.uiPanelManager1.BeginPanelInfo();
     this.uiPanelManager1.AddDockPanelInfo(new System.Guid("a7968a0c-6f4c-4839-ae9f-b95098a1cd1f"), Janus.Windows.UI.Dock.PanelDockStyle.Right, new System.Drawing.Size(273, 516), true);
     this.uiPanelManager1.AddFloatingPanelInfo(new System.Guid("a7968a0c-6f4c-4839-ae9f-b95098a1cd1f"), new System.Drawing.Point(-1, -1), new System.Drawing.Size(-1, -1), false);
     this.uiPanelManager1.EndPanelInfo();
     //
     // uiPanel0
     //
     this.uiPanel0.AccessibleDescription = null;
     this.uiPanel0.AccessibleName        = null;
     this.uiPanel0.AllowPanelDrag        = Janus.Windows.UI.InheritableBoolean.False;
     this.uiPanel0.AllowPanelDrop        = Janus.Windows.UI.InheritableBoolean.False;
     resources.ApplyResources(this.uiPanel0, "uiPanel0");
     this.uiPanel0.BackgroundImage    = null;
     this.uiPanel0.CloseButtonVisible = Janus.Windows.UI.InheritableBoolean.False;
     this.uiPanel0.Font           = null;
     this.uiPanel0.Icon           = null;
     this.uiPanel0.Image          = null;
     this.uiPanel0.InnerContainer = this.uiPanel0Container;
     this.uiPanel0.LargeIcon      = null;
     this.uiPanel0.LargeImage     = null;
     this.uiPanel0.Name           = "uiPanel0";
     //
     // uiPanel0Container
     //
     this.uiPanel0Container.AccessibleDescription = null;
     this.uiPanel0Container.AccessibleName        = null;
     resources.ApplyResources(this.uiPanel0Container, "uiPanel0Container");
     this.uiPanel0Container.BackgroundImage = null;
     this.uiPanel0Container.Controls.Add(this.theViewer);
     this.uiPanel0Container.Font = null;
     this.uiPanel0Container.Name = "uiPanel0Container";
     //
     // MainFrame
     //
     this.AccessibleDescription = null;
     this.AccessibleName        = null;
     this.AllowDrop             = true;
     resources.ApplyResources(this, "$this");
     this.BackgroundImage = null;
     this.Controls.Add(this.bar1);
     this.DoubleBuffered    = true;
     this.Font              = null;
     this.FormBorderStyle   = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.IsMdiContainer    = true;
     this.MaximizeBox       = false;
     this.Name              = "MainFrame";
     this.DragDrop         += new System.Windows.Forms.DragEventHandler(this.OnDrop);
     this.MdiChildActivate += new System.EventHandler(this.OnMdiChildActivate);
     this.DragEnter        += new System.Windows.Forms.DragEventHandler(this.OnDragEnter);
     this.Load             += new System.EventHandler(this.MainFrame_Load);
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.uiPanelManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.uiPanel0)).EndInit();
     this.uiPanel0.ResumeLayout(false);
     this.uiPanel0Container.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Пример #41
0
        private void InitializeComponent()
        {
            var resources = new System.ComponentModel.ComponentResourceManager(typeof(TextProfileEditor));

            _AdvTree1 = new DevComponents.AdvTree.AdvTree();
            _AdvTree1.AfterNodeSelect += new DevComponents.AdvTree.AdvTreeNodeEventHandler(AdvTree1_AfterNodeSelect);
            _NodeConnector1            = new DevComponents.AdvTree.NodeConnector();
            _ElementStyle1             = new DevComponents.DotNetBar.ElementStyle();
            _Panel1       = new Panel();
            _Panel2       = new Panel();
            _Panel3       = new Panel();
            _ItemListBox1 = new Publics.Controls.ItemListBox();
            _ItemListBox1.SelectedItemChanged += new Publics.Controls.ItemListBox.SelectedItemChangedEventHandler(ItemListBox1_SelectedChanged);
            _Bar2 = new DevComponents.DotNetBar.Bar();
            _ButtonItem_AddArrayItem           = new DevComponents.DotNetBar.ButtonItem();
            _ButtonItem_AddArrayItem.Click    += new EventHandler(ButtonItem_AddArrayItem_Click);
            _ButtonItem_RemoveArrayItem        = new DevComponents.DotNetBar.ButtonItem();
            _ButtonItem_RemoveArrayItem.Click += new EventHandler(ButtonItem_RemoveArrayItem_Click);
            _ButtonItem_ClearArrayItems        = new DevComponents.DotNetBar.ButtonItem();
            _ButtonItem_ClearArrayItems.Click += new EventHandler(ButtonItem_ClearArrayItems_Click);
            _AdvPropertyGrid1 = new DevComponents.DotNetBar.AdvPropertyGrid();
            _AdvPropertyGrid1.PropertyValueChanged += new System.ComponentModel.PropertyChangedEventHandler(AdvPropertyGrid1_PropertyChanged);
            _Bar1 = new DevComponents.DotNetBar.Bar();
            _ButtonItem_AddTableGroup        = new DevComponents.DotNetBar.ButtonItem();
            _ButtonItem_AddTableGroup.Click += new EventHandler(ButtonItem_AddTableGroup_Click);
            _ButtonItem_AddArrayGroup        = new DevComponents.DotNetBar.ButtonItem();
            _ButtonItem_AddArrayGroup.Click += new EventHandler(ButtonItem_AddArrayGroup_Click);
            _ButtonItem_RemoveGroup          = new DevComponents.DotNetBar.ButtonItem();
            _ButtonItem_RemoveGroup.Click   += new EventHandler(ButtonItem_RemoveGroup_Click);
            ((System.ComponentModel.ISupportInitialize)_AdvTree1).BeginInit();
            _Panel1.SuspendLayout();
            _Panel2.SuspendLayout();
            _Panel3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)_Bar2).BeginInit();
            ((System.ComponentModel.ISupportInitialize)_AdvPropertyGrid1).BeginInit();
            ((System.ComponentModel.ISupportInitialize)_Bar1).BeginInit();
            SuspendLayout();
            //
            // AdvTree1
            //
            _AdvTree1.AccessibleRole = AccessibleRole.Outline;
            _AdvTree1.BackColor      = SystemColors.Window;
            //
            //
            //
            _AdvTree1.BackgroundStyle.Class      = "TreeBorderKey";
            _AdvTree1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _AdvTree1.Dock           = DockStyle.Left;
            _AdvTree1.LicenseKey     = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
            _AdvTree1.Location       = new Point(0, 0);
            _AdvTree1.Name           = "AdvTree1";
            _AdvTree1.NodesConnector = _NodeConnector1;
            _AdvTree1.NodeStyle      = _ElementStyle1;
            _AdvTree1.PathSeparator  = ";";
            _AdvTree1.Size           = new Size(241, 472);
            _AdvTree1.Styles.Add(_ElementStyle1);
            _AdvTree1.TabIndex = 0;
            _AdvTree1.Text     = "AdvTree1";
            //
            // NodeConnector1
            //
            _NodeConnector1.LineColor = SystemColors.ControlText;
            //
            // ElementStyle1
            //
            _ElementStyle1.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _ElementStyle1.Name       = "ElementStyle1";
            _ElementStyle1.TextColor  = SystemColors.ControlText;
            //
            // Panel1
            //
            _Panel1.BackColor = Color.Transparent;
            _Panel1.Controls.Add(_Panel2);
            _Panel1.Controls.Add(_AdvTree1);
            _Panel1.Dock     = DockStyle.Fill;
            _Panel1.Location = new Point(0, 25);
            _Panel1.Name     = "Panel1";
            _Panel1.Size     = new Size(567, 472);
            _Panel1.TabIndex = 1;
            //
            // Panel2
            //
            _Panel2.Controls.Add(_Panel3);
            _Panel2.Controls.Add(_AdvPropertyGrid1);
            _Panel2.Dock     = DockStyle.Fill;
            _Panel2.Location = new Point(241, 0);
            _Panel2.Name     = "Panel2";
            _Panel2.Size     = new Size(326, 472);
            _Panel2.TabIndex = 1;
            //
            // Panel3
            //
            _Panel3.Controls.Add(_ItemListBox1);
            _Panel3.Controls.Add(_Bar2);
            _Panel3.Dock     = DockStyle.Fill;
            _Panel3.Location = new Point(0, 194);
            _Panel3.Name     = "Panel3";
            _Panel3.Size     = new Size(326, 278);
            _Panel3.TabIndex = 4;
            //
            // ItemListBox1
            //
            _ItemListBox1.AutoScroll = true;
            //
            //
            //
            _ItemListBox1.BackgroundStyle.Class            = "ItemPanel";
            _ItemListBox1.BackgroundStyle.CornerType       = DevComponents.DotNetBar.eCornerType.Square;
            _ItemListBox1.ContainerControlProcessDialogKey = true;
            _ItemListBox1.Dock              = DockStyle.Fill;
            _ItemListBox1.DragDropSupport   = true;
            _ItemListBox1.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
            _ItemListBox1.LicenseKey        = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
            _ItemListBox1.Location          = new Point(0, 25);
            _ItemListBox1.Name              = "ItemListBox1";
            _ItemListBox1.ReserveLeftSpace  = false;
            _ItemListBox1.Size              = new Size(326, 253);
            _ItemListBox1.Style             = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            _ItemListBox1.TabIndex          = 0;
            _ItemListBox1.Text              = "ItemListBox1";
            //
            // Bar2
            //
            _Bar2.AccessibleDescription = "Bar2 (Bar2)";
            _Bar2.AccessibleName        = "Bar2";
            _Bar2.AccessibleRole        = AccessibleRole.ToolBar;
            _Bar2.AntiAlias             = true;
            _Bar2.Dock        = DockStyle.Top;
            _Bar2.DockSide    = DevComponents.DotNetBar.eDockSide.Document;
            _Bar2.Font        = new Font("Segoe UI", 9.0F);
            _Bar2.IsMaximized = false;
            _Bar2.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] { _ButtonItem_AddArrayItem, _ButtonItem_RemoveArrayItem, _ButtonItem_ClearArrayItems });
            _Bar2.Location     = new Point(0, 0);
            _Bar2.Name         = "Bar2";
            _Bar2.RoundCorners = false;
            _Bar2.Size         = new Size(326, 25);
            _Bar2.Stretch      = true;
            _Bar2.Style        = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            _Bar2.TabIndex     = 3;
            _Bar2.TabStop      = false;
            _Bar2.Text         = "Bar2";
            //
            // ButtonItem_AddArrayItem
            //
            _ButtonItem_AddArrayItem.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
            _ButtonItem_AddArrayItem.Image       = My.Resources.MyIcons.icons8_add_subnode_16px;
            _ButtonItem_AddArrayItem.Name        = "ButtonItem_AddArrayItem";
            _ButtonItem_AddArrayItem.SymbolColor = Color.FromArgb(Conversions.ToInteger(Conversions.ToByte(82)), Conversions.ToInteger(Conversions.ToByte(124)), Conversions.ToInteger(Conversions.ToByte(64)));
            _ButtonItem_AddArrayItem.SymbolSet   = DevComponents.DotNetBar.eSymbolSet.Material;
            _ButtonItem_AddArrayItem.SymbolSize  = 12.0F;
            _ButtonItem_AddArrayItem.Text        = "Text Item";
            //
            // ButtonItem_RemoveArrayItem
            //
            _ButtonItem_RemoveArrayItem.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
            _ButtonItem_RemoveArrayItem.Image       = My.Resources.MyIcons.icons8_delete_subnode_16px;
            _ButtonItem_RemoveArrayItem.Name        = "ButtonItem_RemoveArrayItem";
            _ButtonItem_RemoveArrayItem.SymbolColor = Color.FromArgb(Conversions.ToInteger(Conversions.ToByte(150)), Conversions.ToInteger(Conversions.ToByte(0)), Conversions.ToInteger(Conversions.ToByte(0)));
            _ButtonItem_RemoveArrayItem.SymbolSet   = DevComponents.DotNetBar.eSymbolSet.Material;
            _ButtonItem_RemoveArrayItem.SymbolSize  = 12.0F;
            _ButtonItem_RemoveArrayItem.Text        = "Remove Item";
            //
            // ButtonItem_ClearArrayItems
            //
            _ButtonItem_ClearArrayItems.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
            _ButtonItem_ClearArrayItems.Image       = My.Resources.MyIcons.icons8_delete_2_16px;
            _ButtonItem_ClearArrayItems.Name        = "ButtonItem_ClearArrayItems";
            _ButtonItem_ClearArrayItems.SymbolColor = Color.FromArgb(Conversions.ToInteger(Conversions.ToByte(150)), Conversions.ToInteger(Conversions.ToByte(0)), Conversions.ToInteger(Conversions.ToByte(0)));
            _ButtonItem_ClearArrayItems.SymbolSet   = DevComponents.DotNetBar.eSymbolSet.Material;
            _ButtonItem_ClearArrayItems.SymbolSize  = 12.0F;
            _ButtonItem_ClearArrayItems.Text        = "Clear List";
            //
            // AdvPropertyGrid1
            //
            _AdvPropertyGrid1.Dock           = DockStyle.Top;
            _AdvPropertyGrid1.GridLinesColor = Color.WhiteSmoke;
            _AdvPropertyGrid1.Location       = new Point(0, 0);
            _AdvPropertyGrid1.Name           = "AdvPropertyGrid1";
            _AdvPropertyGrid1.Size           = new Size(326, 194);
            _AdvPropertyGrid1.TabIndex       = 1;
            _AdvPropertyGrid1.Text           = "AdvPropertyGrid1";
            //
            // Bar1
            //
            _Bar1.AccessibleDescription = "Bar1 (Bar1)";
            _Bar1.AccessibleName        = "Bar1";
            _Bar1.AccessibleRole        = AccessibleRole.ToolBar;
            _Bar1.AntiAlias             = true;
            _Bar1.Dock        = DockStyle.Top;
            _Bar1.Font        = new Font("Segoe UI", 9.0F);
            _Bar1.IsMaximized = false;
            _Bar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] { _ButtonItem_AddTableGroup, _ButtonItem_AddArrayGroup, _ButtonItem_RemoveGroup });
            _Bar1.Location     = new Point(0, 0);
            _Bar1.Name         = "Bar1";
            _Bar1.RoundCorners = false;
            _Bar1.Size         = new Size(567, 25);
            _Bar1.Stretch      = true;
            _Bar1.Style        = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            _Bar1.TabIndex     = 2;
            _Bar1.TabStop      = false;
            _Bar1.Text         = "Bar1";
            //
            // ButtonItem_AddTableGroup
            //
            _ButtonItem_AddTableGroup.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
            _ButtonItem_AddTableGroup.Image       = My.Resources.MyIcons.icons8_add_node_16px;
            _ButtonItem_AddTableGroup.Name        = "ButtonItem_AddTableGroup";
            _ButtonItem_AddTableGroup.SymbolColor = Color.FromArgb(Conversions.ToInteger(Conversions.ToByte(82)), Conversions.ToInteger(Conversions.ToByte(124)), Conversions.ToInteger(Conversions.ToByte(64)));
            _ButtonItem_AddTableGroup.SymbolSet   = DevComponents.DotNetBar.eSymbolSet.Material;
            _ButtonItem_AddTableGroup.SymbolSize  = 12.0F;
            _ButtonItem_AddTableGroup.Text        = "Table Group";
            //
            // ButtonItem_AddArrayGroup
            //
            _ButtonItem_AddArrayGroup.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
            _ButtonItem_AddArrayGroup.Image       = My.Resources.MyIcons.icons8_add_node_16px;
            _ButtonItem_AddArrayGroup.Name        = "ButtonItem_AddArrayGroup";
            _ButtonItem_AddArrayGroup.SymbolColor = Color.FromArgb(Conversions.ToInteger(Conversions.ToByte(82)), Conversions.ToInteger(Conversions.ToByte(124)), Conversions.ToInteger(Conversions.ToByte(64)));
            _ButtonItem_AddArrayGroup.SymbolSet   = DevComponents.DotNetBar.eSymbolSet.Material;
            _ButtonItem_AddArrayGroup.SymbolSize  = 12.0F;
            _ButtonItem_AddArrayGroup.Text        = "Array Group";
            //
            // ButtonItem_RemoveGroup
            //
            _ButtonItem_RemoveGroup.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
            _ButtonItem_RemoveGroup.Image       = My.Resources.MyIcons.icons8_delete_node_16px;
            _ButtonItem_RemoveGroup.Name        = "ButtonItem_RemoveGroup";
            _ButtonItem_RemoveGroup.SymbolColor = Color.FromArgb(Conversions.ToInteger(Conversions.ToByte(150)), Conversions.ToInteger(Conversions.ToByte(0)), Conversions.ToInteger(Conversions.ToByte(0)));
            _ButtonItem_RemoveGroup.SymbolSet   = DevComponents.DotNetBar.eSymbolSet.Material;
            _ButtonItem_RemoveGroup.SymbolSize  = 12.0F;
            _ButtonItem_RemoveGroup.Text        = "Remove Group";
            //
            // TextProfileEditor
            //
            AutoScaleDimensions = new SizeF(6.0F, 13.0F);
            AutoScaleMode       = AutoScaleMode.Font;
            ClientSize          = new Size(567, 497);
            Controls.Add(_Panel1);
            Controls.Add(_Bar1);
            Icon               = (Icon)resources.GetObject("$this.Icon");
            Name               = "TextProfileEditor";
            StartPosition      = FormStartPosition.CenterScreen;
            Text               = "Text Profile Editor";
            TopLeftCornerSize  = 0;
            TopRightCornerSize = 0;
            ((System.ComponentModel.ISupportInitialize)_AdvTree1).EndInit();
            _Panel1.ResumeLayout(false);
            _Panel2.ResumeLayout(false);
            _Panel3.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)_Bar2).EndInit();
            ((System.ComponentModel.ISupportInitialize)_AdvPropertyGrid1).EndInit();
            ((System.ComponentModel.ISupportInitialize)_Bar1).EndInit();
            ResumeLayout(false);
        }
Пример #42
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMain));
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.strmenuHeThong = new System.Windows.Forms.ToolStripMenuItem();
     this.strDangNhap = new System.Windows.Forms.ToolStripMenuItem();
     this.projectToolStripNewProject = new System.Windows.Forms.ToolStripMenuItem();
     this.strDangXuat = new System.Windows.Forms.ToolStripMenuItem();
     this.projectToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this._btSave = new System.Windows.Forms.ToolStripMenuItem();
     this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.strmenuTroGiup = new System.Windows.Forms.ToolStripMenuItem();
     this.strThongTin = new System.Windows.Forms.ToolStripMenuItem();
     this.strLienHe = new System.Windows.Forms.ToolStripMenuItem();
     this.viewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.projectExploreToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.execureToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.runToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.pauseToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.stopToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.thoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.tácGiảToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.metroShell1 = new DevComponents.DotNetBar.Metro.MetroShell();
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.newToolStripButton = new System.Windows.Forms.ToolStripButton();
     this.openToolStripButton = new System.Windows.Forms.ToolStripButton();
     this.saveToolStripButton = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButtonRun = new System.Windows.Forms.ToolStripButton();
     this.toolStripButtonPause = new System.Windows.Forms.ToolStripButton();
     this.toolStripButtonStop = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButtonUndo = new System.Windows.Forms.ToolStripButton();
     this.toolStripButtonRedo = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.cutToolStripButton = new System.Windows.Forms.ToolStripButton();
     this.copyToolStripButton = new System.Windows.Forms.ToolStripButton();
     this.pasteToolStripButton = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.helpToolStripButton = new System.Windows.Forms.ToolStripButton();
     this.dotNetBarManager1 = new DevComponents.DotNetBar.DotNetBarManager(this.components);
     this.dockSite4 = new DevComponents.DotNetBar.DockSite();
     this.dockSite1 = new DevComponents.DotNetBar.DockSite();
     this.bar1 = new DevComponents.DotNetBar.Bar();
     this.panelDockContainer1 = new DevComponents.DotNetBar.PanelDockContainer();
     this._treeViewProjectExplore = new System.Windows.Forms.TreeView();
     this.contextMenuStripTreeView = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.runToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.addFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.deleteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.imageListTrV = new System.Windows.Forms.ImageList(this.components);
     this.dockContainerItem1 = new DevComponents.DotNetBar.DockContainerItem();
     this.dockSite2 = new DevComponents.DotNetBar.DockSite();
     this.dockSite8 = new DevComponents.DotNetBar.DockSite();
     this.dockSite5 = new DevComponents.DotNetBar.DockSite();
     this.dockSite6 = new DevComponents.DotNetBar.DockSite();
     this.dockSite7 = new DevComponents.DotNetBar.DockSite();
     this.dockSite3 = new DevComponents.DotNetBar.DockSite();
     this.tabControl1X = new System.Windows.Forms.TabControl();
     this.tabPageHex = new System.Windows.Forms.TabPage();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.tabPageText = new System.Windows.Forms.TabPage();
     this.tabControl2 = new System.Windows.Forms.TabControl();
     this.tabMenu = new System.Windows.Forms.TabPage();
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
     this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
     this.tableLayoutPanel5 = new System.Windows.Forms.TableLayoutPanel();
     this.itemPanel4 = new DevComponents.DotNetBar.ItemPanel();
     this.itemContainer4 = new DevComponents.DotNetBar.ItemContainer();
     this.metroTileItem4 = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.itemPanel5 = new DevComponents.DotNetBar.ItemPanel();
     this.itemContainer5 = new DevComponents.DotNetBar.ItemContainer();
     this.metroTileItem5 = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.itemPanel6 = new DevComponents.DotNetBar.ItemPanel();
     this.itemContainer6 = new DevComponents.DotNetBar.ItemContainer();
     this.metroTileItem6 = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.itemPanel7 = new DevComponents.DotNetBar.ItemPanel();
     this.itemContainer7 = new DevComponents.DotNetBar.ItemContainer();
     this.metroTileItem7 = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.itemPanel3 = new DevComponents.DotNetBar.ItemPanel();
     this.itemContainer3 = new DevComponents.DotNetBar.ItemContainer();
     this.metroTileItem3 = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.tableLayoutPanel4 = new System.Windows.Forms.TableLayoutPanel();
     this.itemPanel1 = new DevComponents.DotNetBar.ItemPanel();
     this.itemContainer1 = new DevComponents.DotNetBar.ItemContainer();
     this.metroTileItem1 = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.itemPanel2 = new DevComponents.DotNetBar.ItemPanel();
     this.itemContainer2 = new DevComponents.DotNetBar.ItemContainer();
     this.metroTileItem2 = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.tabPageExcell = new System.Windows.Forms.TabPage();
     this.tabControl1 = new System.Windows.Forms.CustomTabControl();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.tabPage23 = new System.Windows.Forms.TabPage();
     this.tabPage21 = new System.Windows.Forms.TabPage();
     this.menuStrip1.SuspendLayout();
     this.toolStrip1.SuspendLayout();
     this.dockSite1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).BeginInit();
     this.bar1.SuspendLayout();
     this.panelDockContainer1.SuspendLayout();
     this.contextMenuStripTreeView.SuspendLayout();
     this.tabControl1X.SuspendLayout();
     this.tabPageHex.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.tabPageText.SuspendLayout();
     this.tabControl2.SuspendLayout();
     this.tabMenu.SuspendLayout();
     this.tableLayoutPanel1.SuspendLayout();
     this.tableLayoutPanel2.SuspendLayout();
     this.tableLayoutPanel3.SuspendLayout();
     this.tableLayoutPanel5.SuspendLayout();
     this.tableLayoutPanel4.SuspendLayout();
     this.tabPageExcell.SuspendLayout();
     this.SuspendLayout();
     //
     // menuStrip1
     //
     this.menuStrip1.BackColor = System.Drawing.SystemColors.ControlDarkDark;
     this.menuStrip1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.menuStrip1.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.strmenuHeThong,
     this.strmenuTroGiup,
     this.viewToolStripMenuItem,
     this.execureToolStripMenuItem,
     this.aboutToolStripMenuItem});
     this.menuStrip1.Location = new System.Drawing.Point(5, 25);
     this.menuStrip1.Name = "menuStrip1";
     this.menuStrip1.Size = new System.Drawing.Size(851, 24);
     this.menuStrip1.TabIndex = 12;
     this.menuStrip1.Text = "menuStrip1";
     //
     // strmenuHeThong
     //
     this.strmenuHeThong.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.strDangNhap,
     this.strDangXuat,
     this._btSave,
     this.exitToolStripMenuItem});
     this.strmenuHeThong.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.strmenuHeThong.ForeColor = System.Drawing.Color.White;
     this.strmenuHeThong.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.strmenuHeThong.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.strmenuHeThong.ImageTransparentColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.strmenuHeThong.Name = "strmenuHeThong";
     this.strmenuHeThong.Size = new System.Drawing.Size(37, 20);
     this.strmenuHeThong.Text = "&File";
     //
     // strDangNhap
     //
     this.strDangNhap.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("strDangNhap.BackgroundImage")));
     this.strDangNhap.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.projectToolStripNewProject});
     this.strDangNhap.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.strDangNhap.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.strDangNhap.Name = "strDangNhap";
     this.strDangNhap.Size = new System.Drawing.Size(138, 22);
     this.strDangNhap.Text = "New";
     //
     // projectToolStripNewProject
     //
     this.projectToolStripNewProject.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("projectToolStripNewProject.BackgroundImage")));
     this.projectToolStripNewProject.ForeColor = System.Drawing.Color.White;
     this.projectToolStripNewProject.Image = ((System.Drawing.Image)(resources.GetObject("projectToolStripNewProject.Image")));
     this.projectToolStripNewProject.Name = "projectToolStripNewProject";
     this.projectToolStripNewProject.Size = new System.Drawing.Size(111, 22);
     this.projectToolStripNewProject.Text = "Project";
     this.projectToolStripNewProject.Click += new System.EventHandler(this.projectToolStripNewProject_Click);
     //
     // strDangXuat
     //
     this.strDangXuat.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("strDangXuat.BackgroundImage")));
     this.strDangXuat.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.projectToolStripMenuItem1});
     this.strDangXuat.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.strDangXuat.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.strDangXuat.Name = "strDangXuat";
     this.strDangXuat.Size = new System.Drawing.Size(138, 22);
     this.strDangXuat.Text = "Open";
     //
     // projectToolStripMenuItem1
     //
     this.projectToolStripMenuItem1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("projectToolStripMenuItem1.BackgroundImage")));
     this.projectToolStripMenuItem1.ForeColor = System.Drawing.Color.White;
     this.projectToolStripMenuItem1.Image = ((System.Drawing.Image)(resources.GetObject("projectToolStripMenuItem1.Image")));
     this.projectToolStripMenuItem1.Name = "projectToolStripMenuItem1";
     this.projectToolStripMenuItem1.Size = new System.Drawing.Size(111, 22);
     this.projectToolStripMenuItem1.Text = "Project";
     this.projectToolStripMenuItem1.Click += new System.EventHandler(this.projectToolStripMenuItem1_Click);
     //
     // _btSave
     //
     this._btSave.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("_btSave.BackgroundImage")));
     this._btSave.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this._btSave.Image = ((System.Drawing.Image)(resources.GetObject("_btSave.Image")));
     this._btSave.Name = "_btSave";
     this._btSave.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
     this._btSave.Size = new System.Drawing.Size(138, 22);
     this._btSave.Text = "Save";
     this._btSave.Click += new System.EventHandler(this._btSave_Click);
     //
     // exitToolStripMenuItem
     //
     this.exitToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("exitToolStripMenuItem.BackgroundImage")));
     this.exitToolStripMenuItem.ForeColor = System.Drawing.Color.White;
     this.exitToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("exitToolStripMenuItem.Image")));
     this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
     this.exitToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.F4)));
     this.exitToolStripMenuItem.Size = new System.Drawing.Size(138, 22);
     this.exitToolStripMenuItem.Text = "Exit";
     this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
     //
     // strmenuTroGiup
     //
     this.strmenuTroGiup.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.strThongTin,
     this.strLienHe});
     this.strmenuTroGiup.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.strmenuTroGiup.ForeColor = System.Drawing.Color.White;
     this.strmenuTroGiup.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.strmenuTroGiup.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.strmenuTroGiup.Name = "strmenuTroGiup";
     this.strmenuTroGiup.Size = new System.Drawing.Size(39, 20);
     this.strmenuTroGiup.Text = "&Edit";
     //
     // strThongTin
     //
     this.strThongTin.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("strThongTin.BackgroundImage")));
     this.strThongTin.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.strThongTin.Image = ((System.Drawing.Image)(resources.GetObject("strThongTin.Image")));
     this.strThongTin.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.strThongTin.Name = "strThongTin";
     this.strThongTin.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Z)));
     this.strThongTin.Size = new System.Drawing.Size(144, 22);
     this.strThongTin.Text = "Undo";
     //
     // strLienHe
     //
     this.strLienHe.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("strLienHe.BackgroundImage")));
     this.strLienHe.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.strLienHe.Image = ((System.Drawing.Image)(resources.GetObject("strLienHe.Image")));
     this.strLienHe.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.strLienHe.Name = "strLienHe";
     this.strLienHe.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Y)));
     this.strLienHe.Size = new System.Drawing.Size(144, 22);
     this.strLienHe.Text = "Redo";
     //
     // viewToolStripMenuItem
     //
     this.viewToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.projectExploreToolStripMenuItem});
     this.viewToolStripMenuItem.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.viewToolStripMenuItem.ForeColor = System.Drawing.Color.White;
     this.viewToolStripMenuItem.Name = "viewToolStripMenuItem";
     this.viewToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
     this.viewToolStripMenuItem.Text = "&View";
     //
     // projectExploreToolStripMenuItem
     //
     this.projectExploreToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("projectExploreToolStripMenuItem.BackgroundImage")));
     this.projectExploreToolStripMenuItem.ForeColor = System.Drawing.Color.White;
     this.projectExploreToolStripMenuItem.Name = "projectExploreToolStripMenuItem";
     this.projectExploreToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
     this.projectExploreToolStripMenuItem.Text = "Project Explore";
     //
     // execureToolStripMenuItem
     //
     this.execureToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.runToolStripMenuItem,
     this.pauseToolStripMenuItem,
     this.stopToolStripMenuItem});
     this.execureToolStripMenuItem.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.execureToolStripMenuItem.ForeColor = System.Drawing.Color.White;
     this.execureToolStripMenuItem.Name = "execureToolStripMenuItem";
     this.execureToolStripMenuItem.Size = new System.Drawing.Size(59, 20);
     this.execureToolStripMenuItem.Text = "&Execure";
     //
     // runToolStripMenuItem
     //
     this.runToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("runToolStripMenuItem.BackgroundImage")));
     this.runToolStripMenuItem.ForeColor = System.Drawing.Color.White;
     this.runToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("runToolStripMenuItem.Image")));
     this.runToolStripMenuItem.Name = "runToolStripMenuItem";
     this.runToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.F5;
     this.runToolStripMenuItem.Size = new System.Drawing.Size(114, 22);
     this.runToolStripMenuItem.Text = "Run";
     //
     // pauseToolStripMenuItem
     //
     this.pauseToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pauseToolStripMenuItem.BackgroundImage")));
     this.pauseToolStripMenuItem.ForeColor = System.Drawing.Color.White;
     this.pauseToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("pauseToolStripMenuItem.Image")));
     this.pauseToolStripMenuItem.Name = "pauseToolStripMenuItem";
     this.pauseToolStripMenuItem.Size = new System.Drawing.Size(114, 22);
     this.pauseToolStripMenuItem.Text = "Pause";
     //
     // stopToolStripMenuItem
     //
     this.stopToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("stopToolStripMenuItem.BackgroundImage")));
     this.stopToolStripMenuItem.ForeColor = System.Drawing.Color.White;
     this.stopToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("stopToolStripMenuItem.Image")));
     this.stopToolStripMenuItem.Name = "stopToolStripMenuItem";
     this.stopToolStripMenuItem.Size = new System.Drawing.Size(114, 22);
     this.stopToolStripMenuItem.Text = "Stop";
     //
     // aboutToolStripMenuItem
     //
     this.aboutToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.thoToolStripMenuItem,
     this.tácGiảToolStripMenuItem});
     this.aboutToolStripMenuItem.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.aboutToolStripMenuItem.ForeColor = System.Drawing.Color.White;
     this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
     this.aboutToolStripMenuItem.Size = new System.Drawing.Size(52, 20);
     this.aboutToolStripMenuItem.Text = "&About";
     //
     // thoToolStripMenuItem
     //
     this.thoToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("thoToolStripMenuItem.BackgroundImage")));
     this.thoToolStripMenuItem.ForeColor = System.Drawing.Color.White;
     this.thoToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("thoToolStripMenuItem.Image")));
     this.thoToolStripMenuItem.Name = "thoToolStripMenuItem";
     this.thoToolStripMenuItem.Size = new System.Drawing.Size(190, 22);
     this.thoToolStripMenuItem.Text = "Thông Tin Phần Mềm";
     //
     // tácGiảToolStripMenuItem
     //
     this.tácGiảToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tácGiảToolStripMenuItem.BackgroundImage")));
     this.tácGiảToolStripMenuItem.ForeColor = System.Drawing.Color.White;
     this.tácGiảToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("tácGiảToolStripMenuItem.Image")));
     this.tácGiảToolStripMenuItem.Name = "tácGiảToolStripMenuItem";
     this.tácGiảToolStripMenuItem.Size = new System.Drawing.Size(190, 22);
     this.tácGiảToolStripMenuItem.Text = "Tác Giả";
     //
     // metroShell1
     //
     this.metroShell1.BackColor = System.Drawing.SystemColors.ControlDarkDark;
     this.metroShell1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("metroShell1.BackgroundImage")));
     this.metroShell1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     //
     //
     //
     this.metroShell1.BackgroundStyle.Class = "";
     this.metroShell1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.metroShell1.CaptionVisible = true;
     this.metroShell1.Dock = System.Windows.Forms.DockStyle.Top;
     this.metroShell1.ForeColor = System.Drawing.Color.DimGray;
     this.metroShell1.HelpButtonText = null;
     this.metroShell1.KeyTipsFont = new System.Drawing.Font("Tahoma", 7F);
     this.metroShell1.Location = new System.Drawing.Point(5, 1);
     this.metroShell1.Name = "metroShell1";
     this.metroShell1.Size = new System.Drawing.Size(851, 24);
     this.metroShell1.SystemText.MaximizeRibbonText = "&Maximize the Ribbon";
     this.metroShell1.SystemText.MinimizeRibbonText = "Mi&nimize the Ribbon";
     this.metroShell1.SystemText.QatAddItemText = "&Add to Quick Access Toolbar";
     this.metroShell1.SystemText.QatCustomizeMenuLabel = "<b>Customize Quick Access Toolbar</b>";
     this.metroShell1.SystemText.QatCustomizeText = "&Customize Quick Access Toolbar...";
     this.metroShell1.SystemText.QatDialogAddButton = "&Add >>";
     this.metroShell1.SystemText.QatDialogCancelButton = "Cancel";
     this.metroShell1.SystemText.QatDialogCaption = "Customize Quick Access Toolbar";
     this.metroShell1.SystemText.QatDialogCategoriesLabel = "&Choose commands from:";
     this.metroShell1.SystemText.QatDialogOkButton = "OK";
     this.metroShell1.SystemText.QatDialogPlacementCheckbox = "&Place Quick Access Toolbar below the Ribbon";
     this.metroShell1.SystemText.QatDialogRemoveButton = "&Remove";
     this.metroShell1.SystemText.QatPlaceAboveRibbonText = "&Place Quick Access Toolbar above the Ribbon";
     this.metroShell1.SystemText.QatPlaceBelowRibbonText = "&Place Quick Access Toolbar below the Ribbon";
     this.metroShell1.SystemText.QatRemoveItemText = "&Remove from Quick Access Toolbar";
     this.metroShell1.TabIndex = 11;
     this.metroShell1.TabStripFont = new System.Drawing.Font("Segoe UI", 10.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.metroShell1.Text = "metroShell1";
     //
     // toolStrip1
     //
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.newToolStripButton,
     this.openToolStripButton,
     this.saveToolStripButton,
     this.toolStripSeparator,
     this.toolStripButtonRun,
     this.toolStripButtonPause,
     this.toolStripButtonStop,
     this.toolStripSeparator1,
     this.toolStripButtonUndo,
     this.toolStripButtonRedo,
     this.toolStripSeparator2,
     this.cutToolStripButton,
     this.copyToolStripButton,
     this.pasteToolStripButton,
     this.toolStripSeparator3,
     this.helpToolStripButton});
     this.toolStrip1.Location = new System.Drawing.Point(5, 49);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Size = new System.Drawing.Size(851, 25);
     this.toolStrip1.TabIndex = 13;
     this.toolStrip1.Text = "toolStrip1";
     //
     // newToolStripButton
     //
     this.newToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.newToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("newToolStripButton.Image")));
     this.newToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.newToolStripButton.Name = "newToolStripButton";
     this.newToolStripButton.Size = new System.Drawing.Size(23, 22);
     this.newToolStripButton.Text = "&New";
     //
     // openToolStripButton
     //
     this.openToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.openToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("openToolStripButton.Image")));
     this.openToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.openToolStripButton.Name = "openToolStripButton";
     this.openToolStripButton.Size = new System.Drawing.Size(23, 22);
     this.openToolStripButton.Text = "&Open";
     //
     // saveToolStripButton
     //
     this.saveToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.saveToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("saveToolStripButton.Image")));
     this.saveToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.saveToolStripButton.Name = "saveToolStripButton";
     this.saveToolStripButton.Size = new System.Drawing.Size(23, 22);
     this.saveToolStripButton.Text = "&Save";
     //
     // toolStripSeparator
     //
     this.toolStripSeparator.Name = "toolStripSeparator";
     this.toolStripSeparator.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripButtonRun
     //
     this.toolStripButtonRun.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButtonRun.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonRun.Image")));
     this.toolStripButtonRun.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonRun.Name = "toolStripButtonRun";
     this.toolStripButtonRun.Size = new System.Drawing.Size(23, 22);
     this.toolStripButtonRun.Text = "&Run";
     //
     // toolStripButtonPause
     //
     this.toolStripButtonPause.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButtonPause.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonPause.Image")));
     this.toolStripButtonPause.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonPause.Name = "toolStripButtonPause";
     this.toolStripButtonPause.Size = new System.Drawing.Size(23, 22);
     this.toolStripButtonPause.Text = "&Pause";
     //
     // toolStripButtonStop
     //
     this.toolStripButtonStop.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButtonStop.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonStop.Image")));
     this.toolStripButtonStop.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonStop.Name = "toolStripButtonStop";
     this.toolStripButtonStop.Size = new System.Drawing.Size(23, 22);
     this.toolStripButtonStop.Text = "&Stop";
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripButtonUndo
     //
     this.toolStripButtonUndo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButtonUndo.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonUndo.Image")));
     this.toolStripButtonUndo.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonUndo.Name = "toolStripButtonUndo";
     this.toolStripButtonUndo.Size = new System.Drawing.Size(23, 22);
     this.toolStripButtonUndo.Text = "&Undo";
     //
     // toolStripButtonRedo
     //
     this.toolStripButtonRedo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButtonRedo.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonRedo.Image")));
     this.toolStripButtonRedo.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonRedo.Name = "toolStripButtonRedo";
     this.toolStripButtonRedo.Size = new System.Drawing.Size(23, 22);
     this.toolStripButtonRedo.Text = "&Redo";
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // cutToolStripButton
     //
     this.cutToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.cutToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("cutToolStripButton.Image")));
     this.cutToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.cutToolStripButton.Name = "cutToolStripButton";
     this.cutToolStripButton.Size = new System.Drawing.Size(23, 22);
     this.cutToolStripButton.Text = "C&ut";
     //
     // copyToolStripButton
     //
     this.copyToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.copyToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("copyToolStripButton.Image")));
     this.copyToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.copyToolStripButton.Name = "copyToolStripButton";
     this.copyToolStripButton.Size = new System.Drawing.Size(23, 22);
     this.copyToolStripButton.Text = "&Copy";
     //
     // pasteToolStripButton
     //
     this.pasteToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.pasteToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("pasteToolStripButton.Image")));
     this.pasteToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.pasteToolStripButton.Name = "pasteToolStripButton";
     this.pasteToolStripButton.Size = new System.Drawing.Size(23, 22);
     this.pasteToolStripButton.Text = "&Paste";
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(6, 25);
     //
     // helpToolStripButton
     //
     this.helpToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.helpToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("helpToolStripButton.Image")));
     this.helpToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.helpToolStripButton.Name = "helpToolStripButton";
     this.helpToolStripButton.Size = new System.Drawing.Size(23, 22);
     this.helpToolStripButton.Text = "He&lp";
     //
     // dotNetBarManager1
     //
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.F1);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlC);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlA);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlV);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlX);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlZ);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlY);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Del);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Ins);
     this.dotNetBarManager1.BottomDockSite = this.dockSite4;
     this.dotNetBarManager1.EnableFullSizeDock = false;
     this.dotNetBarManager1.LeftDockSite = this.dockSite1;
     this.dotNetBarManager1.ParentForm = this;
     this.dotNetBarManager1.RightDockSite = this.dockSite2;
     this.dotNetBarManager1.Style = DevComponents.DotNetBar.eDotNetBarStyle.VS2005;
     this.dotNetBarManager1.ToolbarBottomDockSite = this.dockSite8;
     this.dotNetBarManager1.ToolbarLeftDockSite = this.dockSite5;
     this.dotNetBarManager1.ToolbarRightDockSite = this.dockSite6;
     this.dotNetBarManager1.ToolbarTopDockSite = this.dockSite7;
     this.dotNetBarManager1.TopDockSite = this.dockSite3;
     //
     // dockSite4
     //
     this.dockSite4.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite4.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.dockSite4.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite4.Location = new System.Drawing.Point(5, 479);
     this.dockSite4.Name = "dockSite4";
     this.dockSite4.Size = new System.Drawing.Size(851, 0);
     this.dockSite4.TabIndex = 17;
     this.dockSite4.TabStop = false;
     //
     // dockSite1
     //
     this.dockSite1.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite1.Controls.Add(this.bar1);
     this.dockSite1.Dock = System.Windows.Forms.DockStyle.Left;
     this.dockSite1.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer(new DevComponents.DotNetBar.DocumentBaseContainer[] {
     ((DevComponents.DotNetBar.DocumentBaseContainer)(new DevComponents.DotNetBar.DocumentBarContainer(this.bar1, 169, 405)))}, DevComponents.DotNetBar.eOrientation.Horizontal);
     this.dockSite1.Location = new System.Drawing.Point(5, 74);
     this.dockSite1.Name = "dockSite1";
     this.dockSite1.Size = new System.Drawing.Size(172, 405);
     this.dockSite1.TabIndex = 14;
     this.dockSite1.TabStop = false;
     //
     // bar1
     //
     this.bar1.AccessibleDescription = "DotNetBar Bar (bar1)";
     this.bar1.AccessibleName = "DotNetBar Bar";
     this.bar1.AccessibleRole = System.Windows.Forms.AccessibleRole.ToolBar;
     this.bar1.CloseSingleTab = true;
     this.bar1.Controls.Add(this.panelDockContainer1);
     this.bar1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.bar1.GrabHandleStyle = DevComponents.DotNetBar.eGrabHandleStyle.Caption;
     this.bar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.dockContainerItem1});
     this.bar1.LayoutType = DevComponents.DotNetBar.eLayoutType.DockContainer;
     this.bar1.Location = new System.Drawing.Point(0, 0);
     this.bar1.Name = "bar1";
     this.bar1.Size = new System.Drawing.Size(169, 405);
     this.bar1.Stretch = true;
     this.bar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.VS2005;
     this.bar1.TabIndex = 0;
     this.bar1.TabStop = false;
     this.bar1.Text = "Solution Explore";
     //
     // panelDockContainer1
     //
     this.panelDockContainer1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.VS2005;
     this.panelDockContainer1.Controls.Add(this._treeViewProjectExplore);
     this.panelDockContainer1.Location = new System.Drawing.Point(3, 23);
     this.panelDockContainer1.Name = "panelDockContainer1";
     this.panelDockContainer1.Size = new System.Drawing.Size(163, 379);
     this.panelDockContainer1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelDockContainer1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.panelDockContainer1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.panelDockContainer1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.panelDockContainer1.Style.GradientAngle = 90;
     this.panelDockContainer1.TabIndex = 0;
     //
     // _treeViewProjectExplore
     //
     this._treeViewProjectExplore.ContextMenuStrip = this.contextMenuStripTreeView;
     this._treeViewProjectExplore.Dock = System.Windows.Forms.DockStyle.Fill;
     this._treeViewProjectExplore.ImageIndex = 0;
     this._treeViewProjectExplore.ImageList = this.imageListTrV;
     this._treeViewProjectExplore.Location = new System.Drawing.Point(0, 0);
     this._treeViewProjectExplore.Name = "_treeViewProjectExplore";
     this._treeViewProjectExplore.SelectedImageIndex = 0;
     this._treeViewProjectExplore.Size = new System.Drawing.Size(163, 379);
     this._treeViewProjectExplore.TabIndex = 0;
     this._treeViewProjectExplore.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this._treeViewProjectExplore_AfterSelect);
     this._treeViewProjectExplore.DoubleClick += new System.EventHandler(this._treeViewProjectExplore_DoubleClick);
     //
     // contextMenuStripTreeView
     //
     this.contextMenuStripTreeView.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.runToolStripMenuItem1,
     this.addFileToolStripMenuItem,
     this.deleteToolStripMenuItem});
     this.contextMenuStripTreeView.Name = "contextMenuStripTreeView";
     this.contextMenuStripTreeView.Size = new System.Drawing.Size(118, 70);
     //
     // runToolStripMenuItem1
     //
     this.runToolStripMenuItem1.Image = ((System.Drawing.Image)(resources.GetObject("runToolStripMenuItem1.Image")));
     this.runToolStripMenuItem1.Name = "runToolStripMenuItem1";
     this.runToolStripMenuItem1.Size = new System.Drawing.Size(117, 22);
     this.runToolStripMenuItem1.Text = "Run";
     this.runToolStripMenuItem1.Click += new System.EventHandler(this.runToolStripMenuItem1_Click);
     //
     // addFileToolStripMenuItem
     //
     this.addFileToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("addFileToolStripMenuItem.Image")));
     this.addFileToolStripMenuItem.Name = "addFileToolStripMenuItem";
     this.addFileToolStripMenuItem.Size = new System.Drawing.Size(117, 22);
     this.addFileToolStripMenuItem.Text = "Add File";
     this.addFileToolStripMenuItem.Click += new System.EventHandler(this.addFileToolStripMenuItem_Click);
     //
     // deleteToolStripMenuItem
     //
     this.deleteToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("deleteToolStripMenuItem.Image")));
     this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem";
     this.deleteToolStripMenuItem.Size = new System.Drawing.Size(117, 22);
     this.deleteToolStripMenuItem.Text = "Delete";
     //
     // imageListTrV
     //
     this.imageListTrV.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageListTrV.ImageStream")));
     this.imageListTrV.TransparentColor = System.Drawing.Color.Transparent;
     this.imageListTrV.Images.SetKeyName(0, "1.png");
     this.imageListTrV.Images.SetKeyName(1, "2.png");
     this.imageListTrV.Images.SetKeyName(2, "Folder.png");
     //
     // dockContainerItem1
     //
     this.dockContainerItem1.Control = this.panelDockContainer1;
     this.dockContainerItem1.Name = "dockContainerItem1";
     this.dockContainerItem1.Text = "dockContainerItem1";
     //
     // dockSite2
     //
     this.dockSite2.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite2.Dock = System.Windows.Forms.DockStyle.Right;
     this.dockSite2.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite2.Location = new System.Drawing.Point(856, 74);
     this.dockSite2.Name = "dockSite2";
     this.dockSite2.Size = new System.Drawing.Size(0, 405);
     this.dockSite2.TabIndex = 15;
     this.dockSite2.TabStop = false;
     //
     // dockSite8
     //
     this.dockSite8.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite8.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.dockSite8.Location = new System.Drawing.Point(5, 479);
     this.dockSite8.Name = "dockSite8";
     this.dockSite8.Size = new System.Drawing.Size(851, 0);
     this.dockSite8.TabIndex = 21;
     this.dockSite8.TabStop = false;
     //
     // dockSite5
     //
     this.dockSite5.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite5.Dock = System.Windows.Forms.DockStyle.Left;
     this.dockSite5.Location = new System.Drawing.Point(5, 1);
     this.dockSite5.Name = "dockSite5";
     this.dockSite5.Size = new System.Drawing.Size(0, 478);
     this.dockSite5.TabIndex = 18;
     this.dockSite5.TabStop = false;
     //
     // dockSite6
     //
     this.dockSite6.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite6.Dock = System.Windows.Forms.DockStyle.Right;
     this.dockSite6.Location = new System.Drawing.Point(856, 1);
     this.dockSite6.Name = "dockSite6";
     this.dockSite6.Size = new System.Drawing.Size(0, 478);
     this.dockSite6.TabIndex = 19;
     this.dockSite6.TabStop = false;
     //
     // dockSite7
     //
     this.dockSite7.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite7.Dock = System.Windows.Forms.DockStyle.Top;
     this.dockSite7.Location = new System.Drawing.Point(5, 1);
     this.dockSite7.Name = "dockSite7";
     this.dockSite7.Size = new System.Drawing.Size(851, 0);
     this.dockSite7.TabIndex = 20;
     this.dockSite7.TabStop = false;
     //
     // dockSite3
     //
     this.dockSite3.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite3.Dock = System.Windows.Forms.DockStyle.Top;
     this.dockSite3.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite3.Location = new System.Drawing.Point(5, 1);
     this.dockSite3.Name = "dockSite3";
     this.dockSite3.Size = new System.Drawing.Size(851, 0);
     this.dockSite3.TabIndex = 16;
     this.dockSite3.TabStop = false;
     //
     // tabControl1X
     //
     this.tabControl1X.Appearance = System.Windows.Forms.TabAppearance.FlatButtons;
     this.tabControl1X.Controls.Add(this.tabPageHex);
     this.tabControl1X.Controls.Add(this.tabPageText);
     this.tabControl1X.Controls.Add(this.tabPageExcell);
     this.tabControl1X.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControl1X.Location = new System.Drawing.Point(177, 74);
     this.tabControl1X.Name = "tabControl1X";
     this.tabControl1X.SelectedIndex = 0;
     this.tabControl1X.Size = new System.Drawing.Size(679, 405);
     this.tabControl1X.TabIndex = 22;
     //
     // tabPageHex
     //
     this.tabPageHex.Controls.Add(this.pictureBox1);
     this.tabPageHex.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabPageHex.Location = new System.Drawing.Point(4, 25);
     this.tabPageHex.Name = "tabPageHex";
     this.tabPageHex.Padding = new System.Windows.Forms.Padding(3);
     this.tabPageHex.Size = new System.Drawing.Size(671, 376);
     this.tabPageHex.TabIndex = 0;
     this.tabPageHex.Text = "Introduction";
     this.tabPageHex.UseVisualStyleBackColor = true;
     //
     // pictureBox1
     //
     this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.Location = new System.Drawing.Point(3, 3);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(665, 370);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox1.TabIndex = 0;
     this.pictureBox1.TabStop = false;
     //
     // tabPageText
     //
     this.tabPageText.Controls.Add(this.tabControl2);
     this.tabPageText.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabPageText.Location = new System.Drawing.Point(4, 25);
     this.tabPageText.Name = "tabPageText";
     this.tabPageText.Padding = new System.Windows.Forms.Padding(3);
     this.tabPageText.Size = new System.Drawing.Size(671, 376);
     this.tabPageText.TabIndex = 1;
     this.tabPageText.Text = "Short Menu";
     this.tabPageText.UseVisualStyleBackColor = true;
     //
     // tabControl2
     //
     this.tabControl2.Controls.Add(this.tabMenu);
     this.tabControl2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControl2.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
     this.tabControl2.Location = new System.Drawing.Point(3, 3);
     this.tabControl2.Name = "tabControl2";
     this.tabControl2.SelectedIndex = 0;
     this.tabControl2.Size = new System.Drawing.Size(665, 370);
     this.tabControl2.TabIndex = 21;
     //
     // tabMenu
     //
     this.tabMenu.Controls.Add(this.tableLayoutPanel1);
     this.tabMenu.Location = new System.Drawing.Point(4, 22);
     this.tabMenu.Name = "tabMenu";
     this.tabMenu.Padding = new System.Windows.Forms.Padding(3);
     this.tabMenu.Size = new System.Drawing.Size(657, 344);
     this.tabMenu.TabIndex = 1;
     this.tabMenu.Text = "Short Menu";
     this.tabMenu.UseVisualStyleBackColor = true;
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.BackColor = System.Drawing.SystemColors.ButtonFace;
     this.tableLayoutPanel1.ColumnCount = 3;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 38F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 616F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 8F));
     this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel2, 1, 1);
     this.tableLayoutPanel1.Controls.Add(this.labelX1, 1, 0);
     this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel1.Location = new System.Drawing.Point(3, 3);
     this.tableLayoutPanel1.Name = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 3;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 56F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 300F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 9F));
     this.tableLayoutPanel1.Size = new System.Drawing.Size(651, 338);
     this.tableLayoutPanel1.TabIndex = 0;
     //
     // tableLayoutPanel2
     //
     this.tableLayoutPanel2.ColumnCount = 2;
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 30.56995F));
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 69.43005F));
     this.tableLayoutPanel2.Controls.Add(this.tableLayoutPanel3, 1, 0);
     this.tableLayoutPanel2.Controls.Add(this.tableLayoutPanel4, 0, 0);
     this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel2.Location = new System.Drawing.Point(41, 59);
     this.tableLayoutPanel2.Name = "tableLayoutPanel2";
     this.tableLayoutPanel2.RowCount = 1;
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel2.Size = new System.Drawing.Size(610, 294);
     this.tableLayoutPanel2.TabIndex = 0;
     //
     // tableLayoutPanel3
     //
     this.tableLayoutPanel3.ColumnCount = 1;
     this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 42.17172F));
     this.tableLayoutPanel3.Controls.Add(this.tableLayoutPanel5, 0, 1);
     this.tableLayoutPanel3.Controls.Add(this.itemPanel3, 0, 0);
     this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel3.Location = new System.Drawing.Point(189, 3);
     this.tableLayoutPanel3.Name = "tableLayoutPanel3";
     this.tableLayoutPanel3.RowCount = 2;
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50.69444F));
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 197F));
     this.tableLayoutPanel3.Size = new System.Drawing.Size(418, 288);
     this.tableLayoutPanel3.TabIndex = 0;
     //
     // tableLayoutPanel5
     //
     this.tableLayoutPanel5.ColumnCount = 2;
     this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel5.Controls.Add(this.itemPanel4, 0, 0);
     this.tableLayoutPanel5.Controls.Add(this.itemPanel5, 1, 0);
     this.tableLayoutPanel5.Controls.Add(this.itemPanel6, 0, 1);
     this.tableLayoutPanel5.Controls.Add(this.itemPanel7, 1, 1);
     this.tableLayoutPanel5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel5.Location = new System.Drawing.Point(3, 94);
     this.tableLayoutPanel5.Name = "tableLayoutPanel5";
     this.tableLayoutPanel5.RowCount = 2;
     this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel5.Size = new System.Drawing.Size(412, 191);
     this.tableLayoutPanel5.TabIndex = 0;
     //
     // itemPanel4
     //
     //
     //
     //
     this.itemPanel4.BackgroundStyle.Class = "ItemPanel";
     this.itemPanel4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemPanel4.ContainerControlProcessDialogKey = true;
     this.itemPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.itemPanel4.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer4});
     this.itemPanel4.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemPanel4.Location = new System.Drawing.Point(3, 3);
     this.itemPanel4.Name = "itemPanel4";
     this.itemPanel4.Size = new System.Drawing.Size(200, 89);
     this.itemPanel4.TabIndex = 0;
     this.itemPanel4.Text = "itemPanel4";
     //
     // itemContainer4
     //
     //
     //
     //
     this.itemContainer4.BackgroundStyle.Class = "";
     this.itemContainer4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer4.Name = "itemContainer4";
     this.itemContainer4.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.metroTileItem4});
     //
     // metroTileItem4
     //
     this.metroTileItem4.Name = "metroTileItem4";
     this.metroTileItem4.Text = "metroTileItem4";
     this.metroTileItem4.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Default;
     this.metroTileItem4.TileSize = new System.Drawing.Size(200, 90);
     //
     //
     //
     this.metroTileItem4.TileStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(36)))), ((int)(((byte)(83)))), ((int)(((byte)(117)))));
     this.metroTileItem4.TileStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(103)))), ((int)(((byte)(155)))));
     this.metroTileItem4.TileStyle.BackColorGradientAngle = 45;
     this.metroTileItem4.TileStyle.Class = "";
     this.metroTileItem4.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.metroTileItem4.TileStyle.PaddingBottom = 4;
     this.metroTileItem4.TileStyle.PaddingLeft = 4;
     this.metroTileItem4.TileStyle.PaddingRight = 4;
     this.metroTileItem4.TileStyle.PaddingTop = 4;
     this.metroTileItem4.TileStyle.TextColor = System.Drawing.Color.White;
     //
     // itemPanel5
     //
     //
     //
     //
     this.itemPanel5.BackgroundStyle.Class = "ItemPanel";
     this.itemPanel5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemPanel5.ContainerControlProcessDialogKey = true;
     this.itemPanel5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.itemPanel5.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer5});
     this.itemPanel5.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemPanel5.Location = new System.Drawing.Point(209, 3);
     this.itemPanel5.Name = "itemPanel5";
     this.itemPanel5.Size = new System.Drawing.Size(200, 89);
     this.itemPanel5.TabIndex = 1;
     this.itemPanel5.Text = "itemPanel5";
     //
     // itemContainer5
     //
     //
     //
     //
     this.itemContainer5.BackgroundStyle.Class = "";
     this.itemContainer5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer5.Name = "itemContainer5";
     this.itemContainer5.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.metroTileItem5});
     //
     // metroTileItem5
     //
     this.metroTileItem5.Name = "metroTileItem5";
     this.metroTileItem5.Text = "metroTileItem5";
     this.metroTileItem5.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.DarkOlive;
     this.metroTileItem5.TileSize = new System.Drawing.Size(200, 90);
     //
     //
     //
     this.metroTileItem5.TileStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(120)))), ((int)(((byte)(120)))), ((int)(((byte)(96)))));
     this.metroTileItem5.TileStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(107)))), ((int)(((byte)(107)))), ((int)(((byte)(86)))));
     this.metroTileItem5.TileStyle.BackColorGradientAngle = 45;
     this.metroTileItem5.TileStyle.Class = "";
     this.metroTileItem5.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.metroTileItem5.TileStyle.PaddingBottom = 4;
     this.metroTileItem5.TileStyle.PaddingLeft = 4;
     this.metroTileItem5.TileStyle.PaddingRight = 4;
     this.metroTileItem5.TileStyle.PaddingTop = 4;
     this.metroTileItem5.TileStyle.TextColor = System.Drawing.Color.White;
     //
     // itemPanel6
     //
     //
     //
     //
     this.itemPanel6.BackgroundStyle.Class = "ItemPanel";
     this.itemPanel6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemPanel6.ContainerControlProcessDialogKey = true;
     this.itemPanel6.Dock = System.Windows.Forms.DockStyle.Fill;
     this.itemPanel6.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer6});
     this.itemPanel6.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemPanel6.Location = new System.Drawing.Point(3, 98);
     this.itemPanel6.Name = "itemPanel6";
     this.itemPanel6.Size = new System.Drawing.Size(200, 90);
     this.itemPanel6.TabIndex = 2;
     this.itemPanel6.Text = "itemPanel6";
     //
     // itemContainer6
     //
     //
     //
     //
     this.itemContainer6.BackgroundStyle.Class = "";
     this.itemContainer6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer6.Name = "itemContainer6";
     this.itemContainer6.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.metroTileItem6});
     //
     // metroTileItem6
     //
     this.metroTileItem6.Name = "metroTileItem6";
     this.metroTileItem6.Text = "metroTileItem6";
     this.metroTileItem6.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.RedOrange;
     this.metroTileItem6.TileSize = new System.Drawing.Size(200, 90);
     //
     //
     //
     this.metroTileItem6.TileStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(201)))), ((int)(((byte)(60)))), ((int)(((byte)(0)))));
     this.metroTileItem6.TileStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(189)))), ((int)(((byte)(57)))), ((int)(((byte)(0)))));
     this.metroTileItem6.TileStyle.BackColorGradientAngle = 45;
     this.metroTileItem6.TileStyle.Class = "";
     this.metroTileItem6.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.metroTileItem6.TileStyle.PaddingBottom = 4;
     this.metroTileItem6.TileStyle.PaddingLeft = 4;
     this.metroTileItem6.TileStyle.PaddingRight = 4;
     this.metroTileItem6.TileStyle.PaddingTop = 4;
     this.metroTileItem6.TileStyle.TextColor = System.Drawing.Color.White;
     //
     // itemPanel7
     //
     //
     //
     //
     this.itemPanel7.BackgroundStyle.Class = "ItemPanel";
     this.itemPanel7.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemPanel7.ContainerControlProcessDialogKey = true;
     this.itemPanel7.Dock = System.Windows.Forms.DockStyle.Fill;
     this.itemPanel7.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer7});
     this.itemPanel7.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemPanel7.Location = new System.Drawing.Point(209, 98);
     this.itemPanel7.Name = "itemPanel7";
     this.itemPanel7.Size = new System.Drawing.Size(200, 90);
     this.itemPanel7.TabIndex = 3;
     this.itemPanel7.Text = "itemPanel7";
     //
     // itemContainer7
     //
     //
     //
     //
     this.itemContainer7.BackgroundStyle.Class = "";
     this.itemContainer7.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer7.Name = "itemContainer7";
     this.itemContainer7.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.metroTileItem7});
     //
     // metroTileItem7
     //
     this.metroTileItem7.Name = "metroTileItem7";
     this.metroTileItem7.Text = "metroTileItem7";
     this.metroTileItem7.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Magenta;
     this.metroTileItem7.TileSize = new System.Drawing.Size(200, 90);
     //
     //
     //
     this.metroTileItem7.TileStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(125)))), ((int)(((byte)(151)))), ((int)(((byte)(42)))));
     this.metroTileItem7.TileStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(152)))), ((int)(((byte)(177)))), ((int)(((byte)(51)))));
     this.metroTileItem7.TileStyle.BackColorGradientAngle = 45;
     this.metroTileItem7.TileStyle.Class = "";
     this.metroTileItem7.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.metroTileItem7.TileStyle.PaddingBottom = 4;
     this.metroTileItem7.TileStyle.PaddingLeft = 4;
     this.metroTileItem7.TileStyle.PaddingRight = 4;
     this.metroTileItem7.TileStyle.PaddingTop = 4;
     this.metroTileItem7.TileStyle.TextColor = System.Drawing.Color.White;
     //
     // itemPanel3
     //
     //
     //
     //
     this.itemPanel3.BackgroundStyle.Class = "ItemPanel";
     this.itemPanel3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemPanel3.ContainerControlProcessDialogKey = true;
     this.itemPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.itemPanel3.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer3});
     this.itemPanel3.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemPanel3.Location = new System.Drawing.Point(3, 3);
     this.itemPanel3.Name = "itemPanel3";
     this.itemPanel3.Size = new System.Drawing.Size(412, 85);
     this.itemPanel3.TabIndex = 1;
     this.itemPanel3.Text = "itemPanel3";
     //
     // itemContainer3
     //
     //
     //
     //
     this.itemContainer3.BackgroundStyle.Class = "";
     this.itemContainer3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer3.Name = "itemContainer3";
     this.itemContainer3.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.metroTileItem3});
     //
     // metroTileItem3
     //
     this.metroTileItem3.Name = "metroTileItem3";
     this.metroTileItem3.Text = "metroTileItem3";
     this.metroTileItem3.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Green;
     this.metroTileItem3.TileSize = new System.Drawing.Size(420, 90);
     //
     //
     //
     this.metroTileItem3.TileStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(187)))), ((int)(((byte)(17)))));
     this.metroTileItem3.TileStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(178)))), ((int)(((byte)(176)))), ((int)(((byte)(16)))));
     this.metroTileItem3.TileStyle.BackColorGradientAngle = 45;
     this.metroTileItem3.TileStyle.Class = "";
     this.metroTileItem3.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.metroTileItem3.TileStyle.PaddingBottom = 4;
     this.metroTileItem3.TileStyle.PaddingLeft = 4;
     this.metroTileItem3.TileStyle.PaddingRight = 4;
     this.metroTileItem3.TileStyle.PaddingTop = 4;
     this.metroTileItem3.TileStyle.TextColor = System.Drawing.Color.White;
     //
     // tableLayoutPanel4
     //
     this.tableLayoutPanel4.ColumnCount = 1;
     this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel4.Controls.Add(this.itemPanel1, 0, 0);
     this.tableLayoutPanel4.Controls.Add(this.itemPanel2, 0, 1);
     this.tableLayoutPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel4.Location = new System.Drawing.Point(3, 3);
     this.tableLayoutPanel4.Name = "tableLayoutPanel4";
     this.tableLayoutPanel4.RowCount = 2;
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 143F));
     this.tableLayoutPanel4.Size = new System.Drawing.Size(180, 288);
     this.tableLayoutPanel4.TabIndex = 1;
     //
     // itemPanel1
     //
     //
     //
     //
     this.itemPanel1.BackgroundStyle.Class = "ItemPanel";
     this.itemPanel1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemPanel1.ContainerControlProcessDialogKey = true;
     this.itemPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.itemPanel1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer1});
     this.itemPanel1.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemPanel1.Location = new System.Drawing.Point(3, 3);
     this.itemPanel1.Name = "itemPanel1";
     this.itemPanel1.Size = new System.Drawing.Size(174, 139);
     this.itemPanel1.TabIndex = 0;
     this.itemPanel1.Text = "itemPanel1";
     //
     // itemContainer1
     //
     //
     //
     //
     this.itemContainer1.BackgroundStyle.Class = "";
     this.itemContainer1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer1.Name = "itemContainer1";
     this.itemContainer1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.metroTileItem1});
     //
     // metroTileItem1
     //
     this.metroTileItem1.Name = "metroTileItem1";
     this.metroTileItem1.Text = "metroTileItem1";
     this.metroTileItem1.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Teal;
     this.metroTileItem1.TileSize = new System.Drawing.Size(180, 150);
     //
     //
     //
     this.metroTileItem1.TileStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(69)))), ((int)(((byte)(169)))), ((int)(((byte)(142)))));
     this.metroTileItem1.TileStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(187)))), ((int)(((byte)(158)))));
     this.metroTileItem1.TileStyle.BackColorGradientAngle = 45;
     this.metroTileItem1.TileStyle.Class = "";
     this.metroTileItem1.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.metroTileItem1.TileStyle.PaddingBottom = 4;
     this.metroTileItem1.TileStyle.PaddingLeft = 4;
     this.metroTileItem1.TileStyle.PaddingRight = 4;
     this.metroTileItem1.TileStyle.PaddingTop = 4;
     this.metroTileItem1.TileStyle.TextColor = System.Drawing.Color.White;
     this.metroTileItem1.TitleTextColor = System.Drawing.SystemColors.MenuHighlight;
     //
     // itemPanel2
     //
     //
     //
     //
     this.itemPanel2.BackgroundStyle.Class = "ItemPanel";
     this.itemPanel2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemPanel2.ContainerControlProcessDialogKey = true;
     this.itemPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.itemPanel2.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer2});
     this.itemPanel2.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemPanel2.Location = new System.Drawing.Point(3, 148);
     this.itemPanel2.Name = "itemPanel2";
     this.itemPanel2.Size = new System.Drawing.Size(174, 137);
     this.itemPanel2.TabIndex = 1;
     this.itemPanel2.Text = "itemPanel2";
     //
     // itemContainer2
     //
     //
     //
     //
     this.itemContainer2.BackgroundStyle.Class = "";
     this.itemContainer2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer2.Name = "itemContainer2";
     this.itemContainer2.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.metroTileItem2});
     //
     // metroTileItem2
     //
     this.metroTileItem2.Name = "metroTileItem2";
     this.metroTileItem2.Text = "metroTileItem2";
     this.metroTileItem2.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Orange;
     this.metroTileItem2.TileSize = new System.Drawing.Size(180, 150);
     //
     //
     //
     this.metroTileItem2.TileStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(223)))), ((int)(((byte)(131)))), ((int)(((byte)(0)))));
     this.metroTileItem2.TileStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(232)))), ((int)(((byte)(136)))), ((int)(((byte)(0)))));
     this.metroTileItem2.TileStyle.BackColorGradientAngle = 45;
     this.metroTileItem2.TileStyle.Class = "";
     this.metroTileItem2.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.metroTileItem2.TileStyle.PaddingBottom = 4;
     this.metroTileItem2.TileStyle.PaddingLeft = 4;
     this.metroTileItem2.TileStyle.PaddingRight = 4;
     this.metroTileItem2.TileStyle.PaddingTop = 4;
     this.metroTileItem2.TileStyle.TextColor = System.Drawing.Color.White;
     //
     // labelX1
     //
     //
     //
     //
     this.labelX1.BackgroundStyle.Class = "";
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(41, 3);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(183, 50);
     this.labelX1.TabIndex = 1;
     this.labelX1.Text = "<b><font size=\'26\' color=\'#00B7EF\'>Menu</font></b>";
     //
     // tabPageExcell
     //
     this.tabPageExcell.Controls.Add(this.tabControl1);
     this.tabPageExcell.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabPageExcell.Location = new System.Drawing.Point(4, 25);
     this.tabPageExcell.Name = "tabPageExcell";
     this.tabPageExcell.Padding = new System.Windows.Forms.Padding(3);
     this.tabPageExcell.Size = new System.Drawing.Size(671, 376);
     this.tabPageExcell.TabIndex = 2;
     this.tabPageExcell.Text = "Excel";
     this.tabPageExcell.UseVisualStyleBackColor = true;
     //
     // tabControl1
     //
     this.tabControl1.DisplayStyle = System.Windows.Forms.TabStyle.Chrome;
     //
     //
     //
     this.tabControl1.DisplayStyleProvider.BorderColor = System.Drawing.SystemColors.ControlDark;
     this.tabControl1.DisplayStyleProvider.BorderColorHot = System.Drawing.SystemColors.ControlDark;
     this.tabControl1.DisplayStyleProvider.BorderColorSelected = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(157)))), ((int)(((byte)(185)))));
     this.tabControl1.DisplayStyleProvider.CloserColor = System.Drawing.Color.DarkGray;
     this.tabControl1.DisplayStyleProvider.CloserColorActive = System.Drawing.Color.White;
     this.tabControl1.DisplayStyleProvider.FocusTrack = false;
     this.tabControl1.DisplayStyleProvider.HotTrack = true;
     this.tabControl1.DisplayStyleProvider.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.tabControl1.DisplayStyleProvider.Opacity = 1F;
     this.tabControl1.DisplayStyleProvider.Overlap = 16;
     this.tabControl1.DisplayStyleProvider.Padding = new System.Drawing.Point(7, 5);
     this.tabControl1.DisplayStyleProvider.Radius = 16;
     this.tabControl1.DisplayStyleProvider.ShowTabCloser = true;
     this.tabControl1.DisplayStyleProvider.TextColor = System.Drawing.SystemColors.ControlText;
     this.tabControl1.DisplayStyleProvider.TextColorDisabled = System.Drawing.SystemColors.ControlDark;
     this.tabControl1.DisplayStyleProvider.TextColorSelected = System.Drawing.SystemColors.ControlText;
     this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControl1.HotTrack = true;
     this.tabControl1.ImageList = this.imageList1;
     this.tabControl1.Location = new System.Drawing.Point(3, 3);
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size = new System.Drawing.Size(665, 370);
     this.tabControl1.TabIndex = 6;
     this.tabControl1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.tabControl1_MouseDown);
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "battery.png");
     this.imageList1.Images.SetKeyName(1, "book_open.png");
     this.imageList1.Images.SetKeyName(2, "brush3.png");
     this.imageList1.Images.SetKeyName(3, "calculator.png");
     this.imageList1.Images.SetKeyName(4, "cd_music.png");
     this.imageList1.Images.SetKeyName(5, "Close");
     this.imageList1.Images.SetKeyName(6, "google_favicon.png");
     //
     // tabPage23
     //
     this.tabPage23.ImageKey = "(none)";
     this.tabPage23.Location = new System.Drawing.Point(4, 27);
     this.tabPage23.Name = "tabPage23";
     this.tabPage23.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage23.Size = new System.Drawing.Size(657, 339);
     this.tabPage23.TabIndex = 2;
     this.tabPage23.Text = "tabPage23";
     this.tabPage23.UseVisualStyleBackColor = true;
     //
     // tabPage21
     //
     this.tabPage21.ImageKey = "(none)";
     this.tabPage21.Location = new System.Drawing.Point(4, 27);
     this.tabPage21.Name = "tabPage21";
     this.tabPage21.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage21.Size = new System.Drawing.Size(657, 339);
     this.tabPage21.TabIndex = 0;
     this.tabPage21.Text = "Allgemein";
     this.tabPage21.UseVisualStyleBackColor = true;
     //
     // frmMain
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(861, 481);
     this.Controls.Add(this.tabControl1X);
     this.Controls.Add(this.dockSite2);
     this.Controls.Add(this.dockSite1);
     this.Controls.Add(this.toolStrip1);
     this.Controls.Add(this.menuStrip1);
     this.Controls.Add(this.metroShell1);
     this.Controls.Add(this.dockSite3);
     this.Controls.Add(this.dockSite4);
     this.Controls.Add(this.dockSite5);
     this.Controls.Add(this.dockSite6);
     this.Controls.Add(this.dockSite7);
     this.Controls.Add(this.dockSite8);
     this.Name = "frmMain";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "frmMain";
     this.Load += new System.EventHandler(this.frmMain_Load);
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.dockSite1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).EndInit();
     this.bar1.ResumeLayout(false);
     this.panelDockContainer1.ResumeLayout(false);
     this.contextMenuStripTreeView.ResumeLayout(false);
     this.tabControl1X.ResumeLayout(false);
     this.tabPageHex.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.tabPageText.ResumeLayout(false);
     this.tabControl2.ResumeLayout(false);
     this.tabMenu.ResumeLayout(false);
     this.tableLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel2.ResumeLayout(false);
     this.tableLayoutPanel3.ResumeLayout(false);
     this.tableLayoutPanel5.ResumeLayout(false);
     this.tableLayoutPanel4.ResumeLayout(false);
     this.tabPageExcell.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Пример #43
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SetOp));
     this.skinEngine1 = new Sunisoft.IrisSkin.SkinEngine(((System.ComponentModel.Component)(this)));
     this.dotNetBarManager1 = new DevComponents.DotNetBar.DotNetBarManager(this.components);
     this.dockSite4 = new DevComponents.DotNetBar.DockSite();
     this.dockSite1 = new DevComponents.DotNetBar.DockSite();
     this.dockSite2 = new DevComponents.DotNetBar.DockSite();
     this.dockSite8 = new DevComponents.DotNetBar.DockSite();
     this.dockSite5 = new DevComponents.DotNetBar.DockSite();
     this.dockSite6 = new DevComponents.DotNetBar.DockSite();
     this.dockSite7 = new DevComponents.DotNetBar.DockSite();
     this.bar1 = new DevComponents.DotNetBar.Bar();
     this.btnItm_Sav = new DevComponents.DotNetBar.ButtonItem();
     this.btnItm_Modify = new DevComponents.DotNetBar.ButtonItem();
     this.btnItm_Del = new DevComponents.DotNetBar.ButtonItem();
     this.btnItm_Search = new DevComponents.DotNetBar.ButtonItem();
     this.BtnSave = new DevComponents.DotNetBar.ButtonItem();
     this.BtnCancle = new DevComponents.DotNetBar.ButtonItem();
     this.btnItm_Exit = new DevComponents.DotNetBar.ButtonItem();
     this.customizeItem1 = new DevComponents.DotNetBar.CustomizeItem();
     this.dockSite3 = new DevComponents.DotNetBar.DockSite();
     this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
     this.groupPanel3 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.treeView2 = new System.Windows.Forms.TreeView();
     this.groupPanel2 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.treeView1 = new System.Windows.Forms.TreeView();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.groupPanel1 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.comboBoxEx2 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.TxtTel = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.TxtPws = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.lblX3 = new DevComponents.DotNetBar.LabelX();
     this.lblX2 = new DevComponents.DotNetBar.LabelX();
     this.lblX1 = new DevComponents.DotNetBar.LabelX();
     this.linkLabel1 = new System.Windows.Forms.LinkLabel();
     this.comboBoxEx1 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.txtBoxX2 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txtBoxX1 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.dockSite7.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).BeginInit();
     this.panelEx1.SuspendLayout();
     this.groupPanel3.SuspendLayout();
     this.groupPanel2.SuspendLayout();
     this.groupPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // skinEngine1
     //
     this.skinEngine1.SerialNumber = "";
     this.skinEngine1.SkinFile = null;
     //
     // dotNetBarManager1
     //
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.F1);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlC);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlA);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlV);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlX);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlZ);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlY);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Del);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Ins);
     this.dotNetBarManager1.BottomDockSite = this.dockSite4;
     this.dotNetBarManager1.DefinitionName = "";
     this.dotNetBarManager1.EnableFullSizeDock = false;
     this.dotNetBarManager1.LeftDockSite = this.dockSite1;
     this.dotNetBarManager1.ParentForm = this;
     this.dotNetBarManager1.RightDockSite = this.dockSite2;
     this.dotNetBarManager1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.dotNetBarManager1.ToolbarBottomDockSite = this.dockSite8;
     this.dotNetBarManager1.ToolbarLeftDockSite = this.dockSite5;
     this.dotNetBarManager1.ToolbarRightDockSite = this.dockSite6;
     this.dotNetBarManager1.ToolbarTopDockSite = this.dockSite7;
     this.dotNetBarManager1.TopDockSite = this.dockSite3;
     //
     // dockSite4
     //
     this.dockSite4.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite4.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.dockSite4.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite4.Location = new System.Drawing.Point(0, 559);
     this.dockSite4.Name = "dockSite4";
     this.dockSite4.Size = new System.Drawing.Size(638, 0);
     this.dockSite4.TabIndex = 3;
     this.dockSite4.TabStop = false;
     //
     // dockSite1
     //
     this.dockSite1.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite1.Dock = System.Windows.Forms.DockStyle.Left;
     this.dockSite1.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite1.Location = new System.Drawing.Point(0, 57);
     this.dockSite1.Name = "dockSite1";
     this.dockSite1.Size = new System.Drawing.Size(0, 502);
     this.dockSite1.TabIndex = 0;
     this.dockSite1.TabStop = false;
     //
     // dockSite2
     //
     this.dockSite2.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite2.Dock = System.Windows.Forms.DockStyle.Right;
     this.dockSite2.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite2.Location = new System.Drawing.Point(638, 57);
     this.dockSite2.Name = "dockSite2";
     this.dockSite2.Size = new System.Drawing.Size(0, 502);
     this.dockSite2.TabIndex = 1;
     this.dockSite2.TabStop = false;
     //
     // dockSite8
     //
     this.dockSite8.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite8.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.dockSite8.Location = new System.Drawing.Point(0, 559);
     this.dockSite8.Name = "dockSite8";
     this.dockSite8.Size = new System.Drawing.Size(638, 0);
     this.dockSite8.TabIndex = 7;
     this.dockSite8.TabStop = false;
     //
     // dockSite5
     //
     this.dockSite5.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite5.Dock = System.Windows.Forms.DockStyle.Left;
     this.dockSite5.Location = new System.Drawing.Point(0, 57);
     this.dockSite5.Name = "dockSite5";
     this.dockSite5.Size = new System.Drawing.Size(0, 502);
     this.dockSite5.TabIndex = 4;
     this.dockSite5.TabStop = false;
     //
     // dockSite6
     //
     this.dockSite6.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite6.Dock = System.Windows.Forms.DockStyle.Right;
     this.dockSite6.Location = new System.Drawing.Point(638, 57);
     this.dockSite6.Name = "dockSite6";
     this.dockSite6.Size = new System.Drawing.Size(0, 502);
     this.dockSite6.TabIndex = 5;
     this.dockSite6.TabStop = false;
     //
     // dockSite7
     //
     this.dockSite7.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite7.Controls.Add(this.bar1);
     this.dockSite7.Dock = System.Windows.Forms.DockStyle.Top;
     this.dockSite7.Location = new System.Drawing.Point(0, 0);
     this.dockSite7.Name = "dockSite7";
     this.dockSite7.Size = new System.Drawing.Size(638, 57);
     this.dockSite7.TabIndex = 6;
     this.dockSite7.TabStop = false;
     //
     // bar1
     //
     this.bar1.AccessibleDescription = "DotNetBar Bar (bar1)";
     this.bar1.AccessibleName = "DotNetBar Bar";
     this.bar1.AccessibleRole = System.Windows.Forms.AccessibleRole.ToolBar;
     this.bar1.DockSide = DevComponents.DotNetBar.eDockSide.Top;
     this.bar1.GrabHandleStyle = DevComponents.DotNetBar.eGrabHandleStyle.Office2003;
     this.bar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnItm_Sav,
     this.btnItm_Modify,
     this.btnItm_Del,
     this.btnItm_Search,
     this.BtnSave,
     this.BtnCancle,
     this.btnItm_Exit,
     this.customizeItem1});
     this.bar1.Location = new System.Drawing.Point(0, 0);
     this.bar1.Name = "bar1";
     this.bar1.Size = new System.Drawing.Size(300, 57);
     this.bar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.bar1.TabIndex = 0;
     this.bar1.TabStop = false;
     this.bar1.Text = "bar1";
     //
     // btnItm_Sav
     //
     this.btnItm_Sav.Image = ((System.Drawing.Image)(resources.GetObject("btnItm_Sav.Image")));
     this.btnItm_Sav.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnItm_Sav.ImagePaddingHorizontal = 8;
     this.btnItm_Sav.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnItm_Sav.Name = "btnItm_Sav";
     this.btnItm_Sav.Text = "添加";
     this.btnItm_Sav.Click += new System.EventHandler(this.btnItm_Sav_Click);
     //
     // btnItm_Modify
     //
     this.btnItm_Modify.Image = ((System.Drawing.Image)(resources.GetObject("btnItm_Modify.Image")));
     this.btnItm_Modify.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnItm_Modify.ImagePaddingHorizontal = 8;
     this.btnItm_Modify.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnItm_Modify.Name = "btnItm_Modify";
     this.btnItm_Modify.Text = "修改";
     this.btnItm_Modify.Click += new System.EventHandler(this.btnItm_Modify_Click);
     //
     // btnItm_Del
     //
     this.btnItm_Del.Image = ((System.Drawing.Image)(resources.GetObject("btnItm_Del.Image")));
     this.btnItm_Del.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnItm_Del.ImagePaddingHorizontal = 8;
     this.btnItm_Del.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnItm_Del.Name = "btnItm_Del";
     this.btnItm_Del.Text = "删除";
     this.btnItm_Del.Click += new System.EventHandler(this.btnItm_Del_Click);
     //
     // btnItm_Search
     //
     this.btnItm_Search.Image = ((System.Drawing.Image)(resources.GetObject("btnItm_Search.Image")));
     this.btnItm_Search.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnItm_Search.ImagePaddingHorizontal = 8;
     this.btnItm_Search.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnItm_Search.Name = "btnItm_Search";
     this.btnItm_Search.Text = "查询";
     this.btnItm_Search.Click += new System.EventHandler(this.btnItm_search_Click);
     //
     // BtnSave
     //
     this.BtnSave.Image = ((System.Drawing.Image)(resources.GetObject("BtnSave.Image")));
     this.BtnSave.ImagePaddingHorizontal = 8;
     this.BtnSave.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.BtnSave.Name = "BtnSave";
     this.BtnSave.Text = "保存";
     this.BtnSave.Click += new System.EventHandler(this.BtnSave_Click);
     //
     // BtnCancle
     //
     this.BtnCancle.Image = ((System.Drawing.Image)(resources.GetObject("BtnCancle.Image")));
     this.BtnCancle.ImagePaddingHorizontal = 8;
     this.BtnCancle.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.BtnCancle.Name = "BtnCancle";
     this.BtnCancle.Text = "撤消";
     this.BtnCancle.Click += new System.EventHandler(this.BtnCancle_Click);
     //
     // btnItm_Exit
     //
     this.btnItm_Exit.Image = ((System.Drawing.Image)(resources.GetObject("btnItm_Exit.Image")));
     this.btnItm_Exit.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnItm_Exit.ImagePaddingHorizontal = 8;
     this.btnItm_Exit.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnItm_Exit.Name = "btnItm_Exit";
     this.btnItm_Exit.Text = "关闭";
     this.btnItm_Exit.Click += new System.EventHandler(this.btnItm_exit_Click);
     //
     // customizeItem1
     //
     this.customizeItem1.Name = "customizeItem1";
     this.customizeItem1.Text = "添加或删除按钮(&A)";
     this.customizeItem1.Tooltip = "工具栏选项";
     //
     // dockSite3
     //
     this.dockSite3.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite3.Dock = System.Windows.Forms.DockStyle.Top;
     this.dockSite3.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite3.Location = new System.Drawing.Point(0, 57);
     this.dockSite3.Name = "dockSite3";
     this.dockSite3.Size = new System.Drawing.Size(638, 0);
     this.dockSite3.TabIndex = 2;
     this.dockSite3.TabStop = false;
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx1.ColorScheme.ItemDesignTimeBorder = System.Drawing.Color.Black;
     this.panelEx1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.panelEx1.Controls.Add(this.groupPanel3);
     this.panelEx1.Controls.Add(this.groupPanel2);
     this.panelEx1.Controls.Add(this.groupPanel1);
     this.panelEx1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelEx1.Location = new System.Drawing.Point(0, 57);
     this.panelEx1.Name = "panelEx1";
     this.panelEx1.Size = new System.Drawing.Size(638, 502);
     this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx1.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx1.Style.GradientAngle = 90;
     this.panelEx1.TabIndex = 8;
     //
     // groupPanel3
     //
     this.groupPanel3.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel3.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel3.Controls.Add(this.treeView2);
     this.groupPanel3.Location = new System.Drawing.Point(276, 9);
     this.groupPanel3.Name = "groupPanel3";
     this.groupPanel3.Size = new System.Drawing.Size(350, 490);
     //
     //
     //
     this.groupPanel3.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel3.Style.BackColorGradientAngle = 90;
     this.groupPanel3.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel3.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel3.Style.BorderBottomWidth = 1;
     this.groupPanel3.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel3.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel3.Style.BorderLeftWidth = 1;
     this.groupPanel3.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel3.Style.BorderRightWidth = 1;
     this.groupPanel3.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel3.Style.BorderTopWidth = 1;
     this.groupPanel3.Style.CornerDiameter = 4;
     this.groupPanel3.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel3.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel3.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel3.TabIndex = 2;
     this.groupPanel3.Text = "操作员权限";
     //
     // treeView2
     //
     this.treeView2.Location = new System.Drawing.Point(13, 13);
     this.treeView2.Name = "treeView2";
     this.treeView2.Size = new System.Drawing.Size(328, 448);
     this.treeView2.TabIndex = 0;
     //
     // groupPanel2
     //
     this.groupPanel2.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel2.Controls.Add(this.treeView1);
     this.groupPanel2.Location = new System.Drawing.Point(12, 241);
     this.groupPanel2.Name = "groupPanel2";
     this.groupPanel2.Size = new System.Drawing.Size(249, 258);
     //
     //
     //
     this.groupPanel2.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel2.Style.BackColorGradientAngle = 90;
     this.groupPanel2.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel2.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderBottomWidth = 1;
     this.groupPanel2.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel2.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderLeftWidth = 1;
     this.groupPanel2.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderRightWidth = 1;
     this.groupPanel2.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderTopWidth = 1;
     this.groupPanel2.Style.CornerDiameter = 4;
     this.groupPanel2.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel2.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel2.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel2.TabIndex = 1;
     this.groupPanel2.Text = "操作员列表";
     //
     // treeView1
     //
     this.treeView1.ImageIndex = 0;
     this.treeView1.ImageList = this.imageList1;
     this.treeView1.Location = new System.Drawing.Point(3, 3);
     this.treeView1.Name = "treeView1";
     this.treeView1.SelectedImageIndex = 0;
     this.treeView1.Size = new System.Drawing.Size(237, 226);
     this.treeView1.TabIndex = 0;
     this.treeView1.NodeMouseClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.treeView1_NodeMouseClick);
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "I156.ICO");
     this.imageList1.Images.SetKeyName(1, "msnnew_009.ico");
     this.imageList1.Images.SetKeyName(2, "msnnew_019.ico");
     //
     // groupPanel1
     //
     this.groupPanel1.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel1.Controls.Add(this.comboBoxEx2);
     this.groupPanel1.Controls.Add(this.TxtTel);
     this.groupPanel1.Controls.Add(this.TxtPws);
     this.groupPanel1.Controls.Add(this.labelX3);
     this.groupPanel1.Controls.Add(this.labelX2);
     this.groupPanel1.Controls.Add(this.labelX1);
     this.groupPanel1.Controls.Add(this.lblX3);
     this.groupPanel1.Controls.Add(this.lblX2);
     this.groupPanel1.Controls.Add(this.lblX1);
     this.groupPanel1.Controls.Add(this.linkLabel1);
     this.groupPanel1.Controls.Add(this.comboBoxEx1);
     this.groupPanel1.Controls.Add(this.txtBoxX2);
     this.groupPanel1.Controls.Add(this.txtBoxX1);
     this.groupPanel1.Location = new System.Drawing.Point(12, 8);
     this.groupPanel1.Name = "groupPanel1";
     this.groupPanel1.Size = new System.Drawing.Size(249, 225);
     //
     //
     //
     this.groupPanel1.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel1.Style.BackColorGradientAngle = 90;
     this.groupPanel1.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel1.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderBottomWidth = 1;
     this.groupPanel1.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel1.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderLeftWidth = 1;
     this.groupPanel1.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderRightWidth = 1;
     this.groupPanel1.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderTopWidth = 1;
     this.groupPanel1.Style.CornerDiameter = 4;
     this.groupPanel1.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel1.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel1.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel1.TabIndex = 0;
     this.groupPanel1.Text = "操作员信息";
     //
     // comboBoxEx2
     //
     this.comboBoxEx2.DisplayMember = "Text";
     this.comboBoxEx2.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx2.FormattingEnabled = true;
     this.comboBoxEx2.Location = new System.Drawing.Point(64, 137);
     this.comboBoxEx2.Name = "comboBoxEx2";
     this.comboBoxEx2.Size = new System.Drawing.Size(121, 22);
     this.comboBoxEx2.TabIndex = 17;
     //
     // TxtTel
     //
     //
     //
     //
     this.TxtTel.Border.Class = "TextBoxBorder";
     this.TxtTel.Location = new System.Drawing.Point(64, 103);
     this.TxtTel.Name = "TxtTel";
     this.TxtTel.Size = new System.Drawing.Size(100, 21);
     this.TxtTel.TabIndex = 16;
     //
     // TxtPws
     //
     this.TxtPws.BackColor = System.Drawing.Color.YellowGreen;
     //
     //
     //
     this.TxtPws.Border.Class = "TextBoxBorder";
     this.TxtPws.Location = new System.Drawing.Point(64, 73);
     this.TxtPws.MaxLength = 16;
     this.TxtPws.Name = "TxtPws";
     this.TxtPws.PasswordChar = '*';
     this.TxtPws.Size = new System.Drawing.Size(100, 21);
     this.TxtPws.TabIndex = 15;
     this.TxtPws.UseSystemPasswordChar = true;
     //
     // labelX3
     //
     this.labelX3.BackColor = System.Drawing.Color.Transparent;
     this.labelX3.Location = new System.Drawing.Point(3, 106);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(43, 23);
     this.labelX3.TabIndex = 14;
     this.labelX3.Text = "电话:";
     //
     // labelX2
     //
     this.labelX2.BackColor = System.Drawing.Color.Transparent;
     this.labelX2.Location = new System.Drawing.Point(3, 74);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(43, 23);
     this.labelX2.TabIndex = 13;
     this.labelX2.Text = "密码:";
     //
     // labelX1
     //
     this.labelX1.BackColor = System.Drawing.Color.Transparent;
     this.labelX1.Location = new System.Drawing.Point(3, 137);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(72, 23);
     this.labelX1.TabIndex = 12;
     this.labelX1.Text = "所属部门:";
     //
     // lblX3
     //
     this.lblX3.BackColor = System.Drawing.Color.Transparent;
     this.lblX3.Location = new System.Drawing.Point(3, 172);
     this.lblX3.Name = "lblX3";
     this.lblX3.Size = new System.Drawing.Size(55, 23);
     this.lblX3.TabIndex = 9;
     this.lblX3.Text = "权限:";
     //
     // lblX2
     //
     this.lblX2.BackColor = System.Drawing.Color.Transparent;
     this.lblX2.Location = new System.Drawing.Point(3, 42);
     this.lblX2.Name = "lblX2";
     this.lblX2.Size = new System.Drawing.Size(43, 23);
     this.lblX2.TabIndex = 8;
     this.lblX2.Text = "姓名:";
     //
     // lblX1
     //
     this.lblX1.BackColor = System.Drawing.Color.Transparent;
     this.lblX1.Location = new System.Drawing.Point(3, 13);
     this.lblX1.Name = "lblX1";
     this.lblX1.Size = new System.Drawing.Size(55, 23);
     this.lblX1.TabIndex = 7;
     this.lblX1.Text = "工号:";
     //
     // linkLabel1
     //
     this.linkLabel1.AutoSize = true;
     this.linkLabel1.BackColor = System.Drawing.Color.MistyRose;
     this.linkLabel1.Location = new System.Drawing.Point(179, 15);
     this.linkLabel1.Name = "linkLabel1";
     this.linkLabel1.Size = new System.Drawing.Size(29, 12);
     this.linkLabel1.TabIndex = 6;
     this.linkLabel1.TabStop = true;
     this.linkLabel1.Text = "检查";
     this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
     //
     // comboBoxEx1
     //
     this.comboBoxEx1.DisplayMember = "Text";
     this.comboBoxEx1.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxEx1.FormattingEnabled = true;
     this.comboBoxEx1.Location = new System.Drawing.Point(64, 173);
     this.comboBoxEx1.Name = "comboBoxEx1";
     this.comboBoxEx1.Size = new System.Drawing.Size(121, 22);
     this.comboBoxEx1.TabIndex = 5;
     this.comboBoxEx1.SelectionChangeCommitted += new System.EventHandler(this.comboBoxEx1_SelectionChangeCommitted);
     //
     // txtBoxX2
     //
     this.txtBoxX2.BackColor = System.Drawing.Color.YellowGreen;
     //
     //
     //
     this.txtBoxX2.Border.Class = "TextBoxBorder";
     this.txtBoxX2.Location = new System.Drawing.Point(64, 42);
     this.txtBoxX2.Name = "txtBoxX2";
     this.txtBoxX2.Size = new System.Drawing.Size(100, 21);
     this.txtBoxX2.TabIndex = 1;
     //
     // txtBoxX1
     //
     this.txtBoxX1.BackColor = System.Drawing.Color.YellowGreen;
     //
     //
     //
     this.txtBoxX1.Border.Class = "TextBoxBorder";
     this.txtBoxX1.Location = new System.Drawing.Point(64, 13);
     this.txtBoxX1.Name = "txtBoxX1";
     this.txtBoxX1.Size = new System.Drawing.Size(100, 21);
     this.txtBoxX1.TabIndex = 0;
     this.txtBoxX1.TextChanged += new System.EventHandler(this.txtBoxX1_TextChanged);
     this.txtBoxX1.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtBoxX1_KeyPress);
     //
     // SetOp
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(638, 559);
     this.Controls.Add(this.panelEx1);
     this.Controls.Add(this.dockSite1);
     this.Controls.Add(this.dockSite2);
     this.Controls.Add(this.dockSite3);
     this.Controls.Add(this.dockSite4);
     this.Controls.Add(this.dockSite5);
     this.Controls.Add(this.dockSite6);
     this.Controls.Add(this.dockSite7);
     this.Controls.Add(this.dockSite8);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "SetOp";
     this.Text = "操作员设置";
     this.Load += new System.EventHandler(this.SetOp_Load);
     this.dockSite7.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).EndInit();
     this.panelEx1.ResumeLayout(false);
     this.groupPanel3.ResumeLayout(false);
     this.groupPanel2.ResumeLayout(false);
     this.groupPanel1.ResumeLayout(false);
     this.groupPanel1.PerformLayout();
     this.ResumeLayout(false);
 }
Пример #44
0
        private void btnOK_Click(object sender, EventArgs e)
        {
            //加进度条 xisheng 2011.06.28
            SysCommon.CProgress vProgress = new SysCommon.CProgress("进度条");
            vProgress.EnableCancel = true;
            vProgress.EnableUserCancel(true);
            vProgress.ShowDescription = true;
            vProgress.FakeProgress    = true;
            vProgress.TopMost         = true;
            vProgress.ShowProgress();
            vProgress.SetProgress("开始查询");


            this.DialogResult = DialogResult.OK;

            //没有当前图层直接退出
            if (m_pCurrentLayer == null)
            {
                vProgress.Close();// 张琪  20110705  添加
                return;
            }
            try
            {
                string whereClause = this.richTextExpression.Text.Trim();

                //获取当前图层的 featureclass
                vProgress.SetProgress("获取当前图层");
                IFeatureClass pFeatClass = m_pCurrentLayer.FeatureClass;

                //构造查询过滤器
                IQueryFilter pQueryFilter = new QueryFilterClass();
                //赋值查许条件
                vProgress.SetProgress("构造查询过滤器并赋值查询条件");
                pQueryFilter.WhereClause = whereClause;

                //赋值查询方式,由查询方式的combo获得
                esriSelectionResultEnum pSelectionResult;
                pSelectionResult = esriSelectionResultEnum.esriSelectionResultNew;

                //进行查询,并将结果显示出来
                vProgress.SetProgress("正在查询符合条件的结果");
                //frmQuery frm = new frmQuery(m_MapControlDefault);
                //frm.FillData(m_pCurrentLayer, pQueryFilter, pSelectionResult);
                _QueryBar.m_pMapControl = m_MapControlDefault;
                _QueryBar.EmergeQueryData(m_MapControlDefault.Map, m_pCurrentLayer, pQueryFilter, pSelectionResult, vProgress);
                try
                {
                    DevComponents.DotNetBar.Bar pBar = _QueryBar.Parent.Parent as DevComponents.DotNetBar.Bar;
                    if (pBar != null)
                    {
                        pBar.AutoHide = false;
                        //pBar.SelectedDockTab = 1;
                        int tmpindex = pBar.Items.IndexOf("dockItemDataCheck");
                        pBar.SelectedDockTab = tmpindex;
                    }
                }
                catch
                { }
            }
            //frm.Show();
            catch
            { }
            finally
            {
                vProgress.Close();
                this.Hide();
                this.Dispose(true);
            }
        }
Пример #45
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmIE));
     this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
     this.webBrowser = new System.Windows.Forms.WebBrowser();
     this.BarNavigation = new DevComponents.DotNetBar.Bar();
     this.btnIEBack = new DevComponents.DotNetBar.ButtonItem();
     this.btnIEForward = new DevComponents.DotNetBar.ButtonItem();
     this.barAddress = new DevComponents.DotNetBar.ComboBoxItem();
     this.btnIEGo = new DevComponents.DotNetBar.ButtonItem();
     this.btnIEStop = new DevComponents.DotNetBar.ButtonItem();
     this.btnIERefresh = new DevComponents.DotNetBar.ButtonItem();
     this.btnIEHome = new DevComponents.DotNetBar.ButtonItem();
     this.btnIEPrint = new DevComponents.DotNetBar.ButtonItem();
     this.panelEx1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.BarNavigation)).BeginInit();
     this.SuspendLayout();
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx1.Controls.Add(this.webBrowser);
     this.panelEx1.Controls.Add(this.BarNavigation);
     this.panelEx1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelEx1.Location = new System.Drawing.Point(0, 0);
     this.panelEx1.Name = "panelEx1";
     this.panelEx1.Size = new System.Drawing.Size(957, 500);
     this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx1.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx1.Style.GradientAngle = 90;
     this.panelEx1.TabIndex = 0;
     this.panelEx1.Text = "panelEx1";
     //
     // webBrowser
     //
     this.webBrowser.Dock = System.Windows.Forms.DockStyle.Fill;
     this.webBrowser.Location = new System.Drawing.Point(0, 0);
     this.webBrowser.MinimumSize = new System.Drawing.Size(20, 20);
     this.webBrowser.Name = "webBrowser";
     this.webBrowser.Size = new System.Drawing.Size(957, 500);
     this.webBrowser.TabIndex = 5;
     this.webBrowser.Url = new System.Uri("http://www.baidu.com", System.UriKind.Absolute);
     this.webBrowser.DocumentCompleted += new System.Windows.Forms.WebBrowserDocumentCompletedEventHandler(this.webBrowser_DocumentCompleted);
     this.webBrowser.Navigated += new System.Windows.Forms.WebBrowserNavigatedEventHandler(this.webBrowser_Navigated);
     this.webBrowser.NewWindow += new System.ComponentModel.CancelEventHandler(this.webBrowser_NewWindow);
     //
     // BarNavigation
     //
     this.BarNavigation.AccessibleDescription = "DotNetBar Bar (BarNavigation)";
     this.BarNavigation.AccessibleName = "DotNetBar Bar";
     this.BarNavigation.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuBar;
     this.BarNavigation.CanAutoHide = false;
     this.BarNavigation.CanDockBottom = false;
     this.BarNavigation.CanDockRight = false;
     this.BarNavigation.CanDockTab = false;
     this.BarNavigation.CanDockTop = false;
     this.BarNavigation.CanReorderTabs = false;
     this.BarNavigation.CanUndock = false;
     this.BarNavigation.Dock = System.Windows.Forms.DockStyle.Top;
     this.BarNavigation.DockedBorderStyle = DevComponents.DotNetBar.eBorderType.Raised;
     this.BarNavigation.DockLine = 1;
     this.BarNavigation.DockSide = DevComponents.DotNetBar.eDockSide.Document;
     this.BarNavigation.FadeEffect = true;
     this.BarNavigation.Font = new System.Drawing.Font("宋体", 9F);
     this.BarNavigation.GrabHandleStyle = DevComponents.DotNetBar.eGrabHandleStyle.Office2003;
     this.BarNavigation.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnIEBack,
     this.btnIEForward,
     this.barAddress,
     this.btnIEGo,
     this.btnIEStop,
     this.btnIERefresh,
     this.btnIEHome,
     this.btnIEPrint});
     this.BarNavigation.Location = new System.Drawing.Point(0, 0);
     this.BarNavigation.MenuBar = true;
     this.BarNavigation.Name = "BarNavigation";
     this.BarNavigation.Size = new System.Drawing.Size(957, 38);
     this.BarNavigation.Stretch = true;
     this.BarNavigation.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.BarNavigation.TabIndex = 6;
     this.BarNavigation.TabStop = false;
     this.BarNavigation.Text = "IE浏览器";
     this.BarNavigation.Visible = false;
     this.BarNavigation.ItemClick += new System.EventHandler(this.BarNavigation_ItemClick);
     //
     // btnIEBack
     //
     this.btnIEBack.GlobalName = "btnIEBack";
     this.btnIEBack.Image = ((System.Drawing.Image)(resources.GetObject("btnIEBack.Image")));
     this.btnIEBack.Name = "btnIEBack";
     this.btnIEBack.Text = "&Back";
     //
     // btnIEForward
     //
     this.btnIEForward.GlobalName = "btnIEForward";
     this.btnIEForward.Image = ((System.Drawing.Image)(resources.GetObject("btnIEForward.Image")));
     this.btnIEForward.Name = "btnIEForward";
     this.btnIEForward.Text = "&Forward";
     //
     // barAddress
     //
     this.barAddress.ComboWidth = 128;
     this.barAddress.DropDownHeight = 106;
     this.barAddress.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDown;
     this.barAddress.GlobalName = "barAddress";
     this.barAddress.ItemAlignment = DevComponents.DotNetBar.eItemAlignment.Center;
     this.barAddress.LabelForeColor = System.Drawing.Color.Transparent;
     this.barAddress.Name = "barAddress";
     this.barAddress.Stretch = true;
     this.barAddress.Text = "http://";
     this.barAddress.Tooltip = "请输入查询";
     this.barAddress.WatermarkText = "请输入查询";
     //
     // btnIEGo
     //
     this.btnIEGo.Cursor = System.Windows.Forms.Cursors.Default;
     this.btnIEGo.FixedSize = new System.Drawing.Size(0, 9);
     this.btnIEGo.GlobalName = "btnIEGo";
     this.btnIEGo.Image = ((System.Drawing.Image)(resources.GetObject("btnIEGo.Image")));
     this.btnIEGo.ItemAlignment = DevComponents.DotNetBar.eItemAlignment.Center;
     this.btnIEGo.Name = "btnIEGo";
     this.btnIEGo.Shape = new DevComponents.DotNetBar.RoundRectangleShapeDescriptor(2);
     this.btnIEGo.SplitButton = true;
     this.btnIEGo.Text = "Go";
     //
     // btnIEStop
     //
     this.btnIEStop.GlobalName = "btnIEStop";
     this.btnIEStop.Image = ((System.Drawing.Image)(resources.GetObject("btnIEStop.Image")));
     this.btnIEStop.Name = "btnIEStop";
     this.btnIEStop.Text = "&Stop";
     //
     // btnIERefresh
     //
     this.btnIERefresh.GlobalName = "btnIERefresh";
     this.btnIERefresh.Image = ((System.Drawing.Image)(resources.GetObject("btnIERefresh.Image")));
     this.btnIERefresh.Name = "btnIERefresh";
     this.btnIERefresh.Text = "&Refresh";
     //
     // btnIEHome
     //
     this.btnIEHome.GlobalName = "btnIEHome";
     this.btnIEHome.Image = ((System.Drawing.Image)(resources.GetObject("btnIEHome.Image")));
     this.btnIEHome.Name = "btnIEHome";
     this.btnIEHome.Text = "&Home";
     //
     // btnIEPrint
     //
     this.btnIEPrint.BeginGroup = true;
     this.btnIEPrint.GlobalName = "btnIEPrint";
     this.btnIEPrint.Image = ((System.Drawing.Image)(resources.GetObject("btnIEPrint.Image")));
     this.btnIEPrint.Name = "btnIEPrint";
     this.btnIEPrint.Text = "&Print";
     //
     // FrmIE
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(957, 500);
     this.Controls.Add(this.panelEx1);
     this.Name = "FrmIE";
     this.Text = "导航页面";
     this.Load += new System.EventHandler(this.FrmIE_Load);
     this.panelEx1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.BarNavigation)).EndInit();
     this.ResumeLayout(false);
 }
Пример #46
0
        private void buttonOk_Click(object sender, EventArgs e)
        {
            if (comboBoxELayers.Text.Trim() == "" || comboBoxELayers.Text.Trim() == "点击选择查询图层")
            {
                System.Windows.Forms.MessageBox.Show("请先选择图层!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
                return;
            }
            List <IGeometry>    lstGeometrys = new List <IGeometry>();
            IGeometryBag        pGeometryBag = new GeometryBagClass();
            IGeometryCollection pGeomtryCol  = (IGeometryCollection)pGeometryBag;
            IMap   pMap = m_pMapControl.Map;
            object obj  = System.Reflection.Missing.Value;

            //IGeometry pTempGeo = null;
            if (pMap.SelectionCount < 1)
            {
                System.Windows.Forms.MessageBox.Show("请先选择要素!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
                return;
            }
            this.Visible = false;
            m_pMapControl.CurrentTool = null;
            ChangeSelectAble(true, "");
            if (this.WriteLog)
            {
                Plugin.LogTable.Writelog(this.Text);//xisheng 日志记录 0928;
            }
            IActiveView  pAv        = pMap as IActiveView;
            ISelection   pSelection = pMap.FeatureSelection;
            IEnumFeature pEnumFea   = pSelection as IEnumFeature;
            IFeature     pFea       = pEnumFea.Next();

            while (pFea != null)
            {
                if (pFea.Shape != null)
                {
                    lstGeometrys.Add(pFea.Shape);
                    pGeomtryCol.AddGeometry(pFea.Shape, ref obj, ref obj);
                }
                pFea = pEnumFea.Next();
            }
            pGeometryBag.Project(pMap.SpatialReference);

            if (m_frmQuery == null)
            {
                m_frmQuery             = new frmQuery(_pMapControl, m_enumQueryMode);
                m_frmQuery.Owner       = m_mainFrm;
                m_frmQuery.FormClosed += new FormClosedEventHandler(frmQuery_FormClosed);
            }
            ///ZQ 2011 1129 已经不再使用Element绘制
            //清除上次的所有元素
            //(m_pMapControl.Map as IGraphicsContainer).DeleteAllElements();
            if (m_frmBufferSet != null)
            {
                SysCommon.ScreenDraw.list.Remove(m_frmBufferSet.BufferSetAfterDraw);
                m_frmBufferSet.setBufferGeometry(null);
                m_frmBufferSet = null;
            }
            m_frmBufferSet             = new frmBufferSet(pGeometryBag as IGeometry, m_pMapControl.Map, m_frmQuery);
            m_frmBufferSet.FormClosed += new FormClosedEventHandler(frmBufferSet_FormClosed);
            IGeometry pGeometry = m_frmBufferSet.GetBufferGeometry();

            if (pGeometry == null || m_frmBufferSet.Res == false)
            {
                this.Close();  return;
            }

            // m_frmQuery.Show();
            ///ZQ 20111119  modify
            // m_frmQuery.FillData(m_pMapControl.ActiveView.FocusMap, pGeometry,m_frmBufferSet.pesriSpatialRelEnum);

            //更改查询结果显示方式
            //ygc 2012-8-10
            QueryBar.m_pMapControl = _pMapControl;
            QueryBar.EmergeQueryData(m_pMapControl.ActiveView.FocusMap, pGeometry, m_frmBufferSet.pesriSpatialRelEnum);
            try
            {
                DevComponents.DotNetBar.Bar pBar = QueryBar.Parent.Parent as DevComponents.DotNetBar.Bar;
                if (pBar != null)
                {
                    pBar.AutoHide = false;
                    //pBar.SelectedDockTab = 1;
                    int tmpindex = pBar.Items.IndexOf("dockItemDataCheck");
                    pBar.SelectedDockTab = tmpindex;
                }
            }
            catch
            { }
            this.Close();
        }
Пример #47
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainFrame));
     this.openFileDialog1   = new System.Windows.Forms.OpenFileDialog();
     this.ilToolbar         = new System.Windows.Forms.ImageList(this.components);
     this.theViewer         = new Genetibase.Debug.ObjViewer.ObjViewer();
     this.bar1              = new DevComponents.DotNetBar.Bar();
     this.item_2            = new DevComponents.DotNetBar.ButtonItem();
     this.item_3            = new DevComponents.DotNetBar.ButtonItem();
     this.item_13           = new DevComponents.DotNetBar.ButtonItem();
     this.item_14           = new DevComponents.DotNetBar.ButtonItem();
     this.uiPanelManager1   = new Janus.Windows.UI.Dock.UIPanelManager(this.components);
     this.uiPanel0          = new Janus.Windows.UI.Dock.UIPanel();
     this.uiPanel0Container = new Janus.Windows.UI.Dock.UIPanelInnerContainer();
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.uiPanelManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.uiPanel0)).BeginInit();
     this.uiPanel0.SuspendLayout();
     this.uiPanel0Container.SuspendLayout();
     this.SuspendLayout();
     //
     // ilToolbar
     //
     this.ilToolbar.ColorDepth       = System.Windows.Forms.ColorDepth.Depth8Bit;
     this.ilToolbar.ImageSize        = new System.Drawing.Size(16, 16);
     this.ilToolbar.TransparentColor = System.Drawing.Color.Transparent;
     //
     // theViewer
     //
     this.theViewer.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.theViewer.Location = new System.Drawing.Point(0, 0);
     this.theViewer.Name     = "theViewer";
     this.theViewer.Size     = new System.Drawing.Size(268, 679);
     this.theViewer.TabIndex = 4;
     //
     // bar1
     //
     this.bar1.Dock = System.Windows.Forms.DockStyle.Top;
     this.bar1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.bar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
         this.item_2,
         this.item_3,
         this.item_13,
         this.item_14
     });
     this.bar1.Location = new System.Drawing.Point(0, 0);
     this.bar1.Name     = "bar1";
     this.bar1.Size     = new System.Drawing.Size(1016, 25);
     this.bar1.Stretch  = true;
     this.bar1.Style    = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
     this.bar1.TabIndex = 6;
     this.bar1.TabStop  = false;
     this.bar1.Text     = "bar1";
     //
     // item_2
     //
     this.item_2.Name   = "item_2";
     this.item_2.Text   = "Open Assembly";
     this.item_2.Click += new System.EventHandler(this.item_2_Click);
     //
     // item_3
     //
     this.item_3.Name   = "item_3";
     this.item_3.Text   = "Open Assembly From GAC";
     this.item_3.Click += new System.EventHandler(this.item_3_Click);
     //
     // item_13
     //
     this.item_13.Name   = "item_13";
     this.item_13.Text   = "Find";
     this.item_13.Click += new System.EventHandler(this.item_13_Click);
     //
     // item_14
     //
     this.item_14.Name   = "item_14";
     this.item_14.Text   = "Find Again";
     this.item_14.Click += new System.EventHandler(this.item_14_Click);
     //
     // uiPanelManager1
     //
     this.uiPanelManager1.BackColorGradientAutoHideStrip = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(243)))), ((int)(((byte)(247)))));
     this.uiPanelManager1.ContainerControl = this;
     this.uiPanel0.Id = new System.Guid("a7968a0c-6f4c-4839-ae9f-b95098a1cd1f");
     this.uiPanelManager1.Panels.Add(this.uiPanel0);
     //
     // Design Time Panel Info:
     //
     this.uiPanelManager1.BeginPanelInfo();
     this.uiPanelManager1.AddDockPanelInfo(new System.Guid("a7968a0c-6f4c-4839-ae9f-b95098a1cd1f"), Janus.Windows.UI.Dock.PanelDockStyle.Right, new System.Drawing.Size(274, 703), true);
     this.uiPanelManager1.AddFloatingPanelInfo(new System.Guid("a7968a0c-6f4c-4839-ae9f-b95098a1cd1f"), new System.Drawing.Point(-1, -1), new System.Drawing.Size(-1, -1), false);
     this.uiPanelManager1.EndPanelInfo();
     //
     // uiPanel0
     //
     this.uiPanel0.AllowPanelDrag     = Janus.Windows.UI.InheritableBoolean.False;
     this.uiPanel0.AllowPanelDrop     = Janus.Windows.UI.InheritableBoolean.False;
     this.uiPanel0.AutoHide           = true;
     this.uiPanel0.CloseButtonVisible = Janus.Windows.UI.InheritableBoolean.False;
     this.uiPanel0.InnerContainer     = this.uiPanel0Container;
     this.uiPanel0.Location           = new System.Drawing.Point(740, 28);
     this.uiPanel0.Name     = "uiPanel0";
     this.uiPanel0.Size     = new System.Drawing.Size(274, 703);
     this.uiPanel0.TabIndex = 4;
     this.uiPanel0.Text     = "Details";
     //
     // uiPanel0Container
     //
     this.uiPanel0Container.Controls.Add(this.theViewer);
     this.uiPanel0Container.Location = new System.Drawing.Point(5, 23);
     this.uiPanel0Container.Name     = "uiPanel0Container";
     this.uiPanel0Container.Size     = new System.Drawing.Size(268, 679);
     this.uiPanel0Container.TabIndex = 0;
     //
     // MainFrame
     //
     this.AllowDrop         = true;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(1016, 734);
     this.Controls.Add(this.bar1);
     this.DoubleBuffered    = true;
     this.Icon              = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.IsMdiContainer    = true;
     this.Name              = "MainFrame";
     this.StartPosition     = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text              = "NuGenReflect.Net x64";
     this.DragDrop         += new System.Windows.Forms.DragEventHandler(this.OnDrop);
     this.MdiChildActivate += new System.EventHandler(this.OnMdiChildActivate);
     this.DragEnter        += new System.Windows.Forms.DragEventHandler(this.OnDragEnter);
     this.Load             += new System.EventHandler(this.MainFrame_Load);
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.uiPanelManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.uiPanel0)).EndInit();
     this.uiPanel0.ResumeLayout(false);
     this.uiPanel0Container.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Пример #48
0
        /// <summary>
        /// Occurs when this tool is clicked
        /// </summary>
        public override void OnClick()
        {
            OpenFileDialog dlg = new OpenFileDialog();

            //dlg.Filter = "个人数据库(*.mdb)|*.mdb|shp数据|*.shp|文本文件|*.txt";
            dlg.Filter = "shp数据|*.shp|个人数据库(*.mdb)|*.mdb|文件数据库(*.gdb)|gdb";
            if (dlg.ShowDialog() == DialogResult.Cancel)
            {
                return;
            }
            IPolygon pGon = new PolygonClass();

            pGon = GetPolyGonFromFile(dlg.FileName);
            if (pGon == null)
            {
                return;
            }
            ITopologicalOperator pTopo = pGon as ITopologicalOperator;

            if (pTopo != null)
            {
                pTopo.Simplify();
            }
            if (this.WriteLog)
            {
                Plugin.LogTable.Writelog("导入范围查询,范围文件路径为" + dlg.FileName);//xisheng 日志记录 0928;
            }
            //Zq  20111011  add 将当前视图定位到导入的范围并闪烁显示
            m_MapControl.Extent = pGon.Envelope;
            (m_MapControl.Map as IActiveView).PartialRefresh(esriViewDrawPhase.esriViewForeground, null, null);
            m_MapControl.ActiveView.ScreenDisplay.UpdateWindow();
            m_MapControl.FlashShape(pGon as IGeometry, 3, 200, null);
            ///ZQ 2011 1129 modify
            drawgeometryXOR(pGon as IGeometry);
            if (m_frmQuery == null)
            {
                m_frmQuery             = new frmQuery(m_MapControl, m_enumQueryMode);
                m_frmQuery.Owner       = m_mainFrm;
                m_frmQuery.FormClosed += new FormClosedEventHandler(frmQuery_FormClosed);
            }
            ///ZQ 2011  1128 将绘制事件插入口袋中
            SysCommon.ScreenDraw.list.Add(ImportPolygonQueryAfterDraw);
            //m_frmQuery.Show();
            ///ZQ 20111119  modify
            // m_frmQuery.FillData(m_MapControl.ActiveView.FocusMap, pGon as IGeometry,esriSpatialRelEnum.esriSpatialRelIntersects );
            _QueryBar.m_pMapControl = m_MapControl;
            _QueryBar.EmergeQueryData(m_MapControl.ActiveView.FocusMap, pGon as IGeometry, esriSpatialRelEnum.esriSpatialRelIntersects);
            try
            {
                DevComponents.DotNetBar.Bar pBar = _QueryBar.Parent.Parent as DevComponents.DotNetBar.Bar;
                if (pBar != null)
                {
                    pBar.AutoHide = false;
                    //pBar.SelectedDockTab = 1;
                    int tmpindex = pBar.Items.IndexOf("dockItemDataCheck");
                    pBar.SelectedDockTab = tmpindex;
                }
            }
            catch
            { }
        }
Пример #49
0
		internal void LoadDefinition(System.Xml.XmlDocument xmlDoc)
		{
            System.Xml.XmlElement xmlDotNetBar=xmlDoc.FirstChild as System.Xml.XmlElement;

            // Do not load old uncompatible definitions
            if (xmlDotNetBar != null && (!xmlDotNetBar.HasAttribute(DocumentSerializationXml.Version) ||
               XmlConvert.ToInt32(xmlDotNetBar.GetAttribute(DocumentSerializationXml.Version)) < 6))
                return;

			bool bSuspendLayout=false;

            // Creates serialization context
            ItemSerializationContext context = new ItemSerializationContext();
            context.Serializer = this;
            context.HasDeserializeItemHandlers = ((ICustomSerialization)this).HasDeserializeItemHandlers;
            context.HasSerializeItemHandlers = ((ICustomSerialization)this).HasSerializeItemHandlers;

            // Cache content of DockContainerItem objects so it can be loaded by new definition if they match
            context.DockControls = GetDockControls();

			try
			{
				m_LoadingDefinition=true;

				if(!this.SuspendLayout)
				{
					bSuspendLayout=true;
					this.SuspendLayout=true;
				}

				try
				{
					IgnoreLoadedControlDispose=true;
					m_Items.Clear();
					if(m_IncludeDockDocumentsInDefinition)
						m_Bars.Clear();
					else
						m_Bars.ClearNonDocumentBars();
					m_ContextMenus.Clear();
					m_ShortcutTable.Clear();
				}
				finally
				{
					IgnoreLoadedControlDispose=false;
				}
				
				// Destroy auto-hide sites
				DestroyAutoHidePanels();			

				if(xmlDotNetBar==null)
				{
					if(bSuspendLayout)
						this.SuspendLayout=false;
					return;
				}

				if(xmlDotNetBar.Name!="dotnetbar")
					throw new System.InvalidOperationException("Invalid file format (dotnetbar).");

//				if(xmlDotNetBar.HasAttribute("zorder"))
//					RestoreDockSiteZOrder(xmlDotNetBar.GetAttribute("zorder"));
			
				// Load user defined settings
				if(xmlDotNetBar.HasAttribute("fullmenus"))
					m_AlwaysShowFullMenus=System.Xml.XmlConvert.ToBoolean(xmlDotNetBar.GetAttribute("fullmenus"));
				else
					m_AlwaysShowFullMenus=false;
				if(xmlDotNetBar.HasAttribute("fullmenushover"))
					m_ShowFullMenusOnHover=System.Xml.XmlConvert.ToBoolean(xmlDotNetBar.GetAttribute("fullmenushover"));
				else
					m_ShowFullMenusOnHover=true;
				if(xmlDotNetBar.HasAttribute("tooltips"))
					m_ShowToolTips=System.Xml.XmlConvert.ToBoolean(xmlDotNetBar.GetAttribute("tooltips"));
				else
					m_ShowToolTips=true;
				if(xmlDotNetBar.HasAttribute("scintooltip"))
					m_ShowShortcutKeysInToolTips=System.Xml.XmlConvert.ToBoolean(xmlDotNetBar.GetAttribute("scintooltip"));
				else
					m_ShowShortcutKeysInToolTips=false;
				if(xmlDotNetBar.HasAttribute("animation"))
				{
					if((ePopupAnimation)System.Xml.XmlConvert.ToInt32(xmlDotNetBar.GetAttribute("animation"))!=ePopupAnimation.SystemDefault)
						m_PopupAnimation=(ePopupAnimation)System.Xml.XmlConvert.ToInt32(xmlDotNetBar.GetAttribute("animation"));
				}
				else
					m_PopupAnimation=ePopupAnimation.SystemDefault;
				
				foreach(System.Xml.XmlElement xmlElem in xmlDotNetBar.ChildNodes)
				{
					if(xmlElem.Name=="items")
					{
						foreach(System.Xml.XmlElement xmlItem in xmlElem.ChildNodes)
						{
							BaseItem objItem=BarFunctions.CreateItemFromXml(xmlItem);
							if(objItem==null)
								throw new System.InvalidOperationException("Invalid Item in file found ("+BarFunctions.GetItemErrorInfo(xmlItem)+").");
							// Do not change this order. Item should be Deserialized first and then added to the items
							// collection. See GlobalItem property for performace reasons...
                            context.ItemXmlElement = xmlItem;
							objItem.Deserialize(context);
							m_Items.Add(objItem);
						}
					}
					else if(xmlElem.Name=="bars")
					{
						foreach(System.Xml.XmlElement xmlBar in xmlElem.ChildNodes)
						{
							DevComponents.DotNetBar.Bar bar=new DevComponents.DotNetBar.Bar();
							bar.Visible=false;
							bar.SetDesignMode(this.DesignMode);
							m_Bars.Add(bar);
							bar.Deserialize(xmlBar);
							IOwnerBarSupport ownersupport=this as IOwnerBarSupport;
							ownersupport.AddShortcutsFromBar(bar);
						}
					}
					else if(xmlElem.Name=="popups")
					{
						foreach(System.Xml.XmlElement xmlItem in xmlElem.ChildNodes)
						{
							BaseItem objItem=BarFunctions.CreateItemFromXml(xmlItem);
							if(objItem==null)
								throw new System.InvalidOperationException("Invalid Item in file found ("+BarFunctions.GetItemErrorInfo(xmlItem)+").");
							// Do not change this order. Item should be Deserialized first and then added to the items
							// collection. See GlobalItem property for performace reasons...
                            context.ItemXmlElement = xmlItem;
							objItem.Deserialize(context);
							m_ContextMenus.Add(objItem);
						}
					}
					else if(xmlElem.Name==DocumentSerializationXml.Documents && m_IncludeDockDocumentsInDefinition)
					{
                        context.ItemXmlElement = xmlElem;
						if(m_FillDockSite!=null)
							m_FillDockSite.GetDocumentUIManager().DeserializeDefinition(context);
					}
                    else if (xmlElem.Name == DocumentSerializationXml.DockSite)
                    {
                        context.ItemXmlElement = xmlElem;

                        DockStyle dockingSide = (DockStyle)Enum.Parse(typeof(DockStyle), xmlElem.GetAttribute(DocumentSerializationXml.DockingSide));
                        if (dockingSide == DockStyle.Left)
                        {
                            if (m_LeftDockSite != null) m_LeftDockSite.GetDocumentUIManager().DeserializeDefinition(context);
                        }
                        else if (dockingSide == DockStyle.Right)
                        {
                            if (m_RightDockSite != null) m_RightDockSite.GetDocumentUIManager().DeserializeDefinition(context);
                        }
                        else if (dockingSide == DockStyle.Top)
                        {
                            if (m_TopDockSite != null) m_TopDockSite.GetDocumentUIManager().DeserializeDefinition(context);
                        }
                        else if (dockingSide == DockStyle.Bottom)
                        {
                            if (m_BottomDockSite != null) m_BottomDockSite.GetDocumentUIManager().DeserializeDefinition(context);
                        }
                    }
				}
			}
			finally
			{
				m_LoadingDefinition=false;
				if(bSuspendLayout) this.SuspendLayout=false;
			}

            if (context.DockControls != null && context.DockControls.Count > 0)
            {
                foreach (Control c in context.DockControls.Values)
                    c.Dispose();
            }

			((IOwner)this).InvokeDefinitionLoaded(this,new EventArgs());

			if(m_ActiveMdiChild!=null && m_MdiChildMaximized)
			{
				m_MdiChildMaximized=false;
                this.OnMdiChildResize(m_ActiveMdiChild,new EventArgs());
			}
        }
        /// <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(FrmMainRibbon));
            DevComponents.DotNetBar.Bar barRight;
            this.dockContainerItem2 = new DevComponents.DotNetBar.DockContainerItem();
            this.ribbonControl1 = new DevComponents.DotNetBar.RibbonControl();
            this.ribbonPanel1 = new DevComponents.DotNetBar.RibbonPanel();
            this.ribbonBar1 = new DevComponents.DotNetBar.RibbonBar();
            this.SysImageList = new System.Windows.Forms.ImageList(this.components);
            this.buttonItem14 = new DevComponents.DotNetBar.ButtonItem();
            this.ribbonTabItem1 = new DevComponents.DotNetBar.RibbonTabItem();
            this.buttonChangeStyle = new DevComponents.DotNetBar.ButtonItem();
            this.buttonStyleMetro = new DevComponents.DotNetBar.ButtonItem();
            this.buttonStyleOffice2010Blue = new DevComponents.DotNetBar.ButtonItem();
            this.buttonStyleOffice2010Silver = new DevComponents.DotNetBar.ButtonItem();
            this.buttonStyleOffice2010Black = new DevComponents.DotNetBar.ButtonItem();
            this.buttonStyleVS2010 = new DevComponents.DotNetBar.ButtonItem();
            this.buttonItem62 = new DevComponents.DotNetBar.ButtonItem();
            this.buttonStyleOffice2007Blue = new DevComponents.DotNetBar.ButtonItem();
            this.buttonStyleOffice2007Black = new DevComponents.DotNetBar.ButtonItem();
            this.buttonStyleOffice2007Silver = new DevComponents.DotNetBar.ButtonItem();
            this.buttonItem60 = new DevComponents.DotNetBar.ButtonItem();
            this.buttonStyleCustom = new DevComponents.DotNetBar.ColorPickerDropDown();
            this.switchButtonItem1 = new DevComponents.DotNetBar.SwitchButtonItem();
            this.applicationButton1 = new DevComponents.DotNetBar.ApplicationButton();
            this.itemContainer1 = new DevComponents.DotNetBar.ItemContainer();
            this.itemContainer2 = new DevComponents.DotNetBar.ItemContainer();
            this.itemContainer3 = new DevComponents.DotNetBar.ItemContainer();
            this.buttonItem2 = new DevComponents.DotNetBar.ButtonItem();
            this.buttonItem3 = new DevComponents.DotNetBar.ButtonItem();
            this.buttonItem4 = new DevComponents.DotNetBar.ButtonItem();
            this.buttonItem5 = new DevComponents.DotNetBar.ButtonItem();
            this.buttonItem6 = new DevComponents.DotNetBar.ButtonItem();
            this.buttonItem7 = new DevComponents.DotNetBar.ButtonItem();
            this.buttonItem17 = new DevComponents.DotNetBar.ButtonItem();
            this.galleryContainer1 = new DevComponents.DotNetBar.GalleryContainer();
            this.labelItem8 = new DevComponents.DotNetBar.LabelItem();
            this.itemContainer4 = new DevComponents.DotNetBar.ItemContainer();
            this.buttonItem13 = new DevComponents.DotNetBar.ButtonItem();
            this.styleManager1 = new DevComponents.DotNetBar.StyleManager(this.components);
            this.bar1 = new DevComponents.DotNetBar.Bar();
            this.itemContainer5 = new DevComponents.DotNetBar.ItemContainer();
            this.labelItem1 = new DevComponents.DotNetBar.LabelItem();
            this.labelItem2 = new DevComponents.DotNetBar.LabelItem();
            this.labelItem3 = new DevComponents.DotNetBar.LabelItem();
            this.labelItem4 = new DevComponents.DotNetBar.LabelItem();
            this.labelItem5 = new DevComponents.DotNetBar.LabelItem();
            this.labelItem6 = new DevComponents.DotNetBar.LabelItem();
            this.btnMessage = new DevComponents.DotNetBar.ButtonItem();
            this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.主界面ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.切换用户ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.消息面板ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.退出ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
            this.dotNetBarManager1 = new DevComponents.DotNetBar.DotNetBarManager(this.components);
            this.dockSite4 = new DevComponents.DotNetBar.DockSite();
            this.dockSite9 = new DevComponents.DotNetBar.DockSite();
            this.barMainContainer = new DevComponents.DotNetBar.Bar();
            this.dockSite1 = new DevComponents.DotNetBar.DockSite();
            this.rightdockSite = new DevComponents.DotNetBar.DockSite();
            this.rightContainer = new DevComponents.DotNetBar.PanelDockContainer();
            this.dockContainerItem1 = new DevComponents.DotNetBar.DockContainerItem();
            this.dockSite8 = new DevComponents.DotNetBar.DockSite();
            this.dockSite5 = new DevComponents.DotNetBar.DockSite();
            this.dockSite6 = new DevComponents.DotNetBar.DockSite();
            this.dockSite7 = new DevComponents.DotNetBar.DockSite();
            this.dockSite3 = new DevComponents.DotNetBar.DockSite();
            barRight = new DevComponents.DotNetBar.Bar();
            this.ribbonControl1.SuspendLayout();
            this.ribbonPanel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.bar1)).BeginInit();
            this.contextMenuStrip1.SuspendLayout();
            this.dockSite9.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.barMainContainer)).BeginInit();
            this.rightdockSite.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(barRight)).BeginInit();
            barRight.SuspendLayout();
            this.SuspendLayout();
            // 
            // dockContainerItem2
            // 
            this.dockContainerItem2.Name = "dockContainerItem2";
            this.dockContainerItem2.Text = "条码功能区";
            // 
            // ribbonControl1
            // 
            // 
            // 
            // 
            this.ribbonControl1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.ribbonControl1.CaptionVisible = true;
            this.ribbonControl1.Controls.Add(this.ribbonPanel1);
            this.ribbonControl1.Dock = System.Windows.Forms.DockStyle.Top;
            this.ribbonControl1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            this.ribbonTabItem1,
            this.buttonChangeStyle,
            this.switchButtonItem1});
            this.ribbonControl1.KeyTipsFont = new System.Drawing.Font("Tahoma", 7F);
            this.ribbonControl1.Location = new System.Drawing.Point(5, 1);
            this.ribbonControl1.Name = "ribbonControl1";
            this.ribbonControl1.Padding = new System.Windows.Forms.Padding(0, 0, 0, 3);
            this.ribbonControl1.QuickToolbarItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            this.applicationButton1});
            this.ribbonControl1.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.ribbonControl1.Size = new System.Drawing.Size(995, 134);
            this.ribbonControl1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.ribbonControl1.SystemText.MaximizeRibbonText = "&Maximize the Ribbon";
            this.ribbonControl1.SystemText.MinimizeRibbonText = "Mi&nimize the Ribbon";
            this.ribbonControl1.SystemText.QatAddItemText = "&Add to Quick Access Toolbar";
            this.ribbonControl1.SystemText.QatCustomizeMenuLabel = "<b>Customize Quick Access Toolbar</b>";
            this.ribbonControl1.SystemText.QatCustomizeText = "&Customize Quick Access Toolbar...";
            this.ribbonControl1.SystemText.QatDialogAddButton = "&Add >>";
            this.ribbonControl1.SystemText.QatDialogCancelButton = "Cancel";
            this.ribbonControl1.SystemText.QatDialogCaption = "Customize Quick Access Toolbar";
            this.ribbonControl1.SystemText.QatDialogCategoriesLabel = "&Choose commands from:";
            this.ribbonControl1.SystemText.QatDialogOkButton = "OK";
            this.ribbonControl1.SystemText.QatDialogPlacementCheckbox = "&Place Quick Access Toolbar below the Ribbon";
            this.ribbonControl1.SystemText.QatDialogRemoveButton = "&Remove";
            this.ribbonControl1.SystemText.QatPlaceAboveRibbonText = "&Place Quick Access Toolbar above the Ribbon";
            this.ribbonControl1.SystemText.QatPlaceBelowRibbonText = "&Place Quick Access Toolbar below the Ribbon";
            this.ribbonControl1.SystemText.QatRemoveItemText = "&Remove from Quick Access Toolbar";
            this.ribbonControl1.TabGroupHeight = 14;
            this.ribbonControl1.TabIndex = 0;
            // 
            // ribbonPanel1
            // 
            this.ribbonPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.ribbonPanel1.Controls.Add(this.ribbonBar1);
            this.ribbonPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.ribbonPanel1.Location = new System.Drawing.Point(0, 56);
            this.ribbonPanel1.Name = "ribbonPanel1";
            this.ribbonPanel1.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
            this.ribbonPanel1.Size = new System.Drawing.Size(995, 75);
            // 
            // 
            // 
            this.ribbonPanel1.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            // 
            // 
            // 
            this.ribbonPanel1.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            // 
            // 
            // 
            this.ribbonPanel1.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.ribbonPanel1.TabIndex = 1;
            // 
            // ribbonBar1
            // 
            this.ribbonBar1.AutoOverflowEnabled = true;
            // 
            // 
            // 
            this.ribbonBar1.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            // 
            // 
            // 
            this.ribbonBar1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.ribbonBar1.ContainerControlProcessDialogKey = true;
            this.ribbonBar1.Dock = System.Windows.Forms.DockStyle.Left;
            this.ribbonBar1.ImagesLarge = this.SysImageList;
            this.ribbonBar1.ImagesMedium = this.SysImageList;
            this.ribbonBar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            this.buttonItem14});
            this.ribbonBar1.Location = new System.Drawing.Point(3, 0);
            this.ribbonBar1.Name = "ribbonBar1";
            this.ribbonBar1.Size = new System.Drawing.Size(71, 72);
            this.ribbonBar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.ribbonBar1.TabIndex = 0;
            this.ribbonBar1.Text = "操作功能";
            // 
            // 
            // 
            this.ribbonBar1.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            // 
            // 
            // 
            this.ribbonBar1.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            // 
            // SysImageList
            // 
            this.SysImageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("SysImageList.ImageStream")));
            this.SysImageList.TransparentColor = System.Drawing.Color.Transparent;
            this.SysImageList.Images.SetKeyName(0, "设置.png");
            this.SysImageList.Images.SetKeyName(1, "1.png");
            this.SysImageList.Images.SetKeyName(2, "2.png");
            this.SysImageList.Images.SetKeyName(3, "3.png");
            this.SysImageList.Images.SetKeyName(4, "4.png");
            this.SysImageList.Images.SetKeyName(5, "defaulttool.png");
            this.SysImageList.Images.SetKeyName(6, "存储.png");
            this.SysImageList.Images.SetKeyName(7, "发放.png");
            this.SysImageList.Images.SetKeyName(8, "回收.png");
            this.SysImageList.Images.SetKeyName(9, "科室申请包.png");
            this.SysImageList.Images.SetKeyName(10, "灭菌.png");
            this.SysImageList.Images.SetKeyName(11, "配包.png");
            this.SysImageList.Images.SetKeyName(12, "清洗.png");
            this.SysImageList.Images.SetKeyName(13, "缺失登记.png");
            // 
            // buttonItem14
            // 
            this.buttonItem14.ImageListSizeSelection = DevComponents.DotNetBar.eButtonImageListSelection.Large;
            this.buttonItem14.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
            this.buttonItem14.Name = "buttonItem14";
            this.buttonItem14.SubItemsExpandWidth = 14;
            this.buttonItem14.Text = "测试菜单";
            // 
            // ribbonTabItem1
            // 
            this.ribbonTabItem1.Checked = true;
            this.ribbonTabItem1.Name = "ribbonTabItem1";
            this.ribbonTabItem1.Panel = this.ribbonPanel1;
            this.ribbonTabItem1.Text = "模块";
            // 
            // buttonChangeStyle
            // 
            this.buttonChangeStyle.AutoExpandOnClick = true;
            this.buttonChangeStyle.ItemAlignment = DevComponents.DotNetBar.eItemAlignment.Far;
            this.buttonChangeStyle.Name = "buttonChangeStyle";
            this.buttonChangeStyle.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            this.buttonStyleMetro,
            this.buttonStyleOffice2010Blue,
            this.buttonStyleOffice2010Silver,
            this.buttonStyleOffice2010Black,
            this.buttonStyleVS2010,
            this.buttonItem62,
            this.buttonStyleOffice2007Blue,
            this.buttonStyleOffice2007Black,
            this.buttonStyleOffice2007Silver,
            this.buttonItem60,
            this.buttonStyleCustom});
            this.buttonChangeStyle.Text = "皮肤";
            // 
            // buttonStyleMetro
            // 
            this.buttonStyleMetro.CommandParameter = "Metro";
            this.buttonStyleMetro.Name = "buttonStyleMetro";
            this.buttonStyleMetro.OptionGroup = "style";
            this.buttonStyleMetro.Text = "Metro/Office 2013";
            this.buttonStyleMetro.Click += new System.EventHandler(this.AppCommandTheme_Executed);
            // 
            // buttonStyleOffice2010Blue
            // 
            this.buttonStyleOffice2010Blue.CommandParameter = "Office2010Blue";
            this.buttonStyleOffice2010Blue.Name = "buttonStyleOffice2010Blue";
            this.buttonStyleOffice2010Blue.OptionGroup = "style";
            this.buttonStyleOffice2010Blue.Text = "Office 2010 Blue";
            this.buttonStyleOffice2010Blue.Click += new System.EventHandler(this.AppCommandTheme_Executed);
            // 
            // buttonStyleOffice2010Silver
            // 
            this.buttonStyleOffice2010Silver.CommandParameter = "Office2010Silver";
            this.buttonStyleOffice2010Silver.Name = "buttonStyleOffice2010Silver";
            this.buttonStyleOffice2010Silver.OptionGroup = "style";
            this.buttonStyleOffice2010Silver.Text = "Office 2010 <font color=\"Silver\"><b>Silver</b></font>";
            this.buttonStyleOffice2010Silver.Click += new System.EventHandler(this.AppCommandTheme_Executed);
            // 
            // buttonStyleOffice2010Black
            // 
            this.buttonStyleOffice2010Black.CommandParameter = "Office2010Black";
            this.buttonStyleOffice2010Black.Name = "buttonStyleOffice2010Black";
            this.buttonStyleOffice2010Black.OptionGroup = "style";
            this.buttonStyleOffice2010Black.Text = "Office 2010 Black";
            this.buttonStyleOffice2010Black.Click += new System.EventHandler(this.AppCommandTheme_Executed);
            // 
            // buttonStyleVS2010
            // 
            this.buttonStyleVS2010.CommandParameter = "VisualStudio2010Blue";
            this.buttonStyleVS2010.Name = "buttonStyleVS2010";
            this.buttonStyleVS2010.OptionGroup = "style";
            this.buttonStyleVS2010.Text = "Visual Studio 2010";
            this.buttonStyleVS2010.Click += new System.EventHandler(this.AppCommandTheme_Executed);
            // 
            // buttonItem62
            // 
            this.buttonItem62.CommandParameter = "Windows7Blue";
            this.buttonItem62.Name = "buttonItem62";
            this.buttonItem62.OptionGroup = "style";
            this.buttonItem62.Text = "Windows 7";
            this.buttonItem62.Click += new System.EventHandler(this.AppCommandTheme_Executed);
            // 
            // buttonStyleOffice2007Blue
            // 
            this.buttonStyleOffice2007Blue.Checked = true;
            this.buttonStyleOffice2007Blue.CommandParameter = "Office2007Blue";
            this.buttonStyleOffice2007Blue.Name = "buttonStyleOffice2007Blue";
            this.buttonStyleOffice2007Blue.OptionGroup = "style";
            this.buttonStyleOffice2007Blue.Text = "Office 2007 <font color=\"Blue\"><b>Blue</b></font>";
            this.buttonStyleOffice2007Blue.Click += new System.EventHandler(this.AppCommandTheme_Executed);
            // 
            // buttonStyleOffice2007Black
            // 
            this.buttonStyleOffice2007Black.CommandParameter = "Office2007Black";
            this.buttonStyleOffice2007Black.Name = "buttonStyleOffice2007Black";
            this.buttonStyleOffice2007Black.OptionGroup = "style";
            this.buttonStyleOffice2007Black.Text = "Office 2007 <font color=\"black\"><b>Black</b></font>";
            this.buttonStyleOffice2007Black.Click += new System.EventHandler(this.AppCommandTheme_Executed);
            // 
            // buttonStyleOffice2007Silver
            // 
            this.buttonStyleOffice2007Silver.CommandParameter = "Office2007Silver";
            this.buttonStyleOffice2007Silver.Name = "buttonStyleOffice2007Silver";
            this.buttonStyleOffice2007Silver.OptionGroup = "style";
            this.buttonStyleOffice2007Silver.Text = "Office 2007 <font color=\"Silver\"><b>Silver</b></font>";
            this.buttonStyleOffice2007Silver.Click += new System.EventHandler(this.AppCommandTheme_Executed);
            // 
            // buttonItem60
            // 
            this.buttonItem60.CommandParameter = "Office2007VistaGlass";
            this.buttonItem60.Name = "buttonItem60";
            this.buttonItem60.OptionGroup = "style";
            this.buttonItem60.Text = "Vista Glass";
            this.buttonItem60.Click += new System.EventHandler(this.AppCommandTheme_Executed);
            // 
            // buttonStyleCustom
            // 
            this.buttonStyleCustom.BeginGroup = true;
            this.buttonStyleCustom.Name = "buttonStyleCustom";
            this.buttonStyleCustom.Text = "Custom scheme";
            this.buttonStyleCustom.Tooltip = "Custom color scheme is created based on currently selected color table. Try selec" +
    "ting Silver or Blue color table and then creating custom color scheme.";
            this.buttonStyleCustom.SelectedColorChanged += new System.EventHandler(this.buttonStyleCustom_SelectedColorChanged);
            this.buttonStyleCustom.ColorPreview += new DevComponents.DotNetBar.ColorPreviewEventHandler(this.buttonStyleCustom_ColorPreview);
            this.buttonStyleCustom.Click += new System.EventHandler(this.AppCommandTheme_Executed);
            this.buttonStyleCustom.ExpandChange += new System.EventHandler(this.buttonStyleCustom_ExpandChange);
            // 
            // switchButtonItem1
            // 
            this.switchButtonItem1.ButtonHeight = 20;
            this.switchButtonItem1.ButtonWidth = 62;
            this.switchButtonItem1.ItemAlignment = DevComponents.DotNetBar.eItemAlignment.Far;
            this.switchButtonItem1.Margin.Bottom = 2;
            this.switchButtonItem1.Margin.Left = 4;
            this.switchButtonItem1.Name = "switchButtonItem1";
            this.switchButtonItem1.OffText = "显示";
            this.switchButtonItem1.OnText = "隐藏";
            this.switchButtonItem1.Tooltip = "Minimizes/Maximizes the Ribbon";
            this.switchButtonItem1.ValueChanged += new System.EventHandler(this.switchButtonItem1_ValueChanged);
            // 
            // applicationButton1
            // 
            this.applicationButton1.AutoExpandOnClick = true;
            this.applicationButton1.CanCustomize = false;
            this.applicationButton1.HotTrackingStyle = DevComponents.DotNetBar.eHotTrackingStyle.Image;
            this.applicationButton1.Image = ((System.Drawing.Image)(resources.GetObject("applicationButton1.Image")));
            this.applicationButton1.ImagePaddingHorizontal = 2;
            this.applicationButton1.ImagePaddingVertical = 2;
            this.applicationButton1.Name = "applicationButton1";
            this.applicationButton1.ShowSubItems = false;
            this.applicationButton1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            this.itemContainer1});
            this.applicationButton1.Text = "&File";
            // 
            // itemContainer1
            // 
            // 
            // 
            // 
            this.itemContainer1.BackgroundStyle.Class = "RibbonFileMenuContainer";
            this.itemContainer1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.itemContainer1.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
            this.itemContainer1.Name = "itemContainer1";
            this.itemContainer1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            this.itemContainer2,
            this.itemContainer4});
            // 
            // 
            // 
            this.itemContainer1.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            // 
            // itemContainer2
            // 
            // 
            // 
            // 
            this.itemContainer2.BackgroundStyle.Class = "RibbonFileMenuTwoColumnContainer";
            this.itemContainer2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.itemContainer2.ItemSpacing = 0;
            this.itemContainer2.Name = "itemContainer2";
            this.itemContainer2.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            this.itemContainer3,
            this.galleryContainer1});
            // 
            // 
            // 
            this.itemContainer2.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            // 
            // itemContainer3
            // 
            // 
            // 
            // 
            this.itemContainer3.BackgroundStyle.Class = "RibbonFileMenuColumnOneContainer";
            this.itemContainer3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.itemContainer3.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
            this.itemContainer3.MinimumSize = new System.Drawing.Size(120, 0);
            this.itemContainer3.Name = "itemContainer3";
            this.itemContainer3.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            this.buttonItem2,
            this.buttonItem3,
            this.buttonItem4,
            this.buttonItem5,
            this.buttonItem6,
            this.buttonItem7,
            this.buttonItem17});
            // 
            // 
            // 
            this.itemContainer3.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            // 
            // buttonItem2
            // 
            this.buttonItem2.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
            this.buttonItem2.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem2.Image")));
            this.buttonItem2.Name = "buttonItem2";
            this.buttonItem2.SubItemsExpandWidth = 24;
            this.buttonItem2.Text = "切换科室";
            this.buttonItem2.Click += new System.EventHandler(this.buttonItem2_Click);
            // 
            // buttonItem3
            // 
            this.buttonItem3.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
            this.buttonItem3.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem3.Image")));
            this.buttonItem3.Name = "buttonItem3";
            this.buttonItem3.SubItemsExpandWidth = 24;
            this.buttonItem3.Text = "切换用户";
            this.buttonItem3.Click += new System.EventHandler(this.切换用户ToolStripMenuItem_Click);
            // 
            // buttonItem4
            // 
            this.buttonItem4.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
            this.buttonItem4.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem4.Image")));
            this.buttonItem4.Name = "buttonItem4";
            this.buttonItem4.SubItemsExpandWidth = 24;
            this.buttonItem4.Text = "修改密码";
            this.buttonItem4.Click += new System.EventHandler(this.buttonItem4_Click);
            // 
            // buttonItem5
            // 
            this.buttonItem5.BeginGroup = true;
            this.buttonItem5.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
            this.buttonItem5.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem5.Image")));
            this.buttonItem5.Name = "buttonItem5";
            this.buttonItem5.SubItemsExpandWidth = 24;
            this.buttonItem5.Text = "参数设置";
            this.buttonItem5.Click += new System.EventHandler(this.buttonItem5_Click);
            // 
            // buttonItem6
            // 
            this.buttonItem6.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
            this.buttonItem6.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem6.Image")));
            this.buttonItem6.Name = "buttonItem6";
            this.buttonItem6.SubItemsExpandWidth = 24;
            this.buttonItem6.Text = "软件注册";
            // 
            // buttonItem7
            // 
            this.buttonItem7.BeginGroup = true;
            this.buttonItem7.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
            this.buttonItem7.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem7.Image")));
            this.buttonItem7.Name = "buttonItem7";
            this.buttonItem7.SubItemsExpandWidth = 24;
            this.buttonItem7.Text = "帮助";
            // 
            // buttonItem17
            // 
            this.buttonItem17.BeginGroup = true;
            this.buttonItem17.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
            this.buttonItem17.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem17.Image")));
            this.buttonItem17.Name = "buttonItem17";
            this.buttonItem17.SubItemsExpandWidth = 24;
            this.buttonItem17.Text = "关于";
            this.buttonItem17.Click += new System.EventHandler(this.buttonItem17_Click);
            // 
            // galleryContainer1
            // 
            // 
            // 
            // 
            this.galleryContainer1.BackgroundStyle.Class = "RibbonFileMenuColumnTwoContainer";
            this.galleryContainer1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.galleryContainer1.EnableGalleryPopup = false;
            this.galleryContainer1.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
            this.galleryContainer1.MinimumSize = new System.Drawing.Size(180, 240);
            this.galleryContainer1.MultiLine = false;
            this.galleryContainer1.Name = "galleryContainer1";
            this.galleryContainer1.PopupUsesStandardScrollbars = false;
            this.galleryContainer1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            this.labelItem8});
            // 
            // 
            // 
            this.galleryContainer1.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            // 
            // labelItem8
            // 
            this.labelItem8.BorderSide = DevComponents.DotNetBar.eBorderSide.Bottom;
            this.labelItem8.BorderType = DevComponents.DotNetBar.eBorderType.Etched;
            this.labelItem8.CanCustomize = false;
            this.labelItem8.ForeColor = System.Drawing.SystemColors.ControlText;
            this.labelItem8.Name = "labelItem8";
            this.labelItem8.PaddingBottom = 2;
            this.labelItem8.PaddingTop = 2;
            this.labelItem8.Stretch = true;
            this.labelItem8.Text = "已打开的界面";
            // 
            // itemContainer4
            // 
            // 
            // 
            // 
            this.itemContainer4.BackgroundStyle.Class = "RibbonFileMenuBottomContainer";
            this.itemContainer4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.itemContainer4.HorizontalItemAlignment = DevComponents.DotNetBar.eHorizontalItemsAlignment.Right;
            this.itemContainer4.Name = "itemContainer4";
            this.itemContainer4.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            this.buttonItem13});
            // 
            // 
            // 
            this.itemContainer4.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            // 
            // buttonItem13
            // 
            this.buttonItem13.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
            this.buttonItem13.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            this.buttonItem13.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem13.Image")));
            this.buttonItem13.Name = "buttonItem13";
            this.buttonItem13.SubItemsExpandWidth = 24;
            this.buttonItem13.Text = "退出系统";
            this.buttonItem13.Click += new System.EventHandler(this.退出ToolStripMenuItem_Click);
            // 
            // styleManager1
            // 
            this.styleManager1.ManagerStyle = DevComponents.DotNetBar.eStyle.Office2007Blue;
            this.styleManager1.MetroColorParameters = new DevComponents.DotNetBar.Metro.ColorTables.MetroColorGeneratorParameters(System.Drawing.Color.White, System.Drawing.Color.FromArgb(((int)(((byte)(43)))), ((int)(((byte)(87)))), ((int)(((byte)(154))))));
            // 
            // bar1
            // 
            this.bar1.AccessibleDescription = "bar1 (bar1)";
            this.bar1.AccessibleName = "bar1";
            this.bar1.AccessibleRole = System.Windows.Forms.AccessibleRole.ToolBar;
            this.bar1.AntiAlias = true;
            this.bar1.BarType = DevComponents.DotNetBar.eBarType.StatusBar;
            this.bar1.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.bar1.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.bar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            this.itemContainer5,
            this.btnMessage});
            this.bar1.Location = new System.Drawing.Point(5, 679);
            this.bar1.Name = "bar1";
            this.bar1.PaddingLeft = 5;
            this.bar1.Size = new System.Drawing.Size(995, 28);
            this.bar1.Stretch = true;
            this.bar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.bar1.TabIndex = 2;
            this.bar1.TabStop = false;
            this.bar1.Text = "bar1";
            // 
            // itemContainer5
            // 
            // 
            // 
            // 
            this.itemContainer5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.itemContainer5.Name = "itemContainer5";
            this.itemContainer5.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            this.labelItem1,
            this.labelItem2,
            this.labelItem3,
            this.labelItem4,
            this.labelItem5,
            this.labelItem6});
            // 
            // 
            // 
            this.itemContainer5.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.itemContainer5.VerticalItemAlignment = DevComponents.DotNetBar.eVerticalItemsAlignment.Middle;
            // 
            // labelItem1
            // 
            this.labelItem1.Name = "labelItem1";
            this.labelItem1.Text = "用户名:";
            // 
            // labelItem2
            // 
            this.labelItem2.Name = "labelItem2";
            this.labelItem2.Text = "labelItem2";
            // 
            // labelItem3
            // 
            this.labelItem3.Name = "labelItem3";
            this.labelItem3.Text = "科室:";
            // 
            // labelItem4
            // 
            this.labelItem4.Name = "labelItem4";
            this.labelItem4.Text = "labelItem4";
            // 
            // labelItem5
            // 
            this.labelItem5.Name = "labelItem5";
            this.labelItem5.Text = "机构:";
            // 
            // labelItem6
            // 
            this.labelItem6.Name = "labelItem6";
            this.labelItem6.Text = "labelItem6";
            // 
            // btnMessage
            // 
            this.btnMessage.ItemAlignment = DevComponents.DotNetBar.eItemAlignment.Far;
            this.btnMessage.Name = "btnMessage";
            this.btnMessage.Text = "消息面板";
            this.btnMessage.Click += new System.EventHandler(this.btnMessage_Click);
            // 
            // contextMenuStrip1
            // 
            this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.主界面ToolStripMenuItem,
            this.切换用户ToolStripMenuItem,
            this.消息面板ToolStripMenuItem,
            this.toolStripSeparator1,
            this.退出ToolStripMenuItem});
            this.contextMenuStrip1.Name = "contextMenuStrip1";
            this.contextMenuStrip1.Size = new System.Drawing.Size(125, 98);
            // 
            // 主界面ToolStripMenuItem
            // 
            this.主界面ToolStripMenuItem.Name = "主界面ToolStripMenuItem";
            this.主界面ToolStripMenuItem.Size = new System.Drawing.Size(124, 22);
            this.主界面ToolStripMenuItem.Text = "主界面";
            this.主界面ToolStripMenuItem.Click += new System.EventHandler(this.主界面ToolStripMenuItem_Click);
            // 
            // 切换用户ToolStripMenuItem
            // 
            this.切换用户ToolStripMenuItem.Name = "切换用户ToolStripMenuItem";
            this.切换用户ToolStripMenuItem.Size = new System.Drawing.Size(124, 22);
            this.切换用户ToolStripMenuItem.Text = "切换用户";
            this.切换用户ToolStripMenuItem.Click += new System.EventHandler(this.切换用户ToolStripMenuItem_Click);
            // 
            // 消息面板ToolStripMenuItem
            // 
            this.消息面板ToolStripMenuItem.Name = "消息面板ToolStripMenuItem";
            this.消息面板ToolStripMenuItem.Size = new System.Drawing.Size(124, 22);
            this.消息面板ToolStripMenuItem.Text = "消息面板";
            this.消息面板ToolStripMenuItem.Click += new System.EventHandler(this.消息面板ToolStripMenuItem_Click);
            // 
            // toolStripSeparator1
            // 
            this.toolStripSeparator1.Name = "toolStripSeparator1";
            this.toolStripSeparator1.Size = new System.Drawing.Size(121, 6);
            // 
            // 退出ToolStripMenuItem
            // 
            this.退出ToolStripMenuItem.Name = "退出ToolStripMenuItem";
            this.退出ToolStripMenuItem.Size = new System.Drawing.Size(124, 22);
            this.退出ToolStripMenuItem.Text = "退出";
            this.退出ToolStripMenuItem.Click += new System.EventHandler(this.退出ToolStripMenuItem_Click);
            // 
            // notifyIcon1
            // 
            this.notifyIcon1.ContextMenuStrip = this.contextMenuStrip1;
            this.notifyIcon1.Visible = true;
            this.notifyIcon1.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.notifyIcon1_MouseDoubleClick);
            // 
            // dotNetBarManager1
            // 
            this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.F1);
            this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlC);
            this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlA);
            this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlV);
            this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlX);
            this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlZ);
            this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlY);
            this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Del);
            this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Ins);
            this.dotNetBarManager1.BottomDockSite = this.dockSite4;
            this.dotNetBarManager1.EnableFullSizeDock = false;
            this.dotNetBarManager1.FillDockSite = this.dockSite9;
            this.dotNetBarManager1.LeftDockSite = this.dockSite1;
            this.dotNetBarManager1.ParentForm = this;
            this.dotNetBarManager1.RightDockSite = this.rightdockSite;
            this.dotNetBarManager1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
            this.dotNetBarManager1.ToolbarBottomDockSite = this.dockSite8;
            this.dotNetBarManager1.ToolbarLeftDockSite = this.dockSite5;
            this.dotNetBarManager1.ToolbarRightDockSite = this.dockSite6;
            this.dotNetBarManager1.ToolbarTopDockSite = this.dockSite7;
            this.dotNetBarManager1.TopDockSite = this.dockSite3;
            // 
            // dockSite4
            // 
            this.dockSite4.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
            this.dockSite4.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.dockSite4.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
            this.dockSite4.Location = new System.Drawing.Point(5, 707);
            this.dockSite4.Name = "dockSite4";
            this.dockSite4.Size = new System.Drawing.Size(995, 0);
            this.dockSite4.TabIndex = 6;
            this.dockSite4.TabStop = false;
            // 
            // dockSite9
            // 
            this.dockSite9.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
            this.dockSite9.Controls.Add(this.barMainContainer);
            this.dockSite9.Dock = System.Windows.Forms.DockStyle.Fill;
            this.dockSite9.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer(new DevComponents.DotNetBar.DocumentBaseContainer[] {
            ((DevComponents.DotNetBar.DocumentBaseContainer)(new DevComponents.DotNetBar.DocumentBarContainer(this.barMainContainer, 745, 544)))}, DevComponents.DotNetBar.eOrientation.Horizontal);
            this.dockSite9.Location = new System.Drawing.Point(5, 135);
            this.dockSite9.Name = "dockSite9";
            this.dockSite9.Size = new System.Drawing.Size(745, 544);
            this.dockSite9.TabIndex = 11;
            this.dockSite9.TabStop = false;
            // 
            // barMainContainer
            // 
            this.barMainContainer.AccessibleDescription = "DotNetBar Bar (barMainContainer)";
            this.barMainContainer.AccessibleName = "DotNetBar Bar";
            this.barMainContainer.AccessibleRole = System.Windows.Forms.AccessibleRole.ToolBar;
            this.barMainContainer.AlwaysDisplayDockTab = true;
            this.barMainContainer.CanCustomize = false;
            this.barMainContainer.CanDockBottom = false;
            this.barMainContainer.CanDockDocument = true;
            this.barMainContainer.CanDockLeft = false;
            this.barMainContainer.CanDockRight = false;
            this.barMainContainer.CanDockTop = false;
            this.barMainContainer.CanHide = true;
            this.barMainContainer.CanUndock = false;
            this.barMainContainer.CloseSingleTab = true;
            this.barMainContainer.DockTabAlignment = DevComponents.DotNetBar.eTabStripAlignment.Top;
            this.barMainContainer.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.barMainContainer.LayoutType = DevComponents.DotNetBar.eLayoutType.DockContainer;
            this.barMainContainer.Location = new System.Drawing.Point(0, 0);
            this.barMainContainer.Name = "barMainContainer";
            this.barMainContainer.Size = new System.Drawing.Size(745, 544);
            this.barMainContainer.Stretch = true;
            this.barMainContainer.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
            this.barMainContainer.TabIndex = 0;
            this.barMainContainer.TabNavigation = true;
            this.barMainContainer.TabStop = false;
            // 
            // dockSite1
            // 
            this.dockSite1.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
            this.dockSite1.Dock = System.Windows.Forms.DockStyle.Left;
            this.dockSite1.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
            this.dockSite1.Location = new System.Drawing.Point(5, 135);
            this.dockSite1.Name = "dockSite1";
            this.dockSite1.Size = new System.Drawing.Size(0, 544);
            this.dockSite1.TabIndex = 3;
            this.dockSite1.TabStop = false;
            // 
            // rightdockSite
            // 
            this.rightdockSite.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
            this.rightdockSite.Controls.Add(barRight);
            this.rightdockSite.Dock = System.Windows.Forms.DockStyle.Right;
            this.rightdockSite.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer(new DevComponents.DotNetBar.DocumentBaseContainer[] {
            ((DevComponents.DotNetBar.DocumentBaseContainer)(new DevComponents.DotNetBar.DocumentBarContainer(barRight, 247, 544)))}, DevComponents.DotNetBar.eOrientation.Horizontal);
            this.rightdockSite.Location = new System.Drawing.Point(750, 135);
            this.rightdockSite.Name = "rightdockSite";
            this.rightdockSite.Size = new System.Drawing.Size(250, 544);
            this.rightdockSite.TabIndex = 4;
            this.rightdockSite.TabStop = false;
            this.rightdockSite.Text = "导航栏";
            this.rightdockSite.Visible = false;
            // 
            // barRight
            // 
            barRight.AccessibleDescription = "DotNetBar Bar (barRight)";
            barRight.AccessibleName = "DotNetBar Bar";
            barRight.AccessibleRole = System.Windows.Forms.AccessibleRole.ToolBar;
            barRight.AutoSyncBarCaption = true;
            barRight.CloseSingleTab = true;
            barRight.Controls.Add(this.rightContainer);
            barRight.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            barRight.GrabHandleStyle = DevComponents.DotNetBar.eGrabHandleStyle.Caption;
            barRight.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            this.dockContainerItem1});
            barRight.LayoutType = DevComponents.DotNetBar.eLayoutType.DockContainer;
            barRight.Location = new System.Drawing.Point(3, 0);
            barRight.Name = "barRight";
            barRight.Size = new System.Drawing.Size(247, 544);
            barRight.Stretch = true;
            barRight.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
            barRight.TabIndex = 0;
            barRight.TabStop = false;
            // 
            // rightContainer
            // 
            this.rightContainer.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
            this.rightContainer.Location = new System.Drawing.Point(3, 23);
            this.rightContainer.Name = "rightContainer";
            this.rightContainer.Size = new System.Drawing.Size(241, 518);
            this.rightContainer.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.rightContainer.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.rightContainer.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
            this.rightContainer.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
            this.rightContainer.Style.GradientAngle = 90;
            this.rightContainer.TabIndex = 0;
            // 
            // dockContainerItem1
            // 
            this.dockContainerItem1.Control = this.rightContainer;
            this.dockContainerItem1.Name = "dockContainerItem1";
            this.dockContainerItem1.Text = "导航栏";
            // 
            // dockSite8
            // 
            this.dockSite8.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
            this.dockSite8.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.dockSite8.Location = new System.Drawing.Point(5, 707);
            this.dockSite8.Name = "dockSite8";
            this.dockSite8.Size = new System.Drawing.Size(995, 0);
            this.dockSite8.TabIndex = 10;
            this.dockSite8.TabStop = false;
            // 
            // dockSite5
            // 
            this.dockSite5.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
            this.dockSite5.Dock = System.Windows.Forms.DockStyle.Left;
            this.dockSite5.Location = new System.Drawing.Point(5, 1);
            this.dockSite5.Name = "dockSite5";
            this.dockSite5.Size = new System.Drawing.Size(0, 706);
            this.dockSite5.TabIndex = 7;
            this.dockSite5.TabStop = false;
            // 
            // dockSite6
            // 
            this.dockSite6.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
            this.dockSite6.Dock = System.Windows.Forms.DockStyle.Right;
            this.dockSite6.Location = new System.Drawing.Point(1000, 1);
            this.dockSite6.Name = "dockSite6";
            this.dockSite6.Size = new System.Drawing.Size(0, 706);
            this.dockSite6.TabIndex = 8;
            this.dockSite6.TabStop = false;
            // 
            // dockSite7
            // 
            this.dockSite7.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
            this.dockSite7.Dock = System.Windows.Forms.DockStyle.Top;
            this.dockSite7.Location = new System.Drawing.Point(5, 1);
            this.dockSite7.Name = "dockSite7";
            this.dockSite7.Size = new System.Drawing.Size(995, 0);
            this.dockSite7.TabIndex = 9;
            this.dockSite7.TabStop = false;
            // 
            // dockSite3
            // 
            this.dockSite3.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
            this.dockSite3.Dock = System.Windows.Forms.DockStyle.Top;
            this.dockSite3.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
            this.dockSite3.Location = new System.Drawing.Point(5, 1);
            this.dockSite3.Name = "dockSite3";
            this.dockSite3.Size = new System.Drawing.Size(995, 0);
            this.dockSite3.TabIndex = 5;
            this.dockSite3.TabStop = false;
            // 
            // FrmMainRibbon
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1005, 709);
            this.Controls.Add(this.dockSite9);
            this.Controls.Add(this.rightdockSite);
            this.Controls.Add(this.dockSite1);
            this.Controls.Add(this.ribbonControl1);
            this.Controls.Add(this.bar1);
            this.Controls.Add(this.dockSite3);
            this.Controls.Add(this.dockSite4);
            this.Controls.Add(this.dockSite5);
            this.Controls.Add(this.dockSite6);
            this.Controls.Add(this.dockSite7);
            this.Controls.Add(this.dockSite8);
            this.Name = "FrmMainRibbon";
            this.Text = "供应室追溯系统";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FrmMain_FormClosing);
            this.Load += new System.EventHandler(this.FrmMainRibbon_Load);
            this.ribbonControl1.ResumeLayout(false);
            this.ribbonControl1.PerformLayout();
            this.ribbonPanel1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.bar1)).EndInit();
            this.contextMenuStrip1.ResumeLayout(false);
            this.dockSite9.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.barMainContainer)).EndInit();
            this.rightdockSite.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(barRight)).EndInit();
            barRight.ResumeLayout(false);
            this.ResumeLayout(false);

        }
Пример #51
0
        private void QueryForestByAttri(DevComponents.AdvTree.Node pXZQnode, IMap pMap)
        {
            if (pXZQnode == null)
            {
                return;
            }
            //加进度条 xisheng 2011.06.28
            SysCommon.CProgress vProgress = new SysCommon.CProgress("进度条");
            vProgress.EnableCancel = true;
            vProgress.EnableUserCancel(true);


            vProgress.ShowDescription = true;
            vProgress.FakeProgress    = true;
            vProgress.TopMost         = true;
            vProgress.ShowProgress();
            vProgress.SetProgress("开始查询");
            try
            {
                string strTag  = pXZQnode.Tag.ToString();
                string strCode = pXZQnode.Name;
                if (strTag.ToUpper() == "TOWN")
                {
                    DevComponents.AdvTree.Node pParentNode = pXZQnode.Parent;
                    string strTmpCode = pParentNode.Name;
                    strCode = strTmpCode + strCode.Substring(1, 2);
                }
                string strNodeKey = SysCommon.ModSysSetting.GetLinBanLayerNodeKey(Plugin.ModuleCommon.TmpWorkSpace);
                ILayer pLayer     = SysCommon.ModuleMap.GetLayerByNodeKey(null, pMap, strNodeKey, null, true);
                SysCommon.BottomQueryBar pQueryBar = _hook.QueryBar;
                if (pQueryBar.m_WorkSpace == null)
                {
                    pQueryBar.m_WorkSpace = Plugin.ModuleCommon.TmpWorkSpace;
                }
                if (pQueryBar.ListDataNodeKeys == null)
                {
                    pQueryBar.ListDataNodeKeys = Plugin.ModuleCommon.ListUserdataPriID;
                }
                esriSelectionResultEnum pSelectionResult = esriSelectionResultEnum.esriSelectionResultNew;
                //构造查询过滤器
                IQueryFilter pQueryFilter = new QueryFilterClass();
                //ygc 20130326 根据山西数据格式修改条件合成方式
                if (strTag.ToUpper() == "TOWN")
                {
                    pQueryFilter.WhereClause = "xiang ='" + strCode + "00'";
                }
                else if (strTag.ToUpper() == "County")
                {
                    pQueryFilter.WhereClause = "XIANG = '" + strCode + "'";
                }
                else if (strTag.ToUpper() == "City")
                {
                    pQueryFilter.WhereClause = "shi = '" + strCode + "00'";
                }
                else
                {
                    pQueryFilter.WhereClause = "XIANG like '" + strCode + "%'";
                }

                pQueryBar.m_pMapControl = _hook.MapControl;
                vProgress.SetProgress("获取查询结果...");
                pQueryBar.EmergeQueryData(pLayer as IFeatureLayer, pQueryFilter, vProgress);
                vProgress.Close();
                try
                {
                    DevComponents.DotNetBar.Bar pBar = pQueryBar.Parent.Parent as DevComponents.DotNetBar.Bar;
                    if (pBar != null)
                    {
                        pBar.AutoHide = false;
                        //pBar.SelectedDockTab = 1;
                        int tmpindex = pBar.Items.IndexOf("dockItemDataCheck");
                        pBar.SelectedDockTab = tmpindex;
                    }
                }
                catch
                { }
            }
            catch
            {
                vProgress.Close();
            }
            vProgress = null;
        }