Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/18/14 03:25:58 (9 years ago)
Author:
swagner
Message:

#2205: Worked on optimization networks

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/OptimizationNetworks/HeuristicLab.Optimization.Networks.Views/3.3/ClientPortView.cs

    r11454 r11481  
    7171      setServicePortButton.Enabled = Content != null && !ReadOnly;
    7272      clearServicePortButton.Enabled = Content != null && Content.ServicePort != null && !ReadOnly;
     73      cloneServicePortParametersButton.Enabled = Content != null && Content.ServicePort != null && !ReadOnly;
    7374    }
    7475
     
    7879      else {
    7980        clearServicePortButton.Enabled = Content.ServicePort != null && !ReadOnly;
     81        cloneServicePortParametersButton.Enabled = Content.ServicePort != null && !ReadOnly;
    8082        servicePortView.Content = Content.ServicePort;
    8183      }
     
    133135      }
    134136    }
     137    protected virtual void cloneServicePortParametersButton_Click(object sender, EventArgs e) {
     138      Content.CloneServicePortParameters();
     139    }
    135140  }
    136141}
Note: See TracChangeset for help on using the changeset viewer.