- Timestamp:
- 03/21/11 00:19:08 (14 years ago)
- Location:
- branches/DataAnalysis Refactoring/HeuristicLab.Problems.DataAnalysis.Views/3.4
- Files:
-
- 1 edited
- 2 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/DataAnalysis Refactoring/HeuristicLab.Problems.DataAnalysis.Views/3.4/DoubleLimitView.Designer.cs
r5769 r5770 19 19 */ 20 20 #endregion 21 namespace HeuristicLab. Data.Views {22 public partial class Double RangeView {21 namespace HeuristicLab.Problems.DataAnalysis.Views { 22 public partial class DoubleLimitView { 23 23 /// <summary> 24 24 /// Required designer variable. … … 48 48 // Item1Label 49 49 // 50 this.Item1Label.Size = new System.Drawing.Size(3 2, 13);51 this.Item1Label.Text = " Start:";50 this.Item1Label.Size = new System.Drawing.Size(39, 13); 51 this.Item1Label.Text = "Lower:"; 52 52 // 53 53 // Item2Label 54 54 // 55 this.Item2Label.Size = new System.Drawing.Size( 29, 13);56 this.Item2Label.Text = " End:";55 this.Item2Label.Size = new System.Drawing.Size(39, 13); 56 this.Item2Label.Text = "Upper:"; 57 57 // 58 // IntRangeView58 // DoubleLimitView 59 59 // 60 60 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 61 this.Name = " IntRangeView";61 this.Name = "DoubleLimitView"; 62 62 this.ResumeLayout(false); 63 63 this.PerformLayout(); 64 64 65 } 65 66 -
branches/DataAnalysis Refactoring/HeuristicLab.Problems.DataAnalysis.Views/3.4/DoubleLimitView.cs
r5769 r5770 21 21 22 22 using System.Windows.Forms; 23 using HeuristicLab.Data.Views; 23 24 using HeuristicLab.MainForm; 24 25 using HeuristicLab.MainForm.WindowsForms; 25 26 26 namespace HeuristicLab. Data.Views {27 namespace HeuristicLab.Problems.DataAnalysis.Views { 27 28 [View("DoubleRange View")] 28 [Content(typeof(Double Range), true)]29 public partial class Double RangeView : StringConvertibleValueTupleView {29 [Content(typeof(DoubleLimit), true)] 30 public partial class DoubleLimitView : StringConvertibleValueTupleView { 30 31 31 public new Double RangeContent {32 get { return (Double Range)base.Content; }32 public new DoubleLimit Content { 33 get { return (DoubleLimit)base.Content; } 33 34 set { base.Content = value; } 34 35 } 35 36 36 public Double RangeView() {37 public DoubleLimitView() { 37 38 InitializeComponent(); 38 39 } -
branches/DataAnalysis Refactoring/HeuristicLab.Problems.DataAnalysis.Views/3.4/HeuristicLab.Problems.DataAnalysis.Views-3.4.csproj
r5694 r5770 146 146 <DependentUpon>DataAnalysisSolutionView.cs</DependentUpon> 147 147 </Compile> 148 <Compile Include="DoubleLimitView.cs"> 149 <SubType>UserControl</SubType> 150 </Compile> 151 <Compile Include="DoubleLimitView.Designer.cs"> 152 <DependentUpon>DoubleLimitView.cs</DependentUpon> 153 </Compile> 148 154 <Compile Include="Regression\RegressionSolutionEstimatedValuesView.cs"> 149 155 <SubType>UserControl</SubType>
Note: See TracChangeset
for help on using the changeset viewer.