namespace UserControlLib
|
|
{
|
|
partial class User_LabelCombo
|
|
{
|
|
/// <summary>
|
|
/// 必需的设计器变量。
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// 清理所有正在使用的资源。
|
|
/// </summary>
|
|
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region 组件设计器生成的代码
|
|
|
|
/// <summary>
|
|
/// 设计器支持所需的方法 - 不要修改
|
|
/// 使用代码编辑器修改此方法的内容。
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
this.label = new System.Windows.Forms.Label();
|
|
this.comboBox = new System.Windows.Forms.ComboBox();
|
|
this.SuspendLayout();
|
|
//
|
|
// label
|
|
//
|
|
this.label.AutoSize = true;
|
|
this.label.Location = new System.Drawing.Point(3, 7);
|
|
this.label.Name = "label";
|
|
this.label.Size = new System.Drawing.Size(65, 12);
|
|
this.label.TabIndex = 0;
|
|
this.label.Text = "合格状态:";
|
|
//
|
|
// comboBox
|
|
//
|
|
this.comboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
|
this.comboBox.FormattingEnabled = true;
|
|
this.comboBox.Items.AddRange(new object[] {
|
|
"1"});
|
|
this.comboBox.Location = new System.Drawing.Point(71, 3);
|
|
this.comboBox.Name = "comboBox";
|
|
this.comboBox.Size = new System.Drawing.Size(81, 20);
|
|
this.comboBox.TabIndex = 1;
|
|
//
|
|
// User_LabelCombo
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.Controls.Add(this.comboBox);
|
|
this.Controls.Add(this.label);
|
|
this.Name = "User_LabelCombo";
|
|
this.Size = new System.Drawing.Size(155, 27);
|
|
this.Load += new System.EventHandler(this.User_LabelCombo_Load);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Label label;
|
|
private System.Windows.Forms.ComboBox comboBox;
|
|
}
|
|
}
|