namespace TradeIdeas.TIProGUI { /// /// StrategyColors partial class...Designmer section /// partial class StratgyColors { /// /// 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.btnForeground = new System.Windows.Forms.Button(); this.btnBackground = new System.Windows.Forms.Button(); this.lblColor = new System.Windows.Forms.Label(); this.btnOK = new System.Windows.Forms.Button(); this.colorDialog1 = new System.Windows.Forms.ColorDialog(); this.btnCancel = new System.Windows.Forms.Button(); this.SuspendLayout(); // // btnForeground // this.btnForeground.Location = new System.Drawing.Point(12, 23); this.btnForeground.Name = "btnForeground"; this.btnForeground.Size = new System.Drawing.Size(120, 23); this.btnForeground.TabIndex = 0; this.btnForeground.Text = "Set Foreground Color"; this.btnForeground.UseVisualStyleBackColor = true; this.btnForeground.Click += new System.EventHandler(this.btnForeground_Click); // // btnBackground // this.btnBackground.Location = new System.Drawing.Point(335, 18); this.btnBackground.Name = "btnBackground"; this.btnBackground.Size = new System.Drawing.Size(120, 23); this.btnBackground.TabIndex = 1; this.btnBackground.Text = "Set Background Color"; this.btnBackground.UseVisualStyleBackColor = true; this.btnBackground.Click += new System.EventHandler(this.btnBackground_Click); // // lblColor // this.lblColor.AutoSize = true; this.lblColor.Location = new System.Drawing.Point(193, 28); this.lblColor.Name = "lblColor"; this.lblColor.Size = new System.Drawing.Size(74, 13); this.lblColor.TabIndex = 2; this.lblColor.Text = "Sample Colors"; // // btnOK // this.btnOK.Location = new System.Drawing.Point(156, 54); this.btnOK.Name = "btnOK"; this.btnOK.Size = new System.Drawing.Size(75, 23); this.btnOK.TabIndex = 3; this.btnOK.Text = "OK"; this.btnOK.UseVisualStyleBackColor = true; this.btnOK.Click += new System.EventHandler(this.btnOK_Click); // // colorDialog1 // this.colorDialog1.FullOpen = true; // // btnCancel // this.btnCancel.Location = new System.Drawing.Point(237, 54); this.btnCancel.Name = "btnCancel"; this.btnCancel.Size = new System.Drawing.Size(75, 23); this.btnCancel.TabIndex = 4; this.btnCancel.Text = "Cancel"; this.btnCancel.UseVisualStyleBackColor = true; this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click); // // StratgyColors // this.AcceptButton = this.btnOK; this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(467, 89); this.Controls.Add(this.btnCancel); this.Controls.Add(this.btnOK); this.Controls.Add(this.lblColor); this.Controls.Add(this.btnBackground); this.Controls.Add(this.btnForeground); this.Name = "StratgyColors"; this.Text = "Set Strategy Colors"; this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Button btnForeground; private System.Windows.Forms.Button btnBackground; private System.Windows.Forms.Label lblColor; private System.Windows.Forms.Button btnOK; private System.Windows.Forms.ColorDialog colorDialog1; private System.Windows.Forms.Button btnCancel; } }