namespace ClosestResolution { 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() { txtX = new TextBox(); txtY = new TextBox(); lblX = new Label(); lblY = new Label(); SuspendLayout(); // // txtX // txtX.Location = new Point(12, 12); txtX.Name = "txtX"; txtX.Size = new Size(100, 23); txtX.TabIndex = 0; txtX.TextChanged += TextChanged; // // txtY // txtY.Location = new Point(12, 41); txtY.Name = "txtY"; txtY.Size = new Size(100, 23); txtY.TabIndex = 0; txtY.TextChanged += TextChanged; // // lblX // lblX.AutoSize = true; lblX.Location = new Point(118, 15); lblX.Name = "lblX"; lblX.Size = new Size(38, 15); lblX.TabIndex = 1; lblX.Text = "label1"; // // lblY // lblY.AutoSize = true; lblY.Location = new Point(118, 44); lblY.Name = "lblY"; lblY.Size = new Size(38, 15); lblY.TabIndex = 1; lblY.Text = "label1"; // // Form1 // AutoScaleDimensions = new SizeF(7F, 15F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(201, 90); Controls.Add(lblY); Controls.Add(lblX); Controls.Add(txtY); Controls.Add(txtX); Name = "Form1"; Text = "Form1"; ResumeLayout(false); PerformLayout(); } #endregion private TextBox txtX; private TextBox txtY; private Label lblX; private Label lblY; } }