namespace TIProAutoTradeExtension { partial class OrdersGrid { /// /// 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.components = new System.ComponentModel.Container(); this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components); this.newOrderToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.closeTabToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.columnsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.saveAsDefaultToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.tableLayoutPanel1 = new TIProAutoTradeExtension.DBLayoutPanel(this.components); this.dataGridView1 = new System.Windows.Forms.DataGridView(); this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel(); this.comboBoxOrderStatus = new System.Windows.Forms.ComboBox(); this.comboBoxAccounts = new System.Windows.Forms.ComboBox(); this.comboBoxCheckedList = new System.Windows.Forms.ComboBox(); this.comboBoxSymbols = new System.Windows.Forms.ComboBox(); this.comboBoxTradeType = new System.Windows.Forms.ComboBox(); this.buttonCancel = new System.Windows.Forms.Button(); this.chkPinned = new System.Windows.Forms.CheckBox(); this.contextMenuStrip1.SuspendLayout(); this.tableLayoutPanel1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit(); this.flowLayoutPanel1.SuspendLayout(); this.SuspendLayout(); // // contextMenuStrip1 // this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.newOrderToolStripMenuItem, this.closeTabToolStripMenuItem, this.columnsToolStripMenuItem, this.saveAsDefaultToolStripMenuItem}); this.contextMenuStrip1.Name = "contextMenuStrip1"; this.contextMenuStrip1.Size = new System.Drawing.Size(154, 92); // // newOrderToolStripMenuItem // this.newOrderToolStripMenuItem.Name = "newOrderToolStripMenuItem"; this.newOrderToolStripMenuItem.Size = new System.Drawing.Size(153, 22); this.newOrderToolStripMenuItem.Text = "New Order..."; this.newOrderToolStripMenuItem.Click += new System.EventHandler(this.newOrderToolStripMenuItem_Click); // // closeTabToolStripMenuItem // this.closeTabToolStripMenuItem.Name = "closeTabToolStripMenuItem"; this.closeTabToolStripMenuItem.Size = new System.Drawing.Size(153, 22); this.closeTabToolStripMenuItem.Text = "Close Tab"; this.closeTabToolStripMenuItem.Visible = false; this.closeTabToolStripMenuItem.Click += new System.EventHandler(this.closeTabToolStripMenuItem_Click); // // columnsToolStripMenuItem // this.columnsToolStripMenuItem.Name = "columnsToolStripMenuItem"; this.columnsToolStripMenuItem.Size = new System.Drawing.Size(153, 22); this.columnsToolStripMenuItem.Text = "Columns..."; this.columnsToolStripMenuItem.Click += new System.EventHandler(this.columnsToolStripMenuItem_Click); // // saveAsDefaultToolStripMenuItem // this.saveAsDefaultToolStripMenuItem.Name = "saveAsDefaultToolStripMenuItem"; this.saveAsDefaultToolStripMenuItem.Size = new System.Drawing.Size(153, 22); this.saveAsDefaultToolStripMenuItem.Text = "Save as Default"; this.saveAsDefaultToolStripMenuItem.Click += new System.EventHandler(this.saveAsDefaultToolStripMenuItem_Click); // // tableLayoutPanel1 // this.tableLayoutPanel1.BackColor = System.Drawing.Color.Black; this.tableLayoutPanel1.ColumnCount = 1; this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); this.tableLayoutPanel1.Controls.Add(this.dataGridView1, 0, 1); this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanel1, 0, 0); this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill; this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0); this.tableLayoutPanel1.Margin = new System.Windows.Forms.Padding(0); this.tableLayoutPanel1.Name = "tableLayoutPanel1"; this.tableLayoutPanel1.RowCount = 2; this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle()); this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F)); this.tableLayoutPanel1.Size = new System.Drawing.Size(733, 312); this.tableLayoutPanel1.TabIndex = 1; // // dataGridView1 // this.dataGridView1.AllowUserToAddRows = false; this.dataGridView1.AllowUserToDeleteRows = false; this.dataGridView1.AllowUserToOrderColumns = true; this.dataGridView1.AllowUserToResizeRows = false; this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.dataGridView1.Dock = System.Windows.Forms.DockStyle.Fill; this.dataGridView1.EditMode = System.Windows.Forms.DataGridViewEditMode.EditProgrammatically; this.dataGridView1.Location = new System.Drawing.Point(0, 56); this.dataGridView1.Margin = new System.Windows.Forms.Padding(0); this.dataGridView1.Name = "dataGridView1"; this.dataGridView1.RowHeadersVisible = false; this.dataGridView1.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; this.dataGridView1.Size = new System.Drawing.Size(733, 256); this.dataGridView1.TabIndex = 0; this.dataGridView1.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.DataGridView1_CellClick); this.dataGridView1.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellDoubleClick); this.dataGridView1.CellMouseEnter += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellEnter); this.dataGridView1.CellMouseLeave += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellLeave); this.dataGridView1.SelectionChanged += new System.EventHandler(this.dataGridView1_SelectionChanged); this.dataGridView1.Click += new System.EventHandler(this.dataGridView1_Click); // // flowLayoutPanel1 // this.flowLayoutPanel1.AutoSize = true; this.flowLayoutPanel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(53)))), ((int)(((byte)(79))))); this.flowLayoutPanel1.Controls.Add(this.comboBoxOrderStatus); this.flowLayoutPanel1.Controls.Add(this.comboBoxAccounts); this.flowLayoutPanel1.Controls.Add(this.comboBoxCheckedList); this.flowLayoutPanel1.Controls.Add(this.comboBoxSymbols); this.flowLayoutPanel1.Controls.Add(this.comboBoxTradeType); this.flowLayoutPanel1.Controls.Add(this.buttonCancel); this.flowLayoutPanel1.Controls.Add(this.chkPinned); this.flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill; this.flowLayoutPanel1.Location = new System.Drawing.Point(0, 0); this.flowLayoutPanel1.Margin = new System.Windows.Forms.Padding(0); this.flowLayoutPanel1.Name = "flowLayoutPanel1"; this.flowLayoutPanel1.Size = new System.Drawing.Size(733, 56); this.flowLayoutPanel1.TabIndex = 1; // // comboBoxOrderStatus // this.comboBoxOrderStatus.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboBoxOrderStatus.FormattingEnabled = true; this.comboBoxOrderStatus.Items.AddRange(new object[] { "All Statuses", "Live", "Not Live", "Queued", "Submitted", "Cancelled", "Filled", "Partially Filled"}); this.comboBoxOrderStatus.Location = new System.Drawing.Point(3, 3); this.comboBoxOrderStatus.Name = "comboBoxOrderStatus"; this.comboBoxOrderStatus.Size = new System.Drawing.Size(109, 21); this.comboBoxOrderStatus.TabIndex = 7; this.comboBoxOrderStatus.SelectedIndexChanged += new System.EventHandler(this.comboBoxOrderType_SelectedIndexChanged); // // comboBoxAccounts // this.comboBoxAccounts.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboBoxAccounts.FormattingEnabled = true; this.comboBoxAccounts.Location = new System.Drawing.Point(118, 3); this.comboBoxAccounts.Name = "comboBoxAccounts"; this.comboBoxAccounts.Size = new System.Drawing.Size(152, 21); this.comboBoxAccounts.TabIndex = 3; this.comboBoxAccounts.SelectedIndexChanged += new System.EventHandler(this.comboBoxAccounts_SelectedIndexChanged); // // comboBoxCheckedList // this.comboBoxCheckedList.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboBoxCheckedList.FormattingEnabled = true; this.comboBoxCheckedList.Items.AddRange(new object[] { "All Strategies"}); this.comboBoxCheckedList.Location = new System.Drawing.Point(276, 3); this.comboBoxCheckedList.Name = "comboBoxCheckedList"; this.comboBoxCheckedList.Size = new System.Drawing.Size(152, 21); this.comboBoxCheckedList.TabIndex = 9; this.comboBoxCheckedList.Click += new System.EventHandler(this.comboBoxCheckedList_Click); // // comboBoxSymbols // this.comboBoxSymbols.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboBoxSymbols.FormattingEnabled = true; this.comboBoxSymbols.Location = new System.Drawing.Point(434, 3); this.comboBoxSymbols.Name = "comboBoxSymbols"; this.comboBoxSymbols.Size = new System.Drawing.Size(109, 21); this.comboBoxSymbols.TabIndex = 5; this.comboBoxSymbols.SelectedIndexChanged += new System.EventHandler(this.comboBoxSymbols_SelectedIndexChanged); // // comboBoxTradeType // this.comboBoxTradeType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboBoxTradeType.FormattingEnabled = true; this.comboBoxTradeType.Items.AddRange(new object[] { "All Types", "Market", "Stop", "Limit", "Time Stop"}); this.comboBoxTradeType.Location = new System.Drawing.Point(549, 3); this.comboBoxTradeType.Margin = new System.Windows.Forms.Padding(3, 3, 30, 3); this.comboBoxTradeType.Name = "comboBoxTradeType"; this.comboBoxTradeType.Size = new System.Drawing.Size(109, 21); this.comboBoxTradeType.TabIndex = 8; this.comboBoxTradeType.SelectedIndexChanged += new System.EventHandler(this.comboBoxTradeType_SelectedIndexChanged); // // buttonCancel // this.buttonCancel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192))))); this.buttonCancel.Enabled = false; this.buttonCancel.Location = new System.Drawing.Point(3, 30); this.buttonCancel.Name = "buttonCancel"; this.buttonCancel.Size = new System.Drawing.Size(91, 23); this.buttonCancel.TabIndex = 6; this.buttonCancel.Text = "Cancel Order(s)"; this.buttonCancel.UseVisualStyleBackColor = false; this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click); // // chkPinned // this.chkPinned.AutoSize = true; this.chkPinned.Dock = System.Windows.Forms.DockStyle.Fill; this.chkPinned.ForeColor = System.Drawing.Color.White; this.chkPinned.Location = new System.Drawing.Point(100, 30); this.chkPinned.Name = "chkPinned"; this.chkPinned.Size = new System.Drawing.Size(59, 23); this.chkPinned.TabIndex = 10; this.chkPinned.Text = "Pinned"; this.chkPinned.UseVisualStyleBackColor = true; this.chkPinned.Visible = false; this.chkPinned.CheckedChanged += new System.EventHandler(this.chkPinned_CheckedChanged); // // OrdersGrid // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Controls.Add(this.tableLayoutPanel1); this.Name = "OrdersGrid"; this.Size = new System.Drawing.Size(733, 312); this.contextMenuStrip1.ResumeLayout(false); this.tableLayoutPanel1.ResumeLayout(false); this.tableLayoutPanel1.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit(); this.flowLayoutPanel1.ResumeLayout(false); this.flowLayoutPanel1.PerformLayout(); this.ResumeLayout(false); } #endregion private System.Windows.Forms.DataGridView dataGridView1; private System.Windows.Forms.ContextMenuStrip contextMenuStrip1; private System.Windows.Forms.ToolStripMenuItem newOrderToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem closeTabToolStripMenuItem; private DBLayoutPanel tableLayoutPanel1; private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1; private System.Windows.Forms.ComboBox comboBoxAccounts; private System.Windows.Forms.ComboBox comboBoxSymbols; private System.Windows.Forms.Button buttonCancel; private System.Windows.Forms.ComboBox comboBoxOrderStatus; private System.Windows.Forms.ComboBox comboBoxTradeType; private System.Windows.Forms.ComboBox comboBoxCheckedList; private System.Windows.Forms.CheckBox chkPinned; private System.Windows.Forms.ToolStripMenuItem saveAsDefaultToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem columnsToolStripMenuItem; } }