partial class StaticCharMethodsForm
{
///
/// 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.inputTextBox = new System.Windows.Forms.TextBox();
this.analyzeButton = new System.Windows.Forms.Button();
this.outputTextBox = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font( "Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)) );
this.label1.Location = new System.Drawing.Point( 21, 19 );
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size( 108, 16 );
this.label1.TabIndex = 0;
this.label1.Text = "Enter a character:";
//
// inputTextBox
//
this.inputTextBox.Location = new System.Drawing.Point( 144, 15 );
this.inputTextBox.Name = "inputTextBox";
this.inputTextBox.Size = new System.Drawing.Size( 74, 20 );
this.inputTextBox.TabIndex = 1;
//
// analyzeButton
//
this.analyzeButton.Font = new System.Drawing.Font( "Microsoft Sans Serif", 10F );
this.analyzeButton.Location = new System.Drawing.Point( 56, 53 );
this.analyzeButton.Name = "analyzeButton";
this.analyzeButton.Size = new System.Drawing.Size( 130, 26 );
this.analyzeButton.TabIndex = 2;
this.analyzeButton.Text = "Analyze Character";
this.analyzeButton.Click += new System.EventHandler( this.analyzeButton_Click );
//
// outputTextBox
//
this.outputTextBox.Location = new System.Drawing.Point( 23, 98 );
this.outputTextBox.Multiline = true;
this.outputTextBox.Name = "outputTextBox";
this.outputTextBox.Size = new System.Drawing.Size( 195, 138 );
this.outputTextBox.TabIndex = 3;
//
// StaticCharMethodsForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF( 6F, 13F );
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size( 240, 258 );
this.Controls.Add( this.outputTextBox );
this.Controls.Add( this.analyzeButton );
this.Controls.Add( this.inputTextBox );
this.Controls.Add( this.label1 );
this.Name = "StaticCharMethodsForm";
this.Text = "Static Char Methods";
this.ResumeLayout( false );
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox inputTextBox;
private System.Windows.Forms.Button analyzeButton;
private System.Windows.Forms.TextBox outputTextBox;
}