Files
ASDV-C-Sharp/Student Sample Programs/Chap08/Telephone Unformat/Telephone Unformat/Form1.Designer.cs
2022-08-30 14:15:11 -05:00

96 lines
3.8 KiB
C#

namespace Telephone_Unformat
{
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()
{
this.exitButton = new System.Windows.Forms.Button();
this.unformatButton = new System.Windows.Forms.Button();
this.instructionLabel = new System.Windows.Forms.Label();
this.numberTextBox = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// exitButton
//
this.exitButton.Location = new System.Drawing.Point(145, 106);
this.exitButton.Name = "exitButton";
this.exitButton.Size = new System.Drawing.Size(75, 23);
this.exitButton.TabIndex = 7;
this.exitButton.Text = "Exit";
this.exitButton.UseVisualStyleBackColor = true;
//
// unformatButton
//
this.unformatButton.Location = new System.Drawing.Point(64, 106);
this.unformatButton.Name = "unformatButton";
this.unformatButton.Size = new System.Drawing.Size(75, 23);
this.unformatButton.TabIndex = 6;
this.unformatButton.Text = "Unformat";
this.unformatButton.UseVisualStyleBackColor = true;
//
// instructionLabel
//
this.instructionLabel.Location = new System.Drawing.Point(12, 12);
this.instructionLabel.Name = "instructionLabel";
this.instructionLabel.Size = new System.Drawing.Size(260, 40);
this.instructionLabel.TabIndex = 5;
this.instructionLabel.Text = "Enter a telephone number in the format (XXX)XXX-XXXX and I will unformat it.";
this.instructionLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// numberTextBox
//
this.numberTextBox.Location = new System.Drawing.Point(92, 67);
this.numberTextBox.Name = "numberTextBox";
this.numberTextBox.Size = new System.Drawing.Size(100, 20);
this.numberTextBox.TabIndex = 4;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(284, 140);
this.Controls.Add(this.exitButton);
this.Controls.Add(this.unformatButton);
this.Controls.Add(this.instructionLabel);
this.Controls.Add(this.numberTextBox);
this.Name = "Form1";
this.Text = "Telephone Unformat";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button exitButton;
private System.Windows.Forms.Button unformatButton;
private System.Windows.Forms.Label instructionLabel;
private System.Windows.Forms.TextBox numberTextBox;
}
}