namespace SharpImage.Forms { partial class siFormSelectPaths { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(siFormSelectPaths)); this.toolStrip = new System.Windows.Forms.ToolStrip(); this.cmdOpen = new System.Windows.Forms.ToolStripButton(); this.cmdSave = new System.Windows.Forms.ToolStripButton(); this.stripSep1 = new System.Windows.Forms.ToolStripSeparator(); this.cmdAddPath = new System.Windows.Forms.ToolStripButton(); this.cmdRemovePath = new System.Windows.Forms.ToolStripButton(); this.stripSep2 = new System.Windows.Forms.ToolStripSeparator(); this.cmdMovePointUp = new System.Windows.Forms.ToolStripButton(); this.cmdMovePointDown = new System.Windows.Forms.ToolStripButton(); this.tree = new System.Windows.Forms.TreeView(); this.menuContext = new System.Windows.Forms.ContextMenuStrip(this.components); this.menuChangeColor = new System.Windows.Forms.ToolStripMenuItem(); this.toolStrip.SuspendLayout(); this.menuContext.SuspendLayout(); this.SuspendLayout(); // // panelBottom // this.panelBottom.Location = new System.Drawing.Point(0, 254); this.panelBottom.Size = new System.Drawing.Size(307, 52); // // toolStrip // this.toolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.cmdOpen, this.cmdSave, this.stripSep1, this.cmdAddPath, this.cmdRemovePath, this.stripSep2, this.cmdMovePointUp, this.cmdMovePointDown}); this.toolStrip.Location = new System.Drawing.Point(0, 0); this.toolStrip.Name = "toolStrip"; this.toolStrip.Size = new System.Drawing.Size(307, 25); this.toolStrip.TabIndex = 14; this.toolStrip.Text = "toolStrip1"; // // cmdOpen // this.cmdOpen.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.cmdOpen.Image = global::SharpImage.Properties.Resources.Open; this.cmdOpen.ImageTransparentColor = System.Drawing.Color.Magenta; this.cmdOpen.Name = "cmdOpen"; this.cmdOpen.Size = new System.Drawing.Size(23, 22); this.cmdOpen.Text = "toolStripButton1"; this.cmdOpen.ToolTipText = "Open paths from file"; this.cmdOpen.Click += new System.EventHandler(this.cmdOpen_Click); // // cmdSave // this.cmdSave.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.cmdSave.Image = global::SharpImage.Properties.Resources.Save; this.cmdSave.ImageTransparentColor = System.Drawing.Color.Magenta; this.cmdSave.Name = "cmdSave"; this.cmdSave.Size = new System.Drawing.Size(23, 22); this.cmdSave.Text = "toolStripButton1"; this.cmdSave.ToolTipText = "Save paths to file"; this.cmdSave.Click += new System.EventHandler(this.cmdSave_Click); // // stripSep1 // this.stripSep1.Name = "stripSep1"; this.stripSep1.Size = new System.Drawing.Size(6, 25); // // cmdAddPath // this.cmdAddPath.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.cmdAddPath.Image = global::SharpImage.Properties.Resources.Add; this.cmdAddPath.ImageTransparentColor = System.Drawing.Color.Magenta; this.cmdAddPath.Name = "cmdAddPath"; this.cmdAddPath.Size = new System.Drawing.Size(23, 22); this.cmdAddPath.Text = "toolStripButton1"; this.cmdAddPath.ToolTipText = "Add new path"; this.cmdAddPath.Click += new System.EventHandler(this.cmdAddPath_Click); // // cmdRemovePath // this.cmdRemovePath.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.cmdRemovePath.Image = global::SharpImage.Properties.Resources.Remove; this.cmdRemovePath.ImageTransparentColor = System.Drawing.Color.Magenta; this.cmdRemovePath.Name = "cmdRemovePath"; this.cmdRemovePath.Size = new System.Drawing.Size(23, 22); this.cmdRemovePath.Text = "toolStripButton1"; this.cmdRemovePath.ToolTipText = "Remove selected path"; this.cmdRemovePath.Click += new System.EventHandler(this.cmdRemovePath_Click); // // stripSep2 // this.stripSep2.Name = "stripSep2"; this.stripSep2.Size = new System.Drawing.Size(6, 25); // // cmdMovePointUp // this.cmdMovePointUp.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.cmdMovePointUp.Image = global::SharpImage.Properties.Resources.Up; this.cmdMovePointUp.ImageTransparentColor = System.Drawing.Color.Magenta; this.cmdMovePointUp.Name = "cmdMovePointUp"; this.cmdMovePointUp.Size = new System.Drawing.Size(23, 22); this.cmdMovePointUp.Text = "toolStripButton1"; this.cmdMovePointUp.ToolTipText = "Move selected point up"; this.cmdMovePointUp.Click += new System.EventHandler(this.cmdMovePointUp_Click); // // cmdMovePointDown // this.cmdMovePointDown.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.cmdMovePointDown.Image = global::SharpImage.Properties.Resources.Down; this.cmdMovePointDown.ImageTransparentColor = System.Drawing.Color.Magenta; this.cmdMovePointDown.Name = "cmdMovePointDown"; this.cmdMovePointDown.Size = new System.Drawing.Size(23, 22); this.cmdMovePointDown.Text = "toolStripButton1"; this.cmdMovePointDown.ToolTipText = "Move selected point down"; this.cmdMovePointDown.Click += new System.EventHandler(this.cmdMovePointDown_Click); // // tree // this.tree.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.tree.ContextMenuStrip = this.menuContext; this.tree.Dock = System.Windows.Forms.DockStyle.Fill; this.tree.FullRowSelect = true; this.tree.HideSelection = false; this.tree.LineColor = System.Drawing.Color.DimGray; this.tree.Location = new System.Drawing.Point(0, 25); this.tree.Name = "tree"; this.tree.Size = new System.Drawing.Size(307, 229); this.tree.TabIndex = 15; this.tree.BeforeSelect += new System.Windows.Forms.TreeViewCancelEventHandler(this.tree_BeforeSelect); // // menuContext // this.menuContext.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.menuChangeColor}); this.menuContext.Name = "menuContext"; this.menuContext.Size = new System.Drawing.Size(161, 26); // // menuChangeColor // this.menuChangeColor.Name = "menuChangeColor"; this.menuChangeColor.Size = new System.Drawing.Size(160, 22); this.menuChangeColor.Text = "Change color..."; this.menuChangeColor.Click += new System.EventHandler(this.menuChangeColor_Click); // // siFormSelectPaths // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(307, 306); this.Controls.Add(this.tree); this.Controls.Add(this.toolStrip); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.Name = "siFormSelectPaths"; this.Text = "Paths"; this.Controls.SetChildIndex(this.panelBottom, 0); this.Controls.SetChildIndex(this.toolStrip, 0); this.Controls.SetChildIndex(this.tree, 0); this.toolStrip.ResumeLayout(false); this.toolStrip.PerformLayout(); this.menuContext.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.ToolStrip toolStrip; private System.Windows.Forms.ToolStripButton cmdOpen; private System.Windows.Forms.ToolStripButton cmdSave; private System.Windows.Forms.ToolStripSeparator stripSep1; private System.Windows.Forms.ToolStripButton cmdAddPath; private System.Windows.Forms.ToolStripButton cmdRemovePath; private System.Windows.Forms.ToolStripSeparator stripSep2; private System.Windows.Forms.ToolStripButton cmdMovePointUp; private System.Windows.Forms.ToolStripButton cmdMovePointDown; private System.Windows.Forms.TreeView tree; private System.Windows.Forms.ContextMenuStrip menuContext; private System.Windows.Forms.ToolStripMenuItem menuChangeColor; } }