namespace JavaScript.Debugger
{
partial class Evaluator
{
/// <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.txtExpr = new System.Windows.Forms.TextBox();
this.txtOut = new System.Windows.Forms.TextBox();
this.btnDone = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// txtExpr
//
this.txtExpr.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.txtExpr.Font = new System.Drawing.Font("Verdana", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.txtExpr.Location = new System.Drawing.Point(12, 12);
this.txtExpr.Name = "txtExpr";
this.txtExpr.Size = new System.Drawing.Size(382, 28);
this.txtExpr.TabIndex = 0;
this.txtExpr.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtExpr_KeyDown);
//
// txtOut
//
this.txtOut.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.txtOut.Font = new System.Drawing.Font("Verdana", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.txtOut.Location = new System.Drawing.Point(12, 46);
this.txtOut.Name = "txtOut";
this.txtOut.Size = new System.Drawing.Size(381, 28);
this.txtOut.TabIndex = 1;
//
// btnDone
//
this.btnDone.Anchor = System.Windows.Forms.AnchorStyles.Right;
this.btnDone.Location = new System.Drawing.Point(317, 81);
this.btnDone.Name = "btnDone";
this.btnDone.Size = new System.Drawing.Size(75, 23);
this.btnDone.TabIndex = 2;
this.btnDone.Text = "Done";
this.btnDone.UseVisualStyleBackColor = true;
this.btnDone.Click += new System.EventHandler(this.btnDone_Click);
//
// Evaluator
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(406, 113);
this.Controls.Add(this.btnDone);
this.Controls.Add(this.txtOut);
this.Controls.Add(this.txtExpr);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "Evaluator";
this.ShowInTaskbar = false;
this.Text = "Evaluator";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox txtExpr;
private System.Windows.Forms.TextBox txtOut;
private System.Windows.Forms.Button btnDone;
}
}