Example #1
0
        //DevExpress.XtraGrid.Columns.GridColumn gridColumn;
        /// <summary>
        /// CJiaRTLookUp 构造函数
        /// </summary>
        public CJiaRTLookUpMoreCol()
        {
            popupControl = new DevExpress.XtraEditors.PopupContainerControl();
            gridData     = new CJiaGrid();
            //gridColumn = new DevExpress.XtraGrid.Columns.GridColumn();
            //
            // popupControl
            //
            this.popupControl.Controls.Add(this.gridData);
            //
            //gridData
            //
            gridData.Dock           = DockStyle.Fill;
            gridData.Name           = "cJiaGrid1";
            gridData.ShowRowNumber  = false;
            gridData.IndicatorWidth = 20;
            //
            //viewData
            //
            viewData = gridData.gridView1;
            //viewData.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            //this.gridColumn});
            viewData.DoubleClick += viewData_DoubleClick;
            viewData.KeyDown     += viewData_KeyDown;
            //gridColumn
            //
            //gridColumn.Name = "gridColumn1";
            //gridColumn.Visible = true;
            //
            // CJiaRTLookUp
            //
            #region CJiaRTLookUp
            Properties.Appearance.Font                   = new System.Drawing.Font("Tahoma", 10F);
            Properties.Appearance.Options.UseFont        = true;
            Properties.Appearance.Options.UseTextOptions = true;
            Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Down)
            });
            Properties.LookAndFeel.SkinName = "Office 2010 Blue";
            Properties.LookAndFeel.UseDefaultLookAndFeel = false;
            Properties.PopupControl     = this.popupControl;
            Properties.PopupFormMinSize = new System.Drawing.Size(200, 200);
            Properties.PopupFormSize    = new System.Drawing.Size(200, 200);
            Properties.TextEditStyle    = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
            Size = new System.Drawing.Size(200, 22);
            Text = "";

            Enter       += CJiaRTLookUp_Enter;
            Popup       += CJiaRTLookUp_Popup;
            KeyDown     += CJiaRTLookUp_KeyDown;
            TextChanged += CJiaRTLookUp_TextChanged;

            #endregion
        }
        public static void AddPopupGridControl(string ControlName,
                                               Size Sizes,
                                               DevExpress.XtraEditors.PopupContainerEdit popedit,
                                               string popupContainerEditString,
                                               DevExpress.XtraGrid.GridControl grid,
                                               DevExpress.XtraGrid.Views.Grid.GridView gridView,
                                               DevExpress.XtraEditors.Controls.TextEditStyles TextStyle)
        {
            try
            {
                DevExpress.XtraEditors.PopupContainerControl popupContainerControl = new DevExpress.XtraEditors.PopupContainerControl();
                popedit.Properties.PopupControl = popupContainerControl;

                //
                // popupContainerControl1
                //
                popupContainerControl.Controls.Add(grid);
                popupContainerControl.Name = "popupContainer_" + ControlName;
                popupContainerControl.Size = Sizes;
                //
                // gridControl1
                //
                grid.Dock = System.Windows.Forms.DockStyle.Fill;
                grid.EmbeddedNavigator.Name = "";
                grid.Location = new System.Drawing.Point(0, 0);
                grid.MainView = gridView;
                grid.Size     = Sizes;
                grid.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { gridView });
                //
                // gridView1
                //
                gridView.GridControl = grid;
                gridView.OptionsFilter.ShowAllTableValuesInFilterPopup = true;
                gridView.OptionsFilter.UseNewCustomFilterDialog        = true;
                gridView.OptionsSelection.EnableAppearanceFocusedCell  = false;
                gridView.OptionsView.HeaderFilterButtonShowMode        = DevExpress.XtraEditors.Controls.FilterButtonShowMode.Button;
                gridView.OptionsView.ShowAutoFilterRow = true;
                gridView.OptionsView.ShowGroupPanel    = false;
                gridView.OptionsView.ShowIndicator     = false;


                popedit.EditValue = popupContainerEditString;
                popedit.Properties.TextEditStyle = TextStyle;
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
Example #3
0
        private void fBtKhuKho_Load(object sender, EventArgs e)
        {
            string sql = "declare @z bit set @z=0 select @z as Chon, MaKho, TenKho, DiaChi from dmkho";

            dmkho = db.GetDataTable(sql);

            DevExpress.XtraEditors.PopupContainerControl popupControl = new DevExpress.XtraEditors.PopupContainerControl();
            Control cKho = new dmKhoControl(ref dmkho);

            popupControl.Size = cKho.Size;// new Size(100, 200);
            popupControl.Controls.Add(cKho);
            cKho.Dock = DockStyle.Fill;
            popupContainerEdit1.Properties.PopupControl = popupControl;
            dmkho.ColumnChanged        += Dmkho_ColumnChanged;
            popupContainerEdit1.Closed += PopupContainerEdit1_Closed;
        }
Example #4
0
        public ucPopupRegionEdit()
        {
            InitializeComponent();

            popupContainerControl      = new DevExpress.XtraEditors.PopupContainerControl();
            popupContainerControl.Size = new Size(336, 208);

            flowLayoutPanel      = new System.Windows.Forms.FlowLayoutPanel();
            flowLayoutPanel.Dock = DockStyle.Fill;

            popupContainerControl.Controls.Add(flowLayoutPanel);

            flowLayoutPanel.AutoScroll = true;

            this.popupContainerEdit1.Properties.PopupControl = popupContainerControl;

            this.popupContainerEdit1.QueryPopUp += new CancelEventHandler(popupContainerEdit1_QueryPopUp);

            this.Resize += new EventHandler(ucPopupRegionEdit_Resize);
            this.Layout += new LayoutEventHandler(ucPopupRegionEdit_Layout);
            //this.Load += new EventHandler(ucPopupRegionEdit_Load);
        }
Example #5
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(MapViewer));
     DevExpress.XtraCharts.XYDiagram xyDiagram1 = new DevExpress.XtraCharts.XYDiagram();
     DevExpress.XtraCharts.Series series1 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SeriesPoint seriesPoint1 = new DevExpress.XtraCharts.SeriesPoint(0);
     DevExpress.XtraCharts.LineSeriesView lineSeriesView1 = new DevExpress.XtraCharts.LineSeriesView();
     DevExpress.XtraCharts.PolygonGradientFillOptions polygonGradientFillOptions1 = new DevExpress.XtraCharts.PolygonGradientFillOptions();
     DevExpress.XtraCharts.PointSeriesLabel pointSeriesLabel1 = new DevExpress.XtraCharts.PointSeriesLabel();
     DevExpress.XtraCharts.PointOptions pointOptions1 = new DevExpress.XtraCharts.PointOptions();
     DevExpress.XtraCharts.LineSeriesView lineSeriesView2 = new DevExpress.XtraCharts.LineSeriesView();
     DevExpress.XtraCharts.PointSeriesLabel pointSeriesLabel2 = new DevExpress.XtraCharts.PointSeriesLabel();
     DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
     this.simpleButton3 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.lblZaxis = new DevExpress.XtraEditors.LabelControl();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.lblYaxis = new DevExpress.XtraEditors.LabelControl();
     this.lblXaxis = new DevExpress.XtraEditors.LabelControl();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.lblCategory = new DevExpress.XtraEditors.LabelControl();
     this.lblDescription = new DevExpress.XtraEditors.LabelControl();
     this.lblName = new DevExpress.XtraEditors.LabelControl();
     this.lblLengthValues = new DevExpress.XtraEditors.LabelControl();
     this.lblLengthBytes = new DevExpress.XtraEditors.LabelControl();
     this.lblSRAMAddress = new DevExpress.XtraEditors.LabelControl();
     this.lblFlashAddress = new DevExpress.XtraEditors.LabelControl();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.panel1 = new System.Windows.Forms.Panel();
     this.popupContainerControl1 = new DevExpress.XtraEditors.PopupContainerControl();
     this.gridControl1 = new DevExpress.XtraGrid.GridControl();
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.copySelectedCellsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.pasteSelectedCellsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.inOrgininalPositionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.atCurrentlySelectedLocationToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.editXaxisSymbolToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.editYaxisSymbolToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.smoothSelectionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
     this.simpleButton4 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton5 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton6 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton7 = new DevExpress.XtraEditors.SimpleButton();
     this.surfaceGraphViewer1 = new SurfaceGraphViewer();
     this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.trackBarControl1 = new DevExpress.XtraEditors.TrackBarControl();
     this.chartControl1 = new DevExpress.XtraCharts.ChartControl();
     this.timer1 = new System.Windows.Forms.Timer(this.components);
     this.timer2 = new System.Windows.Forms.Timer(this.components);
     this.toolTipController1 = new DevExpress.Utils.ToolTipController(this.components);
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton2 = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButton4 = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton5 = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton6 = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton7 = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripLabel3 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripComboBox3 = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripComboBox2 = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripLabel2 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripComboBox1 = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripTextBox1 = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripButton3 = new System.Windows.Forms.ToolStripButton();
     this.timer3 = new System.Windows.Forms.Timer(this.components);
     this.timer4 = new System.Windows.Forms.Timer(this.components);
     this.popupContainerEdit1 = new DevExpress.XtraEditors.PopupContainerEdit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.popupContainerControl1)).BeginInit();
     this.popupContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     this.contextMenuStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.xtraTabPage1.SuspendLayout();
     this.xtraTabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.trackBarControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.trackBarControl1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(lineSeriesView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(lineSeriesView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel2)).BeginInit();
     this.toolStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.popupContainerEdit1.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // simpleButton3
     //
     this.simpleButton3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.simpleButton3.Enabled = false;
     this.simpleButton3.Location = new System.Drawing.Point(14, 628);
     this.simpleButton3.Name = "simpleButton3";
     this.simpleButton3.Size = new System.Drawing.Size(92, 23);
     this.simpleButton3.TabIndex = 9;
     this.simpleButton3.Text = "Undo changes";
     this.simpleButton3.Click += new System.EventHandler(this.simpleButton3_Click);
     //
     // simpleButton2
     //
     this.simpleButton2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton2.Enabled = false;
     this.simpleButton2.Location = new System.Drawing.Point(715, 628);
     this.simpleButton2.Name = "simpleButton2";
     this.simpleButton2.Size = new System.Drawing.Size(75, 23);
     this.simpleButton2.TabIndex = 8;
     this.simpleButton2.Text = "Save";
     this.simpleButton2.Click += new System.EventHandler(this.simpleButton2_Click);
     //
     // simpleButton1
     //
     this.simpleButton1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton1.Location = new System.Drawing.Point(796, 628);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(75, 23);
     this.simpleButton1.TabIndex = 7;
     this.simpleButton1.Text = "Close";
     this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
     //
     // groupControl2
     //
     this.toolTipController1.SetAllowHtmlText(this.groupControl2, DevExpress.Utils.DefaultBoolean.False);
     this.groupControl2.Controls.Add(this.lblZaxis);
     this.groupControl2.Controls.Add(this.labelControl13);
     this.groupControl2.Controls.Add(this.lblYaxis);
     this.groupControl2.Controls.Add(this.lblXaxis);
     this.groupControl2.Controls.Add(this.labelControl10);
     this.groupControl2.Controls.Add(this.labelControl11);
     this.groupControl2.Controls.Add(this.lblCategory);
     this.groupControl2.Controls.Add(this.lblDescription);
     this.groupControl2.Controls.Add(this.lblName);
     this.groupControl2.Controls.Add(this.lblLengthValues);
     this.groupControl2.Controls.Add(this.lblLengthBytes);
     this.groupControl2.Controls.Add(this.lblSRAMAddress);
     this.groupControl2.Controls.Add(this.lblFlashAddress);
     this.groupControl2.Controls.Add(this.labelControl7);
     this.groupControl2.Controls.Add(this.labelControl6);
     this.groupControl2.Controls.Add(this.labelControl5);
     this.groupControl2.Controls.Add(this.labelControl4);
     this.groupControl2.Controls.Add(this.labelControl3);
     this.groupControl2.Controls.Add(this.labelControl2);
     this.groupControl2.Controls.Add(this.labelControl1);
     this.groupControl2.Location = new System.Drawing.Point(3, 3);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(870, 90);
     this.toolTipController1.SetSuperTip(this.groupControl2, null);
     this.groupControl2.TabIndex = 6;
     this.groupControl2.Text = "Symbol details";
     this.groupControl2.Paint += new System.Windows.Forms.PaintEventHandler(this.groupControl2_Paint);
     //
     // lblZaxis
     //
     this.lblZaxis.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblZaxis.Appearance.Options.UseForeColor = true;
     this.lblZaxis.Location = new System.Drawing.Point(488, 30);
     this.lblZaxis.Name = "lblZaxis";
     this.lblZaxis.Size = new System.Drawing.Size(12, 13);
     this.lblZaxis.TabIndex = 19;
     this.lblZaxis.Text = "...";
     //
     // labelControl13
     //
     this.labelControl13.Location = new System.Drawing.Point(430, 30);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Size = new System.Drawing.Size(29, 13);
     this.labelControl13.TabIndex = 18;
     this.labelControl13.Text = "Z-axis";
     //
     // lblYaxis
     //
     this.lblYaxis.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblYaxis.Appearance.Options.UseForeColor = true;
     this.lblYaxis.Location = new System.Drawing.Point(350, 62);
     this.lblYaxis.Name = "lblYaxis";
     this.lblYaxis.Size = new System.Drawing.Size(12, 13);
     this.lblYaxis.TabIndex = 17;
     this.lblYaxis.Text = "...";
     //
     // lblXaxis
     //
     this.lblXaxis.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblXaxis.Appearance.Options.UseForeColor = true;
     this.lblXaxis.Location = new System.Drawing.Point(350, 30);
     this.lblXaxis.Name = "lblXaxis";
     this.lblXaxis.Size = new System.Drawing.Size(12, 13);
     this.lblXaxis.TabIndex = 16;
     this.lblXaxis.Text = "...";
     //
     // labelControl10
     //
     this.labelControl10.Location = new System.Drawing.Point(305, 62);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(29, 13);
     this.labelControl10.TabIndex = 15;
     this.labelControl10.Text = "Y-axis";
     //
     // labelControl11
     //
     this.labelControl11.Location = new System.Drawing.Point(305, 30);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(29, 13);
     this.labelControl11.TabIndex = 14;
     this.labelControl11.Text = "X-axis";
     //
     // lblCategory
     //
     this.lblCategory.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblCategory.Appearance.Options.UseForeColor = true;
     this.lblCategory.Location = new System.Drawing.Point(488, 62);
     this.lblCategory.Name = "lblCategory";
     this.lblCategory.Size = new System.Drawing.Size(12, 13);
     this.lblCategory.TabIndex = 13;
     this.lblCategory.Text = "...";
     //
     // lblDescription
     //
     this.lblDescription.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblDescription.Appearance.Options.UseForeColor = true;
     this.lblDescription.Location = new System.Drawing.Point(671, 62);
     this.lblDescription.Name = "lblDescription";
     this.lblDescription.Size = new System.Drawing.Size(12, 13);
     this.lblDescription.TabIndex = 12;
     this.lblDescription.Text = "...";
     //
     // lblName
     //
     this.lblName.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblName.Appearance.Options.UseForeColor = true;
     this.lblName.Location = new System.Drawing.Point(671, 30);
     this.lblName.Name = "lblName";
     this.lblName.Size = new System.Drawing.Size(12, 13);
     this.lblName.TabIndex = 11;
     this.lblName.Text = "...";
     //
     // lblLengthValues
     //
     this.lblLengthValues.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblLengthValues.Appearance.Options.UseForeColor = true;
     this.lblLengthValues.Location = new System.Drawing.Point(251, 62);
     this.lblLengthValues.Name = "lblLengthValues";
     this.lblLengthValues.Size = new System.Drawing.Size(36, 13);
     this.lblLengthValues.TabIndex = 10;
     this.lblLengthValues.Text = "0x0000";
     //
     // lblLengthBytes
     //
     this.lblLengthBytes.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblLengthBytes.Appearance.Options.UseForeColor = true;
     this.lblLengthBytes.Location = new System.Drawing.Point(251, 30);
     this.lblLengthBytes.Name = "lblLengthBytes";
     this.lblLengthBytes.Size = new System.Drawing.Size(36, 13);
     this.lblLengthBytes.TabIndex = 9;
     this.lblLengthBytes.Text = "0x0000";
     //
     // lblSRAMAddress
     //
     this.lblSRAMAddress.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblSRAMAddress.Appearance.Options.UseForeColor = true;
     this.lblSRAMAddress.Location = new System.Drawing.Point(100, 62);
     this.lblSRAMAddress.Name = "lblSRAMAddress";
     this.lblSRAMAddress.Size = new System.Drawing.Size(36, 13);
     this.lblSRAMAddress.TabIndex = 8;
     this.lblSRAMAddress.Text = "0x0000";
     //
     // lblFlashAddress
     //
     this.lblFlashAddress.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblFlashAddress.Appearance.Options.UseForeColor = true;
     this.lblFlashAddress.Location = new System.Drawing.Point(100, 30);
     this.lblFlashAddress.Name = "lblFlashAddress";
     this.lblFlashAddress.Size = new System.Drawing.Size(48, 13);
     this.lblFlashAddress.TabIndex = 7;
     this.lblFlashAddress.Text = "0x000000";
     //
     // labelControl7
     //
     this.labelControl7.Location = new System.Drawing.Point(430, 62);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(45, 13);
     this.labelControl7.TabIndex = 6;
     this.labelControl7.Text = "Category";
     //
     // labelControl6
     //
     this.labelControl6.Location = new System.Drawing.Point(598, 62);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(53, 13);
     this.labelControl6.TabIndex = 5;
     this.labelControl6.Text = "Description";
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(598, 30);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(27, 13);
     this.labelControl5.TabIndex = 4;
     this.labelControl5.Text = "Name";
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(164, 62);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(75, 13);
     this.labelControl4.TabIndex = 3;
     this.labelControl4.Text = "Length (values)";
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(164, 30);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(71, 13);
     this.labelControl3.TabIndex = 2;
     this.labelControl3.Text = "Length (bytes)";
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(18, 62);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(69, 13);
     this.labelControl2.TabIndex = 1;
     this.labelControl2.Text = "SRAM address";
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(18, 30);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(66, 13);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "Flash address";
     //
     // groupControl1
     //
     this.toolTipController1.SetAllowHtmlText(this.groupControl1, DevExpress.Utils.DefaultBoolean.False);
     this.groupControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl1.Controls.Add(this.splitContainer1);
     this.groupControl1.Location = new System.Drawing.Point(3, 28);
     this.groupControl1.LookAndFeel.SkinName = "Black";
     this.groupControl1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(870, 594);
     this.toolTipController1.SetSuperTip(this.groupControl1, null);
     this.groupControl1.TabIndex = 5;
     this.groupControl1.Text = "Symbol data";
     this.groupControl1.DoubleClick += new System.EventHandler(this.groupControl1_DoubleClick);
     this.groupControl1.Paint += new System.Windows.Forms.PaintEventHandler(this.groupControl1_Paint);
     //
     // splitContainer1
     //
     this.toolTipController1.SetAllowHtmlText(this.splitContainer1, DevExpress.Utils.DefaultBoolean.False);
     this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location = new System.Drawing.Point(2, 20);
     this.splitContainer1.Name = "splitContainer1";
     this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer1.Panel1
     //
     this.toolTipController1.SetAllowHtmlText(this.splitContainer1.Panel1, DevExpress.Utils.DefaultBoolean.False);
     this.splitContainer1.Panel1.Controls.Add(this.panel1);
     this.toolTipController1.SetSuperTip(this.splitContainer1.Panel1, null);
     //
     // splitContainer1.Panel2
     //
     this.toolTipController1.SetAllowHtmlText(this.splitContainer1.Panel2, DevExpress.Utils.DefaultBoolean.False);
     this.splitContainer1.Panel2.Controls.Add(this.xtraTabControl1);
     this.toolTipController1.SetSuperTip(this.splitContainer1.Panel2, null);
     this.splitContainer1.Size = new System.Drawing.Size(866, 572);
     this.splitContainer1.SplitterDistance = 284;
     this.toolTipController1.SetSuperTip(this.splitContainer1, null);
     this.splitContainer1.TabIndex = 1;
     this.splitContainer1.MouseLeave += new System.EventHandler(this.splitContainer1_MouseLeave);
     this.splitContainer1.SplitterMoved += new System.Windows.Forms.SplitterEventHandler(this.splitContainer1_SplitterMoved);
     this.splitContainer1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.splitContainer1_MouseDown);
     this.splitContainer1.MouseUp += new System.Windows.Forms.MouseEventHandler(this.splitContainer1_MouseUp);
     //
     // panel1
     //
     this.toolTipController1.SetAllowHtmlText(this.panel1, DevExpress.Utils.DefaultBoolean.False);
     this.panel1.Controls.Add(this.popupContainerControl1);
     this.panel1.Controls.Add(this.gridControl1);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(866, 284);
     this.toolTipController1.SetSuperTip(this.panel1, null);
     this.panel1.TabIndex = 2;
     //
     // popupContainerControl1
     //
     this.toolTipController1.SetAllowHtmlText(this.popupContainerControl1, DevExpress.Utils.DefaultBoolean.False);
     this.popupContainerControl1.Controls.Add(this.groupControl2);
     this.popupContainerControl1.Location = new System.Drawing.Point(3, 72);
     this.popupContainerControl1.Name = "popupContainerControl1";
     this.popupContainerControl1.Size = new System.Drawing.Size(878, 97);
     this.toolTipController1.SetSuperTip(this.popupContainerControl1, null);
     this.popupContainerControl1.TabIndex = 1;
     //
     // gridControl1
     //
     this.gridControl1.ContextMenuStrip = this.contextMenuStrip1;
     this.gridControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControl1.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.gridControl1.Location = new System.Drawing.Point(0, 0);
     this.gridControl1.LookAndFeel.SkinName = "Black";
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name = "gridControl1";
     this.gridControl1.Size = new System.Drawing.Size(866, 284);
     this.gridControl1.TabIndex = 0;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     //
     // contextMenuStrip1
     //
     this.toolTipController1.SetAllowHtmlText(this.contextMenuStrip1, DevExpress.Utils.DefaultBoolean.False);
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.copySelectedCellsToolStripMenuItem,
     this.pasteSelectedCellsToolStripMenuItem,
     this.editXaxisSymbolToolStripMenuItem,
     this.editYaxisSymbolToolStripMenuItem,
     this.smoothSelectionToolStripMenuItem});
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(179, 114);
     this.toolTipController1.SetSuperTip(this.contextMenuStrip1, null);
     this.contextMenuStrip1.Opening += new System.ComponentModel.CancelEventHandler(this.contextMenuStrip1_Opening);
     //
     // copySelectedCellsToolStripMenuItem
     //
     this.copySelectedCellsToolStripMenuItem.Name = "copySelectedCellsToolStripMenuItem";
     this.copySelectedCellsToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.copySelectedCellsToolStripMenuItem.Text = "Copy selected cells";
     this.copySelectedCellsToolStripMenuItem.Click += new System.EventHandler(this.copySelectedCellsToolStripMenuItem_Click);
     //
     // pasteSelectedCellsToolStripMenuItem
     //
     this.pasteSelectedCellsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.inOrgininalPositionToolStripMenuItem,
     this.atCurrentlySelectedLocationToolStripMenuItem});
     this.pasteSelectedCellsToolStripMenuItem.Name = "pasteSelectedCellsToolStripMenuItem";
     this.pasteSelectedCellsToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.pasteSelectedCellsToolStripMenuItem.Text = "Paste selected cells";
     //
     // inOrgininalPositionToolStripMenuItem
     //
     this.inOrgininalPositionToolStripMenuItem.Name = "inOrgininalPositionToolStripMenuItem";
     this.inOrgininalPositionToolStripMenuItem.Size = new System.Drawing.Size(225, 22);
     this.inOrgininalPositionToolStripMenuItem.Text = "At original position";
     this.inOrgininalPositionToolStripMenuItem.Click += new System.EventHandler(this.inOrgininalPositionToolStripMenuItem_Click);
     //
     // atCurrentlySelectedLocationToolStripMenuItem
     //
     this.atCurrentlySelectedLocationToolStripMenuItem.Name = "atCurrentlySelectedLocationToolStripMenuItem";
     this.atCurrentlySelectedLocationToolStripMenuItem.Size = new System.Drawing.Size(225, 22);
     this.atCurrentlySelectedLocationToolStripMenuItem.Text = "At currently selected location";
     this.atCurrentlySelectedLocationToolStripMenuItem.Click += new System.EventHandler(this.atCurrentlySelectedLocationToolStripMenuItem_Click);
     //
     // editXaxisSymbolToolStripMenuItem
     //
     this.editXaxisSymbolToolStripMenuItem.Name = "editXaxisSymbolToolStripMenuItem";
     this.editXaxisSymbolToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.editXaxisSymbolToolStripMenuItem.Text = "Edit x-axis";
     this.editXaxisSymbolToolStripMenuItem.Click += new System.EventHandler(this.editXaxisSymbolToolStripMenuItem_Click);
     //
     // editYaxisSymbolToolStripMenuItem
     //
     this.editYaxisSymbolToolStripMenuItem.Name = "editYaxisSymbolToolStripMenuItem";
     this.editYaxisSymbolToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.editYaxisSymbolToolStripMenuItem.Text = "Edit y-axis";
     this.editYaxisSymbolToolStripMenuItem.Click += new System.EventHandler(this.editYaxisSymbolToolStripMenuItem_Click);
     //
     // smoothSelectionToolStripMenuItem
     //
     this.smoothSelectionToolStripMenuItem.Name = "smoothSelectionToolStripMenuItem";
     this.smoothSelectionToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.smoothSelectionToolStripMenuItem.Text = "Smooth selection";
     this.smoothSelectionToolStripMenuItem.Click += new System.EventHandler(this.smoothSelectionToolStripMenuItem_Click);
     //
     // gridView1
     //
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsCustomization.AllowColumnMoving = false;
     this.gridView1.OptionsCustomization.AllowFilter = false;
     this.gridView1.OptionsCustomization.AllowGroup = false;
     this.gridView1.OptionsCustomization.AllowSort = false;
     this.gridView1.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridView1.OptionsSelection.EnableAppearanceFocusedRow = false;
     this.gridView1.OptionsSelection.MultiSelect = true;
     this.gridView1.OptionsSelection.MultiSelectMode = DevExpress.XtraGrid.Views.Grid.GridMultiSelectMode.CellSelect;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     this.gridView1.SelectionChanged += new DevExpress.Data.SelectionChangedEventHandler(this.gridView1_SelectionChanged_1);
     this.gridView1.ValidatingEditor += new DevExpress.XtraEditors.Controls.BaseContainerValidateEditorEventHandler(this.gridView1_ValidatingEditor);
     this.gridView1.CustomDrawRowIndicator += new DevExpress.XtraGrid.Views.Grid.RowIndicatorCustomDrawEventHandler(this.gridView1_CustomDrawRowIndicator);
     this.gridView1.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridView1_CellValueChanged);
     this.gridView1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.gridView1_KeyDown);
     this.gridView1.CellValueChanging += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridView1_CellValueChanging);
     this.gridView1.CustomDrawCell += new DevExpress.XtraGrid.Views.Base.RowCellCustomDrawEventHandler(this.gridView1_CustomDrawCell);
     this.gridView1.ShownEditor += new System.EventHandler(this.gridView1_ShownEditor);
     this.gridView1.RowUpdated += new DevExpress.XtraGrid.Views.Base.RowObjectEventHandler(this.gridView1_RowUpdated);
     this.gridView1.ShowingEditor += new System.ComponentModel.CancelEventHandler(this.gridView1_ShowingEditor);
     this.gridView1.HiddenEditor += new System.EventHandler(this.gridView1_HiddenEditor);
     this.gridView1.CustomDrawColumnHeader += new DevExpress.XtraGrid.Views.Grid.ColumnHeaderCustomDrawEventHandler(this.gridView1_CustomDrawColumnHeader);
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraTabControl1.HeaderLocation = DevExpress.XtraTab.TabHeaderLocation.Left;
     this.xtraTabControl1.HeaderOrientation = DevExpress.XtraTab.TabOrientation.Vertical;
     this.xtraTabControl1.Location = new System.Drawing.Point(0, 0);
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.SelectedTabPage = this.xtraTabPage1;
     this.xtraTabControl1.Size = new System.Drawing.Size(866, 284);
     this.xtraTabControl1.TabIndex = 2;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPage1,
     this.xtraTabPage2});
     this.xtraTabControl1.SelectedPageChanged += new DevExpress.XtraTab.TabPageChangedEventHandler(this.xtraTabControl1_SelectedPageChanged);
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Controls.Add(this.simpleButton4);
     this.xtraTabPage1.Controls.Add(this.simpleButton5);
     this.xtraTabPage1.Controls.Add(this.simpleButton6);
     this.xtraTabPage1.Controls.Add(this.simpleButton7);
     this.xtraTabPage1.Controls.Add(this.surfaceGraphViewer1);
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(836, 275);
     this.xtraTabPage1.Text = "3D Graph";
     //
     // simpleButton4
     //
     this.simpleButton4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton4.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton4.Image")));
     this.simpleButton4.Location = new System.Drawing.Point(814, 60);
     this.simpleButton4.Name = "simpleButton4";
     this.simpleButton4.Size = new System.Drawing.Size(23, 23);
     this.simpleButton4.TabIndex = 12;
     this.simpleButton4.ToolTip = "Turn graph counter clockwise";
     this.simpleButton4.Click += new System.EventHandler(this.simpleButton4_Click);
     //
     // simpleButton5
     //
     this.simpleButton5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton5.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton5.Image")));
     this.simpleButton5.Location = new System.Drawing.Point(814, 89);
     this.simpleButton5.Name = "simpleButton5";
     this.simpleButton5.Size = new System.Drawing.Size(23, 23);
     this.simpleButton5.TabIndex = 11;
     this.simpleButton5.ToolTip = "Turn graph clockwise";
     this.simpleButton5.Click += new System.EventHandler(this.simpleButton5_Click);
     //
     // simpleButton6
     //
     this.simpleButton6.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton6.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton6.Image")));
     this.simpleButton6.Location = new System.Drawing.Point(814, 32);
     this.simpleButton6.Name = "simpleButton6";
     this.simpleButton6.Size = new System.Drawing.Size(23, 23);
     this.simpleButton6.TabIndex = 10;
     this.simpleButton6.ToolTip = "Zoom out";
     this.simpleButton6.Click += new System.EventHandler(this.simpleButton6_Click);
     //
     // simpleButton7
     //
     this.simpleButton7.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton7.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton7.Image")));
     this.simpleButton7.Location = new System.Drawing.Point(814, 3);
     this.simpleButton7.Name = "simpleButton7";
     this.simpleButton7.Size = new System.Drawing.Size(23, 23);
     this.simpleButton7.TabIndex = 9;
     this.simpleButton7.ToolTip = "Zoom in";
     this.simpleButton7.Click += new System.EventHandler(this.simpleButton7_Click);
     //
     // surfaceGraphViewer1
     //
     this.toolTipController1.SetAllowHtmlText(this.surfaceGraphViewer1, DevExpress.Utils.DefaultBoolean.False);
     this.surfaceGraphViewer1.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.surfaceGraphViewer1.IsRedWhite = false;
     this.surfaceGraphViewer1.IsSixteenbit = false;
     this.surfaceGraphViewer1.IsUpsideDown = false;
     this.surfaceGraphViewer1.Location = new System.Drawing.Point(0, 0);
     this.surfaceGraphViewer1.Map_compare_content = null;
     this.surfaceGraphViewer1.Map_content = null;
     this.surfaceGraphViewer1.Map_length = 0;
     this.surfaceGraphViewer1.Map_name = "";
     this.surfaceGraphViewer1.Map_original_content = null;
     this.surfaceGraphViewer1.Name = "surfaceGraphViewer1";
     this.surfaceGraphViewer1.NumberOfColumns = 8;
     this.surfaceGraphViewer1.Pan_x = 45;
     this.surfaceGraphViewer1.Pan_y = 77;
     this.surfaceGraphViewer1.Pov_d = 0.6;
     this.surfaceGraphViewer1.Pov_x = 30;
     this.surfaceGraphViewer1.Pov_y = 56;
     this.surfaceGraphViewer1.Pov_z = 21;
     this.surfaceGraphViewer1.Size = new System.Drawing.Size(808, 275);
     this.toolTipController1.SetSuperTip(this.surfaceGraphViewer1, null);
     this.surfaceGraphViewer1.TabIndex = 0;
     this.surfaceGraphViewer1.X_axis = null;
     this.surfaceGraphViewer1.X_axis_descr = "";
     this.surfaceGraphViewer1.Y_axis = null;
     this.surfaceGraphViewer1.Y_axis_descr = "";
     this.surfaceGraphViewer1.Z_axis = null;
     this.surfaceGraphViewer1.Z_axis_descr = "";
     //
     // xtraTabPage2
     //
     this.xtraTabPage2.Controls.Add(this.labelControl9);
     this.xtraTabPage2.Controls.Add(this.labelControl8);
     this.xtraTabPage2.Controls.Add(this.trackBarControl1);
     this.xtraTabPage2.Controls.Add(this.chartControl1);
     this.xtraTabPage2.Name = "xtraTabPage2";
     this.xtraTabPage2.Size = new System.Drawing.Size(836, 275);
     this.xtraTabPage2.Text = "2D Graph";
     //
     // labelControl9
     //
     this.labelControl9.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl9.AutoEllipsis = true;
     this.labelControl9.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl9.Location = new System.Drawing.Point(645, 201);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(188, 34);
     this.labelControl9.TabIndex = 4;
     this.labelControl9.Text = "MAP";
     //
     // labelControl8
     //
     this.labelControl8.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.labelControl8.AutoEllipsis = true;
     this.labelControl8.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl8.Location = new System.Drawing.Point(6, 201);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(104, 34);
     this.labelControl8.TabIndex = 3;
     this.labelControl8.Text = "MAP values";
     //
     // trackBarControl1
     //
     this.trackBarControl1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.trackBarControl1.EditValue = null;
     this.trackBarControl1.Location = new System.Drawing.Point(125, 201);
     this.trackBarControl1.Name = "trackBarControl1";
     this.trackBarControl1.Size = new System.Drawing.Size(500, 45);
     this.trackBarControl1.TabIndex = 2;
     this.trackBarControl1.ValueChanged += new System.EventHandler(this.trackBarControl1_ValueChanged);
     //
     // chartControl1
     //
     this.toolTipController1.SetAllowHtmlText(this.chartControl1, DevExpress.Utils.DefaultBoolean.False);
     this.chartControl1.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.chartControl1.CacheToMemory = true;
     xyDiagram1.AxisX.VisibleInPanesSerializable = "-1";
     xyDiagram1.AxisX.Range.SideMarginsEnabled = false;
     xyDiagram1.AxisX.Range.ScrollingRange.SideMarginsEnabled = true;
     xyDiagram1.AxisY.VisibleInPanesSerializable = "-1";
     xyDiagram1.AxisY.Range.SideMarginsEnabled = false;
     xyDiagram1.AxisY.Range.ScrollingRange.SideMarginsEnabled = true;
     this.chartControl1.Diagram = xyDiagram1;
     this.chartControl1.Legend.Border.Visible = false;
     this.chartControl1.Location = new System.Drawing.Point(3, 3);
     this.chartControl1.Name = "chartControl1";
     this.chartControl1.RefreshDataOnRepaint = false;
     this.chartControl1.RuntimeHitTesting = false;
     this.chartControl1.RuntimeSeriesSelectionMode = DevExpress.XtraCharts.SeriesSelectionMode.Point;
     series1.Name = "Values";
     series1.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
     seriesPoint1});
     lineSeriesView1.LineMarkerOptions.Size = 8;
     lineSeriesView1.LineMarkerOptions.FillStyle.FillMode = DevExpress.XtraCharts.FillMode.Gradient;
     polygonGradientFillOptions1.Color2 = System.Drawing.Color.Gold;
     lineSeriesView1.LineMarkerOptions.FillStyle.Options = polygonGradientFillOptions1;
     lineSeriesView1.Color = System.Drawing.Color.DarkGoldenrod;
     series1.View = lineSeriesView1;
     series1.ArgumentDataMember = "X";
     series1.ArgumentScaleType = DevExpress.XtraCharts.ScaleType.Numerical;
     pointSeriesLabel1.Angle = 90;
     pointSeriesLabel1.TextColor = System.Drawing.Color.MidnightBlue;
     pointSeriesLabel1.Font = new System.Drawing.Font("Tahoma", 6F, System.Drawing.FontStyle.Bold);
     pointSeriesLabel1.Border.Visible = false;
     pointSeriesLabel1.Antialiasing = true;
     pointSeriesLabel1.LineVisible = true;
     series1.Label = pointSeriesLabel1;
     pointOptions1.PointView = DevExpress.XtraCharts.PointView.ArgumentAndValues;
     series1.PointOptions = pointOptions1;
     this.chartControl1.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
     series1};
     this.chartControl1.SeriesTemplate.View = lineSeriesView2;
     pointSeriesLabel2.LineVisible = true;
     this.chartControl1.SeriesTemplate.Label = pointSeriesLabel2;
     this.chartControl1.Size = new System.Drawing.Size(830, 185);
     this.toolTipController1.SetSuperTip(this.chartControl1, null);
     this.chartControl1.TabIndex = 1;
     this.chartControl1.Visible = false;
     this.chartControl1.CustomDrawSeriesPoint += new DevExpress.XtraCharts.CustomDrawSeriesPointEventHandler(this.chartControl1_CustomDrawSeriesPoint);
     this.chartControl1.MouseUp += new System.Windows.Forms.MouseEventHandler(this.chartControl1_MouseUp);
     this.chartControl1.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.chartControl1_MouseDoubleClick);
     this.chartControl1.MouseMove += new System.Windows.Forms.MouseEventHandler(this.chartControl1_MouseMove);
     this.chartControl1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.chartControl1_MouseDown);
     this.chartControl1.ObjectHotTracked += new DevExpress.XtraCharts.HotTrackEventHandler(this.chartControl1_ObjectHotTracked);
     this.chartControl1.CustomDrawSeries += new DevExpress.XtraCharts.CustomDrawSeriesEventHandler(this.chartControl1_CustomDrawSeries);
     this.chartControl1.Click += new System.EventHandler(this.chartControl1_Click);
     //
     // timer1
     //
     this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
     //
     // timer2
     //
     this.timer2.Tick += new System.EventHandler(this.timer2_Tick);
     //
     // toolTipController1
     //
     this.toolTipController1.Rounded = true;
     //
     // toolStrip1
     //
     this.toolTipController1.SetAllowHtmlText(this.toolStrip1, DevExpress.Utils.DefaultBoolean.False);
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripButton1,
     this.toolStripButton2,
     this.toolStripSeparator3,
     this.toolStripButton4,
     this.toolStripButton5,
     this.toolStripButton6,
     this.toolStripButton7,
     this.toolStripSeparator1,
     this.toolStripLabel3,
     this.toolStripComboBox3,
     this.toolStripSeparator2,
     this.toolStripLabel1,
     this.toolStripComboBox2,
     this.toolStripLabel2,
     this.toolStripComboBox1,
     this.toolStripTextBox1,
     this.toolStripButton3});
     this.toolStrip1.Location = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Size = new System.Drawing.Size(876, 25);
     this.toolTipController1.SetSuperTip(this.toolStrip1, null);
     this.toolStrip1.TabIndex = 10;
     this.toolStrip1.Text = "toolStrip1";
     //
     // toolStripButton1
     //
     this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
     this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton1.Name = "toolStripButton1";
     this.toolStripButton1.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton1.Text = "Toggle graph section";
     this.toolStripButton1.Click += new System.EventHandler(this.toolStripButton1_Click);
     //
     // toolStripButton2
     //
     this.toolStripButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     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(23, 22);
     this.toolStripButton2.Text = "Toggle hexview";
     this.toolStripButton2.Click += new System.EventHandler(this.toolStripButton2_Click);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripButton4
     //
     this.toolStripButton4.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton4.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton4.Image")));
     this.toolStripButton4.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton4.Name = "toolStripButton4";
     this.toolStripButton4.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton4.Text = "Maximize graph";
     this.toolStripButton4.Click += new System.EventHandler(this.toolStripButton4_Click);
     //
     // toolStripButton5
     //
     this.toolStripButton5.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton5.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton5.Image")));
     this.toolStripButton5.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton5.Name = "toolStripButton5";
     this.toolStripButton5.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton5.Text = "Maximize table";
     this.toolStripButton5.Click += new System.EventHandler(this.toolStripButton5_Click);
     //
     // toolStripButton6
     //
     this.toolStripButton6.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton6.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton6.Image")));
     this.toolStripButton6.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton6.Name = "toolStripButton6";
     this.toolStripButton6.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton6.Text = "Maximize window";
     this.toolStripButton6.Click += new System.EventHandler(this.toolStripButton6_Click);
     //
     // toolStripButton7
     //
     this.toolStripButton7.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton7.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton7.Image")));
     this.toolStripButton7.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton7.Name = "toolStripButton7";
     this.toolStripButton7.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton7.Text = "Toggle graph/map";
     this.toolStripButton7.Click += new System.EventHandler(this.toolStripButton7_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripLabel3
     //
     this.toolStripLabel3.Name = "toolStripLabel3";
     this.toolStripLabel3.Size = new System.Drawing.Size(51, 22);
     this.toolStripLabel3.Text = "Viewtype";
     //
     // toolStripComboBox3
     //
     this.toolStripComboBox3.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
     this.toolStripComboBox3.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.toolStripComboBox3.Items.AddRange(new object[] {
     "Hex view ",
     "Decimal view ",
     "Easy view"});
     this.toolStripComboBox3.Name = "toolStripComboBox3";
     this.toolStripComboBox3.Size = new System.Drawing.Size(160, 25);
     this.toolStripComboBox3.SelectedIndexChanged += new System.EventHandler(this.toolStripComboBox3_SelectedIndexChanged);
     this.toolStripComboBox3.KeyDown += new System.Windows.Forms.KeyEventHandler(this.toolStripComboBox3_KeyDown);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripLabel1
     //
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Size = new System.Drawing.Size(77, 22);
     this.toolStripLabel1.Text = "Axis lock mode";
     //
     // toolStripComboBox2
     //
     this.toolStripComboBox2.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
     this.toolStripComboBox2.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.toolStripComboBox2.Items.AddRange(new object[] {
     "Autoscale",
     "Lock to peak in maps",
     "Lock to map limit"});
     this.toolStripComboBox2.Name = "toolStripComboBox2";
     this.toolStripComboBox2.Size = new System.Drawing.Size(121, 25);
     this.toolStripComboBox2.SelectedIndexChanged += new System.EventHandler(this.toolStripComboBox2_SelectedIndexChanged);
     //
     // toolStripLabel2
     //
     this.toolStripLabel2.Name = "toolStripLabel2";
     this.toolStripLabel2.Size = new System.Drawing.Size(67, 22);
     this.toolStripLabel2.Text = "Mathematics";
     //
     // toolStripComboBox1
     //
     this.toolStripComboBox1.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
     this.toolStripComboBox1.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.toolStripComboBox1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.toolStripComboBox1.Items.AddRange(new object[] {
     "Addition",
     "Multiply",
     "Divide",
     "Fill"});
     this.toolStripComboBox1.Name = "toolStripComboBox1";
     this.toolStripComboBox1.Size = new System.Drawing.Size(121, 25);
     //
     // toolStripTextBox1
     //
     this.toolStripTextBox1.Name = "toolStripTextBox1";
     this.toolStripTextBox1.Size = new System.Drawing.Size(60, 25);
     this.toolStripTextBox1.Text = "2";
     this.toolStripTextBox1.TextBoxTextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // toolStripButton3
     //
     this.toolStripButton3.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton3.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton3.Image")));
     this.toolStripButton3.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton3.Name = "toolStripButton3";
     this.toolStripButton3.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton3.Text = "Execute";
     this.toolStripButton3.Click += new System.EventHandler(this.toolStripButton3_Click);
     //
     // timer3
     //
     this.timer3.Tick += new System.EventHandler(this.timer3_Tick);
     //
     // timer4
     //
     this.timer4.Enabled = true;
     this.timer4.Interval = 500;
     this.timer4.Tick += new System.EventHandler(this.timer4_Tick);
     //
     // popupContainerEdit1
     //
     this.popupContainerEdit1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.popupContainerEdit1.Location = new System.Drawing.Point(125, 631);
     this.popupContainerEdit1.Name = "popupContainerEdit1";
     this.popupContainerEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.popupContainerEdit1.Properties.PopupControl = this.popupContainerControl1;
     this.popupContainerEdit1.Size = new System.Drawing.Size(161, 20);
     toolTipTitleItem1.Text = "Click here for table details";
     superToolTip1.Items.Add(toolTipTitleItem1);
     superToolTip1.AllowHtmlText = DevExpress.Utils.DefaultBoolean.False;
     this.popupContainerEdit1.SuperTip = superToolTip1;
     this.popupContainerEdit1.TabIndex = 11;
     this.popupContainerEdit1.CustomDisplayText += new DevExpress.XtraEditors.Controls.CustomDisplayTextEventHandler(this.popupContainerEdit1_CustomDisplayText);
     //
     // MapViewer
     //
     this.toolTipController1.SetAllowHtmlText(this, DevExpress.Utils.DefaultBoolean.False);
     this.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Appearance.Options.UseFont = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.simpleButton1);
     this.Controls.Add(this.simpleButton2);
     this.Controls.Add(this.toolStrip1);
     this.Controls.Add(this.simpleButton3);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.popupContainerEdit1);
     this.LookAndFeel.SkinName = "Black";
     this.Name = "MapViewer";
     this.Size = new System.Drawing.Size(876, 664);
     this.toolTipController1.SetSuperTip(this, null);
     this.VisibleChanged += new System.EventHandler(this.MapViewer_VisibleChanged);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     this.groupControl2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.popupContainerControl1)).EndInit();
     this.popupContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     this.contextMenuStrip1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.xtraTabPage1.ResumeLayout(false);
     this.xtraTabPage2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.trackBarControl1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.trackBarControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(lineSeriesView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(lineSeriesView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).EndInit();
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.popupContainerEdit1.Properties)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CtrlCVMasterForm));
     this.grdCtrl = new DevExpress.XtraGrid.GridControl();
     this.contextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.contextMenuStrip_Edit = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.contextMenuStrip_Add = new System.Windows.Forms.ToolStripMenuItem();
     this.contextMenuStrip_Delete = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.contextMenuStrip_MoveUp = new System.Windows.Forms.ToolStripMenuItem();
     this.contextMenuStrip_MoveDown = new System.Windows.Forms.ToolStripMenuItem();
     this.grdView = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.col_ShortKey = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repPopUp = new DevExpress.XtraEditors.Repository.RepositoryItemPopupContainerEdit();
     this.popUpCtrl = new DevExpress.XtraEditors.PopupContainerControl();
     this.btn_DelShortcut = new DevExpress.XtraEditors.SimpleButton();
     this.btn_ShortCutOk = new DevExpress.XtraEditors.SimpleButton();
     this.comboBoxEdit_Keys = new DevExpress.XtraEditors.ComboBoxEdit();
     this.lbl_Keys = new DevExpress.XtraEditors.LabelControl();
     this.chkBox_Alt = new DevExpress.XtraEditors.CheckEdit();
     this.chkBox_Ctrl = new DevExpress.XtraEditors.CheckEdit();
     this.lbl_ctrl = new DevExpress.XtraEditors.LabelControl();
     this.chkbox_shift = new DevExpress.XtraEditors.CheckEdit();
     this.col_Contents = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repTxtContent = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.repPopUp_Image = new DevExpress.XtraEditors.Repository.RepositoryItemImageEdit();
     this.globalEventProvider = new Gma.UserActivityMonitor.GlobalEventProvider();
     this.pnlTop = new DevExpress.XtraEditors.PanelControl();
     this.btnMoveUp = new DevExpress.XtraEditors.SimpleButton();
     this.btnMoveDown = new DevExpress.XtraEditors.SimpleButton();
     this.btnAdd = new DevExpress.XtraEditors.SimpleButton();
     this.btnDelete = new DevExpress.XtraEditors.SimpleButton();
     this.btnAbout = new DevExpress.XtraEditors.SimpleButton();
     this.btnLoad = new DevExpress.XtraEditors.SimpleButton();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.pnlBottom = new DevExpress.XtraEditors.PanelControl();
     this.lbl_ItemCount = new DevExpress.XtraEditors.LabelControl();
     this.lbl_BottomInfo = new DevExpress.XtraEditors.LabelControl();
     this.notifyIcon = new System.Windows.Forms.NotifyIcon(this.components);
     this.contextMenuStrip_tray = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.trayMenu_Open = new System.Windows.Forms.ToolStripMenuItem();
     this.trayMenu_OpenDisabled = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.trayMenu_ShowList = new System.Windows.Forms.ToolStripMenuItem();
     this.trayMenu_DelList = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
     this.trayMenu_Enable = new System.Windows.Forms.ToolStripMenuItem();
     this.trayMenu_Disable = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
     this.trayMenu_Close = new System.Windows.Forms.ToolStripMenuItem();
     this.trayMenu_Text = new System.Windows.Forms.ToolStripMenuItem();
     ((System.ComponentModel.ISupportInitialize)(this.grdCtrl)).BeginInit();
     this.contextMenuStrip.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repPopUp)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popUpCtrl)).BeginInit();
     this.popUpCtrl.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Keys.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkBox_Alt.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkBox_Ctrl.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkbox_shift.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repTxtContent)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repPopUp_Image)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlTop)).BeginInit();
     this.pnlTop.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pnlBottom)).BeginInit();
     this.pnlBottom.SuspendLayout();
     this.contextMenuStrip_tray.SuspendLayout();
     this.SuspendLayout();
     //
     // grdCtrl
     //
     this.grdCtrl.ContextMenuStrip = this.contextMenuStrip;
     this.grdCtrl.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdCtrl.Location = new System.Drawing.Point(0, 32);
     this.grdCtrl.LookAndFeel.SkinName = "Office 2010 Blue";
     this.grdCtrl.MainView = this.grdView;
     this.grdCtrl.Name = "grdCtrl";
     this.grdCtrl.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repPopUp,
     this.repPopUp_Image,
     this.repTxtContent});
     this.grdCtrl.Size = new System.Drawing.Size(355, 234);
     this.grdCtrl.TabIndex = 4;
     this.grdCtrl.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.grdView});
     //
     // contextMenuStrip
     //
     this.contextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.contextMenuStrip_Edit,
     this.toolStripSeparator2,
     this.contextMenuStrip_Add,
     this.contextMenuStrip_Delete,
     this.toolStripSeparator1,
     this.contextMenuStrip_MoveUp,
     this.contextMenuStrip_MoveDown});
     this.contextMenuStrip.Name = "contextMenuStrip";
     this.contextMenuStrip.Size = new System.Drawing.Size(207, 126);
     //
     // contextMenuStrip_Edit
     //
     this.contextMenuStrip_Edit.Image = ((System.Drawing.Image)(resources.GetObject("contextMenuStrip_Edit.Image")));
     this.contextMenuStrip_Edit.Name = "contextMenuStrip_Edit";
     this.contextMenuStrip_Edit.ShortcutKeys = System.Windows.Forms.Keys.F2;
     this.contextMenuStrip_Edit.Size = new System.Drawing.Size(206, 22);
     this.contextMenuStrip_Edit.Text = "Edit";
     this.contextMenuStrip_Edit.Click += new System.EventHandler(this.contextMenuStrip_Edit_Click);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(203, 6);
     //
     // contextMenuStrip_Add
     //
     this.contextMenuStrip_Add.Image = ((System.Drawing.Image)(resources.GetObject("contextMenuStrip_Add.Image")));
     this.contextMenuStrip_Add.Name = "contextMenuStrip_Add";
     this.contextMenuStrip_Add.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N)));
     this.contextMenuStrip_Add.Size = new System.Drawing.Size(206, 22);
     this.contextMenuStrip_Add.Text = "Add";
     this.contextMenuStrip_Add.Click += new System.EventHandler(this.contextMenuStrip_Add_Click);
     //
     // contextMenuStrip_Delete
     //
     this.contextMenuStrip_Delete.Image = ((System.Drawing.Image)(resources.GetObject("contextMenuStrip_Delete.Image")));
     this.contextMenuStrip_Delete.Name = "contextMenuStrip_Delete";
     this.contextMenuStrip_Delete.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.D)));
     this.contextMenuStrip_Delete.Size = new System.Drawing.Size(206, 22);
     this.contextMenuStrip_Delete.Text = "Delete";
     this.contextMenuStrip_Delete.Click += new System.EventHandler(this.contextMenuStrip_Delete_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(203, 6);
     //
     // contextMenuStrip_MoveUp
     //
     this.contextMenuStrip_MoveUp.Image = ((System.Drawing.Image)(resources.GetObject("contextMenuStrip_MoveUp.Image")));
     this.contextMenuStrip_MoveUp.Name = "contextMenuStrip_MoveUp";
     this.contextMenuStrip_MoveUp.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Up)));
     this.contextMenuStrip_MoveUp.Size = new System.Drawing.Size(206, 22);
     this.contextMenuStrip_MoveUp.Text = "Move Up";
     this.contextMenuStrip_MoveUp.Click += new System.EventHandler(this.contextMenuStrip_MoveUp_Click);
     //
     // contextMenuStrip_MoveDown
     //
     this.contextMenuStrip_MoveDown.Image = ((System.Drawing.Image)(resources.GetObject("contextMenuStrip_MoveDown.Image")));
     this.contextMenuStrip_MoveDown.Name = "contextMenuStrip_MoveDown";
     this.contextMenuStrip_MoveDown.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Down)));
     this.contextMenuStrip_MoveDown.Size = new System.Drawing.Size(206, 22);
     this.contextMenuStrip_MoveDown.Text = "Move Down";
     this.contextMenuStrip_MoveDown.Click += new System.EventHandler(this.contextMenuStrip_MoveDown_Click);
     //
     // grdView
     //
     this.grdView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.col_ShortKey,
     this.col_Contents});
     this.grdView.GridControl = this.grdCtrl;
     this.grdView.Name = "grdView";
     this.grdView.OptionsView.ShowGroupPanel = false;
     this.grdView.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.grdView_FocusedRowChanged);
     this.grdView.DoubleClick += new System.EventHandler(this.grdView_DoubleClick);
     //
     // col_ShortKey
     //
     this.col_ShortKey.AppearanceHeader.Options.UseTextOptions = true;
     this.col_ShortKey.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.col_ShortKey.Caption = "Shortcuts";
     this.col_ShortKey.ColumnEdit = this.repPopUp;
     this.col_ShortKey.FieldName = "SHORTKEY";
     this.col_ShortKey.Name = "col_ShortKey";
     this.col_ShortKey.Visible = true;
     this.col_ShortKey.VisibleIndex = 0;
     this.col_ShortKey.Width = 79;
     //
     // repPopUp
     //
     this.repPopUp.AutoHeight = false;
     this.repPopUp.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repPopUp.Name = "repPopUp";
     this.repPopUp.PopupControl = this.popUpCtrl;
     this.repPopUp.PopupFormSize = new System.Drawing.Size(159, 90);
     this.repPopUp.PopupSizeable = false;
     this.repPopUp.Popup += new System.EventHandler(this.repPopUp_Popup);
     //
     // popUpCtrl
     //
     this.popUpCtrl.Controls.Add(this.btn_DelShortcut);
     this.popUpCtrl.Controls.Add(this.btn_ShortCutOk);
     this.popUpCtrl.Controls.Add(this.comboBoxEdit_Keys);
     this.popUpCtrl.Controls.Add(this.lbl_Keys);
     this.popUpCtrl.Controls.Add(this.chkBox_Alt);
     this.popUpCtrl.Controls.Add(this.chkBox_Ctrl);
     this.popUpCtrl.Controls.Add(this.lbl_ctrl);
     this.popUpCtrl.Controls.Add(this.chkbox_shift);
     this.popUpCtrl.Location = new System.Drawing.Point(12, 120);
     this.popUpCtrl.Name = "popUpCtrl";
     this.popUpCtrl.Size = new System.Drawing.Size(200, 74);
     this.popUpCtrl.TabIndex = 7;
     //
     // btn_DelShortcut
     //
     this.btn_DelShortcut.Location = new System.Drawing.Point(154, 43);
     this.btn_DelShortcut.Name = "btn_DelShortcut";
     this.btn_DelShortcut.Size = new System.Drawing.Size(40, 22);
     this.btn_DelShortcut.TabIndex = 8;
     this.btn_DelShortcut.Text = "DEL";
     this.btn_DelShortcut.Click += new System.EventHandler(this.btn_DelShortcut_Click);
     //
     // btn_ShortCutOk
     //
     this.btn_ShortCutOk.Location = new System.Drawing.Point(109, 43);
     this.btn_ShortCutOk.Name = "btn_ShortCutOk";
     this.btn_ShortCutOk.Size = new System.Drawing.Size(40, 22);
     this.btn_ShortCutOk.TabIndex = 7;
     this.btn_ShortCutOk.Text = "OK";
     this.btn_ShortCutOk.Click += new System.EventHandler(this.btn_ShortCutOk_Click);
     //
     // comboBoxEdit_Keys
     //
     this.comboBoxEdit_Keys.Location = new System.Drawing.Point(35, 45);
     this.comboBoxEdit_Keys.Name = "comboBoxEdit_Keys";
     this.comboBoxEdit_Keys.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.comboBoxEdit_Keys.Properties.Items.AddRange(new object[] {
     "1",
     "2",
     "3",
     "4",
     "5",
     "6",
     "7",
     "8",
     "9",
     "0"});
     this.comboBoxEdit_Keys.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.comboBoxEdit_Keys.Size = new System.Drawing.Size(68, 20);
     this.comboBoxEdit_Keys.TabIndex = 6;
     //
     // lbl_Keys
     //
     this.lbl_Keys.Location = new System.Drawing.Point(5, 48);
     this.lbl_Keys.Name = "lbl_Keys";
     this.lbl_Keys.Size = new System.Drawing.Size(24, 14);
     this.lbl_Keys.TabIndex = 5;
     this.lbl_Keys.Text = "Key:";
     //
     // chkBox_Alt
     //
     this.chkBox_Alt.Location = new System.Drawing.Point(53, 23);
     this.chkBox_Alt.Name = "chkBox_Alt";
     this.chkBox_Alt.Properties.Caption = "Alt";
     this.chkBox_Alt.Size = new System.Drawing.Size(39, 19);
     this.chkBox_Alt.TabIndex = 3;
     this.chkBox_Alt.CheckedChanged += new System.EventHandler(this.chkBox_Alt_CheckedChanged);
     //
     // chkBox_Ctrl
     //
     this.chkBox_Ctrl.Location = new System.Drawing.Point(3, 23);
     this.chkBox_Ctrl.Name = "chkBox_Ctrl";
     this.chkBox_Ctrl.Properties.Caption = "Ctrl";
     this.chkBox_Ctrl.Size = new System.Drawing.Size(44, 19);
     this.chkBox_Ctrl.TabIndex = 2;
     this.chkBox_Ctrl.CheckedChanged += new System.EventHandler(this.chkBox_Ctrl_CheckedChanged);
     //
     // lbl_ctrl
     //
     this.lbl_ctrl.Location = new System.Drawing.Point(3, 3);
     this.lbl_ctrl.Name = "lbl_ctrl";
     this.lbl_ctrl.Size = new System.Drawing.Size(125, 14);
     this.lbl_ctrl.TabIndex = 1;
     this.lbl_ctrl.Text = "Setting Shortcut Keys:";
     //
     // chkbox_shift
     //
     this.chkbox_shift.Enabled = false;
     this.chkbox_shift.Location = new System.Drawing.Point(98, 23);
     this.chkbox_shift.Name = "chkbox_shift";
     this.chkbox_shift.Properties.Caption = "Shift";
     this.chkbox_shift.Size = new System.Drawing.Size(51, 19);
     this.chkbox_shift.TabIndex = 0;
     //
     // col_Contents
     //
     this.col_Contents.AppearanceHeader.Options.UseTextOptions = true;
     this.col_Contents.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.col_Contents.Caption = "Contents";
     this.col_Contents.ColumnEdit = this.repTxtContent;
     this.col_Contents.FieldName = "CONTENTS";
     this.col_Contents.Name = "col_Contents";
     this.col_Contents.OptionsColumn.AllowEdit = false;
     this.col_Contents.Visible = true;
     this.col_Contents.VisibleIndex = 1;
     this.col_Contents.Width = 242;
     //
     // repTxtContent
     //
     this.repTxtContent.AutoHeight = false;
     this.repTxtContent.Name = "repTxtContent";
     this.repTxtContent.Leave += new System.EventHandler(this.repTxtContent_Leave);
     //
     // repPopUp_Image
     //
     this.repPopUp_Image.AutoHeight = false;
     this.repPopUp_Image.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repPopUp_Image.Name = "repPopUp_Image";
     //
     // globalEventProvider
     //
     this.globalEventProvider.KeyDown += new System.Windows.Forms.KeyEventHandler(this.globalEventProvider_KeyDown);
     this.globalEventProvider.KeyUp += new System.Windows.Forms.KeyEventHandler(this.globalEventProvider_KeyUp);
     //
     // pnlTop
     //
     this.pnlTop.Controls.Add(this.btnMoveUp);
     this.pnlTop.Controls.Add(this.btnMoveDown);
     this.pnlTop.Controls.Add(this.btnAdd);
     this.pnlTop.Controls.Add(this.btnDelete);
     this.pnlTop.Controls.Add(this.btnAbout);
     this.pnlTop.Controls.Add(this.btnLoad);
     this.pnlTop.Controls.Add(this.btnSave);
     this.pnlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.pnlTop.Location = new System.Drawing.Point(0, 0);
     this.pnlTop.Name = "pnlTop";
     this.pnlTop.Size = new System.Drawing.Size(355, 32);
     this.pnlTop.TabIndex = 5;
     //
     // btnMoveUp
     //
     this.btnMoveUp.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnMoveUp.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.btnMoveUp.Image = ((System.Drawing.Image)(resources.GetObject("btnMoveUp.Image")));
     this.btnMoveUp.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.btnMoveUp.Location = new System.Drawing.Point(176, 5);
     this.btnMoveUp.Name = "btnMoveUp";
     this.btnMoveUp.Size = new System.Drawing.Size(30, 23);
     this.btnMoveUp.TabIndex = 6;
     this.btnMoveUp.ToolTip = "Move Up (Ctrl+Up)";
     this.btnMoveUp.Click += new System.EventHandler(this.btnMoveUp_Click);
     //
     // btnMoveDown
     //
     this.btnMoveDown.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnMoveDown.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.btnMoveDown.Image = ((System.Drawing.Image)(resources.GetObject("btnMoveDown.Image")));
     this.btnMoveDown.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.btnMoveDown.Location = new System.Drawing.Point(212, 5);
     this.btnMoveDown.Name = "btnMoveDown";
     this.btnMoveDown.Size = new System.Drawing.Size(30, 23);
     this.btnMoveDown.TabIndex = 5;
     this.btnMoveDown.ToolTip = "Move Down (Ctrl+Down)";
     this.btnMoveDown.Click += new System.EventHandler(this.btnMoveDown_Click);
     //
     // btnAdd
     //
     this.btnAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnAdd.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.btnAdd.Image = ((System.Drawing.Image)(resources.GetObject("btnAdd.Image")));
     this.btnAdd.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.btnAdd.Location = new System.Drawing.Point(248, 5);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(30, 23);
     this.btnAdd.TabIndex = 4;
     this.btnAdd.ToolTip = "Add (Ctrl+N)";
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // btnDelete
     //
     this.btnDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnDelete.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.btnDelete.Image = ((System.Drawing.Image)(resources.GetObject("btnDelete.Image")));
     this.btnDelete.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.btnDelete.Location = new System.Drawing.Point(284, 5);
     this.btnDelete.Name = "btnDelete";
     this.btnDelete.Size = new System.Drawing.Size(30, 23);
     this.btnDelete.TabIndex = 3;
     this.btnDelete.ToolTip = "Delete (Ctrl+D)";
     this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
     //
     // btnAbout
     //
     this.btnAbout.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnAbout.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.btnAbout.Image = ((System.Drawing.Image)(resources.GetObject("btnAbout.Image")));
     this.btnAbout.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.btnAbout.Location = new System.Drawing.Point(320, 5);
     this.btnAbout.Name = "btnAbout";
     this.btnAbout.Size = new System.Drawing.Size(30, 23);
     this.btnAbout.TabIndex = 2;
     this.btnAbout.ToolTip = "Setting";
     this.btnAbout.Click += new System.EventHandler(this.btnAbout_Click);
     //
     // btnLoad
     //
     this.btnLoad.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.btnLoad.Image = ((System.Drawing.Image)(resources.GetObject("btnLoad.Image")));
     this.btnLoad.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.btnLoad.Location = new System.Drawing.Point(49, 5);
     this.btnLoad.Name = "btnLoad";
     this.btnLoad.Size = new System.Drawing.Size(30, 23);
     this.btnLoad.TabIndex = 1;
     this.btnLoad.ToolTip = "Open (Ctrl+O)";
     this.btnLoad.Click += new System.EventHandler(this.btnLoad_Click);
     //
     // btnSave
     //
     this.btnSave.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.btnSave.Image = ((System.Drawing.Image)(resources.GetObject("btnSave.Image")));
     this.btnSave.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.btnSave.Location = new System.Drawing.Point(12, 5);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(30, 23);
     this.btnSave.TabIndex = 0;
     this.btnSave.ToolTip = "Save (Ctrl+S)";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // pnlBottom
     //
     this.pnlBottom.Controls.Add(this.lbl_ItemCount);
     this.pnlBottom.Controls.Add(this.lbl_BottomInfo);
     this.pnlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.pnlBottom.Location = new System.Drawing.Point(0, 266);
     this.pnlBottom.Name = "pnlBottom";
     this.pnlBottom.Size = new System.Drawing.Size(355, 32);
     this.pnlBottom.TabIndex = 6;
     //
     // lbl_ItemCount
     //
     this.lbl_ItemCount.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lbl_ItemCount.Location = new System.Drawing.Point(295, 9);
     this.lbl_ItemCount.Name = "lbl_ItemCount";
     this.lbl_ItemCount.Size = new System.Drawing.Size(48, 14);
     this.lbl_ItemCount.TabIndex = 1;
     this.lbl_ItemCount.Text = "Count: 0";
     //
     // lbl_BottomInfo
     //
     this.lbl_BottomInfo.Location = new System.Drawing.Point(5, 9);
     this.lbl_BottomInfo.Name = "lbl_BottomInfo";
     this.lbl_BottomInfo.Size = new System.Drawing.Size(207, 14);
     this.lbl_BottomInfo.TabIndex = 0;
     this.lbl_BottomInfo.Text = "Collected Time: 2013-01-30 23:14:23";
     //
     // notifyIcon
     //
     this.notifyIcon.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon.Icon")));
     this.notifyIcon.Text = "CtrlCVMaster";
     this.notifyIcon.Visible = true;
     this.notifyIcon.DoubleClick += new System.EventHandler(this.notifyIcon_DoubleClick);
     //
     // contextMenuStrip_tray
     //
     this.contextMenuStrip_tray.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.trayMenu_Open,
     this.trayMenu_OpenDisabled,
     this.toolStripSeparator3,
     this.trayMenu_ShowList,
     this.trayMenu_DelList,
     this.toolStripSeparator5,
     this.trayMenu_Enable,
     this.trayMenu_Disable,
     this.toolStripSeparator4,
     this.trayMenu_Close,
     this.trayMenu_Text});
     this.contextMenuStrip_tray.Name = "contextMenuStrip";
     this.contextMenuStrip_tray.Size = new System.Drawing.Size(191, 198);
     //
     // trayMenu_Open
     //
     this.trayMenu_Open.Image = ((System.Drawing.Image)(resources.GetObject("trayMenu_Open.Image")));
     this.trayMenu_Open.Name = "trayMenu_Open";
     this.trayMenu_Open.ShortcutKeyDisplayString = "";
     this.trayMenu_Open.Size = new System.Drawing.Size(190, 22);
     this.trayMenu_Open.Text = "Open (&O)";
     this.trayMenu_Open.Click += new System.EventHandler(this.trayMenu_Open_Click);
     //
     // trayMenu_OpenDisabled
     //
     this.trayMenu_OpenDisabled.Image = ((System.Drawing.Image)(resources.GetObject("trayMenu_OpenDisabled.Image")));
     this.trayMenu_OpenDisabled.Name = "trayMenu_OpenDisabled";
     this.trayMenu_OpenDisabled.Size = new System.Drawing.Size(190, 22);
     this.trayMenu_OpenDisabled.Text = "Open (&O)";
     this.trayMenu_OpenDisabled.Visible = false;
     this.trayMenu_OpenDisabled.Click += new System.EventHandler(this.trayMenu_OpenDisabled_Click);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(187, 6);
     //
     // trayMenu_ShowList
     //
     this.trayMenu_ShowList.Image = ((System.Drawing.Image)(resources.GetObject("trayMenu_ShowList.Image")));
     this.trayMenu_ShowList.Name = "trayMenu_ShowList";
     this.trayMenu_ShowList.Size = new System.Drawing.Size(190, 22);
     this.trayMenu_ShowList.Text = "Show List";
     this.trayMenu_ShowList.DropDownItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.trayMenu_ShowList_DropDownItemClicked);
     this.trayMenu_ShowList.DropDownOpening += new System.EventHandler(this.trayMenu_ShowList_DropDownOpening);
     //
     // trayMenu_DelList
     //
     this.trayMenu_DelList.Image = ((System.Drawing.Image)(resources.GetObject("trayMenu_DelList.Image")));
     this.trayMenu_DelList.Name = "trayMenu_DelList";
     this.trayMenu_DelList.Size = new System.Drawing.Size(190, 22);
     this.trayMenu_DelList.Text = "Delete List";
     this.trayMenu_DelList.Click += new System.EventHandler(this.trayMenu_DelList_Click);
     //
     // toolStripSeparator5
     //
     this.toolStripSeparator5.Name = "toolStripSeparator5";
     this.toolStripSeparator5.Size = new System.Drawing.Size(187, 6);
     //
     // trayMenu_Enable
     //
     this.trayMenu_Enable.Image = ((System.Drawing.Image)(resources.GetObject("trayMenu_Enable.Image")));
     this.trayMenu_Enable.Name = "trayMenu_Enable";
     this.trayMenu_Enable.Size = new System.Drawing.Size(190, 22);
     this.trayMenu_Enable.Text = "Enable Clipboard (&E)";
     this.trayMenu_Enable.Visible = false;
     this.trayMenu_Enable.Click += new System.EventHandler(this.trayMenu_Enable_Click);
     //
     // trayMenu_Disable
     //
     this.trayMenu_Disable.Image = ((System.Drawing.Image)(resources.GetObject("trayMenu_Disable.Image")));
     this.trayMenu_Disable.Name = "trayMenu_Disable";
     this.trayMenu_Disable.Size = new System.Drawing.Size(190, 22);
     this.trayMenu_Disable.Text = "Disable Clipboard (&D)";
     this.trayMenu_Disable.Click += new System.EventHandler(this.trayMenu_Disable_Click);
     //
     // toolStripSeparator4
     //
     this.toolStripSeparator4.Name = "toolStripSeparator4";
     this.toolStripSeparator4.Size = new System.Drawing.Size(187, 6);
     //
     // trayMenu_Close
     //
     this.trayMenu_Close.Name = "trayMenu_Close";
     this.trayMenu_Close.Size = new System.Drawing.Size(190, 22);
     this.trayMenu_Close.Text = "Exit (&X)";
     this.trayMenu_Close.Click += new System.EventHandler(this.trayMenu_Close_Click);
     //
     // trayMenu_Text
     //
     this.trayMenu_Text.Image = ((System.Drawing.Image)(resources.GetObject("trayMenu_Text.Image")));
     this.trayMenu_Text.Name = "trayMenu_Text";
     this.trayMenu_Text.Size = new System.Drawing.Size(190, 22);
     this.trayMenu_Text.Text = "trayMenu_Text";
     this.trayMenu_Text.Visible = false;
     //
     // CtrlCVMasterForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(355, 298);
     this.Controls.Add(this.popUpCtrl);
     this.Controls.Add(this.grdCtrl);
     this.Controls.Add(this.pnlBottom);
     this.Controls.Add(this.pnlTop);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "CtrlCVMasterForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
     this.Text = "Ctrl+CV Master";
     this.Load += new System.EventHandler(this.CtrlCVMasterForm_Load);
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.CtrlCVMasterForm_FormClosing);
     ((System.ComponentModel.ISupportInitialize)(this.grdCtrl)).EndInit();
     this.contextMenuStrip.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repPopUp)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popUpCtrl)).EndInit();
     this.popUpCtrl.ResumeLayout(false);
     this.popUpCtrl.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Keys.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkBox_Alt.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkBox_Ctrl.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkbox_shift.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repTxtContent)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repPopUp_Image)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlTop)).EndInit();
     this.pnlTop.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pnlBottom)).EndInit();
     this.pnlBottom.ResumeLayout(false);
     this.pnlBottom.PerformLayout();
     this.contextMenuStrip_tray.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #7
0
 private void InitializeComponent()
 {
     this.popCrSend   = new DevExpress.XtraEditors.PopupContainerControl();
     this.gdCtlPop    = new DevExpress.XtraGrid.GridControl();
     this.gdVwPop     = new ExtendControl.ExtendGridView();
     this.plCtlBottom = new DevExpress.XtraEditors.PanelControl();
     this.btnChg      = new DevExpress.XtraEditors.SimpleButton();
     this.btnOk       = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.popCrSend)).BeginInit();
     this.popCrSend.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gdCtlPop)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gdVwPop)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.plCtlBottom)).BeginInit();
     this.plCtlBottom.SuspendLayout();
     this.SuspendLayout();
     //
     // popCrSend
     //
     this.popCrSend.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Flat;
     this.popCrSend.Controls.Add(this.gdCtlPop);
     this.popCrSend.Controls.Add(this.plCtlBottom);
     this.popCrSend.Location = new System.Drawing.Point(0, 114);
     this.popCrSend.Name     = "popCrSend";
     this.popCrSend.Size     = new System.Drawing.Size(506, 230);
     this.popCrSend.TabIndex = 1;
     //
     // gdCtlPop
     //
     this.gdCtlPop.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.gdCtlPop.Location = new System.Drawing.Point(2, 2);
     this.gdCtlPop.MainView = this.gdVwPop;
     this.gdCtlPop.Name     = "gdCtlPop";
     this.gdCtlPop.Size     = new System.Drawing.Size(502, 193);
     this.gdCtlPop.TabIndex = 4;
     this.gdCtlPop.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gdVwPop
     });
     //
     // gdVwPop
     //
     this.gdVwPop.GridControl    = this.gdCtlPop;
     this.gdVwPop.IndicatorWidth = 32;
     this.gdVwPop.Name           = "gdVwPop";
     this.gdVwPop.NoActionEvent  = false;
     this.gdVwPop.OptionsSelection.MultiSelect = true;
     this.gdVwPop.OptionsView.ColumnAutoWidth  = false;
     this.gdVwPop.OptionsView.ShowFooter       = true;
     this.gdVwPop.OptionsView.ShowGroupPanel   = false;
     //
     // plCtlBottom
     //
     this.plCtlBottom.Controls.Add(this.btnChg);
     this.plCtlBottom.Controls.Add(this.btnOk);
     this.plCtlBottom.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.plCtlBottom.Location = new System.Drawing.Point(2, 195);
     this.plCtlBottom.Name     = "plCtlBottom";
     this.plCtlBottom.Size     = new System.Drawing.Size(502, 33);
     this.plCtlBottom.TabIndex = 5;
     //
     // btnChg
     //
     this.btnChg.Location = new System.Drawing.Point(112, 7);
     this.btnChg.Name     = "btnChg";
     this.btnChg.Size     = new System.Drawing.Size(60, 23);
     this.btnChg.TabIndex = 1;
     this.btnChg.Text     = "取消";
     this.btnChg.Click   += new System.EventHandler(this.btnChg_Click);
     //
     // btnOk
     //
     this.btnOk.Location = new System.Drawing.Point(23, 7);
     this.btnOk.Name     = "btnOk";
     this.btnOk.Size     = new System.Drawing.Size(60, 23);
     this.btnOk.TabIndex = 0;
     this.btnOk.Text     = "确定";
     this.btnOk.Click   += new System.EventHandler(this.btnOk_Click);
     ((System.ComponentModel.ISupportInitialize)(this.popCrSend)).EndInit();
     this.popCrSend.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gdCtlPop)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gdVwPop)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.plCtlBottom)).EndInit();
     this.plCtlBottom.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #8
0
 private void InitializeComponent()
 {
     this.btnOk       = new DevExpress.XtraEditors.SimpleButton();
     this.plCtlBottom = new DevExpress.XtraEditors.PanelControl();
     this.btnChg      = new DevExpress.XtraEditors.SimpleButton();
     this.popTree     = new DevExpress.XtraTreeList.TreeList();
     this.popCrSend   = new DevExpress.XtraEditors.PopupContainerControl();
     ((System.ComponentModel.ISupportInitialize)(this.plCtlBottom)).BeginInit();
     this.plCtlBottom.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.popTree)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popCrSend)).BeginInit();
     this.popCrSend.SuspendLayout();
     this.SuspendLayout();
     //
     // btnOk
     //
     this.btnOk.Location = new System.Drawing.Point(23, 2);
     this.btnOk.Name     = "btnOk";
     this.btnOk.Size     = new System.Drawing.Size(60, 23);
     this.btnOk.Click   += new EventHandler(btnOk_Click);
     this.btnOk.TabIndex = 0;
     this.btnOk.Text     = "确定";
     //
     // plCtlBottom
     //
     this.plCtlBottom.Controls.Add(this.btnChg);
     this.plCtlBottom.Controls.Add(this.btnOk);
     this.plCtlBottom.Dock        = System.Windows.Forms.DockStyle.Bottom;
     this.plCtlBottom.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.plCtlBottom.Location    = new System.Drawing.Point(2, 195);
     this.plCtlBottom.Name        = "plCtlBottom";
     this.plCtlBottom.TabIndex    = 5;
     //
     // btnChg
     //
     this.btnChg.Location = new System.Drawing.Point(112, 2);
     this.btnChg.Name     = "btnChg";
     this.btnChg.Size     = new System.Drawing.Size(60, 23);
     this.btnChg.Click   += new EventHandler(btnChg_Click);
     this.btnChg.TabIndex = 1;
     this.btnChg.Text     = "取消";
     //
     // popTreeList
     //
     this.popTree.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.popTree.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.popTree.Location    = new System.Drawing.Point(2, 2);
     this.popTree.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.popTree.OptionsSelection.EnableAppearanceFocusedRow  = true;
     this.popTree.OptionsSelection.MultiSelect = false;
     this.popTree.OptionsBehavior.Editable     = false;
     //this.popTree.OptionsBehavior.AutoSelectAllInEditor = true;
     //this.popTree.OptionsBehavior.AllowIncrementalSearch = true;
     this.popTree.OptionsBehavior.EnableFiltering = true;
     //this.popTree.OptionsBehavior.ExpandNodesOnIncrementalSearch = true;
     this.popTree.Name        = "popTreeList";
     this.popTree.TabIndex    = 4;
     this.popTree.FilterNode += new DevExpress.XtraTreeList.FilterNodeEventHandler(popTree_FilterNode);
     this.popTree.KeyDown    += new System.Windows.Forms.KeyEventHandler(PopTree_KeyDown);
     //
     // popCrSend
     //
     this.popCrSend.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.popCrSend.Controls.Add(this.popTree);
     this.popCrSend.Controls.Add(this.plCtlBottom);
     this.popCrSend.Location = new System.Drawing.Point(139, 136);
     this.popCrSend.Name     = "popCrSend";
     this.popCrSend.TabIndex = 2;
     ((System.ComponentModel.ISupportInitialize)(this.plCtlBottom)).EndInit();
     this.plCtlBottom.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.popTree)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popCrSend)).EndInit();
     this.popCrSend.ResumeLayout(false);
     this.ResumeLayout(false);
 }