94 lines
2.7 KiB
C#
94 lines
2.7 KiB
C#
namespace ClosestResolution
|
|
{
|
|
partial class Form1
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Windows Form Designer generated code
|
|
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
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;
|
|
}
|
|
}
|