- Status bar 추가

- webview 삭제
- double click 시 브라우저로 이동
- Dart API 적용
- 종목명 검색 개선
This commit is contained in:
2017-01-09 08:01:43 +09:00
parent f9057cea61
commit 349de89a05
11 changed files with 1430 additions and 691 deletions

53
ConfigForm.Designer.cs generated
View File

@@ -62,6 +62,10 @@
this.tbAccountSub = new System.Windows.Forms.TextBox();
this.groupBox11 = new System.Windows.Forms.GroupBox();
this.btnAccountApply = new System.Windows.Forms.Button();
this.groupBox12 = new System.Windows.Forms.GroupBox();
this.label5 = new System.Windows.Forms.Label();
this.tbSupplyContractRate = new System.Windows.Forms.TextBox();
this.label6 = new System.Windows.Forms.Label();
this.groupBox1.SuspendLayout();
this.groupBox2.SuspendLayout();
this.groupBox6.SuspendLayout();
@@ -73,6 +77,7 @@
this.groupBox9.SuspendLayout();
this.groupBox10.SuspendLayout();
this.groupBox11.SuspendLayout();
this.groupBox12.SuspendLayout();
this.SuspendLayout();
//
// tbVolume
@@ -426,11 +431,53 @@
this.btnAccountApply.UseVisualStyleBackColor = true;
this.btnAccountApply.Click += new System.EventHandler(this.btnAccountApply_Click);
//
// groupBox12
//
this.groupBox12.Controls.Add(this.label6);
this.groupBox12.Controls.Add(this.tbSupplyContractRate);
this.groupBox12.Controls.Add(this.label5);
this.groupBox12.Location = new System.Drawing.Point(280, 316);
this.groupBox12.Name = "groupBox12";
this.groupBox12.Size = new System.Drawing.Size(262, 57);
this.groupBox12.TabIndex = 19;
this.groupBox12.TabStop = false;
this.groupBox12.Text = "공시";
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(28, 23);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(77, 12);
this.label5.TabIndex = 0;
this.label5.Text = "공급계약체결";
//
// tbSupplyContractRate
//
this.tbSupplyContractRate.Location = new System.Drawing.Point(111, 20);
this.tbSupplyContractRate.Name = "tbSupplyContractRate";
this.tbSupplyContractRate.Size = new System.Drawing.Size(100, 21);
this.tbSupplyContractRate.TabIndex = 1;
this.tbSupplyContractRate.Text = "5.0";
this.tbSupplyContractRate.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
this.tbSupplyContractRate.TextChanged += new System.EventHandler(this.tbSupplyContractRate_TextChanged);
this.tbSupplyContractRate.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.tbSupplyContractRate_KeyPress);
//
// label6
//
this.label6.AutoSize = true;
this.label6.Location = new System.Drawing.Point(217, 23);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(15, 12);
this.label6.TabIndex = 2;
this.label6.Text = "%";
//
// ConfigForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(548, 385);
this.Controls.Add(this.groupBox12);
this.Controls.Add(this.groupBox11);
this.Controls.Add(this.groupBox10);
this.Controls.Add(this.groupBox9);
@@ -456,6 +503,8 @@
this.groupBox10.PerformLayout();
this.groupBox11.ResumeLayout(false);
this.groupBox11.PerformLayout();
this.groupBox12.ResumeLayout(false);
this.groupBox12.PerformLayout();
this.ResumeLayout(false);
}
@@ -495,5 +544,9 @@
private System.Windows.Forms.TextBox tbAccountSub;
private System.Windows.Forms.GroupBox groupBox11;
private System.Windows.Forms.Button btnAccountApply;
private System.Windows.Forms.GroupBox groupBox12;
private System.Windows.Forms.Label label6;
private System.Windows.Forms.TextBox tbSupplyContractRate;
private System.Windows.Forms.Label label5;
}
}