Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/18/10 18:50:16 (13 years ago)
Author:
swinkler
Message:

Renamed solution in formatters branch; implemented view for display of symbolic expression trees as strings depending on the chosen formatter. (#1270)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataAnalysis.Extensions/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views/3.3/SymbolicExpressionView.Designer.cs

    r4803 r4840  
    4646    private void InitializeComponent() {
    4747      this.textBox = new System.Windows.Forms.TextBox();
     48      this.formattersComboBox = new System.Windows.Forms.ComboBox();
     49      this.formatterLabel = new System.Windows.Forms.Label();
    4850      this.SuspendLayout();
    4951      //
    5052      // textBox
    5153      //
    52       this.textBox.Dock = System.Windows.Forms.DockStyle.Fill;
    53       this.textBox.Location = new System.Drawing.Point(0, 0);
     54      this.textBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     55                  | System.Windows.Forms.AnchorStyles.Left)
     56                  | System.Windows.Forms.AnchorStyles.Right)));
     57      this.textBox.Location = new System.Drawing.Point(3, 30);
    5458      this.textBox.Multiline = true;
    5559      this.textBox.Name = "textBox";
    56       this.textBox.Size = new System.Drawing.Size(150, 150);
     60      this.textBox.Size = new System.Drawing.Size(475, 282);
    5761      this.textBox.TabIndex = 0;
    5862      //
    59       // SymbolicExpressionTreeView
     63      // formattersComboBox
     64      //
     65      this.formattersComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     66                  | System.Windows.Forms.AnchorStyles.Right)));
     67      this.formattersComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     68      this.formattersComboBox.FormattingEnabled = true;
     69      this.formattersComboBox.Location = new System.Drawing.Point(72, 3);
     70      this.formattersComboBox.Name = "formattersComboBox";
     71      this.formattersComboBox.Size = new System.Drawing.Size(406, 21);
     72      this.formattersComboBox.TabIndex = 1;
     73      this.formattersComboBox.SelectedIndexChanged += new System.EventHandler(this.formattersComboBox_SelectedIndexChanged);
     74      //
     75      // formatterLabel
     76      //
     77      this.formatterLabel.AutoSize = true;
     78      this.formatterLabel.Location = new System.Drawing.Point(3, 6);
     79      this.formatterLabel.Name = "formatterLabel";
     80      this.formatterLabel.Size = new System.Drawing.Size(54, 13);
     81      this.formatterLabel.TabIndex = 2;
     82      this.formatterLabel.Text = "Formatter:";
     83      //
     84      // SymbolicExpressionView
    6085      //
    6186      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
    6287      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     88      this.Controls.Add(this.formatterLabel);
     89      this.Controls.Add(this.formattersComboBox);
    6390      this.Controls.Add(this.textBox);
    64       this.Name = "SymbolicExpressionTreeView";
     91      this.Name = "SymbolicExpressionView";
     92      this.Size = new System.Drawing.Size(481, 315);
    6593      this.ResumeLayout(false);
    6694      this.PerformLayout();
     
    7199
    72100    private System.Windows.Forms.TextBox textBox;
     101    private System.Windows.Forms.ComboBox formattersComboBox;
     102    private System.Windows.Forms.Label formatterLabel;
    73103  }
    74104}
Note: See TracChangeset for help on using the changeset viewer.