namespace TradeIdeas.TIProGUI.OrderEntry
{
partial class OrderEntryControl
{
///
/// 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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(OrderEntryControl));
this.btnBuy = new System.Windows.Forms.Button();
this.btnSell = new System.Windows.Forms.Button();
this.btnSend = new System.Windows.Forms.Button();
this.txtQuantity = new System.Windows.Forms.TextBox();
this.cboOrderType = new System.Windows.Forms.ComboBox();
this.txtLimit = new System.Windows.Forms.TextBox();
this.txtPrice = new System.Windows.Forms.TextBox();
this.cboTimeInForce = new System.Windows.Forms.ComboBox();
this.lblBidPrice = new System.Windows.Forms.Label();
this.lblLastPrice = new System.Windows.Forms.Label();
this.lblAskPrice = new System.Windows.Forms.Label();
this.cboQuantityType = new System.Windows.Forms.ComboBox();
this.picBracketOrder = new System.Windows.Forms.PictureBox();
this.picTimeStop = new System.Windows.Forms.PictureBox();
this.txtStop = new System.Windows.Forms.TextBox();
this.txtAccount = new System.Windows.Forms.TextBox();
((System.ComponentModel.ISupportInitialize)(this.picBracketOrder)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.picTimeStop)).BeginInit();
this.SuspendLayout();
//
// btnBuy
//
this.btnBuy.BackColor = System.Drawing.SystemColors.Control;
this.btnBuy.FlatAppearance.BorderSize = 0;
this.btnBuy.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnBuy.ForeColor = System.Drawing.SystemColors.ControlText;
this.btnBuy.Location = new System.Drawing.Point(5, 34);
this.btnBuy.Name = "btnBuy";
this.btnBuy.Size = new System.Drawing.Size(56, 23);
this.btnBuy.TabIndex = 0;
this.btnBuy.Text = "BUY";
this.btnBuy.UseVisualStyleBackColor = false;
this.btnBuy.Click += new System.EventHandler(this.btnBuy_Click);
//
// btnSell
//
this.btnSell.BackColor = System.Drawing.SystemColors.Control;
this.btnSell.FlatAppearance.BorderSize = 0;
this.btnSell.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnSell.ForeColor = System.Drawing.SystemColors.ControlText;
this.btnSell.Location = new System.Drawing.Point(61, 34);
this.btnSell.Name = "btnSell";
this.btnSell.Size = new System.Drawing.Size(56, 23);
this.btnSell.TabIndex = 1;
this.btnSell.Text = "SELL";
this.btnSell.UseVisualStyleBackColor = false;
this.btnSell.Click += new System.EventHandler(this.btnSell_Click);
//
// btnSend
//
this.btnSend.BackColor = System.Drawing.SystemColors.Control;
this.btnSend.FlatAppearance.BorderSize = 0;
this.btnSend.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnSend.ForeColor = System.Drawing.SystemColors.ControlText;
this.btnSend.Location = new System.Drawing.Point(483, 0);
this.btnSend.Name = "btnSend";
this.btnSend.Size = new System.Drawing.Size(67, 62);
this.btnSend.TabIndex = 2;
this.btnSend.Text = "SEND";
this.btnSend.UseVisualStyleBackColor = false;
this.btnSend.Click += new System.EventHandler(this.btnSend_Click);
//
// txtQuantity
//
this.txtQuantity.Location = new System.Drawing.Point(92, 5);
this.txtQuantity.Name = "txtQuantity";
this.txtQuantity.Size = new System.Drawing.Size(63, 20);
this.txtQuantity.TabIndex = 3;
this.txtQuantity.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtQuantity_KeyPress);
//
// cboOrderType
//
this.cboOrderType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cboOrderType.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.cboOrderType.FormattingEnabled = true;
this.cboOrderType.Items.AddRange(new object[] {
"Market",
"Limit",
"Stp Mkt",
"Stp Lmt"});
this.cboOrderType.Location = new System.Drawing.Point(123, 36);
this.cboOrderType.Name = "cboOrderType";
this.cboOrderType.Size = new System.Drawing.Size(69, 21);
this.cboOrderType.TabIndex = 4;
this.cboOrderType.SelectedIndexChanged += new System.EventHandler(this.cboOrderType_SelectedIndexChanged);
//
// txtLimit
//
this.txtLimit.Enabled = false;
this.txtLimit.Location = new System.Drawing.Point(291, 37);
this.txtLimit.Name = "txtLimit";
this.txtLimit.Size = new System.Drawing.Size(74, 20);
this.txtLimit.TabIndex = 5;
this.txtLimit.Visible = false;
this.txtLimit.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtLimit_KeyPress);
//
// txtPrice
//
this.txtPrice.Location = new System.Drawing.Point(241, 37);
this.txtPrice.Name = "txtPrice";
this.txtPrice.Size = new System.Drawing.Size(92, 20);
this.txtPrice.TabIndex = 6;
this.txtPrice.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtPrice_KeyPress);
//
// cboTimeInForce
//
this.cboTimeInForce.DropDownHeight = 1;
this.cboTimeInForce.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cboTimeInForce.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.cboTimeInForce.FormattingEnabled = true;
this.cboTimeInForce.IntegralHeight = false;
this.cboTimeInForce.Location = new System.Drawing.Point(371, 37);
this.cboTimeInForce.Name = "cboTimeInForce";
this.cboTimeInForce.Size = new System.Drawing.Size(70, 21);
this.cboTimeInForce.TabIndex = 8;
this.cboTimeInForce.Click += new System.EventHandler(this.cboTimeInForce_Click);
this.cboTimeInForce.Enter += new System.EventHandler(this.cboTimeInForce_Enter);
//
// lblBidPrice
//
this.lblBidPrice.BackColor = System.Drawing.SystemColors.Control;
this.lblBidPrice.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblBidPrice.ForeColor = System.Drawing.SystemColors.ControlText;
this.lblBidPrice.Location = new System.Drawing.Point(227, 4);
this.lblBidPrice.Margin = new System.Windows.Forms.Padding(0);
this.lblBidPrice.Name = "lblBidPrice";
this.lblBidPrice.Size = new System.Drawing.Size(40, 27);
this.lblBidPrice.TabIndex = 12;
this.lblBidPrice.Text = "Bid\r\n1.00";
this.lblBidPrice.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.lblBidPrice.Click += new System.EventHandler(this.lblBidPrice_Click);
//
// lblLastPrice
//
this.lblLastPrice.BackColor = System.Drawing.SystemColors.Control;
this.lblLastPrice.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblLastPrice.ForeColor = System.Drawing.SystemColors.ControlText;
this.lblLastPrice.Location = new System.Drawing.Point(267, 4);
this.lblLastPrice.Margin = new System.Windows.Forms.Padding(0);
this.lblLastPrice.Name = "lblLastPrice";
this.lblLastPrice.Size = new System.Drawing.Size(40, 27);
this.lblLastPrice.TabIndex = 13;
this.lblLastPrice.Text = "Last\r\n2.00";
this.lblLastPrice.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.lblLastPrice.Click += new System.EventHandler(this.lblLastPrice_Click);
//
// lblAskPrice
//
this.lblAskPrice.BackColor = System.Drawing.SystemColors.Control;
this.lblAskPrice.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblAskPrice.ForeColor = System.Drawing.SystemColors.ControlText;
this.lblAskPrice.Location = new System.Drawing.Point(307, 4);
this.lblAskPrice.Margin = new System.Windows.Forms.Padding(0);
this.lblAskPrice.Name = "lblAskPrice";
this.lblAskPrice.Size = new System.Drawing.Size(40, 27);
this.lblAskPrice.TabIndex = 14;
this.lblAskPrice.Text = "Ask\r\n3.00";
this.lblAskPrice.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.lblAskPrice.Click += new System.EventHandler(this.lblAskPrice_Click);
//
// cboQuantityType
//
this.cboQuantityType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cboQuantityType.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.cboQuantityType.FormattingEnabled = true;
this.cboQuantityType.Items.AddRange(new object[] {
"Dollars",
"Shares"});
this.cboQuantityType.Location = new System.Drawing.Point(161, 5);
this.cboQuantityType.Name = "cboQuantityType";
this.cboQuantityType.Size = new System.Drawing.Size(59, 21);
this.cboQuantityType.TabIndex = 15;
//
// picBracketOrder
//
this.picBracketOrder.BackColor = System.Drawing.Color.Transparent;
this.picBracketOrder.Image = ((System.Drawing.Image)(resources.GetObject("picBracketOrder.Image")));
this.picBracketOrder.Location = new System.Drawing.Point(447, 34);
this.picBracketOrder.Name = "picBracketOrder";
this.picBracketOrder.Size = new System.Drawing.Size(25, 25);
this.picBracketOrder.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.picBracketOrder.TabIndex = 10;
this.picBracketOrder.TabStop = false;
this.picBracketOrder.Click += new System.EventHandler(this.picBracketOrder_Click);
//
// picTimeStop
//
this.picTimeStop.BackColor = System.Drawing.Color.Transparent;
this.picTimeStop.Image = ((System.Drawing.Image)(resources.GetObject("picTimeStop.Image")));
this.picTimeStop.Location = new System.Drawing.Point(447, 5);
this.picTimeStop.Name = "picTimeStop";
this.picTimeStop.Size = new System.Drawing.Size(25, 25);
this.picTimeStop.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.picTimeStop.TabIndex = 9;
this.picTimeStop.TabStop = false;
this.picTimeStop.Click += new System.EventHandler(this.picTimeStop_Click);
//
// txtStop
//
this.txtStop.Enabled = false;
this.txtStop.Location = new System.Drawing.Point(209, 37);
this.txtStop.Name = "txtStop";
this.txtStop.Size = new System.Drawing.Size(74, 20);
this.txtStop.TabIndex = 16;
this.txtStop.Visible = false;
this.txtStop.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtStop_KeyPress);
//
// txtAccount
//
this.txtAccount.Location = new System.Drawing.Point(368, 7);
this.txtAccount.Name = "txtAccount";
this.txtAccount.ReadOnly = true;
this.txtAccount.Size = new System.Drawing.Size(73, 20);
this.txtAccount.TabIndex = 17;
this.txtAccount.Text = "Account";
this.txtAccount.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
//
// OrderEntryControl
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.Control;
this.Controls.Add(this.txtAccount);
this.Controls.Add(this.txtStop);
this.Controls.Add(this.cboQuantityType);
this.Controls.Add(this.lblAskPrice);
this.Controls.Add(this.lblLastPrice);
this.Controls.Add(this.lblBidPrice);
this.Controls.Add(this.picBracketOrder);
this.Controls.Add(this.picTimeStop);
this.Controls.Add(this.cboTimeInForce);
this.Controls.Add(this.txtLimit);
this.Controls.Add(this.cboOrderType);
this.Controls.Add(this.txtQuantity);
this.Controls.Add(this.btnSend);
this.Controls.Add(this.btnSell);
this.Controls.Add(this.btnBuy);
this.Controls.Add(this.txtPrice);
this.Name = "OrderEntryControl";
this.Size = new System.Drawing.Size(550, 62);
((System.ComponentModel.ISupportInitialize)(this.picBracketOrder)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.picTimeStop)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button btnBuy;
private System.Windows.Forms.Button btnSell;
private System.Windows.Forms.Button btnSend;
private System.Windows.Forms.TextBox txtQuantity;
private System.Windows.Forms.ComboBox cboOrderType;
private System.Windows.Forms.TextBox txtLimit;
private System.Windows.Forms.TextBox txtPrice;
private System.Windows.Forms.ComboBox cboTimeInForce;
private System.Windows.Forms.PictureBox picTimeStop;
private System.Windows.Forms.PictureBox picBracketOrder;
private System.Windows.Forms.Label lblBidPrice;
private System.Windows.Forms.Label lblLastPrice;
private System.Windows.Forms.Label lblAskPrice;
private System.Windows.Forms.ComboBox cboQuantityType;
private System.Windows.Forms.TextBox txtStop;
private System.Windows.Forms.TextBox txtAccount;
}
}