namespace WindowsFormsApp10 { partial class Form1 { /// /// 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.label1 = new System.Windows.Forms.Label(); this.listBox1 = new System.Windows.Forms.ListBox(); this.Canvas = new System.Windows.Forms.PictureBox(); ((System.ComponentModel.ISupportInitialize)(this.Canvas)).BeginInit(); this.SuspendLayout(); // // label1 // this.label1.AutoSize = true; this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label1.ForeColor = System.Drawing.Color.White; this.label1.Location = new System.Drawing.Point(13, 13); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(122, 24); this.label1.TabIndex = 0; this.label1.Text = "Coordinates"; // // listBox1 // this.listBox1.FormattingEnabled = true; this.listBox1.Location = new System.Drawing.Point(17, 41); this.listBox1.Name = "listBox1"; this.listBox1.Size = new System.Drawing.Size(120, 394); this.listBox1.TabIndex = 1; // // Canvas // this.Canvas.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.Canvas.Location = new System.Drawing.Point(142, 13); this.Canvas.Name = "Canvas"; this.Canvas.Size = new System.Drawing.Size(646, 425); this.Canvas.TabIndex = 2; this.Canvas.TabStop = false; this.Canvas.Paint += new System.Windows.Forms.PaintEventHandler(this.Canvas_Paint); this.Canvas.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Canvas_MouseDown); this.Canvas.MouseUp += new System.Windows.Forms.MouseEventHandler(this.Canvas_MouseUp); // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.Color.Black; this.ClientSize = new System.Drawing.Size(800, 450); this.Controls.Add(this.Canvas); this.Controls.Add(this.listBox1); this.Controls.Add(this.label1); this.Name = "Form1"; this.Text = "Form1"; ((System.ComponentModel.ISupportInitialize)(this.Canvas)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label label1; private System.Windows.Forms.ListBox listBox1; private System.Windows.Forms.PictureBox Canvas; } }