Changeset 5416 for trunk/sources/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views/3.3/SymbolicExpressionView.Designer.cs
- Timestamp:
- 02/03/11 17:16:31 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views/3.3/SymbolicExpressionView.Designer.cs
r3742 r5416 46 46 private void InitializeComponent() { 47 47 this.textBox = new System.Windows.Forms.TextBox(); 48 this.formattersComboBox = new System.Windows.Forms.ComboBox(); 49 this.formatterLabel = new System.Windows.Forms.Label(); 48 50 this.SuspendLayout(); 49 51 // 50 52 // textBox 51 53 // 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.BackColor = System.Drawing.Color.White; 58 this.textBox.Location = new System.Drawing.Point(3, 30); 54 59 this.textBox.Multiline = true; 55 60 this.textBox.Name = "textBox"; 56 this.textBox.Size = new System.Drawing.Size(150, 150); 61 this.textBox.ReadOnly = true; 62 this.textBox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; 63 this.textBox.Size = new System.Drawing.Size(475, 282); 57 64 this.textBox.TabIndex = 0; 58 65 // 59 // SymbolicExpressionTreeView 66 // formattersComboBox 67 // 68 this.formattersComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 69 | System.Windows.Forms.AnchorStyles.Right))); 70 this.formattersComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; 71 this.formattersComboBox.FormattingEnabled = true; 72 this.formattersComboBox.Location = new System.Drawing.Point(72, 3); 73 this.formattersComboBox.Name = "formattersComboBox"; 74 this.formattersComboBox.Size = new System.Drawing.Size(406, 21); 75 this.formattersComboBox.TabIndex = 1; 76 this.formattersComboBox.SelectedIndexChanged += new System.EventHandler(this.formattersComboBox_SelectedIndexChanged); 77 // 78 // formatterLabel 79 // 80 this.formatterLabel.AutoSize = true; 81 this.formatterLabel.Location = new System.Drawing.Point(3, 6); 82 this.formatterLabel.Name = "formatterLabel"; 83 this.formatterLabel.Size = new System.Drawing.Size(54, 13); 84 this.formatterLabel.TabIndex = 2; 85 this.formatterLabel.Text = "Formatter:"; 86 // 87 // SymbolicExpressionView 60 88 // 61 89 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 62 90 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 91 this.Controls.Add(this.formatterLabel); 92 this.Controls.Add(this.formattersComboBox); 63 93 this.Controls.Add(this.textBox); 64 this.Name = "SymbolicExpressionTreeView"; 94 this.Name = "SymbolicExpressionView"; 95 this.Size = new System.Drawing.Size(481, 315); 65 96 this.ResumeLayout(false); 66 97 this.PerformLayout(); … … 71 102 72 103 private System.Windows.Forms.TextBox textBox; 104 private System.Windows.Forms.ComboBox formattersComboBox; 105 private System.Windows.Forms.Label formatterLabel; 73 106 } 74 107 }
Note: See TracChangeset
for help on using the changeset viewer.