- Timestamp:
- 07/30/15 16:37:14 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Problems.GrammaticalOptimization/Evaluation/ViewModel/EvaluationViewModel.cs
r12781 r12815 98 98 } 99 99 100 private int maxEvaluations; 101 102 public int MaxEvaluations 103 { 104 get { return this.maxEvaluations; } 105 set 106 { 107 this.maxEvaluations = value; 108 this.OnPropertyChanged("MaxEvaluations"); 109 } 110 } 111 112 private string headerString; 113 114 public string HeaderString 115 { 116 get { return this.headerString; } 117 set 118 { 119 headerString = value; 120 this.OnPropertyChanged("HeaderString"); 121 } 122 } 123 124 private string verticalAxisString; 125 126 public string VerticalAxisString 127 { 128 get { return this.verticalAxisString; } 129 set 130 { 131 verticalAxisString = value; 132 this.OnPropertyChanged("VerticalAxisString"); 133 } 134 } 135 136 private string horizontalAxisString; 137 138 public string HorizontalAxisString 139 { 140 get { return this.horizontalAxisString; } 141 set 142 { 143 horizontalAxisString = value; 144 this.OnPropertyChanged("HorizontalAxisString"); 100 private int maxIterations; 101 102 public int MaxIterations 103 { 104 get { return this.maxIterations; } 105 set 106 { 107 this.maxIterations = value; 108 this.OnPropertyChanged("MaxIterations"); 145 109 } 146 110 }
Note: See TracChangeset
for help on using the changeset viewer.