- 매수 기능 추가

This commit is contained in:
2016-12-09 09:51:00 +09:00
parent 958f523b9c
commit 034c061a1b
12 changed files with 482 additions and 20 deletions

57
ConfigForm.Designer.cs generated
View File

@@ -54,6 +54,10 @@
this.btnDuplicatedCodeApply = new System.Windows.Forms.Button();
this.btnDuplicatedCodeEdit = new System.Windows.Forms.Button();
this.groupBox9 = new System.Windows.Forms.GroupBox();
this.label1 = new System.Windows.Forms.Label();
this.tbBuyPrice = new System.Windows.Forms.TextBox();
this.label4 = new System.Windows.Forms.Label();
this.groupBox10 = new System.Windows.Forms.GroupBox();
this.groupBox1.SuspendLayout();
this.groupBox2.SuspendLayout();
this.groupBox6.SuspendLayout();
@@ -63,6 +67,7 @@
this.groupBox7.SuspendLayout();
this.groupBox8.SuspendLayout();
this.groupBox9.SuspendLayout();
this.groupBox10.SuspendLayout();
this.SuspendLayout();
//
// tbVolume
@@ -144,7 +149,7 @@
this.groupBox2.Controls.Add(this.groupBox4);
this.groupBox2.Location = new System.Drawing.Point(280, 12);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(262, 287);
this.groupBox2.Size = new System.Drawing.Size(262, 298);
this.groupBox2.TabIndex = 10;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "키워드";
@@ -336,11 +341,53 @@
this.groupBox9.TabStop = false;
this.groupBox9.Text = "종목편집";
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(9, 20);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(29, 12);
this.label1.TabIndex = 13;
this.label1.Text = "가격";
//
// tbBuyPrice
//
this.tbBuyPrice.Location = new System.Drawing.Point(61, 17);
this.tbBuyPrice.Name = "tbBuyPrice";
this.tbBuyPrice.Size = new System.Drawing.Size(107, 21);
this.tbBuyPrice.TabIndex = 12;
this.tbBuyPrice.Text = "1000000";
this.tbBuyPrice.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
this.tbBuyPrice.TextChanged += new System.EventHandler(this.tbBuyPrice_TextChanged);
this.tbBuyPrice.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.tbBuyPrice_KeyPress);
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(174, 20);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(17, 12);
this.label4.TabIndex = 14;
this.label4.Text = "원";
//
// groupBox10
//
this.groupBox10.Controls.Add(this.tbBuyPrice);
this.groupBox10.Controls.Add(this.label4);
this.groupBox10.Controls.Add(this.label1);
this.groupBox10.Location = new System.Drawing.Point(10, 264);
this.groupBox10.Name = "groupBox10";
this.groupBox10.Size = new System.Drawing.Size(262, 46);
this.groupBox10.TabIndex = 15;
this.groupBox10.TabStop = false;
this.groupBox10.Text = "매수";
//
// ConfigForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(548, 307);
this.ClientSize = new System.Drawing.Size(548, 320);
this.Controls.Add(this.groupBox10);
this.Controls.Add(this.groupBox9);
this.Controls.Add(this.groupBox2);
this.Controls.Add(this.groupBox1);
@@ -359,6 +406,8 @@
this.groupBox7.ResumeLayout(false);
this.groupBox8.ResumeLayout(false);
this.groupBox9.ResumeLayout(false);
this.groupBox10.ResumeLayout(false);
this.groupBox10.PerformLayout();
this.ResumeLayout(false);
}
@@ -390,5 +439,9 @@
private System.Windows.Forms.Button btnDuplicatedCodeApply;
private System.Windows.Forms.Button btnDuplicatedCodeEdit;
private System.Windows.Forms.GroupBox groupBox9;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox tbBuyPrice;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.GroupBox groupBox10;
}
}