- Timestamp:
- 09/19/10 19:43:05 (14 years ago)
- Location:
- trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.3/Symbolic/Symbols
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.3/Symbolic/Symbols/ConstantView.cs
r4068 r4435 58 58 base.SetEnabledStateOfControls(); 59 59 minValueTextBox.Enabled = Content != null; 60 minValueTextBox.ReadOnly = ReadOnly; 60 61 maxValueTextBox.Enabled = Content != null; 62 maxValueTextBox.ReadOnly = ReadOnly; 61 63 valueChangeNuTextBox.Enabled = Content != null; 64 valueChangeNuTextBox.ReadOnly = ReadOnly; 62 65 valueChangeSigmaTextBox.Enabled = Content != null; 66 valueChangeSigmaTextBox.ReadOnly = ReadOnly; 63 67 } 64 68 -
trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.3/Symbolic/Symbols/LaggedVariableView.cs
r4068 r4435 57 57 base.SetEnabledStateOfControls(); 58 58 minTimeOffsetTextBox.Enabled = Content != null; 59 minTimeOffsetTextBox.ReadOnly = ReadOnly; 59 60 maxTimeOffsetTextBox.Enabled = Content != null; 61 maxTimeOffsetTextBox.ReadOnly = ReadOnly; 60 62 } 61 63 -
trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.3/Symbolic/Symbols/VariableView.cs
r4068 r4435 58 58 base.SetEnabledStateOfControls(); 59 59 weightNuTextBox.Enabled = Content != null; 60 weightNuTextBox.ReadOnly = ReadOnly; 60 61 weightSigmaTextBox.Enabled = Content != null; 62 weightSigmaTextBox.ReadOnly = ReadOnly; 61 63 weightChangeNuTextBox.Enabled = Content != null; 64 weightChangeNuTextBox.ReadOnly = ReadOnly; 62 65 weightChangeSigmaTextBox.Enabled = Content != null; 66 weightChangeSigmaTextBox.ReadOnly = ReadOnly; 63 67 } 64 68
Note: See TracChangeset
for help on using the changeset viewer.