namespace Microsoft.Samples.IMEReadingStringBoxTest
{
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.label2 = new System.Windows.Forms.Label();
this.textBox1 = new System.Windows.Forms.TextBox();
this.imeReadingStringBox1 = new IMEReadingStringBox.IMEReadingStringBox();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(12, 34);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(74, 13);
this.label1.TabIndex = 0;
this.label1.Text = "Reading string:";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(12, 61);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(57, 13);
this.label2.TabIndex = 1;
this.label2.Text = "Your name:";
//
// textBox1
//
this.textBox1.Location = new System.Drawing.Point(115, 31);
this.textBox1.Name = "textBox1";
this.textBox1.ReadOnly = true;
this.textBox1.Size = new System.Drawing.Size(201, 20);
this.textBox1.TabIndex = 2;
//
// imeReadingStringBox1
//
this.imeReadingStringBox1.Location = new System.Drawing.Point(115, 58);
this.imeReadingStringBox1.Name = "imeReadingStringBox1";
this.imeReadingStringBox1.Size = new System.Drawing.Size(201, 20);
this.imeReadingStringBox1.TabIndex = 1;
this.imeReadingStringBox1.ReadingStringChanged += new System.EventHandler(this.imeReadingStringBox1_ReadingStringChanged);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(391, 273);
this.Controls.Add(this.imeReadingStringBox1);
this.Controls.Add(this.textBox1);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Name = "Form1";
this.Text = "Form1";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox textBox1;
private IMEReadingStringBox.IMEReadingStringBox imeReadingStringBox1;
}
}