namespace CSharp
{
partial class Form1
{
///
/// 必要なデザイナ変数です。
///
private System.ComponentModel.IContainer components = null;
///
/// 使用中のリソースをすべてクリーンアップします。
///
/// マネージ リソースが破棄される場合 true、破棄されない場合は false です。
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows フォーム デザイナで生成されたコード
///
/// デザイナ サポートに必要なメソッドです。このメソッドの内容を
/// コード エディタで変更しないでください。
///
private void InitializeComponent()
{
this.label3 = new System.Windows.Forms.Label();
this.txtValue = new System.Windows.Forms.TextBox();
this.cmdPut = new System.Windows.Forms.Button();
this.cmdGet = new System.Windows.Forms.Button();
this.cmdExit = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(27, 9);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(40, 12);
this.label3.TabIndex = 6;
this.label3.Text = "Value :";
//
// txtValue
//
this.txtValue.Location = new System.Drawing.Point(73, 6);
this.txtValue.Name = "txtValue";
this.txtValue.Size = new System.Drawing.Size(166, 19);
this.txtValue.TabIndex = 7;
//
// cmdPut
//
this.cmdPut.Location = new System.Drawing.Point(82, 31);
this.cmdPut.Name = "cmdPut";
this.cmdPut.Size = new System.Drawing.Size(76, 18);
this.cmdPut.TabIndex = 8;
this.cmdPut.Text = "Put";
this.cmdPut.UseVisualStyleBackColor = true;
this.cmdPut.Click += new System.EventHandler(this.cmdPut_Click);
//
// cmdGet
//
this.cmdGet.Location = new System.Drawing.Point(164, 31);
this.cmdGet.Name = "cmdGet";
this.cmdGet.Size = new System.Drawing.Size(76, 18);
this.cmdGet.TabIndex = 9;
this.cmdGet.Text = "Get";
this.cmdGet.UseVisualStyleBackColor = true;
this.cmdGet.Click += new System.EventHandler(this.cmdGet_Click);
//
// cmdExit
//
this.cmdExit.Location = new System.Drawing.Point(164, 55);
this.cmdExit.Name = "cmdExit";
this.cmdExit.Size = new System.Drawing.Size(76, 18);
this.cmdExit.TabIndex = 10;
this.cmdExit.Text = "Exit";
this.cmdExit.UseVisualStyleBackColor = true;
this.cmdExit.Click += new System.EventHandler(this.cmdExit_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(252, 83);
this.Controls.Add(this.cmdExit);
this.Controls.Add(this.cmdGet);
this.Controls.Add(this.cmdPut);
this.Controls.Add(this.txtValue);
this.Controls.Add(this.label3);
this.Name = "Form1";
this.Text = "Form1";
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.Form1_FormClosed);
this.Load += new System.EventHandler(this.Form1_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label3;
private System.Windows.Forms.TextBox txtValue;
private System.Windows.Forms.Button cmdPut;
private System.Windows.Forms.Button cmdGet;
private System.Windows.Forms.Button cmdExit;
}
}