|
namespace Bro.UI.Model.Winform.UI
|
{
|
partial class InputWindow
|
{
|
/// <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.lblTitle = new System.Windows.Forms.Label();
|
this.txtInput = new System.Windows.Forms.TextBox();
|
this.btnConfirm = new System.Windows.Forms.Button();
|
this.btnCancel = new System.Windows.Forms.Button();
|
this.SuspendLayout();
|
//
|
// lblTitle
|
//
|
this.lblTitle.AutoSize = true;
|
this.lblTitle.Location = new System.Drawing.Point(30, 17);
|
this.lblTitle.Name = "lblTitle";
|
this.lblTitle.Size = new System.Drawing.Size(42, 17);
|
this.lblTitle.TabIndex = 0;
|
this.lblTitle.Text = "label1";
|
//
|
// txtInput
|
//
|
this.txtInput.Location = new System.Drawing.Point(33, 49);
|
this.txtInput.Name = "txtInput";
|
this.txtInput.Size = new System.Drawing.Size(301, 24);
|
this.txtInput.TabIndex = 1;
|
this.txtInput.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtInput_KeyPress);
|
//
|
// btnConfirm
|
//
|
this.btnConfirm.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
|
this.btnConfirm.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
this.btnConfirm.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
this.btnConfirm.Location = new System.Drawing.Point(259, 84);
|
this.btnConfirm.Name = "btnConfirm";
|
this.btnConfirm.Size = new System.Drawing.Size(75, 30);
|
this.btnConfirm.TabIndex = 2;
|
this.btnConfirm.Text = "确认";
|
this.btnConfirm.UseVisualStyleBackColor = false;
|
this.btnConfirm.Click += new System.EventHandler(this.btnConfirm_Click);
|
//
|
// btnCancel
|
//
|
this.btnCancel.BackColor = System.Drawing.SystemColors.Control;
|
this.btnCancel.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
this.btnCancel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
this.btnCancel.Location = new System.Drawing.Point(178, 84);
|
this.btnCancel.Name = "btnCancel";
|
this.btnCancel.Size = new System.Drawing.Size(75, 30);
|
this.btnCancel.TabIndex = 2;
|
this.btnCancel.Text = "取消";
|
this.btnCancel.UseVisualStyleBackColor = false;
|
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
|
//
|
// InputWindow
|
//
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 16F);
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
this.ClientSize = new System.Drawing.Size(370, 123);
|
this.ControlBox = false;
|
this.Controls.Add(this.btnCancel);
|
this.Controls.Add(this.btnConfirm);
|
this.Controls.Add(this.txtInput);
|
this.Controls.Add(this.lblTitle);
|
this.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
|
this.Name = "InputWindow";
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
this.Text = "InputWindow";
|
this.ResumeLayout(false);
|
this.PerformLayout();
|
|
}
|
|
#endregion
|
|
private System.Windows.Forms.Label lblTitle;
|
private System.Windows.Forms.TextBox txtInput;
|
private System.Windows.Forms.Button btnConfirm;
|
private System.Windows.Forms.Button btnCancel;
|
}
|
}
|