Changeset 9910
- Timestamp:
- 08/27/13 12:04:13 (11 years ago)
- Location:
- trunk/sources/HeuristicLab.Optimization.Views/3.3
- Files:
-
- 3 edited
- 4 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Optimization.Views/3.3/HeuristicLab.Optimization.Views-3.3.csproj
r9438 r9910 239 239 <DependentUpon>RunCollectionEqualityConstraintView.cs</DependentUpon> 240 240 </Compile> 241 <Compile Include="RunCollectionViews\RunCollectionTab ularView.cs">242 <SubType>UserControl</SubType> 243 </Compile> 244 <Compile Include="RunCollectionViews\RunCollectionTab ularView.Designer.cs">245 <DependentUpon>RunCollectionTab ularView.cs</DependentUpon>241 <Compile Include="RunCollectionViews\RunCollectionTableView.cs"> 242 <SubType>UserControl</SubType> 243 </Compile> 244 <Compile Include="RunCollectionViews\RunCollectionTableView.Designer.cs"> 245 <DependentUpon>RunCollectionTableView.cs</DependentUpon> 246 246 </Compile> 247 247 <Compile Include="RunCollectionViews\RunCollectionView.cs"> … … 257 257 <DependentUpon>RunView.cs</DependentUpon> 258 258 </Compile> 259 <Compile Include="RunCollectionViews\RunCollection DataTableView.cs">260 <SubType>UserControl</SubType> 261 </Compile> 262 <Compile Include="RunCollectionViews\RunCollection DataTableView.Designer.cs">263 <DependentUpon>RunCollection DataTableView.cs</DependentUpon>259 <Compile Include="RunCollectionViews\RunCollectionChartAggregationView.cs"> 260 <SubType>UserControl</SubType> 261 </Compile> 262 <Compile Include="RunCollectionViews\RunCollectionChartAggregationView.Designer.cs"> 263 <DependentUpon>RunCollectionChartAggregationView.cs</DependentUpon> 264 264 </Compile> 265 265 <Compile Include="UserDefinedAlgorithmView.cs"> -
trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionViews/RunCollectionBoxPlotView.cs
r9456 r9910 32 32 33 33 namespace HeuristicLab.Optimization.Views { 34 [View(" RunCollection BoxPlots")]34 [View("Box Plot")] 35 35 [Content(typeof(RunCollection), false)] 36 36 public partial class RunCollectionBoxPlotView : AsynchronousContentView { … … 159 159 160 160 private void UpdateCaption() { 161 Caption = Content != null ? Content.OptimizerName + " Box Plot s" : ViewAttribute.GetViewName(GetType());161 Caption = Content != null ? Content.OptimizerName + " Box Plot" : ViewAttribute.GetViewName(GetType()); 162 162 } 163 163 -
trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionViews/RunCollectionBubbleChartView.cs
r9456 r9910 33 33 34 34 namespace HeuristicLab.Optimization.Views { 35 [View(" RunCollection BubbleChart")]35 [View("Bubble Chart")] 36 36 [Content(typeof(RunCollection), false)] 37 37 public partial class RunCollectionBubbleChartView : AsynchronousContentView { -
trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionViews/RunCollectionChartAggregationView.Designer.cs
r9909 r9910 20 20 #endregion 21 21 namespace HeuristicLab.Optimization.Views { 22 partial class RunCollection DataTableView {22 partial class RunCollectionChartAggregationView { 23 23 /// <summary> 24 24 /// Required designer variable. … … 109 109 this.dataRowComboBox.SelectedIndexChanged += new System.EventHandler(this.dataRowComboBox_SelectedIndexChanged); 110 110 // 111 // RunCollection DataTableView111 // RunCollectionChartAggregationView 112 112 // 113 113 this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); … … 118 118 this.Controls.Add(this.label1); 119 119 this.Controls.Add(this.dataTableComboBox); 120 this.Name = "RunCollection DataTableView";120 this.Name = "RunCollectionChartAggregationView"; 121 121 this.Size = new System.Drawing.Size(527, 374); 122 122 this.ResumeLayout(false); -
trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionViews/RunCollectionChartAggregationView.cs
r9909 r9910 30 30 31 31 namespace HeuristicLab.Optimization.Views { 32 [View(" RunCollection DataTableView")]32 [View("Chart Aggregation")] 33 33 [Content(typeof(RunCollection), false)] 34 public partial class RunCollection DataTableView : ItemView {34 public partial class RunCollectionChartAggregationView : ItemView { 35 35 private const string AllDataRows = "All DataRows"; 36 36 … … 48 48 } 49 49 50 public RunCollection DataTableView() {50 public RunCollectionChartAggregationView() { 51 51 InitializeComponent(); 52 52 runMapping = new Dictionary<IRun, IEnumerable<DataRow>>(); … … 204 204 205 205 private void UpdateCaption() { 206 Caption = Content != null ? Content.OptimizerName + " Data Table" : ViewAttribute.GetViewName(GetType());206 Caption = Content != null ? Content.OptimizerName + " Chart Aggregation" : ViewAttribute.GetViewName(GetType()); 207 207 } 208 208 -
trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionViews/RunCollectionTableView.Designer.cs
r9909 r9910 21 21 22 22 namespace HeuristicLab.Optimization.Views { 23 partial class RunCollectionTab ularView {23 partial class RunCollectionTableView { 24 24 /// <summary> 25 25 /// Required designer variable. … … 53 53 this.errorProvider.SetIconPadding(this.rowsTextBox, 2); 54 54 // 55 // RunCollectionTab ularView55 // RunCollectionTableView 56 56 // 57 57 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 58 this.Name = "RunCollectionTab ularView";58 this.Name = "RunCollectionTableView"; 59 59 this.ShowStatisticalInformation = true; 60 60 this.Controls.SetChildIndex(this.rowsLabel, 0); -
trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionViews/RunCollectionTableView.cs
r9909 r9910 29 29 30 30 namespace HeuristicLab.Optimization.Views { 31 [View(" RunCollection Tabular View")]31 [View("Table")] 32 32 [Content(typeof(RunCollection), false)] 33 public sealed partial class RunCollectionTab ularView : StringConvertibleMatrixView {33 public sealed partial class RunCollectionTableView : StringConvertibleMatrixView { 34 34 private int[] runToRowMapping; 35 35 private bool suppressUpdates = false; 36 public RunCollectionTab ularView() {36 public RunCollectionTableView() { 37 37 InitializeComponent(); 38 38 dataGridView.RowHeaderMouseDoubleClick += new DataGridViewCellMouseEventHandler(dataGridView_RowHeaderMouseDoubleClick); … … 112 112 113 113 private void UpdateCaption() { 114 Caption = Content != null ? Content.OptimizerName + " Tab ular View" : ViewAttribute.GetViewName(GetType());114 Caption = Content != null ? Content.OptimizerName + " Table" : ViewAttribute.GetViewName(GetType()); 115 115 } 116 116
Note: See TracChangeset
for help on using the changeset viewer.