|
|
|
|
namespace Mesnac.Action.Feeding.Qingquan.Technology
|
|
|
|
|
{
|
|
|
|
|
partial class FrmRecipeFinder
|
|
|
|
|
{
|
|
|
|
|
/// <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.groupBox1 = new System.Windows.Forms.GroupBox();
|
|
|
|
|
this.txtRecipeName = new System.Windows.Forms.TextBox();
|
|
|
|
|
this.btnOk = new System.Windows.Forms.Button();
|
|
|
|
|
this.lstRecipe = new System.Windows.Forms.ListBox();
|
|
|
|
|
this.btnCancel = new System.Windows.Forms.Button();
|
|
|
|
|
this.groupBox1.SuspendLayout();
|
|
|
|
|
this.SuspendLayout();
|
|
|
|
|
//
|
|
|
|
|
// groupBox1
|
|
|
|
|
//
|
|
|
|
|
this.groupBox1.Controls.Add(this.txtRecipeName);
|
|
|
|
|
this.groupBox1.Dock = System.Windows.Forms.DockStyle.Top;
|
|
|
|
|
this.groupBox1.Location = new System.Drawing.Point(0, 0);
|
|
|
|
|
this.groupBox1.Name = "groupBox1";
|
|
|
|
|
this.groupBox1.Size = new System.Drawing.Size(285, 47);
|
|
|
|
|
this.groupBox1.TabIndex = 0;
|
|
|
|
|
this.groupBox1.TabStop = false;
|
|
|
|
|
this.groupBox1.Text = "筛选条件";
|
|
|
|
|
//
|
|
|
|
|
// txtRecipeName
|
|
|
|
|
//
|
|
|
|
|
this.txtRecipeName.Location = new System.Drawing.Point(7, 21);
|
|
|
|
|
this.txtRecipeName.Name = "txtRecipeName";
|
|
|
|
|
this.txtRecipeName.Size = new System.Drawing.Size(272, 21);
|
|
|
|
|
this.txtRecipeName.TabIndex = 0;
|
|
|
|
|
this.txtRecipeName.TextChanged += new System.EventHandler(this.txtRecipeName_TextChanged);
|
|
|
|
|
//
|
|
|
|
|
// btnOk
|
|
|
|
|
//
|
|
|
|
|
this.btnOk.Location = new System.Drawing.Point(125, 338);
|
|
|
|
|
this.btnOk.Name = "btnOk";
|
|
|
|
|
this.btnOk.Size = new System.Drawing.Size(75, 23);
|
|
|
|
|
this.btnOk.TabIndex = 1;
|
|
|
|
|
this.btnOk.Text = "确定(&O)";
|
|
|
|
|
this.btnOk.UseVisualStyleBackColor = true;
|
|
|
|
|
this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
|
|
|
|
|
//
|
|
|
|
|
// lstRecipe
|
|
|
|
|
//
|
|
|
|
|
this.lstRecipe.FormattingEnabled = true;
|
|
|
|
|
this.lstRecipe.ItemHeight = 12;
|
|
|
|
|
this.lstRecipe.Location = new System.Drawing.Point(7, 52);
|
|
|
|
|
this.lstRecipe.Name = "lstRecipe";
|
|
|
|
|
this.lstRecipe.Size = new System.Drawing.Size(272, 280);
|
|
|
|
|
this.lstRecipe.TabIndex = 1;
|
|
|
|
|
this.lstRecipe.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.lstRecipe_MouseDoubleClick);
|
|
|
|
|
//
|
|
|
|
|
// btnCancel
|
|
|
|
|
//
|
|
|
|
|
this.btnCancel.Location = new System.Drawing.Point(205, 338);
|
|
|
|
|
this.btnCancel.Name = "btnCancel";
|
|
|
|
|
this.btnCancel.Size = new System.Drawing.Size(75, 23);
|
|
|
|
|
this.btnCancel.TabIndex = 2;
|
|
|
|
|
this.btnCancel.Text = "取消(&C)";
|
|
|
|
|
this.btnCancel.UseVisualStyleBackColor = true;
|
|
|
|
|
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
|
|
|
|
|
//
|
|
|
|
|
// FrmRecipeFinder
|
|
|
|
|
//
|
|
|
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
|
|
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
|
|
|
this.ClientSize = new System.Drawing.Size(285, 372);
|
|
|
|
|
this.Controls.Add(this.btnCancel);
|
|
|
|
|
this.Controls.Add(this.btnOk);
|
|
|
|
|
this.Controls.Add(this.lstRecipe);
|
|
|
|
|
this.Controls.Add(this.groupBox1);
|
|
|
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
|
|
|
|
this.MaximizeBox = false;
|
|
|
|
|
this.MinimizeBox = false;
|
|
|
|
|
this.Name = "FrmRecipeFinder";
|
|
|
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
|
|
|
this.Text = "配方查询放大器";
|
|
|
|
|
this.Load += new System.EventHandler(this.FrmRecipeFinder_Load);
|
|
|
|
|
this.groupBox1.ResumeLayout(false);
|
|
|
|
|
this.groupBox1.PerformLayout();
|
|
|
|
|
this.ResumeLayout(false);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
private System.Windows.Forms.GroupBox groupBox1;
|
|
|
|
|
private System.Windows.Forms.Button btnOk;
|
|
|
|
|
private System.Windows.Forms.TextBox txtRecipeName;
|
|
|
|
|
private System.Windows.Forms.ListBox lstRecipe;
|
|
|
|
|
private System.Windows.Forms.Button btnCancel;
|
|
|
|
|
}
|
|
|
|
|
}
|