Changeset 16750
- Timestamp:
- 04/03/19 14:57:09 (6 years ago)
- Location:
- branches/2521_ProblemRefactoring/HeuristicLab.Problems.Programmable.Views/3.3
- Files:
-
- 1 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring/HeuristicLab.Problems.Programmable.Views/3.3/HeuristicLab.Problems.Programmable.Views-3.3.csproj
r16723 r16750 94 94 <DependentUpon>ProblemDefinitionScriptView.cs</DependentUpon> 95 95 </Compile> 96 <Compile Include=" SingleObjectiveProgrammableProblemView.cs">96 <Compile Include="ProgrammableProblemView.cs"> 97 97 <SubType>UserControl</SubType> 98 98 </Compile> 99 <Compile Include=" SingleObjectiveProgrammableProblemView.Designer.cs">100 <DependentUpon> SingleObjectiveProgrammableProblemView.cs</DependentUpon>99 <Compile Include="ProgrammableProblemView.Designer.cs"> 100 <DependentUpon>ProgrammableProblemView.cs</DependentUpon> 101 101 </Compile> 102 102 <Compile Include="Properties\AssemblyInfo.cs" /> -
branches/2521_ProblemRefactoring/HeuristicLab.Problems.Programmable.Views/3.3/ProgrammableProblemView.Designer.cs
r16749 r16750 21 21 22 22 namespace HeuristicLab.Problems.Programmable.Views { 23 partial class SingleObjectiveProgrammableProblemView {23 partial class ProgrammableProblemView { 24 24 /// <summary> 25 25 /// Required designer variable. -
branches/2521_ProblemRefactoring/HeuristicLab.Problems.Programmable.Views/3.3/ProgrammableProblemView.cs
r16749 r16750 27 27 28 28 namespace HeuristicLab.Problems.Programmable.Views { 29 [View(" Single-Objective Scriptable Problem View")]29 [View("Programmable Problem View")] 30 30 [Content(typeof(IProgrammableProblem), true)] 31 public partial class SingleObjectiveProgrammableProblemView : ItemView {31 public partial class ProgrammableProblemView : ItemView { 32 32 protected ViewHost ScriptView; 33 33 … … 37 37 } 38 38 39 public SingleObjectiveProgrammableProblemView() {39 public ProgrammableProblemView() { 40 40 InitializeComponent(); 41 41 ScriptView = new ViewHost() { ViewsLabelVisible = false, Dock = DockStyle.Fill }; … … 54 54 55 55 protected override void RegisterContentEvents() { 56 //Content.ProblemDefinitionParameter.ValueChanged += ProblemDefinitionParameterOnValueChanged;57 56 Content.NameChanged += ContentOnNameChanged; 58 57 base.RegisterContentEvents(); … … 61 60 protected override void DeregisterContentEvents() { 62 61 base.DeregisterContentEvents(); 63 //Content.ProblemDefinitionParameter.ValueChanged -= ProblemDefinitionParameterOnValueChanged;64 62 Content.NameChanged -= ContentOnNameChanged; 65 63 } 66 67 //private void ProblemDefinitionParameterOnValueChanged(object sender, EventArgs eventArgs) {68 // DefinitionView.Content = Content.ProblemDefinitionParameter.Value;69 //}70 64 71 65 private void ContentOnNameChanged(object sender, EventArgs eventArgs) {
Note: See TracChangeset
for help on using the changeset viewer.