Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/18/10 13:51:21 (14 years ago)
Author:
mkommend
Message:

changed OperatorGraphView in EngineView and CombinedOperatorView to ViewHost (ticket #867)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Core.Views/3.3/EngineView.cs

    r2818 r2826  
    9595      if (Content == null) {
    9696        newOperatorGraphButton.Enabled = openOperatorGraphButton.Enabled = saveOperatorGraphButton.Enabled = false;
    97         operatorGraphView.Enabled = false;
     97        operatorGraphViewHost.Enabled = false;
    9898        scopeView.Enabled = false;
    9999        newProblemButton.Enabled = openProblemButton.Enabled = saveProblemButton.Enabled = false;
     
    103103      } else {
    104104        newOperatorGraphButton.Enabled = openOperatorGraphButton.Enabled = saveOperatorGraphButton.Enabled = true;
    105         operatorGraphView.Content = Content.OperatorGraph;
    106         operatorGraphView.Enabled = true;
     105        operatorGraphViewHost.Content = Content.OperatorGraph;
     106        operatorGraphViewHost.Enabled = true;
    107107        scopeView.Content = Content.GlobalScope;
    108108        scopeView.Enabled = true;
     
    123123        Invoke(new EventHandler(Content_OperatorGraphChanged), sender, e);
    124124      else
    125         operatorGraphView.Content = Content.OperatorGraph;
     125        operatorGraphViewHost.Content = Content.OperatorGraph;
    126126    }
    127127    protected void Content_ProblemChanged(object sender, EventArgs e) {
     
    138138      else {
    139139        newOperatorGraphButton.Enabled = openOperatorGraphButton.Enabled = saveOperatorGraphButton.Enabled = true;
    140         operatorGraphView.Enabled = true;
     140        operatorGraphViewHost.Enabled = true;
    141141        scopeView.Enabled = true;
    142142        newProblemButton.Enabled = openProblemButton.Enabled = true;
     
    155155      else {
    156156        newOperatorGraphButton.Enabled = openOperatorGraphButton.Enabled = saveOperatorGraphButton.Enabled = false;
    157         operatorGraphView.Enabled = false;
     157        operatorGraphViewHost.Enabled = false;
    158158        scopeView.Enabled = false;
    159159        newProblemButton.Enabled = openProblemButton.Enabled = saveProblemButton.Enabled = false;
     
    170170      else {
    171171        newOperatorGraphButton.Enabled = openOperatorGraphButton.Enabled = saveOperatorGraphButton.Enabled = true;
    172         operatorGraphView.Enabled = true;
     172        operatorGraphViewHost.Enabled = true;
    173173        scopeView.Enabled = true;
    174174        newProblemButton.Enabled = openProblemButton.Enabled = true;
Note: See TracChangeset for help on using the changeset viewer.