namespace TradeIdeas.TIProGUI.Charting
{
partial class IndicatorManager
{
///
/// 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.tabControl = new System.Windows.Forms.TabControl();
this.addTab = new System.Windows.Forms.TabPage();
this.addTabPanel = new System.Windows.Forms.Panel();
this.editTab = new System.Windows.Forms.TabPage();
this.dataGridView1 = new System.Windows.Forms.DataGridView();
this.btnAdd = new System.Windows.Forms.Button();
this.btnRemove = new System.Windows.Forms.Button();
this.btnSave = new System.Windows.Forms.Button();
this.lblTitle = new System.Windows.Forms.Label();
this.btnColor = new System.Windows.Forms.Button();
this.checkBoxShowInStatusLine = new System.Windows.Forms.CheckBox();
this.btnCLose = new System.Windows.Forms.Button();
this.tableLayoutPanelParameters = new System.Windows.Forms.TableLayoutPanel();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.aPanel = new System.Windows.Forms.Panel();
this.rdoMainChartArea = new System.Windows.Forms.RadioButton();
this.rdoNewArea = new System.Windows.Forms.RadioButton();
this.lblColor = new System.Windows.Forms.Label();
this.tabControl.SuspendLayout();
this.addTab.SuspendLayout();
this.editTab.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
this.tableLayoutPanelParameters.SuspendLayout();
this.groupBox1.SuspendLayout();
this.aPanel.SuspendLayout();
this.SuspendLayout();
//
// tabControl
//
this.tabControl.Controls.Add(this.addTab);
this.tabControl.Controls.Add(this.editTab);
this.tabControl.Location = new System.Drawing.Point(5, 10);
this.tabControl.Margin = new System.Windows.Forms.Padding(3, 0, 3, 3);
this.tabControl.Name = "tabControl";
this.tabControl.SelectedIndex = 0;
this.tabControl.Size = new System.Drawing.Size(208, 367);
this.tabControl.TabIndex = 0;
this.tabControl.SelectedIndexChanged += new System.EventHandler(this.tabControl_SelectedIndexChanged);
//
// addTab
//
this.addTab.Controls.Add(this.addTabPanel);
this.addTab.Location = new System.Drawing.Point(4, 22);
this.addTab.Name = "addTab";
this.addTab.Padding = new System.Windows.Forms.Padding(3);
this.addTab.Size = new System.Drawing.Size(200, 341);
this.addTab.TabIndex = 0;
this.addTab.Text = "Add";
this.addTab.UseVisualStyleBackColor = true;
//
// addTabPanel
//
this.addTabPanel.AutoScroll = true;
this.addTabPanel.Location = new System.Drawing.Point(0, 0);
this.addTabPanel.Margin = new System.Windows.Forms.Padding(0);
this.addTabPanel.Name = "addTabPanel";
this.addTabPanel.Size = new System.Drawing.Size(197, 335);
this.addTabPanel.TabIndex = 0;
//
// editTab
//
this.editTab.Controls.Add(this.dataGridView1);
this.editTab.Location = new System.Drawing.Point(4, 22);
this.editTab.Margin = new System.Windows.Forms.Padding(3, 3, 0, 3);
this.editTab.Name = "editTab";
this.editTab.Padding = new System.Windows.Forms.Padding(3);
this.editTab.Size = new System.Drawing.Size(200, 341);
this.editTab.TabIndex = 1;
this.editTab.Text = "Edit";
this.editTab.UseVisualStyleBackColor = true;
//
// dataGridView1
//
this.dataGridView1.AllowUserToAddRows = false;
this.dataGridView1.AllowUserToDeleteRows = false;
this.dataGridView1.AllowUserToResizeColumns = false;
this.dataGridView1.AllowUserToResizeRows = false;
this.dataGridView1.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.DisplayedCells;
this.dataGridView1.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.DisplayedCells;
this.dataGridView1.BackgroundColor = System.Drawing.SystemColors.Window;
this.dataGridView1.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dataGridView1.ColumnHeadersVisible = false;
this.dataGridView1.Dock = System.Windows.Forms.DockStyle.Fill;
this.dataGridView1.Location = new System.Drawing.Point(3, 3);
this.dataGridView1.Name = "dataGridView1";
this.dataGridView1.RowHeadersVisible = false;
this.dataGridView1.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
this.dataGridView1.Size = new System.Drawing.Size(194, 335);
this.dataGridView1.TabIndex = 0;
this.dataGridView1.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellClick);
this.dataGridView1.SelectionChanged += new System.EventHandler(this.dataGridView1_SelectionChanged);
this.dataGridView1.VisibleChanged += new System.EventHandler(this.dataGridView1_VisibleChanged);
//
// btnAdd
//
this.btnAdd.Location = new System.Drawing.Point(248, 327);
this.btnAdd.Name = "btnAdd";
this.btnAdd.Size = new System.Drawing.Size(35, 23);
this.btnAdd.TabIndex = 1;
this.btnAdd.Text = "Add";
this.btnAdd.UseVisualStyleBackColor = true;
this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
//
// btnRemove
//
this.btnRemove.Enabled = false;
this.btnRemove.Location = new System.Drawing.Point(289, 327);
this.btnRemove.Name = "btnRemove";
this.btnRemove.Size = new System.Drawing.Size(75, 23);
this.btnRemove.TabIndex = 2;
this.btnRemove.Text = "Remove";
this.btnRemove.UseVisualStyleBackColor = true;
this.btnRemove.Click += new System.EventHandler(this.btnRemove_Click);
//
// btnSave
//
this.btnSave.Enabled = false;
this.btnSave.Location = new System.Drawing.Point(370, 327);
this.btnSave.Name = "btnSave";
this.btnSave.Size = new System.Drawing.Size(45, 23);
this.btnSave.TabIndex = 3;
this.btnSave.Text = "Save";
this.btnSave.UseVisualStyleBackColor = true;
this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
//
// lblTitle
//
this.lblTitle.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.lblTitle.AutoSize = true;
this.tableLayoutPanelParameters.SetColumnSpan(this.lblTitle, 2);
this.lblTitle.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblTitle.Location = new System.Drawing.Point(3, 0);
this.lblTitle.Margin = new System.Windows.Forms.Padding(3, 0, 3, 10);
this.lblTitle.Name = "lblTitle";
this.lblTitle.Size = new System.Drawing.Size(270, 20);
this.lblTitle.TabIndex = 4;
this.lblTitle.Text = "label1";
this.lblTitle.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// btnColor
//
this.btnColor.Location = new System.Drawing.Point(113, 33);
this.btnColor.Name = "btnColor";
this.btnColor.Size = new System.Drawing.Size(95, 23);
this.btnColor.TabIndex = 5;
this.btnColor.Text = "Modify Colors";
this.btnColor.UseVisualStyleBackColor = true;
this.btnColor.Click += new System.EventHandler(this.btnColor_Click);
//
// checkBoxShowInStatusLine
//
this.checkBoxShowInStatusLine.AutoSize = true;
this.checkBoxShowInStatusLine.Location = new System.Drawing.Point(113, 62);
this.checkBoxShowInStatusLine.Name = "checkBoxShowInStatusLine";
this.checkBoxShowInStatusLine.Size = new System.Drawing.Size(120, 17);
this.checkBoxShowInStatusLine.TabIndex = 6;
this.checkBoxShowInStatusLine.Text = "Show in Status Line";
this.checkBoxShowInStatusLine.UseVisualStyleBackColor = true;
this.checkBoxShowInStatusLine.Click += new System.EventHandler(this.checkBoxShowInStatusLine_Click);
//
// btnCLose
//
this.btnCLose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnCLose.Location = new System.Drawing.Point(421, 327);
this.btnCLose.Name = "btnCLose";
this.btnCLose.Size = new System.Drawing.Size(75, 23);
this.btnCLose.TabIndex = 10;
this.btnCLose.Text = "Close";
this.btnCLose.UseVisualStyleBackColor = true;
this.btnCLose.Click += new System.EventHandler(this.btnClose_Click);
//
// tableLayoutPanelParameters
//
this.tableLayoutPanelParameters.ColumnCount = 2;
this.tableLayoutPanelParameters.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 40F));
this.tableLayoutPanelParameters.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 60F));
this.tableLayoutPanelParameters.Controls.Add(this.lblTitle, 0, 0);
this.tableLayoutPanelParameters.Controls.Add(this.btnColor, 1, 1);
this.tableLayoutPanelParameters.Controls.Add(this.checkBoxShowInStatusLine, 1, 2);
this.tableLayoutPanelParameters.Controls.Add(this.groupBox1, 1, 3);
this.tableLayoutPanelParameters.Controls.Add(this.lblColor, 0, 1);
this.tableLayoutPanelParameters.Location = new System.Drawing.Point(228, 32);
this.tableLayoutPanelParameters.Name = "tableLayoutPanelParameters";
this.tableLayoutPanelParameters.RowCount = 4;
this.tableLayoutPanelParameters.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanelParameters.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanelParameters.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanelParameters.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanelParameters.Size = new System.Drawing.Size(276, 256);
this.tableLayoutPanelParameters.TabIndex = 11;
//
// groupBox1
//
this.groupBox1.Controls.Add(this.aPanel);
this.groupBox1.Location = new System.Drawing.Point(113, 85);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(160, 118);
this.groupBox1.TabIndex = 7;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Chart Area";
//
// aPanel
//
this.aPanel.AutoScroll = true;
this.aPanel.Controls.Add(this.rdoMainChartArea);
this.aPanel.Controls.Add(this.rdoNewArea);
this.aPanel.Location = new System.Drawing.Point(5, 12);
this.aPanel.Name = "aPanel";
this.aPanel.Size = new System.Drawing.Size(149, 100);
this.aPanel.TabIndex = 0;
//
// rdoMainChartArea
//
this.rdoMainChartArea.AutoSize = true;
this.rdoMainChartArea.Checked = true;
this.rdoMainChartArea.Location = new System.Drawing.Point(4, 27);
this.rdoMainChartArea.Name = "rdoMainChartArea";
this.rdoMainChartArea.Size = new System.Drawing.Size(119, 17);
this.rdoMainChartArea.TabIndex = 1;
this.rdoMainChartArea.TabStop = true;
this.rdoMainChartArea.Text = "Chart Area #1(main)";
this.rdoMainChartArea.UseVisualStyleBackColor = true;
this.rdoMainChartArea.CheckedChanged += new System.EventHandler(this.rdoMainChartArea_CheckedChanged);
//
// rdoNewArea
//
this.rdoNewArea.AutoSize = true;
this.rdoNewArea.Location = new System.Drawing.Point(4, 3);
this.rdoNewArea.Name = "rdoNewArea";
this.rdoNewArea.Size = new System.Drawing.Size(100, 17);
this.rdoNewArea.TabIndex = 0;
this.rdoNewArea.Text = "New Chart Area";
this.rdoNewArea.UseVisualStyleBackColor = true;
this.rdoNewArea.CheckedChanged += new System.EventHandler(this.rdoNewArea_CheckedChanged);
//
// lblColor
//
this.lblColor.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Right)));
this.lblColor.BackColor = System.Drawing.SystemColors.Control;
this.lblColor.Location = new System.Drawing.Point(84, 33);
this.lblColor.Margin = new System.Windows.Forms.Padding(3);
this.lblColor.Name = "lblColor";
this.lblColor.Size = new System.Drawing.Size(23, 23);
this.lblColor.TabIndex = 8;
this.lblColor.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// IndicatorManager
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(530, 382);
this.Controls.Add(this.tableLayoutPanelParameters);
this.Controls.Add(this.btnCLose);
this.Controls.Add(this.btnSave);
this.Controls.Add(this.btnRemove);
this.Controls.Add(this.btnAdd);
this.Controls.Add(this.tabControl);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Location = new System.Drawing.Point(10, 10);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "IndicatorManager";
this.Text = "IndicatorManager";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.IndicatorManager_FormClosing);
this.VisibleChanged += new System.EventHandler(this.IndicatorManager_VisibleChanged);
this.tabControl.ResumeLayout(false);
this.addTab.ResumeLayout(false);
this.editTab.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
this.tableLayoutPanelParameters.ResumeLayout(false);
this.tableLayoutPanelParameters.PerformLayout();
this.groupBox1.ResumeLayout(false);
this.aPanel.ResumeLayout(false);
this.aPanel.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.TabControl tabControl;
private System.Windows.Forms.TabPage addTab;
private System.Windows.Forms.TabPage editTab;
private System.Windows.Forms.Button btnAdd;
private System.Windows.Forms.Button btnRemove;
private System.Windows.Forms.Button btnSave;
private System.Windows.Forms.Label lblTitle;
private System.Windows.Forms.Button btnColor;
private System.Windows.Forms.CheckBox checkBoxShowInStatusLine;
private System.Windows.Forms.Panel addTabPanel;
private System.Windows.Forms.DataGridView dataGridView1;
private System.Windows.Forms.Button btnCLose;
private System.Windows.Forms.TableLayoutPanel tableLayoutPanelParameters;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.Panel aPanel;
private System.Windows.Forms.RadioButton rdoMainChartArea;
private System.Windows.Forms.RadioButton rdoNewArea;
private System.Windows.Forms.Label lblColor;
}
}