Changeset 14526 for branches/HeuristicLab.GoalSeekingProblem/HeuristicLab.GoalSeekingProblem.Views/3.4
- Timestamp:
- 12/22/16 16:52:32 (8 years ago)
- Location:
- branches/HeuristicLab.GoalSeekingProblem/HeuristicLab.GoalSeekingProblem.Views/3.4
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.GoalSeekingProblem/HeuristicLab.GoalSeekingProblem.Views/3.4/GoalSeekingOptimizerView.cs
r14380 r14526 54 54 if (Content.ProblemData != null) 55 55 dataViewHost.Content = Content.ProblemData; 56 57 if (Content.Results != null) 58 resultsViewHost.Content = Content.Results; 56 59 } 57 60 … … 61 64 Content.ProblemChanged += (o, e) => { problemViewHost.Content = Content.Problem; }; 62 65 Content.ProblemDataChanged += (o, e) => { dataViewHost.Content = Content.ProblemData; }; 66 Content.ResultsChanged += (o, e) => { resultsViewHost.Content = Content.Results; }; 63 67 } 64 68 -
branches/HeuristicLab.GoalSeekingProblem/HeuristicLab.GoalSeekingProblem.Views/3.4/GoalSeekingProblem.Views.csproj
r14380 r14526 22 22 <ErrorReport>prompt</ErrorReport> 23 23 <WarningLevel>4</WarningLevel> 24 <LangVersion>4</LangVersion> 24 25 </PropertyGroup> 25 26 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> … … 32 33 </PropertyGroup> 33 34 <ItemGroup> 35 <Reference Include="HeuristicLab.Collections-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec" /> 34 36 <Reference Include="HeuristicLab.Common-3.3"> 35 37 <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Common-3.3.dll</HintPath>
Note: See TracChangeset
for help on using the changeset viewer.