namespace AGVMapEditor.Forms { partial class ImageEditorForm { /// /// 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.toolPanel = new System.Windows.Forms.Panel(); this.chkBrushMode = new System.Windows.Forms.CheckBox(); this.btnColor = new System.Windows.Forms.Button(); this.trackBrush = new System.Windows.Forms.TrackBar(); this.lblBrush = new System.Windows.Forms.Label(); this.btnSave = new System.Windows.Forms.Button(); this.btnResize = new System.Windows.Forms.Button(); this.btnOpen = new System.Windows.Forms.Button(); this.canvasPanel = new System.Windows.Forms.Panel(); this.imageCanvas = new AGVMapEditor.Controls.ImageEditorCanvas(); this.toolPanel.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.trackBrush)).BeginInit(); this.canvasPanel.SuspendLayout(); this.SuspendLayout(); // // toolPanel // this.toolPanel.BackColor = System.Drawing.Color.LightGray; this.toolPanel.Controls.Add(this.chkBrushMode); this.toolPanel.Controls.Add(this.btnColor); this.toolPanel.Controls.Add(this.trackBrush); this.toolPanel.Controls.Add(this.lblBrush); this.toolPanel.Controls.Add(this.btnSave); this.toolPanel.Controls.Add(this.btnResize); this.toolPanel.Controls.Add(this.btnOpen); this.toolPanel.Dock = System.Windows.Forms.DockStyle.Top; this.toolPanel.Location = new System.Drawing.Point(0, 0); this.toolPanel.Name = "toolPanel"; this.toolPanel.Size = new System.Drawing.Size(800, 50); this.toolPanel.TabIndex = 0; // // chkBrushMode // this.chkBrushMode.AutoSize = true; this.chkBrushMode.Location = new System.Drawing.Point(590, 15); this.chkBrushMode.Name = "chkBrushMode"; this.chkBrushMode.Size = new System.Drawing.Size(96, 16); this.chkBrushMode.TabIndex = 6; this.chkBrushMode.Text = "브러시 모드"; this.chkBrushMode.UseVisualStyleBackColor = true; // // btnColor // this.btnColor.BackColor = System.Drawing.Color.Black; this.btnColor.ForeColor = System.Drawing.Color.White; this.btnColor.Location = new System.Drawing.Point(520, 10); this.btnColor.Name = "btnColor"; this.btnColor.Size = new System.Drawing.Size(60, 23); this.btnColor.TabIndex = 5; this.btnColor.Text = "색상"; this.btnColor.UseVisualStyleBackColor = false; this.btnColor.Click += new System.EventHandler(this.BtnColor_Click); // // trackBrush // this.trackBrush.Location = new System.Drawing.Point(410, 10); this.trackBrush.Maximum = 20; this.trackBrush.Minimum = 1; this.trackBrush.Name = "trackBrush"; this.trackBrush.Size = new System.Drawing.Size(100, 45); this.trackBrush.TabIndex = 4; this.trackBrush.Value = 3; this.trackBrush.ValueChanged += new System.EventHandler(this.TrackBrush_ValueChanged); // // lblBrush // this.lblBrush.AutoSize = true; this.lblBrush.Location = new System.Drawing.Point(350, 15); this.lblBrush.Name = "lblBrush"; this.lblBrush.Size = new System.Drawing.Size(54, 12); this.lblBrush.TabIndex = 3; this.lblBrush.Text = "브러시:"; // // btnSave // this.btnSave.Location = new System.Drawing.Point(230, 10); this.btnSave.Name = "btnSave"; this.btnSave.Size = new System.Drawing.Size(100, 23); this.btnSave.TabIndex = 2; this.btnSave.Text = "저장 및 닫기"; this.btnSave.UseVisualStyleBackColor = true; this.btnSave.Click += new System.EventHandler(this.BtnSave_Click); // // btnResize // this.btnResize.Location = new System.Drawing.Point(120, 10); this.btnResize.Name = "btnResize"; this.btnResize.Size = new System.Drawing.Size(100, 23); this.btnResize.TabIndex = 1; this.btnResize.Text = "크기 조정"; this.btnResize.UseVisualStyleBackColor = true; this.btnResize.Click += new System.EventHandler(this.BtnResize_Click); // // btnOpen // this.btnOpen.Location = new System.Drawing.Point(10, 10); this.btnOpen.Name = "btnOpen"; this.btnOpen.Size = new System.Drawing.Size(100, 23); this.btnOpen.TabIndex = 0; this.btnOpen.Text = "이미지 열기"; this.btnOpen.UseVisualStyleBackColor = true; this.btnOpen.Click += new System.EventHandler(this.BtnOpen_Click); // // canvasPanel // this.canvasPanel.AutoScroll = true; this.canvasPanel.BackColor = System.Drawing.Color.White; this.canvasPanel.Controls.Add(this.imageCanvas); this.canvasPanel.Dock = System.Windows.Forms.DockStyle.Fill; this.canvasPanel.Location = new System.Drawing.Point(0, 50); this.canvasPanel.Name = "canvasPanel"; this.canvasPanel.Size = new System.Drawing.Size(800, 550); this.canvasPanel.TabIndex = 1; // // imageCanvas // this.imageCanvas.BackColor = System.Drawing.Color.White; this.imageCanvas.BrushModeEnabled = false; this.imageCanvas.BrushSize = 3; this.imageCanvas.Dock = System.Windows.Forms.DockStyle.Fill; this.imageCanvas.DrawColor = System.Drawing.Color.Black; this.imageCanvas.Location = new System.Drawing.Point(0, 0); this.imageCanvas.Name = "imageCanvas"; this.imageCanvas.Size = new System.Drawing.Size(800, 550); this.imageCanvas.TabIndex = 0; // // ImageEditorForm // this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(800, 600); this.Controls.Add(this.canvasPanel); this.Controls.Add(this.toolPanel); this.Name = "ImageEditorForm"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "이미지 편집기"; this.toolPanel.ResumeLayout(false); this.toolPanel.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.trackBrush)).EndInit(); this.canvasPanel.ResumeLayout(false); this.ResumeLayout(false); } #endregion private System.Windows.Forms.Panel toolPanel; private System.Windows.Forms.Button btnOpen; private System.Windows.Forms.Button btnResize; private System.Windows.Forms.Button btnSave; private System.Windows.Forms.Label lblBrush; private System.Windows.Forms.TrackBar trackBrush; private System.Windows.Forms.Button btnColor; private System.Windows.Forms.CheckBox chkBrushMode; private System.Windows.Forms.Panel canvasPanel; private AGVMapEditor.Controls.ImageEditorCanvas imageCanvas; } }