/// <summary> 
        /// Required method for Designer support - do not modify 
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.Windows.Forms.ToolStripLabel toolStripLabelArea;
            DOL.Tools.QuestDesigner.Controls.HeaderStrip headerStripArea;
            System.Windows.Forms.ToolStripLabel toolStripLabel1;
            this.contextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.pasteLocationToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.showOnMapToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.splitContainer1 = new System.Windows.Forms.SplitContainer();
            this.dataGridArea = new System.Windows.Forms.DataGridView();
            this.colObjectName = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.colName = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.colRegionID = new System.Windows.Forms.DataGridViewComboBoxColumn();
            this.colAreaType = new System.Windows.Forms.DataGridViewComboBoxColumn();
            this.propertyGridArea = new System.Windows.Forms.PropertyGrid();
            this.folderBrowserDialog1 = new System.Windows.Forms.FolderBrowserDialog();
            this.copyLocationToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            toolStripLabelArea = new System.Windows.Forms.ToolStripLabel();
            headerStripArea = new DOL.Tools.QuestDesigner.Controls.HeaderStrip();
            toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
            this.contextMenuStrip.SuspendLayout();
            this.splitContainer1.Panel1.SuspendLayout();
            this.splitContainer1.Panel2.SuspendLayout();
            this.splitContainer1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dataGridArea)).BeginInit();
            headerStripArea.SuspendLayout();
            this.SuspendLayout();
            // 
            // toolStripLabelArea
            // 
            toolStripLabelArea.Name = "toolStripLabelArea";
            toolStripLabelArea.Size = new System.Drawing.Size(53, 22);
            toolStripLabelArea.Text = "Areas";
            // 
            // contextMenuStrip
            // 
            this.contextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.copyLocationToolStripMenuItem,
            this.pasteLocationToolStripMenuItem,
            this.showOnMapToolStripMenuItem});
            this.contextMenuStrip.Name = "contextMenuStrip";
            this.contextMenuStrip.Size = new System.Drawing.Size(156, 92);
            this.contextMenuStrip.Opening += new System.ComponentModel.CancelEventHandler(this.contextMenuStrip_Opening);
            // 
            // pasteLocationToolStripMenuItem
            // 
            this.pasteLocationToolStripMenuItem.Image = global::DOL.Tools.QuestDesigner.Properties.Resources.paste;
            this.pasteLocationToolStripMenuItem.Name = "pasteLocationToolStripMenuItem";
            this.pasteLocationToolStripMenuItem.Size = new System.Drawing.Size(155, 22);
            this.pasteLocationToolStripMenuItem.Text = "Paste Location";
            this.pasteLocationToolStripMenuItem.Click += new System.EventHandler(this.pasteLocationToolStripMenuItem_Click);
            // 
            // showOnMapToolStripMenuItem
            // 
            this.showOnMapToolStripMenuItem.Enabled = global::DOL.Tools.QuestDesigner.Properties.Settings.Default.ShowTaskPane;
            this.showOnMapToolStripMenuItem.Image = global::DOL.Tools.QuestDesigner.Properties.Resources.area;
            this.showOnMapToolStripMenuItem.Name = "showOnMapToolStripMenuItem";
            this.showOnMapToolStripMenuItem.Size = new System.Drawing.Size(155, 22);
            this.showOnMapToolStripMenuItem.Text = "Show on Map";
            this.showOnMapToolStripMenuItem.Click += new System.EventHandler(this.showOnMapToolStripMenuItem_Click);
            // 
            // splitContainer1
            // 
            this.splitContainer1.DataBindings.Add(new System.Windows.Forms.Binding("SplitterDistance", global::DOL.Tools.QuestDesigner.Properties.Settings.Default, "AreaSplitterDistance", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainer1.Location = new System.Drawing.Point(0, 25);
            this.splitContainer1.Name = "splitContainer1";
            // 
            // splitContainer1.Panel1
            // 
            this.splitContainer1.Panel1.Controls.Add(this.dataGridArea);
            // 
            // splitContainer1.Panel2
            // 
            this.splitContainer1.Panel2.Controls.Add(this.propertyGridArea);
            this.splitContainer1.Size = new System.Drawing.Size(458, 125);
            this.splitContainer1.SplitterDistance = global::DOL.Tools.QuestDesigner.Properties.Settings.Default.AreaSplitterDistance;
            this.splitContainer1.TabIndex = 3;
            // 
            // dataGridArea
            // 
            this.dataGridArea.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dataGridArea.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.colObjectName,
            this.colName,
            this.colRegionID,
            this.colAreaType});
            this.dataGridArea.ContextMenuStrip = this.contextMenuStrip;
            this.dataGridArea.Dock = System.Windows.Forms.DockStyle.Fill;
            this.dataGridArea.Location = new System.Drawing.Point(0, 0);
            this.dataGridArea.Name = "dataGridArea";
            this.dataGridArea.Size = new System.Drawing.Size(350, 125);
            this.dataGridArea.TabIndex = 0;
            this.dataGridArea.RowValidating += new System.Windows.Forms.DataGridViewCellCancelEventHandler(this.dataGridArea_RowValidating);
            this.dataGridArea.DefaultValuesNeeded += new System.Windows.Forms.DataGridViewRowEventHandler(this.dataGridArea_DefaultValuesNeeded);
            this.dataGridArea.DataError += new System.Windows.Forms.DataGridViewDataErrorEventHandler(this.dataGridArea_DataError);
            this.dataGridArea.SelectionChanged += new System.EventHandler(this.dataGridArea_SelectionChanged);
            // 
            // colObjectName
            // 
            this.colObjectName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
            this.colObjectName.DataPropertyName = "ObjectName";
            this.colObjectName.FillWeight = 124.2128F;
            this.colObjectName.HeaderText = "ObjectName";
            this.colObjectName.Name = "colObjectName";
            this.colObjectName.Visible = false;
            // 
            // colName
            // 
            this.colName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
            this.colName.DataPropertyName = "Name";
            this.colName.FillWeight = 124.2128F;
            this.colName.HeaderText = "Name";
            this.colName.Name = "colName";
            // 
            // colRegionID
            // 
            this.colRegionID.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
            this.colRegionID.FillWeight = 71.06599F;
            this.colRegionID.HeaderText = "Region";
            this.colRegionID.Name = "colRegionID";
            // 
            // colAreaType
            // 
            this.colAreaType.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
            this.colAreaType.DataPropertyName = "AreaType";
            this.colAreaType.FillWeight = 80.50832F;
            this.colAreaType.HeaderText = "AreaType";
            this.colAreaType.Name = "colAreaType";
            // 
            // propertyGridArea
            // 
            this.propertyGridArea.Dock = System.Windows.Forms.DockStyle.Fill;
            this.propertyGridArea.Location = new System.Drawing.Point(0, 0);
            this.propertyGridArea.Name = "propertyGridArea";
            this.propertyGridArea.Size = new System.Drawing.Size(104, 125);
            this.propertyGridArea.TabIndex = 0;
            // 
            // copyLocationToolStripMenuItem
            // 
            this.copyLocationToolStripMenuItem.Image = global::DOL.Tools.QuestDesigner.Properties.Resources.copy;
            this.copyLocationToolStripMenuItem.Name = "copyLocationToolStripMenuItem";
            this.copyLocationToolStripMenuItem.Size = new System.Drawing.Size(155, 22);
            this.copyLocationToolStripMenuItem.Text = "Copy Location";
            this.copyLocationToolStripMenuItem.Click += new System.EventHandler(this.copyLocationToolStripMenuItem_Click);
            // 
            // headerStripArea
            // 
            headerStripArea.AutoSize = false;
            headerStripArea.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
            headerStripArea.ForeColor = System.Drawing.Color.Gray;
            headerStripArea.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
            headerStripArea.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            toolStripLabel1});
            headerStripArea.Location = new System.Drawing.Point(0, 0);
            headerStripArea.Name = "headerStripArea";
            headerStripArea.Size = new System.Drawing.Size(458, 25);
            headerStripArea.TabIndex = 4;
            headerStripArea.Text = "headerStrip1";
            // 
            // toolStripLabel1
            // 
            toolStripLabel1.Name = "toolStripLabel1";
            toolStripLabel1.Size = new System.Drawing.Size(53, 22);
            toolStripLabel1.Text = "Areas";
            // 
            // Area
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.splitContainer1);
            this.Controls.Add(headerStripArea);
            this.Name = "Area";
            this.Size = new System.Drawing.Size(458, 150);            
            this.contextMenuStrip.ResumeLayout(false);
            this.splitContainer1.Panel1.ResumeLayout(false);
            this.splitContainer1.Panel2.ResumeLayout(false);
            this.splitContainer1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.dataGridArea)).EndInit();
            headerStripArea.ResumeLayout(false);
            headerStripArea.PerformLayout();
            this.ResumeLayout(false);

        }
		/// <summary> 
		/// Required method for Designer support - do not modify 
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
            DOL.Tools.QuestDesigner.Controls.HeaderStrip headerStripCustomCode;
            System.Windows.Forms.ToolStripLabel toolStripLabelCustomCode;
            NETXP.Controls.Docking.Renderers.Office2003 office20031 = new NETXP.Controls.Docking.Renderers.Office2003();
            NETXP.Library.DynamicColorTable dynamicColorTable1 = new NETXP.Library.DynamicColorTable();
            this.tabControlCodeSection = new NETXP.Controls.Docking.TabControl();
            this.tabPageInit = new NETXP.Controls.Docking.TabPage();
            this.textBoxInitCode = new System.Windows.Forms.TextBox();
            this.tabPageLoaded = new NETXP.Controls.Docking.TabPage();
            this.textBoxLoadedCode = new System.Windows.Forms.TextBox();
            this.tabPageUnloaded = new NETXP.Controls.Docking.TabPage();
            this.textBoxUnloadedCode = new System.Windows.Forms.TextBox();
            this.tabPageCheckQuest = new NETXP.Controls.Docking.TabPage();
            this.textBoxCheckQuestQualification = new System.Windows.Forms.TextBox();
            headerStripCustomCode = new DOL.Tools.QuestDesigner.Controls.HeaderStrip();
            toolStripLabelCustomCode = new System.Windows.Forms.ToolStripLabel();
            headerStripCustomCode.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.tabControlCodeSection)).BeginInit();
            this.tabControlCodeSection.SuspendLayout();
            this.tabPageInit.SuspendLayout();
            this.tabPageLoaded.SuspendLayout();
            this.tabPageUnloaded.SuspendLayout();
            this.tabPageCheckQuest.SuspendLayout();
            this.SuspendLayout();
            // 
            // headerStripCustomCode
            // 
            headerStripCustomCode.AutoSize = false;
            headerStripCustomCode.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
            headerStripCustomCode.ForeColor = System.Drawing.Color.Gray;
            headerStripCustomCode.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
            headerStripCustomCode.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            toolStripLabelCustomCode});
            headerStripCustomCode.Location = new System.Drawing.Point(0, 0);
            headerStripCustomCode.Name = "headerStripCustomCode";
            headerStripCustomCode.Size = new System.Drawing.Size(585, 25);
            headerStripCustomCode.TabIndex = 3;
            headerStripCustomCode.Text = "headerStrip1";
            // 
            // toolStripLabelCustomCode
            // 
            toolStripLabelCustomCode.Name = "toolStripLabelCustomCode";
            toolStripLabelCustomCode.Size = new System.Drawing.Size(114, 22);
            toolStripLabelCustomCode.Text = "Custom Code";
            // 
            // tabControlCodeSection
            // 
            this.tabControlCodeSection.Appearance = NETXP.Controls.Docking.TabPosition.Top;
            this.tabControlCodeSection.BoldSelectedPage = true;
            this.tabControlCodeSection.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tabControlCodeSection.Location = new System.Drawing.Point(0, 25);
            this.tabControlCodeSection.Name = "tabControlCodeSection";
            this.tabControlCodeSection.PixelArea = true;
            this.tabControlCodeSection.PixelBorder = false;
            this.tabControlCodeSection.PositionTop = true;
            office20031.ColorTable = dynamicColorTable1;
            this.tabControlCodeSection.Renderer = office20031;
            this.tabControlCodeSection.ShowArrows = false;
            this.tabControlCodeSection.ShowClose = false;
            this.tabControlCodeSection.ShrinkPagesToFit = false;
            this.tabControlCodeSection.Size = new System.Drawing.Size(585, 327);
            this.tabControlCodeSection.TabIndex = 3;
            this.tabControlCodeSection.TabPages.AddRange(new NETXP.Controls.Docking.TabPage[] {
            this.tabPageInit,
            this.tabPageLoaded,
            this.tabPageUnloaded,
            this.tabPageCheckQuest});
            // 
            // tabPageInit
            // 
            this.tabPageInit.Controls.Add(this.textBoxInitCode);
            this.tabPageInit.Location = new System.Drawing.Point(0, 23);
            this.tabPageInit.Name = "tabPageInit";
            this.tabPageInit.Size = new System.Drawing.Size(585, 304);
            this.tabPageInit.TabIndex = 3;
            this.tabPageInit.Title = "Initialization";
            this.tabPageInit.ToolTipText = "Initialization";
            // 
            // textBoxInitCode
            // 
            this.textBoxInitCode.Dock = System.Windows.Forms.DockStyle.Fill;
            this.textBoxInitCode.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.textBoxInitCode.Location = new System.Drawing.Point(0, 0);
            this.textBoxInitCode.Multiline = true;
            this.textBoxInitCode.Name = "textBoxInitCode";
            this.textBoxInitCode.ScrollBars = System.Windows.Forms.ScrollBars.Both;
            this.textBoxInitCode.Size = new System.Drawing.Size(585, 304);
            this.textBoxInitCode.TabIndex = 1;
            this.textBoxInitCode.WordWrap = false;
            // 
            // tabPageLoaded
            // 
            this.tabPageLoaded.Controls.Add(this.textBoxLoadedCode);
            this.tabPageLoaded.Location = new System.Drawing.Point(0, 23);
            this.tabPageLoaded.Name = "tabPageLoaded";
            this.tabPageLoaded.Size = new System.Drawing.Size(585, 304);
            this.tabPageLoaded.TabIndex = 4;
            this.tabPageLoaded.Title = "Script Loaded";
            this.tabPageLoaded.ToolTipText = "Script Loaded";
            // 
            // textBoxLoadedCode
            // 
            this.textBoxLoadedCode.Dock = System.Windows.Forms.DockStyle.Fill;
            this.textBoxLoadedCode.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.textBoxLoadedCode.Location = new System.Drawing.Point(0, 0);
            this.textBoxLoadedCode.Multiline = true;
            this.textBoxLoadedCode.Name = "textBoxLoadedCode";
            this.textBoxLoadedCode.ScrollBars = System.Windows.Forms.ScrollBars.Both;
            this.textBoxLoadedCode.Size = new System.Drawing.Size(585, 304);
            this.textBoxLoadedCode.TabIndex = 0;
            this.textBoxLoadedCode.WordWrap = false;
            // 
            // tabPageUnloaded
            // 
            this.tabPageUnloaded.Controls.Add(this.textBoxUnloadedCode);
            this.tabPageUnloaded.Location = new System.Drawing.Point(0, 23);
            this.tabPageUnloaded.Name = "tabPageUnloaded";
            this.tabPageUnloaded.Size = new System.Drawing.Size(585, 304);
            this.tabPageUnloaded.TabIndex = 5;
            this.tabPageUnloaded.Title = "Script Unloaded";
            this.tabPageUnloaded.ToolTipText = "Script Unloaded";
            // 
            // textBoxUnloadedCode
            // 
            this.textBoxUnloadedCode.Dock = System.Windows.Forms.DockStyle.Fill;
            this.textBoxUnloadedCode.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.textBoxUnloadedCode.Location = new System.Drawing.Point(0, 0);
            this.textBoxUnloadedCode.Multiline = true;
            this.textBoxUnloadedCode.Name = "textBoxUnloadedCode";
            this.textBoxUnloadedCode.ScrollBars = System.Windows.Forms.ScrollBars.Both;
            this.textBoxUnloadedCode.Size = new System.Drawing.Size(585, 304);
            this.textBoxUnloadedCode.TabIndex = 0;
            this.textBoxUnloadedCode.WordWrap = false;
            // 
            // tabPageCheckQuest
            // 
            this.tabPageCheckQuest.Controls.Add(this.textBoxCheckQuestQualification);
            this.tabPageCheckQuest.Location = new System.Drawing.Point(0, 23);
            this.tabPageCheckQuest.Name = "tabPageCheckQuest";
            this.tabPageCheckQuest.Size = new System.Drawing.Size(585, 304);
            this.tabPageCheckQuest.TabIndex = 6;
            this.tabPageCheckQuest.Title = "Check QuestQualification";
            this.tabPageCheckQuest.ToolTipText = "Check QuestQualification";
            // 
            // textBoxCheckQuestQualification
            // 
            this.textBoxCheckQuestQualification.Dock = System.Windows.Forms.DockStyle.Fill;
            this.textBoxCheckQuestQualification.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.textBoxCheckQuestQualification.Location = new System.Drawing.Point(0, 0);
            this.textBoxCheckQuestQualification.Multiline = true;
            this.textBoxCheckQuestQualification.Name = "textBoxCheckQuestQualification";
            this.textBoxCheckQuestQualification.ScrollBars = System.Windows.Forms.ScrollBars.Both;
            this.textBoxCheckQuestQualification.Size = new System.Drawing.Size(585, 304);
            this.textBoxCheckQuestQualification.TabIndex = 1;
            this.textBoxCheckQuestQualification.WordWrap = false;
            // 
            // CustomCode
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.tabControlCodeSection);
            this.Controls.Add(headerStripCustomCode);
            this.Name = "CustomCode";
            this.Size = new System.Drawing.Size(585, 352);
            headerStripCustomCode.ResumeLayout(false);
            headerStripCustomCode.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.tabControlCodeSection)).EndInit();
            this.tabControlCodeSection.ResumeLayout(false);
            this.tabPageInit.ResumeLayout(false);
            this.tabPageInit.PerformLayout();
            this.tabPageLoaded.ResumeLayout(false);
            this.tabPageLoaded.PerformLayout();
            this.tabPageUnloaded.ResumeLayout(false);
            this.tabPageUnloaded.PerformLayout();
            this.tabPageCheckQuest.ResumeLayout(false);
            this.tabPageCheckQuest.PerformLayout();
            this.ResumeLayout(false);

		}
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DOL.Tools.QuestDesigner.Controls.HeaderStrip headerStripCustomCode;
     System.Windows.Forms.ToolStripLabel          toolStripLabelCustomCode;
     NETXP.Controls.Docking.Renderers.Office2003  office20031 = new NETXP.Controls.Docking.Renderers.Office2003();
     NETXP.Library.DynamicColorTable dynamicColorTable1       = new NETXP.Library.DynamicColorTable();
     this.tabControlCodeSection          = new NETXP.Controls.Docking.TabControl();
     this.tabPageInit                    = new NETXP.Controls.Docking.TabPage();
     this.textBoxInitCode                = new System.Windows.Forms.TextBox();
     this.tabPageLoaded                  = new NETXP.Controls.Docking.TabPage();
     this.textBoxLoadedCode              = new System.Windows.Forms.TextBox();
     this.tabPageUnloaded                = new NETXP.Controls.Docking.TabPage();
     this.textBoxUnloadedCode            = new System.Windows.Forms.TextBox();
     this.tabPageCheckQuest              = new NETXP.Controls.Docking.TabPage();
     this.textBoxCheckQuestQualification = new System.Windows.Forms.TextBox();
     headerStripCustomCode               = new DOL.Tools.QuestDesigner.Controls.HeaderStrip();
     toolStripLabelCustomCode            = new System.Windows.Forms.ToolStripLabel();
     headerStripCustomCode.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabControlCodeSection)).BeginInit();
     this.tabControlCodeSection.SuspendLayout();
     this.tabPageInit.SuspendLayout();
     this.tabPageLoaded.SuspendLayout();
     this.tabPageUnloaded.SuspendLayout();
     this.tabPageCheckQuest.SuspendLayout();
     this.SuspendLayout();
     //
     // headerStripCustomCode
     //
     headerStripCustomCode.AutoSize  = false;
     headerStripCustomCode.Font      = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
     headerStripCustomCode.ForeColor = System.Drawing.Color.Gray;
     headerStripCustomCode.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     headerStripCustomCode.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         toolStripLabelCustomCode
     });
     headerStripCustomCode.Location = new System.Drawing.Point(0, 0);
     headerStripCustomCode.Name     = "headerStripCustomCode";
     headerStripCustomCode.Size     = new System.Drawing.Size(585, 25);
     headerStripCustomCode.TabIndex = 3;
     headerStripCustomCode.Text     = "headerStrip1";
     //
     // toolStripLabelCustomCode
     //
     toolStripLabelCustomCode.Name = "toolStripLabelCustomCode";
     toolStripLabelCustomCode.Size = new System.Drawing.Size(114, 22);
     toolStripLabelCustomCode.Text = "Custom Code";
     //
     // tabControlCodeSection
     //
     this.tabControlCodeSection.Appearance       = NETXP.Controls.Docking.TabPosition.Top;
     this.tabControlCodeSection.BoldSelectedPage = true;
     this.tabControlCodeSection.Dock             = System.Windows.Forms.DockStyle.Fill;
     this.tabControlCodeSection.Location         = new System.Drawing.Point(0, 25);
     this.tabControlCodeSection.Name             = "tabControlCodeSection";
     this.tabControlCodeSection.PixelArea        = true;
     this.tabControlCodeSection.PixelBorder      = false;
     this.tabControlCodeSection.PositionTop      = true;
     office20031.ColorTable = dynamicColorTable1;
     this.tabControlCodeSection.Renderer         = office20031;
     this.tabControlCodeSection.ShowArrows       = false;
     this.tabControlCodeSection.ShowClose        = false;
     this.tabControlCodeSection.ShrinkPagesToFit = false;
     this.tabControlCodeSection.Size             = new System.Drawing.Size(585, 327);
     this.tabControlCodeSection.TabIndex         = 3;
     this.tabControlCodeSection.TabPages.AddRange(new NETXP.Controls.Docking.TabPage[] {
         this.tabPageInit,
         this.tabPageLoaded,
         this.tabPageUnloaded,
         this.tabPageCheckQuest
     });
     //
     // tabPageInit
     //
     this.tabPageInit.Controls.Add(this.textBoxInitCode);
     this.tabPageInit.Location    = new System.Drawing.Point(0, 23);
     this.tabPageInit.Name        = "tabPageInit";
     this.tabPageInit.Size        = new System.Drawing.Size(585, 304);
     this.tabPageInit.TabIndex    = 3;
     this.tabPageInit.Title       = "Initialization";
     this.tabPageInit.ToolTipText = "Initialization";
     //
     // textBoxInitCode
     //
     this.textBoxInitCode.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.textBoxInitCode.Font       = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBoxInitCode.Location   = new System.Drawing.Point(0, 0);
     this.textBoxInitCode.Multiline  = true;
     this.textBoxInitCode.Name       = "textBoxInitCode";
     this.textBoxInitCode.ScrollBars = System.Windows.Forms.ScrollBars.Both;
     this.textBoxInitCode.Size       = new System.Drawing.Size(585, 304);
     this.textBoxInitCode.TabIndex   = 1;
     this.textBoxInitCode.WordWrap   = false;
     //
     // tabPageLoaded
     //
     this.tabPageLoaded.Controls.Add(this.textBoxLoadedCode);
     this.tabPageLoaded.Location    = new System.Drawing.Point(0, 23);
     this.tabPageLoaded.Name        = "tabPageLoaded";
     this.tabPageLoaded.Size        = new System.Drawing.Size(585, 304);
     this.tabPageLoaded.TabIndex    = 4;
     this.tabPageLoaded.Title       = "Script Loaded";
     this.tabPageLoaded.ToolTipText = "Script Loaded";
     //
     // textBoxLoadedCode
     //
     this.textBoxLoadedCode.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.textBoxLoadedCode.Font       = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBoxLoadedCode.Location   = new System.Drawing.Point(0, 0);
     this.textBoxLoadedCode.Multiline  = true;
     this.textBoxLoadedCode.Name       = "textBoxLoadedCode";
     this.textBoxLoadedCode.ScrollBars = System.Windows.Forms.ScrollBars.Both;
     this.textBoxLoadedCode.Size       = new System.Drawing.Size(585, 304);
     this.textBoxLoadedCode.TabIndex   = 0;
     this.textBoxLoadedCode.WordWrap   = false;
     //
     // tabPageUnloaded
     //
     this.tabPageUnloaded.Controls.Add(this.textBoxUnloadedCode);
     this.tabPageUnloaded.Location    = new System.Drawing.Point(0, 23);
     this.tabPageUnloaded.Name        = "tabPageUnloaded";
     this.tabPageUnloaded.Size        = new System.Drawing.Size(585, 304);
     this.tabPageUnloaded.TabIndex    = 5;
     this.tabPageUnloaded.Title       = "Script Unloaded";
     this.tabPageUnloaded.ToolTipText = "Script Unloaded";
     //
     // textBoxUnloadedCode
     //
     this.textBoxUnloadedCode.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.textBoxUnloadedCode.Font       = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBoxUnloadedCode.Location   = new System.Drawing.Point(0, 0);
     this.textBoxUnloadedCode.Multiline  = true;
     this.textBoxUnloadedCode.Name       = "textBoxUnloadedCode";
     this.textBoxUnloadedCode.ScrollBars = System.Windows.Forms.ScrollBars.Both;
     this.textBoxUnloadedCode.Size       = new System.Drawing.Size(585, 304);
     this.textBoxUnloadedCode.TabIndex   = 0;
     this.textBoxUnloadedCode.WordWrap   = false;
     //
     // tabPageCheckQuest
     //
     this.tabPageCheckQuest.Controls.Add(this.textBoxCheckQuestQualification);
     this.tabPageCheckQuest.Location    = new System.Drawing.Point(0, 23);
     this.tabPageCheckQuest.Name        = "tabPageCheckQuest";
     this.tabPageCheckQuest.Size        = new System.Drawing.Size(585, 304);
     this.tabPageCheckQuest.TabIndex    = 6;
     this.tabPageCheckQuest.Title       = "Check QuestQualification";
     this.tabPageCheckQuest.ToolTipText = "Check QuestQualification";
     //
     // textBoxCheckQuestQualification
     //
     this.textBoxCheckQuestQualification.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.textBoxCheckQuestQualification.Font       = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBoxCheckQuestQualification.Location   = new System.Drawing.Point(0, 0);
     this.textBoxCheckQuestQualification.Multiline  = true;
     this.textBoxCheckQuestQualification.Name       = "textBoxCheckQuestQualification";
     this.textBoxCheckQuestQualification.ScrollBars = System.Windows.Forms.ScrollBars.Both;
     this.textBoxCheckQuestQualification.Size       = new System.Drawing.Size(585, 304);
     this.textBoxCheckQuestQualification.TabIndex   = 1;
     this.textBoxCheckQuestQualification.WordWrap   = false;
     //
     // CustomCode
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.tabControlCodeSection);
     this.Controls.Add(headerStripCustomCode);
     this.Name = "CustomCode";
     this.Size = new System.Drawing.Size(585, 352);
     headerStripCustomCode.ResumeLayout(false);
     headerStripCustomCode.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabControlCodeSection)).EndInit();
     this.tabControlCodeSection.ResumeLayout(false);
     this.tabPageInit.ResumeLayout(false);
     this.tabPageInit.PerformLayout();
     this.tabPageLoaded.ResumeLayout(false);
     this.tabPageLoaded.PerformLayout();
     this.tabPageUnloaded.ResumeLayout(false);
     this.tabPageUnloaded.PerformLayout();
     this.tabPageCheckQuest.ResumeLayout(false);
     this.tabPageCheckQuest.PerformLayout();
     this.ResumeLayout(false);
 }
示例#4
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.Windows.Forms.ToolStripLabel          toolStripLabelArea;
     DOL.Tools.QuestDesigner.Controls.HeaderStrip headerStripArea;
     System.Windows.Forms.ToolStripLabel          toolStripLabel1;
     this.contextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.pasteLocationToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.showOnMapToolStripMenuItem     = new System.Windows.Forms.ToolStripMenuItem();
     this.splitContainer1               = new System.Windows.Forms.SplitContainer();
     this.dataGridArea                  = new System.Windows.Forms.DataGridView();
     this.colObjectName                 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colName                       = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colRegionID                   = new System.Windows.Forms.DataGridViewComboBoxColumn();
     this.colAreaType                   = new System.Windows.Forms.DataGridViewComboBoxColumn();
     this.propertyGridArea              = new System.Windows.Forms.PropertyGrid();
     this.folderBrowserDialog1          = new System.Windows.Forms.FolderBrowserDialog();
     this.copyLocationToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     toolStripLabelArea                 = new System.Windows.Forms.ToolStripLabel();
     headerStripArea                    = new DOL.Tools.QuestDesigner.Controls.HeaderStrip();
     toolStripLabel1                    = new System.Windows.Forms.ToolStripLabel();
     this.contextMenuStrip.SuspendLayout();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridArea)).BeginInit();
     headerStripArea.SuspendLayout();
     this.SuspendLayout();
     //
     // toolStripLabelArea
     //
     toolStripLabelArea.Name = "toolStripLabelArea";
     toolStripLabelArea.Size = new System.Drawing.Size(53, 22);
     toolStripLabelArea.Text = "Areas";
     //
     // contextMenuStrip
     //
     this.contextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.copyLocationToolStripMenuItem,
         this.pasteLocationToolStripMenuItem,
         this.showOnMapToolStripMenuItem
     });
     this.contextMenuStrip.Name     = "contextMenuStrip";
     this.contextMenuStrip.Size     = new System.Drawing.Size(156, 92);
     this.contextMenuStrip.Opening += new System.ComponentModel.CancelEventHandler(this.contextMenuStrip_Opening);
     //
     // pasteLocationToolStripMenuItem
     //
     this.pasteLocationToolStripMenuItem.Image  = global::DOL.Tools.QuestDesigner.Properties.Resources.paste;
     this.pasteLocationToolStripMenuItem.Name   = "pasteLocationToolStripMenuItem";
     this.pasteLocationToolStripMenuItem.Size   = new System.Drawing.Size(155, 22);
     this.pasteLocationToolStripMenuItem.Text   = "Paste Location";
     this.pasteLocationToolStripMenuItem.Click += new System.EventHandler(this.pasteLocationToolStripMenuItem_Click);
     //
     // showOnMapToolStripMenuItem
     //
     this.showOnMapToolStripMenuItem.Enabled = global::DOL.Tools.QuestDesigner.Properties.Settings.Default.ShowTaskPane;
     this.showOnMapToolStripMenuItem.Image   = global::DOL.Tools.QuestDesigner.Properties.Resources.area;
     this.showOnMapToolStripMenuItem.Name    = "showOnMapToolStripMenuItem";
     this.showOnMapToolStripMenuItem.Size    = new System.Drawing.Size(155, 22);
     this.showOnMapToolStripMenuItem.Text    = "Show on Map";
     this.showOnMapToolStripMenuItem.Click  += new System.EventHandler(this.showOnMapToolStripMenuItem_Click);
     //
     // splitContainer1
     //
     this.splitContainer1.DataBindings.Add(new System.Windows.Forms.Binding("SplitterDistance", global::DOL.Tools.QuestDesigner.Properties.Settings.Default, "AreaSplitterDistance", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.splitContainer1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location = new System.Drawing.Point(0, 25);
     this.splitContainer1.Name     = "splitContainer1";
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.dataGridArea);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.propertyGridArea);
     this.splitContainer1.Size             = new System.Drawing.Size(458, 125);
     this.splitContainer1.SplitterDistance = global::DOL.Tools.QuestDesigner.Properties.Settings.Default.AreaSplitterDistance;
     this.splitContainer1.TabIndex         = 3;
     //
     // dataGridArea
     //
     this.dataGridArea.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridArea.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
         this.colObjectName,
         this.colName,
         this.colRegionID,
         this.colAreaType
     });
     this.dataGridArea.ContextMenuStrip     = this.contextMenuStrip;
     this.dataGridArea.Dock                 = System.Windows.Forms.DockStyle.Fill;
     this.dataGridArea.Location             = new System.Drawing.Point(0, 0);
     this.dataGridArea.Name                 = "dataGridArea";
     this.dataGridArea.Size                 = new System.Drawing.Size(350, 125);
     this.dataGridArea.TabIndex             = 0;
     this.dataGridArea.RowValidating       += new System.Windows.Forms.DataGridViewCellCancelEventHandler(this.dataGridArea_RowValidating);
     this.dataGridArea.DefaultValuesNeeded += new System.Windows.Forms.DataGridViewRowEventHandler(this.dataGridArea_DefaultValuesNeeded);
     this.dataGridArea.DataError           += new System.Windows.Forms.DataGridViewDataErrorEventHandler(this.dataGridArea_DataError);
     this.dataGridArea.SelectionChanged    += new System.EventHandler(this.dataGridArea_SelectionChanged);
     //
     // colObjectName
     //
     this.colObjectName.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.colObjectName.DataPropertyName = "ObjectName";
     this.colObjectName.FillWeight       = 124.2128F;
     this.colObjectName.HeaderText       = "ObjectName";
     this.colObjectName.Name             = "colObjectName";
     this.colObjectName.Visible          = false;
     //
     // colName
     //
     this.colName.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.colName.DataPropertyName = "Name";
     this.colName.FillWeight       = 124.2128F;
     this.colName.HeaderText       = "Name";
     this.colName.Name             = "colName";
     //
     // colRegionID
     //
     this.colRegionID.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.colRegionID.FillWeight   = 71.06599F;
     this.colRegionID.HeaderText   = "Region";
     this.colRegionID.Name         = "colRegionID";
     //
     // colAreaType
     //
     this.colAreaType.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.colAreaType.DataPropertyName = "AreaType";
     this.colAreaType.FillWeight       = 80.50832F;
     this.colAreaType.HeaderText       = "AreaType";
     this.colAreaType.Name             = "colAreaType";
     //
     // propertyGridArea
     //
     this.propertyGridArea.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.propertyGridArea.Location = new System.Drawing.Point(0, 0);
     this.propertyGridArea.Name     = "propertyGridArea";
     this.propertyGridArea.Size     = new System.Drawing.Size(104, 125);
     this.propertyGridArea.TabIndex = 0;
     //
     // copyLocationToolStripMenuItem
     //
     this.copyLocationToolStripMenuItem.Image  = global::DOL.Tools.QuestDesigner.Properties.Resources.copy;
     this.copyLocationToolStripMenuItem.Name   = "copyLocationToolStripMenuItem";
     this.copyLocationToolStripMenuItem.Size   = new System.Drawing.Size(155, 22);
     this.copyLocationToolStripMenuItem.Text   = "Copy Location";
     this.copyLocationToolStripMenuItem.Click += new System.EventHandler(this.copyLocationToolStripMenuItem_Click);
     //
     // headerStripArea
     //
     headerStripArea.AutoSize  = false;
     headerStripArea.Font      = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
     headerStripArea.ForeColor = System.Drawing.Color.Gray;
     headerStripArea.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     headerStripArea.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         toolStripLabel1
     });
     headerStripArea.Location = new System.Drawing.Point(0, 0);
     headerStripArea.Name     = "headerStripArea";
     headerStripArea.Size     = new System.Drawing.Size(458, 25);
     headerStripArea.TabIndex = 4;
     headerStripArea.Text     = "headerStrip1";
     //
     // toolStripLabel1
     //
     toolStripLabel1.Name = "toolStripLabel1";
     toolStripLabel1.Size = new System.Drawing.Size(53, 22);
     toolStripLabel1.Text = "Areas";
     //
     // Area
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.splitContainer1);
     this.Controls.Add(headerStripArea);
     this.Name = "Area";
     this.Size = new System.Drawing.Size(458, 150);
     this.contextMenuStrip.ResumeLayout(false);
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridArea)).EndInit();
     headerStripArea.ResumeLayout(false);
     headerStripArea.PerformLayout();
     this.ResumeLayout(false);
 }