New function sell stock started

This commit is contained in:
2021-03-03 22:28:18 +01:00
parent 577aac2c4a
commit b41b2b0076
12 changed files with 632 additions and 4 deletions

View File

@ -40,6 +40,7 @@ namespace StockInfo
this.gbStockMgmnt = new System.Windows.Forms.GroupBox();
this.btnValueView = new System.Windows.Forms.Button();
this.btnStockReg = new System.Windows.Forms.Button();
this.btnStockSale = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
this.gB1.SuspendLayout();
this.gbStockMgmnt.SuspendLayout();
@ -126,6 +127,7 @@ namespace StockInfo
//
// gbStockMgmnt
//
this.gbStockMgmnt.Controls.Add(this.btnStockSale);
this.gbStockMgmnt.Controls.Add(this.btnValueView);
this.gbStockMgmnt.Controls.Add(this.btnStockReg);
this.gbStockMgmnt.Location = new System.Drawing.Point(411, 411);
@ -154,6 +156,16 @@ namespace StockInfo
this.btnStockReg.UseVisualStyleBackColor = true;
this.btnStockReg.Click += new System.EventHandler(this.btnStockReg_Click);
//
// btnStockSale
//
this.btnStockSale.Location = new System.Drawing.Point(108, 9);
this.btnStockSale.Name = "btnStockSale";
this.btnStockSale.Size = new System.Drawing.Size(96, 23);
this.btnStockSale.TabIndex = 2;
this.btnStockSale.Text = "Stock Sell";
this.btnStockSale.UseVisualStyleBackColor = true;
this.btnStockSale.Click += new System.EventHandler(this.btnStockSale_Click);
//
// frmInitial
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
@ -194,6 +206,7 @@ namespace StockInfo
private System.Windows.Forms.GroupBox gbStockMgmnt;
private System.Windows.Forms.Button btnStockReg;
private System.Windows.Forms.Button btnValueView;
private System.Windows.Forms.Button btnStockSale;
}
}