229 lines
10 KiB
C#
229 lines
10 KiB
C#
|
|
namespace RepositoryPattern
|
|
{
|
|
partial class frmInitial
|
|
{
|
|
/// <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.dataGridView = new System.Windows.Forms.DataGridView();
|
|
this.lblTotalRecords = new System.Windows.Forms.Label();
|
|
this.gB1 = new System.Windows.Forms.GroupBox();
|
|
this.btnReload = new System.Windows.Forms.Button();
|
|
this.rdbStock = new System.Windows.Forms.RadioButton();
|
|
this.rdbNorth = new System.Windows.Forms.RadioButton();
|
|
this.btnTestScrapFunction = new System.Windows.Forms.Button();
|
|
this.lblStockRows = new System.Windows.Forms.Label();
|
|
this.button1 = new System.Windows.Forms.Button();
|
|
this.chbShowBrowser = new System.Windows.Forms.CheckBox();
|
|
this.gbStockMgmnt = new System.Windows.Forms.GroupBox();
|
|
this.btnStockReg = new System.Windows.Forms.Button();
|
|
this.btnValueView = new System.Windows.Forms.Button();
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
|
|
this.gB1.SuspendLayout();
|
|
this.gbStockMgmnt.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// dataGridView
|
|
//
|
|
this.dataGridView.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.dataGridView.Location = new System.Drawing.Point(12, 16);
|
|
this.dataGridView.Name = "dataGridView";
|
|
this.dataGridView.RowTemplate.Height = 25;
|
|
this.dataGridView.Size = new System.Drawing.Size(776, 389);
|
|
this.dataGridView.TabIndex = 0;
|
|
//
|
|
// lblTotalRecords
|
|
//
|
|
this.lblTotalRecords.AutoSize = true;
|
|
this.lblTotalRecords.Location = new System.Drawing.Point(12, 408);
|
|
this.lblTotalRecords.Name = "lblTotalRecords";
|
|
this.lblTotalRecords.Size = new System.Drawing.Size(98, 15);
|
|
this.lblTotalRecords.TabIndex = 2;
|
|
this.lblTotalRecords.Text = "Total Records: ???";
|
|
//
|
|
// gB1
|
|
//
|
|
this.gB1.Controls.Add(this.btnReload);
|
|
this.gB1.Controls.Add(this.rdbStock);
|
|
this.gB1.Controls.Add(this.rdbNorth);
|
|
this.gB1.Location = new System.Drawing.Point(157, 411);
|
|
this.gB1.Name = "gB1";
|
|
this.gB1.Size = new System.Drawing.Size(248, 35);
|
|
this.gB1.TabIndex = 3;
|
|
this.gB1.TabStop = false;
|
|
//
|
|
// btnReload
|
|
//
|
|
this.btnReload.Location = new System.Drawing.Point(158, 9);
|
|
this.btnReload.Name = "btnReload";
|
|
this.btnReload.Size = new System.Drawing.Size(75, 23);
|
|
this.btnReload.TabIndex = 2;
|
|
this.btnReload.Text = "Reload";
|
|
this.btnReload.UseVisualStyleBackColor = true;
|
|
this.btnReload.Click += new System.EventHandler(this.btnReload_Click);
|
|
//
|
|
// rdbStock
|
|
//
|
|
this.rdbStock.AutoSize = true;
|
|
this.rdbStock.Checked = true;
|
|
this.rdbStock.Location = new System.Drawing.Point(98, 9);
|
|
this.rdbStock.Name = "rdbStock";
|
|
this.rdbStock.Size = new System.Drawing.Size(54, 19);
|
|
this.rdbStock.TabIndex = 1;
|
|
this.rdbStock.TabStop = true;
|
|
this.rdbStock.Text = "Stock";
|
|
this.rdbStock.UseVisualStyleBackColor = true;
|
|
//
|
|
// rdbNorth
|
|
//
|
|
this.rdbNorth.AutoSize = true;
|
|
this.rdbNorth.Location = new System.Drawing.Point(7, 9);
|
|
this.rdbNorth.Name = "rdbNorth";
|
|
this.rdbNorth.Size = new System.Drawing.Size(84, 19);
|
|
this.rdbNorth.TabIndex = 0;
|
|
this.rdbNorth.Text = "NorthWind";
|
|
this.rdbNorth.UseVisualStyleBackColor = true;
|
|
//
|
|
// btnTestScrapFunction
|
|
//
|
|
this.btnTestScrapFunction.Location = new System.Drawing.Point(12, 452);
|
|
this.btnTestScrapFunction.Name = "btnTestScrapFunction";
|
|
this.btnTestScrapFunction.Size = new System.Drawing.Size(75, 23);
|
|
this.btnTestScrapFunction.TabIndex = 4;
|
|
this.btnTestScrapFunction.Text = "LoadScrap";
|
|
this.btnTestScrapFunction.UseVisualStyleBackColor = true;
|
|
this.btnTestScrapFunction.Click += new System.EventHandler(this.btnTestScrapFunction_Click);
|
|
//
|
|
// lblStockRows
|
|
//
|
|
this.lblStockRows.AutoSize = true;
|
|
this.lblStockRows.Location = new System.Drawing.Point(93, 456);
|
|
this.lblStockRows.Name = "lblStockRows";
|
|
this.lblStockRows.Size = new System.Drawing.Size(14, 15);
|
|
this.lblStockRows.TabIndex = 5;
|
|
this.lblStockRows.Text = "#";
|
|
//
|
|
// button1
|
|
//
|
|
this.button1.Location = new System.Drawing.Point(157, 452);
|
|
this.button1.Name = "button1";
|
|
this.button1.Size = new System.Drawing.Size(75, 23);
|
|
this.button1.TabIndex = 6;
|
|
this.button1.Text = "ReLoad";
|
|
this.button1.UseVisualStyleBackColor = true;
|
|
this.button1.Click += new System.EventHandler(this.button1_Click);
|
|
//
|
|
// chbShowBrowser
|
|
//
|
|
this.chbShowBrowser.AutoSize = true;
|
|
this.chbShowBrowser.Location = new System.Drawing.Point(12, 478);
|
|
this.chbShowBrowser.Name = "chbShowBrowser";
|
|
this.chbShowBrowser.Size = new System.Drawing.Size(100, 22);
|
|
this.chbShowBrowser.TabIndex = 7;
|
|
this.chbShowBrowser.Text = "Show Browser";
|
|
this.chbShowBrowser.UseCompatibleTextRendering = true;
|
|
this.chbShowBrowser.UseVisualStyleBackColor = true;
|
|
//
|
|
// gbStockMgmnt
|
|
//
|
|
this.gbStockMgmnt.Controls.Add(this.btnValueView);
|
|
this.gbStockMgmnt.Controls.Add(this.btnStockReg);
|
|
this.gbStockMgmnt.Location = new System.Drawing.Point(411, 411);
|
|
this.gbStockMgmnt.Name = "gbStockMgmnt";
|
|
this.gbStockMgmnt.Size = new System.Drawing.Size(257, 123);
|
|
this.gbStockMgmnt.TabIndex = 8;
|
|
this.gbStockMgmnt.TabStop = false;
|
|
//
|
|
// btnStockReg
|
|
//
|
|
this.btnStockReg.Location = new System.Drawing.Point(6, 9);
|
|
this.btnStockReg.Name = "btnStockReg";
|
|
this.btnStockReg.Size = new System.Drawing.Size(96, 23);
|
|
this.btnStockReg.TabIndex = 0;
|
|
this.btnStockReg.Text = "Stock Purchase";
|
|
this.btnStockReg.UseVisualStyleBackColor = true;
|
|
this.btnStockReg.Click += new System.EventHandler(this.btnStockReg_Click);
|
|
//
|
|
// btnValueView
|
|
//
|
|
this.btnValueView.Location = new System.Drawing.Point(7, 39);
|
|
this.btnValueView.Name = "btnValueView";
|
|
this.btnValueView.Size = new System.Drawing.Size(95, 23);
|
|
this.btnValueView.TabIndex = 1;
|
|
this.btnValueView.Text = "See values";
|
|
this.btnValueView.UseVisualStyleBackColor = true;
|
|
this.btnValueView.Click += new System.EventHandler(this.btnValueView_Click);
|
|
//
|
|
// frmInitial
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(800, 546);
|
|
this.Controls.Add(this.gbStockMgmnt);
|
|
this.Controls.Add(this.chbShowBrowser);
|
|
this.Controls.Add(this.button1);
|
|
this.Controls.Add(this.lblStockRows);
|
|
this.Controls.Add(this.btnTestScrapFunction);
|
|
this.Controls.Add(this.gB1);
|
|
this.Controls.Add(this.lblTotalRecords);
|
|
this.Controls.Add(this.dataGridView);
|
|
this.MinimizeBox = false;
|
|
this.Name = "frmInitial";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
this.Text = "Repository Pattern";
|
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmInitial_FormClosing);
|
|
this.Load += new System.EventHandler(this.Form1_Load);
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
|
|
this.gB1.ResumeLayout(false);
|
|
this.gB1.PerformLayout();
|
|
this.gbStockMgmnt.ResumeLayout(false);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.DataGridView dataGridView;
|
|
private System.Windows.Forms.Label lblTotalRecords;
|
|
private System.Windows.Forms.GroupBox gB1;
|
|
private System.Windows.Forms.RadioButton rdbStock;
|
|
private System.Windows.Forms.RadioButton rdbNorth;
|
|
private System.Windows.Forms.Button btnReload;
|
|
private System.Windows.Forms.Button btnTestScrapFunction;
|
|
private System.Windows.Forms.Label lblStockRows;
|
|
private System.Windows.Forms.Button button1;
|
|
private System.Windows.Forms.CheckBox chbShowBrowser;
|
|
private System.Windows.Forms.GroupBox gbStockMgmnt;
|
|
private System.Windows.Forms.Button btnStockReg;
|
|
private System.Windows.Forms.Button btnValueView;
|
|
}
|
|
}
|
|
|