/// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.btLine = new Strategy.LineButton();
     this.btBar  = new Strategy.BarButton();
     this.SuspendLayout();
     //
     // btLine
     //
     this.btLine.Location = new System.Drawing.Point(63, 39);
     this.btLine.Name     = "btLine";
     this.btLine.Size     = new System.Drawing.Size(160, 39);
     this.btLine.TabIndex = 0;
     this.btLine.Text     = "Line plot";
     //
     // btBar
     //
     this.btBar.CommandName = null;
     this.btBar.Location    = new System.Drawing.Point(288, 39);
     this.btBar.Name        = "btBar";
     this.btBar.Size        = new System.Drawing.Size(160, 39);
     this.btBar.TabIndex    = 1;
     this.btBar.Text        = "Bar plot";
     //
     // StrategyForm
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(10, 21);
     this.ClientSize        = new System.Drawing.Size(514, 186);
     this.Controls.Add(this.btBar);
     this.Controls.Add(this.btLine);
     this.Name = "StrategyForm";
     this.Text = "Plot strategies";
     this.ResumeLayout(false);
 }
예제 #2
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.btLine = new Strategy.LineButton();
     this.btBar  = new Strategy.BarButton();
     this.SuspendLayout();
     //
     // btLine
     //
     this.btLine.Location = new System.Drawing.Point(32, 24);
     this.btLine.Name     = "btLine";
     this.btLine.Size     = new System.Drawing.Size(80, 24);
     this.btLine.TabIndex = 0;
     this.btLine.Text     = "Line plot";
     //
     // btBar
     //
     this.btBar.Location = new System.Drawing.Point(144, 24);
     this.btBar.Name     = "btBar";
     this.btBar.Size     = new System.Drawing.Size(80, 24);
     this.btBar.TabIndex = 1;
     this.btBar.Text     = "Bar plot";
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(272, 93);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.btBar,
         this.btLine
     });
     this.Name = "Form1";
     this.Text = "Plot strategies";
     this.ResumeLayout(false);
 }