Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/21/11 00:19:08 (14 years ago)
Author:
mkommend
Message:

#1418: Changed data type of estimation limits and corrected some bugs.

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  
    1919 */
    2020#endregion
    21 namespace HeuristicLab.Data.Views {
    22   public partial class DoubleRangeView {
     21namespace HeuristicLab.Problems.DataAnalysis.Views {
     22  public partial class DoubleLimitView {
    2323    /// <summary>
    2424    /// Required designer variable.
     
    4848      // Item1Label
    4949      //
    50       this.Item1Label.Size = new System.Drawing.Size(32, 13);
    51       this.Item1Label.Text = "Start:";
     50      this.Item1Label.Size = new System.Drawing.Size(39, 13);
     51      this.Item1Label.Text = "Lower:";
    5252      //
    5353      // Item2Label
    5454      //
    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:";
    5757      //
    58       // IntRangeView
     58      // DoubleLimitView
    5959      //
    6060      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
    61       this.Name = "IntRangeView";
     61      this.Name = "DoubleLimitView";
    6262      this.ResumeLayout(false);
    6363      this.PerformLayout();
     64
    6465    }
    6566
  • branches/DataAnalysis Refactoring/HeuristicLab.Problems.DataAnalysis.Views/3.4/DoubleLimitView.cs

    r5769 r5770  
    2121
    2222using System.Windows.Forms;
     23using HeuristicLab.Data.Views;
    2324using HeuristicLab.MainForm;
    2425using HeuristicLab.MainForm.WindowsForms;
    2526
    26 namespace HeuristicLab.Data.Views {
     27namespace HeuristicLab.Problems.DataAnalysis.Views {
    2728  [View("DoubleRange View")]
    28   [Content(typeof(DoubleRange), true)]
    29   public partial class DoubleRangeView : StringConvertibleValueTupleView {
     29  [Content(typeof(DoubleLimit), true)]
     30  public partial class DoubleLimitView : StringConvertibleValueTupleView {
    3031
    31     public new DoubleRange Content {
    32       get { return (DoubleRange)base.Content; }
     32    public new DoubleLimit Content {
     33      get { return (DoubleLimit)base.Content; }
    3334      set { base.Content = value; }
    3435    }
    3536
    36     public DoubleRangeView() {
     37    public DoubleLimitView() {
    3738      InitializeComponent();
    3839    }
  • branches/DataAnalysis Refactoring/HeuristicLab.Problems.DataAnalysis.Views/3.4/HeuristicLab.Problems.DataAnalysis.Views-3.4.csproj

    r5694 r5770  
    146146      <DependentUpon>DataAnalysisSolutionView.cs</DependentUpon>
    147147    </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>
    148154    <Compile Include="Regression\RegressionSolutionEstimatedValuesView.cs">
    149155      <SubType>UserControl</SubType>
Note: See TracChangeset for help on using the changeset viewer.