73 lines
2.6 KiB
C#
73 lines
2.6 KiB
C#
|
|
namespace RepositoryPattern
|
|
{
|
|
partial class frmRegisterStock
|
|
{
|
|
/// <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.cmbStockChoser = new System.Windows.Forms.ComboBox();
|
|
this.btnClose = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// cmbStockChoser
|
|
//
|
|
this.cmbStockChoser.FormattingEnabled = true;
|
|
this.cmbStockChoser.Location = new System.Drawing.Point(174, 45);
|
|
this.cmbStockChoser.Name = "cmbStockChoser";
|
|
this.cmbStockChoser.Size = new System.Drawing.Size(179, 23);
|
|
this.cmbStockChoser.TabIndex = 0;
|
|
//
|
|
// btnClose
|
|
//
|
|
this.btnClose.Location = new System.Drawing.Point(374, 532);
|
|
this.btnClose.Name = "btnClose";
|
|
this.btnClose.Size = new System.Drawing.Size(75, 23);
|
|
this.btnClose.TabIndex = 1;
|
|
this.btnClose.Text = "Close";
|
|
this.btnClose.UseVisualStyleBackColor = true;
|
|
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
|
|
//
|
|
// frmRegisterStock
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(471, 567);
|
|
this.Controls.Add(this.btnClose);
|
|
this.Controls.Add(this.cmbStockChoser);
|
|
this.Name = "frmRegisterStock";
|
|
this.Text = "frmRegisterStock";
|
|
this.Shown += new System.EventHandler(this.frmRegisterStock_Shown);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.ComboBox cmbStockChoser;
|
|
private System.Windows.Forms.Button btnClose;
|
|
}
|
|
} |