- monitor, balance subscribe로 수정

- UI 개선
This commit is contained in:
2016-07-20 23:46:28 +09:00
parent 069557e102
commit 7aec7e8361
14 changed files with 659 additions and 377 deletions

32
MainForm.Designer.cs generated
View File

@@ -51,6 +51,8 @@
this.splitContainer1 = new System.Windows.Forms.SplitContainer();
this.splitContainer2 = new System.Windows.Forms.SplitContainer();
this.splitContainer3 = new System.Windows.Forms.SplitContainer();
this.lbSBCnt = new System.Windows.Forms.Label();
this.lbRQCnt = new System.Windows.Forms.Label();
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
this.splitContainer1.Panel1.SuspendLayout();
this.splitContainer1.Panel2.SuspendLayout();
@@ -102,7 +104,7 @@
this.tbBidAmount.Name = "tbBidAmount";
this.tbBidAmount.Size = new System.Drawing.Size(100, 21);
this.tbBidAmount.TabIndex = 9;
this.tbBidAmount.Text = "1,000,000";
this.tbBidAmount.Text = "100,000";
this.tbBidAmount.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
//
// tbTimeout
@@ -201,7 +203,7 @@
this.tbSearchMin.Name = "tbSearchMin";
this.tbSearchMin.Size = new System.Drawing.Size(37, 21);
this.tbSearchMin.TabIndex = 14;
this.tbSearchMin.Text = "9.0%";
this.tbSearchMin.Text = "7.0%";
this.tbSearchMin.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
//
// btApply
@@ -281,6 +283,8 @@
//
// splitContainer2.Panel2
//
this.splitContainer2.Panel2.Controls.Add(this.lbSBCnt);
this.splitContainer2.Panel2.Controls.Add(this.lbRQCnt);
this.splitContainer2.Panel2.Controls.Add(this.btBalance);
this.splitContainer2.Panel2.Controls.Add(this.label1);
this.splitContainer2.Panel2.Controls.Add(this.label5);
@@ -314,6 +318,24 @@
this.splitContainer3.SplitterDistance = 231;
this.splitContainer3.TabIndex = 0;
//
// lbSBCnt
//
this.lbSBCnt.AutoSize = true;
this.lbSBCnt.Location = new System.Drawing.Point(29, 278);
this.lbSBCnt.Name = "lbSBCnt";
this.lbSBCnt.Size = new System.Drawing.Size(70, 12);
this.lbSBCnt.TabIndex = 19;
this.lbSBCnt.Text = "SB Count : ";
//
// lbRQCnt
//
this.lbRQCnt.AutoSize = true;
this.lbRQCnt.Location = new System.Drawing.Point(29, 254);
this.lbRQCnt.Name = "lbRQCnt";
this.lbRQCnt.Size = new System.Drawing.Size(71, 12);
this.lbRQCnt.TabIndex = 18;
this.lbRQCnt.Text = "RQ Count : ";
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
@@ -321,7 +343,7 @@
this.ClientSize = new System.Drawing.Size(886, 642);
this.Controls.Add(this.splitContainer1);
this.Name = "MainForm";
this.Text = "Form1";
this.Text = "Upper Limit";
this.splitContainer1.Panel1.ResumeLayout(false);
this.splitContainer1.Panel2.ResumeLayout(false);
this.splitContainer1.Panel2.PerformLayout();
@@ -362,6 +384,8 @@
private System.Windows.Forms.SplitContainer splitContainer1;
private System.Windows.Forms.SplitContainer splitContainer2;
private System.Windows.Forms.SplitContainer splitContainer3;
}
private System.Windows.Forms.Label lbRQCnt;
private System.Windows.Forms.Label lbSBCnt;
}
}