namespace upper_limit_crawler { partial class ULBalanceDlg { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.lvBalance = new System.Windows.Forms.ListView(); this.chCode = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.chName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.chUnitBuyPrice = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.chUnitBEP = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.chCurPrice = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.chEvaluationProfit = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.chBalance = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.chEvaluationPrice = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.chProfitRate = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.btRefresh = new System.Windows.Forms.Button(); this.btSellAll = new System.Windows.Forms.Button(); this.btSell = new System.Windows.Forms.Button(); this.chHighestPrice = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.SuspendLayout(); // // lvBalance // this.lvBalance.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.lvBalance.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.chCode, this.chName, this.chUnitBuyPrice, this.chUnitBEP, this.chCurPrice, this.chEvaluationProfit, this.chBalance, this.chEvaluationPrice, this.chHighestPrice, this.chProfitRate}); this.lvBalance.FullRowSelect = true; this.lvBalance.GridLines = true; this.lvBalance.Location = new System.Drawing.Point(12, 12); this.lvBalance.MultiSelect = false; this.lvBalance.Name = "lvBalance"; this.lvBalance.Size = new System.Drawing.Size(637, 362); this.lvBalance.TabIndex = 0; this.lvBalance.UseCompatibleStateImageBehavior = false; this.lvBalance.View = System.Windows.Forms.View.Details; this.lvBalance.ItemSelectionChanged += new System.Windows.Forms.ListViewItemSelectionChangedEventHandler(this.lvBalance_ItemSelectionChanged); // // chCode // this.chCode.Text = "종목코드"; // // chName // this.chName.Text = "종목명"; this.chName.Width = 100; // // chUnitBuyPrice // this.chUnitBuyPrice.Text = "장부가"; this.chUnitBuyPrice.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; // // chUnitBEP // this.chUnitBEP.Text = "손익단가"; this.chUnitBEP.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; // // chCurPrice // this.chCurPrice.Text = "현재가"; this.chCurPrice.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; // // chEvaluationProfit // this.chEvaluationProfit.Text = "평가손익"; this.chEvaluationProfit.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; // // chBalance // this.chBalance.Text = "잔고수량"; this.chBalance.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; // // chEvaluationPrice // this.chEvaluationPrice.Text = "평가금액"; this.chEvaluationPrice.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; // // chProfitRate // this.chProfitRate.Text = "수익률"; this.chProfitRate.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; this.chProfitRate.Width = 80; // // btRefresh // this.btRefresh.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.btRefresh.Location = new System.Drawing.Point(12, 380); this.btRefresh.Name = "btRefresh"; this.btRefresh.Size = new System.Drawing.Size(75, 23); this.btRefresh.TabIndex = 1; this.btRefresh.Text = "갱신"; this.btRefresh.UseVisualStyleBackColor = true; this.btRefresh.Click += new System.EventHandler(this.btRefresh_Click); // // btSellAll // this.btSellAll.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btSellAll.Location = new System.Drawing.Point(574, 380); this.btSellAll.Name = "btSellAll"; this.btSellAll.Size = new System.Drawing.Size(75, 23); this.btSellAll.TabIndex = 2; this.btSellAll.Text = "모두 청산"; this.btSellAll.UseVisualStyleBackColor = true; this.btSellAll.Click += new System.EventHandler(this.btSellAll_Click); // // btSell // this.btSell.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btSell.Location = new System.Drawing.Point(493, 380); this.btSell.Name = "btSell"; this.btSell.Size = new System.Drawing.Size(75, 23); this.btSell.TabIndex = 3; this.btSell.Text = "매도"; this.btSell.UseVisualStyleBackColor = true; this.btSell.Click += new System.EventHandler(this.btSell_Click); // // chHighestPrice // this.chHighestPrice.Text = "최고가"; // // ULBalanceDlg // this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(661, 415); this.Controls.Add(this.btSell); this.Controls.Add(this.btSellAll); this.Controls.Add(this.btRefresh); this.Controls.Add(this.lvBalance); this.DoubleBuffered = true; this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; this.Name = "ULBalanceDlg"; this.Text = "잔고 평가"; this.ResumeLayout(false); } #endregion private System.Windows.Forms.ListView lvBalance; private System.Windows.Forms.ColumnHeader chName; private System.Windows.Forms.ColumnHeader chCurPrice; private System.Windows.Forms.ColumnHeader chBalance; private System.Windows.Forms.ColumnHeader chUnitBEP; private System.Windows.Forms.ColumnHeader chEvaluationProfit; private System.Windows.Forms.ColumnHeader chProfitRate; private System.Windows.Forms.Button btRefresh; private System.Windows.Forms.ColumnHeader chCode; private System.Windows.Forms.ColumnHeader chUnitBuyPrice; private System.Windows.Forms.ColumnHeader chEvaluationPrice; private System.Windows.Forms.Button btSellAll; private System.Windows.Forms.Button btSell; private System.Windows.Forms.ColumnHeader chHighestPrice; } }