frmstockselect.designer.cs
来自「关于医院进销存的系统」· CS 代码 · 共 160 行
CS
160 行
namespace YYJXC
{
partial class frmStockSelect
{
/// <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 Windows 窗体设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmStockSelect));
this.dataGridView1 = new System.Windows.Forms.DataGridView();
this.cbTiaoJian = new System.Windows.Forms.ComboBox();
this.button2 = new System.Windows.Forms.Button();
this.button1 = new System.Windows.Forms.Button();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.button3 = new System.Windows.Forms.Button();
this.tbZhi = new System.Windows.Forms.TextBox();
this.cbFileds = new System.Windows.Forms.ComboBox();
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
// dataGridView1
//
this.dataGridView1.AllowUserToAddRows = false;
this.dataGridView1.AllowUserToDeleteRows = false;
this.dataGridView1.AllowUserToResizeRows = false;
this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dataGridView1.Dock = System.Windows.Forms.DockStyle.Fill;
this.dataGridView1.Location = new System.Drawing.Point(0, 47);
this.dataGridView1.MultiSelect = false;
this.dataGridView1.Name = "dataGridView1";
this.dataGridView1.ReadOnly = true;
this.dataGridView1.RowTemplate.Height = 23;
this.dataGridView1.Size = new System.Drawing.Size(796, 219);
this.dataGridView1.TabIndex = 4;
//
// cbTiaoJian
//
this.cbTiaoJian.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cbTiaoJian.FormattingEnabled = true;
this.cbTiaoJian.Location = new System.Drawing.Point(159, 20);
this.cbTiaoJian.Name = "cbTiaoJian";
this.cbTiaoJian.Size = new System.Drawing.Size(121, 20);
this.cbTiaoJian.TabIndex = 1;
//
// button2
//
this.button2.Location = new System.Drawing.Point(615, 17);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(75, 23);
this.button2.TabIndex = 4;
this.button2.Text = "全部显示";
this.button2.UseVisualStyleBackColor = true;
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// button1
//
this.button1.Location = new System.Drawing.Point(534, 18);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(75, 23);
this.button1.TabIndex = 3;
this.button1.Text = "查询";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// groupBox1
//
this.groupBox1.Controls.Add(this.button3);
this.groupBox1.Controls.Add(this.cbTiaoJian);
this.groupBox1.Controls.Add(this.button2);
this.groupBox1.Controls.Add(this.button1);
this.groupBox1.Controls.Add(this.tbZhi);
this.groupBox1.Controls.Add(this.cbFileds);
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(796, 47);
this.groupBox1.TabIndex = 3;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "查询条件";
//
// button3
//
this.button3.Location = new System.Drawing.Point(712, 17);
this.button3.Name = "button3";
this.button3.Size = new System.Drawing.Size(75, 23);
this.button3.TabIndex = 5;
this.button3.Text = "退出";
this.button3.UseVisualStyleBackColor = true;
this.button3.Click += new System.EventHandler(this.button3_Click);
//
// tbZhi
//
this.tbZhi.Location = new System.Drawing.Point(308, 19);
this.tbZhi.Name = "tbZhi";
this.tbZhi.Size = new System.Drawing.Size(213, 21);
this.tbZhi.TabIndex = 2;
//
// cbFileds
//
this.cbFileds.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cbFileds.FormattingEnabled = true;
this.cbFileds.Location = new System.Drawing.Point(13, 21);
this.cbFileds.Name = "cbFileds";
this.cbFileds.Size = new System.Drawing.Size(121, 20);
this.cbFileds.TabIndex = 0;
this.cbFileds.SelectedIndexChanged += new System.EventHandler(this.cbFileds_SelectedIndexChanged);
//
// frmStockSelect
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(796, 266);
this.Controls.Add(this.dataGridView1);
this.Controls.Add(this.groupBox1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "frmStockSelect";
this.Text = "入库查询";
this.Load += new System.EventHandler(this.frmStockSelect_Load);
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.DataGridView dataGridView1;
private System.Windows.Forms.ComboBox cbTiaoJian;
private System.Windows.Forms.Button button2;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.TextBox tbZhi;
private System.Windows.Forms.ComboBox cbFileds;
private System.Windows.Forms.Button button3;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?