Changeset 5026 for branches/GP.Symbols (TimeLag, Diff, Integral)/HeuristicLab.Problems.DataAnalysis.Views/3.3/Symbolic
- Timestamp:
- 12/06/10 10:28:34 (14 years ago)
- Location:
- branches/GP.Symbols (TimeLag, Diff, Integral)
- Files:
-
- 1 edited
- 3 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/GP.Symbols (TimeLag, Diff, Integral)
-
Property
svn:ignore
set to
GP.Symbols.suo
-
Property
svn:ignore
set to
-
branches/GP.Symbols (TimeLag, Diff, Integral)/HeuristicLab.Problems.DataAnalysis.Views/3.3/Symbolic/Symbols/TimeLagView.Designer.cs
r5005 r5026 21 21 22 22 namespace HeuristicLab.Problems.DataAnalysis.Views.Symbolic.Symbols { 23 partial class LaggedVariableView {23 partial class TimeLagView { 24 24 /// <summary> 25 25 /// Required designer variable. … … 51 51 ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit(); 52 52 this.SuspendLayout(); 53 //54 // initializationGroupBox55 //56 this.initializationGroupBox.Location = new System.Drawing.Point(3, 131);57 this.initializationGroupBox.Size = new System.Drawing.Size(399, 73);58 //59 // mutationGroupBox60 //61 this.mutationGroupBox.Location = new System.Drawing.Point(6, 210);62 this.mutationGroupBox.Size = new System.Drawing.Size(396, 73);63 53 // 64 54 // initialFrequencyLabel … … 117 107 this.maxTimeOffsetTextBox.TextChanged += new System.EventHandler(this.maxTimeOffsetTextBox_TextChanged); 118 108 // 119 // LaggedVariableView109 // TimeLagView 120 110 // 121 111 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); … … 125 115 this.Controls.Add(this.maxTimeOffsetLabel); 126 116 this.Controls.Add(this.minTimeOffsetLabel); 127 this.Name = "LaggedVariableView"; 128 this.Size = new System.Drawing.Size(408, 292); 129 this.Controls.SetChildIndex(this.initializationGroupBox, 0); 117 this.Name = "TimeLagView"; 118 this.Size = new System.Drawing.Size(408, 141); 130 119 this.Controls.SetChildIndex(this.initialFrequencyTextBox, 0); 131 120 this.Controls.SetChildIndex(this.initialFrequencyLabel, 0); … … 134 123 this.Controls.SetChildIndex(this.nameTextBox, 0); 135 124 this.Controls.SetChildIndex(this.descriptionTextBox, 0); 136 this.Controls.SetChildIndex(this.mutationGroupBox, 0);137 125 this.Controls.SetChildIndex(this.minTimeOffsetLabel, 0); 138 126 this.Controls.SetChildIndex(this.maxTimeOffsetLabel, 0); -
branches/GP.Symbols (TimeLag, Diff, Integral)/HeuristicLab.Problems.DataAnalysis.Views/3.3/Symbolic/Symbols/TimeLagView.cs
r5005 r5026 25 25 using HeuristicLab.MainForm.WindowsForms; 26 26 using HeuristicLab.Problems.DataAnalysis.Symbolic.Symbols; 27 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views; 27 28 28 29 namespace HeuristicLab.Problems.DataAnalysis.Views.Symbolic.Symbols { 29 [View(" LaggedVariableView")]30 [Content(typeof( LaggedVariable), true)]31 public partial class LaggedVariableView : VariableView {32 public new LaggedVariableContent {33 get { return ( LaggedVariable)base.Content; }30 [View("TimeLag View")] 31 [Content(typeof(TimeLag), true)] 32 public partial class TimeLagView : SymbolView { 33 public new TimeLag Content { 34 get { return (TimeLag)base.Content; } 34 35 set { base.Content = value; } 35 36 } 36 37 37 public LaggedVariableView() {38 public TimeLagView() { 38 39 InitializeComponent(); 39 40 }
Note: See TracChangeset
for help on using the changeset viewer.