namespace TradeIdeas.TIProGUI.OrderEntry { partial class BracketOrderControl { /// /// 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 Component Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.chkAddStopLoss = new System.Windows.Forms.CheckBox(); this.btnApply = new System.Windows.Forms.Button(); this.cboStopLossOrderType = new System.Windows.Forms.ComboBox(); this.txtStopPrice = new System.Windows.Forms.TextBox(); this.txtLimitPrice = new System.Windows.Forms.TextBox(); this.chkAddTargetOrder = new System.Windows.Forms.CheckBox(); this.cboTargetOrderType = new System.Windows.Forms.ComboBox(); this.txtTargetOrderPrice = new System.Windows.Forms.TextBox(); this.SuspendLayout(); // // chkAddStopLoss // this.chkAddStopLoss.AutoSize = true; this.chkAddStopLoss.Location = new System.Drawing.Point(13, 13); this.chkAddStopLoss.Name = "chkAddStopLoss"; this.chkAddStopLoss.Size = new System.Drawing.Size(95, 17); this.chkAddStopLoss.TabIndex = 0; this.chkAddStopLoss.Text = "Add Stop Loss"; this.chkAddStopLoss.UseVisualStyleBackColor = true; // // btnApply // this.btnApply.BackColor = System.Drawing.SystemColors.Control; this.btnApply.FlatAppearance.BorderSize = 0; this.btnApply.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnApply.ForeColor = System.Drawing.SystemColors.ControlText; this.btnApply.Location = new System.Drawing.Point(109, 134); this.btnApply.Name = "btnApply"; this.btnApply.Size = new System.Drawing.Size(75, 23); this.btnApply.TabIndex = 1; this.btnApply.Text = "Apply"; this.btnApply.UseVisualStyleBackColor = false; this.btnApply.Click += new System.EventHandler(this.btnApply_Click); // // cboStopLossOrderType // this.cboStopLossOrderType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cboStopLossOrderType.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.cboStopLossOrderType.FormattingEnabled = true; this.cboStopLossOrderType.Items.AddRange(new object[] { "Stp Mkt", "Stp Lmt"}); this.cboStopLossOrderType.Location = new System.Drawing.Point(13, 36); this.cboStopLossOrderType.Name = "cboStopLossOrderType"; this.cboStopLossOrderType.Size = new System.Drawing.Size(69, 21); this.cboStopLossOrderType.TabIndex = 5; // // txtStopPrice // this.txtStopPrice.Location = new System.Drawing.Point(88, 36); this.txtStopPrice.Name = "txtStopPrice"; this.txtStopPrice.Size = new System.Drawing.Size(66, 20); this.txtStopPrice.TabIndex = 6; this.txtStopPrice.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtStopPrice_KeyPress); // // txtLimitPrice // this.txtLimitPrice.Location = new System.Drawing.Point(160, 36); this.txtLimitPrice.Name = "txtLimitPrice"; this.txtLimitPrice.Size = new System.Drawing.Size(66, 20); this.txtLimitPrice.TabIndex = 7; this.txtLimitPrice.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtLimitPrice_KeyPress); // // chkAddTargetOrder // this.chkAddTargetOrder.AutoSize = true; this.chkAddTargetOrder.Location = new System.Drawing.Point(13, 72); this.chkAddTargetOrder.Name = "chkAddTargetOrder"; this.chkAddTargetOrder.Size = new System.Drawing.Size(108, 17); this.chkAddTargetOrder.TabIndex = 8; this.chkAddTargetOrder.Text = "Add Target Order"; this.chkAddTargetOrder.UseVisualStyleBackColor = true; // // cboTargetOrderType // this.cboTargetOrderType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cboTargetOrderType.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.cboTargetOrderType.FormattingEnabled = true; this.cboTargetOrderType.Items.AddRange(new object[] { "Limit"}); this.cboTargetOrderType.Location = new System.Drawing.Point(13, 95); this.cboTargetOrderType.Name = "cboTargetOrderType"; this.cboTargetOrderType.Size = new System.Drawing.Size(69, 21); this.cboTargetOrderType.TabIndex = 9; // // txtTargetOrderPrice // this.txtTargetOrderPrice.Location = new System.Drawing.Point(88, 95); this.txtTargetOrderPrice.Name = "txtTargetOrderPrice"; this.txtTargetOrderPrice.Size = new System.Drawing.Size(66, 20); this.txtTargetOrderPrice.TabIndex = 10; this.txtTargetOrderPrice.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtTargetOrderPrice_KeyPress); // // BracketOrderControl // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Controls.Add(this.txtTargetOrderPrice); this.Controls.Add(this.cboTargetOrderType); this.Controls.Add(this.chkAddTargetOrder); this.Controls.Add(this.txtLimitPrice); this.Controls.Add(this.txtStopPrice); this.Controls.Add(this.cboStopLossOrderType); this.Controls.Add(this.btnApply); this.Controls.Add(this.chkAddStopLoss); this.Name = "BracketOrderControl"; this.Size = new System.Drawing.Size(291, 172); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.CheckBox chkAddStopLoss; private System.Windows.Forms.Button btnApply; private System.Windows.Forms.ComboBox cboStopLossOrderType; private System.Windows.Forms.TextBox txtStopPrice; private System.Windows.Forms.TextBox txtLimitPrice; private System.Windows.Forms.CheckBox chkAddTargetOrder; private System.Windows.Forms.ComboBox cboTargetOrderType; private System.Windows.Forms.TextBox txtTargetOrderPrice; } }