Changeset 5796 for branches/DataAnalysis Refactoring/HeuristicLab.Core.Views/3.3/CreateParameterDialog.cs
- Timestamp:
- 03/22/11 16:45:46 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataAnalysis Refactoring/HeuristicLab.Core.Views/3.3/CreateParameterDialog.cs
r5445 r5796 32 32 get { 33 33 try { 34 return (IParameter)Activator.CreateInstance(parameterTypeSelector.SelectedType, nameTextBox.Text, descriptionTextBox.Text); 34 IParameter parameter = (IParameter)Activator.CreateInstance(parameterTypeSelector.SelectedType, nameTextBox.Text, descriptionTextBox.Text); 35 parameter.Hidden = false; 36 return parameter; 35 37 } 36 38 catch (Exception ex) {
Note: See TracChangeset
for help on using the changeset viewer.