Free cookie consent management tool by TermsFeed Policy Generator

Changeset 16750 for branches


Ignore:
Timestamp:
04/03/19 14:57:09 (5 years ago)
Author:
mkommend
Message:

#2521: Renamed SingleObjectiveProgrammableProblemView to ProgrammableProblemView.

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  
    9494      <DependentUpon>ProblemDefinitionScriptView.cs</DependentUpon>
    9595    </Compile>
    96     <Compile Include="SingleObjectiveProgrammableProblemView.cs">
     96    <Compile Include="ProgrammableProblemView.cs">
    9797      <SubType>UserControl</SubType>
    9898    </Compile>
    99     <Compile Include="SingleObjectiveProgrammableProblemView.Designer.cs">
    100       <DependentUpon>SingleObjectiveProgrammableProblemView.cs</DependentUpon>
     99    <Compile Include="ProgrammableProblemView.Designer.cs">
     100      <DependentUpon>ProgrammableProblemView.cs</DependentUpon>
    101101    </Compile>
    102102    <Compile Include="Properties\AssemblyInfo.cs" />
  • branches/2521_ProblemRefactoring/HeuristicLab.Problems.Programmable.Views/3.3/ProgrammableProblemView.Designer.cs

    r16749 r16750  
    2121
    2222namespace HeuristicLab.Problems.Programmable.Views {
    23   partial class SingleObjectiveProgrammableProblemView {
     23  partial class ProgrammableProblemView {
    2424    /// <summary>
    2525    /// Required designer variable.
  • branches/2521_ProblemRefactoring/HeuristicLab.Problems.Programmable.Views/3.3/ProgrammableProblemView.cs

    r16749 r16750  
    2727
    2828namespace HeuristicLab.Problems.Programmable.Views {
    29   [View("Single-Objective Scriptable Problem View")]
     29  [View("Programmable Problem View")]
    3030  [Content(typeof(IProgrammableProblem), true)]
    31   public partial class SingleObjectiveProgrammableProblemView : ItemView {
     31  public partial class ProgrammableProblemView : ItemView {
    3232    protected ViewHost ScriptView;
    3333
     
    3737    }
    3838
    39     public SingleObjectiveProgrammableProblemView() {
     39    public ProgrammableProblemView() {
    4040      InitializeComponent();
    4141      ScriptView = new ViewHost() { ViewsLabelVisible = false, Dock = DockStyle.Fill };
     
    5454
    5555    protected override void RegisterContentEvents() {
    56       //Content.ProblemDefinitionParameter.ValueChanged += ProblemDefinitionParameterOnValueChanged;
    5756      Content.NameChanged += ContentOnNameChanged;
    5857      base.RegisterContentEvents();
     
    6160    protected override void DeregisterContentEvents() {
    6261      base.DeregisterContentEvents();
    63       //Content.ProblemDefinitionParameter.ValueChanged -= ProblemDefinitionParameterOnValueChanged;
    6462      Content.NameChanged -= ContentOnNameChanged;
    6563    }
    66 
    67     //private void ProblemDefinitionParameterOnValueChanged(object sender, EventArgs eventArgs) {
    68     //  DefinitionView.Content = Content.ProblemDefinitionParameter.Value;
    69     //}
    7064
    7165    private void ContentOnNameChanged(object sender, EventArgs eventArgs) {
Note: See TracChangeset for help on using the changeset viewer.