Changeset 1167 for trunk/sources/HeuristicLab.Logging/PointXYChartView.cs
- Timestamp:
- 01/22/09 12:06:29 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Logging/PointXYChartView.cs
r677 r1167 33 33 34 34 namespace HeuristicLab.Logging { 35 /// <summary> 36 /// Visual representation of a <see cref="PointXYChart"/>. 37 /// </summary> 35 38 public partial class PointXYChartView : ViewBase { 36 39 private static int[] colors = new int[] { … … 49 52 }; 50 53 54 /// <summary> 55 /// Gets or sets the chart to represent visually. 56 /// </summary> 57 /// <remarks>Uses property <see cref="ViewBase.Item"/> of base class <see cref="ViewBase"/>. 58 /// No own data storage present.</remarks> 51 59 public PointXYChart PointXYChart { 52 60 get { return (PointXYChart)base.Item; } … … 54 62 } 55 63 64 /// <summary> 65 /// Initializes a new instance of <see cref="PointXYChartView"/>. 66 /// </summary> 56 67 public PointXYChartView() { 57 68 InitializeComponent(); 58 69 Caption = "PointXYChart View"; 59 70 } 71 /// <summary> 72 /// Initializes a new instance of <see cref="PointXYChartView"/> with the given 73 /// <paramref name="pointXYChart"/>. 74 /// </summary> 75 /// <param name="pointXYChart">The chart to represent visually.</param> 60 76 public PointXYChartView(PointXYChart pointXYChart) 61 77 : this() { … … 63 79 } 64 80 81 /// <summary> 82 /// Removes the eventhandlers from the underlying <see cref="PointXYChart"/>. 83 /// </summary> 84 /// <remarks>Calls <see cref="ViewBase.RemoveItemEvents"/> of base class <see cref="ViewBase"/>.</remarks> 65 85 protected override void RemoveItemEvents() { 66 86 if (PointXYChart != null) { … … 70 90 base.RemoveItemEvents(); 71 91 } 92 /// <summary> 93 /// Adds eventhandlers to the underlying <see cref="IOperatorGraph"/>. 94 /// </summary> 95 /// <remarks>Calls <see cref="ViewBase.AddItemEvents"/> of base class <see cref="ViewBase"/>.</remarks> 72 96 protected override void AddItemEvents() { 73 97 base.AddItemEvents(); … … 78 102 } 79 103 104 /// <summary> 105 /// Updates all controls with the latest data of the model. 106 /// </summary> 107 /// <remarks>Calls <see cref="ViewBase.UpdateControls"/> of base class <see cref="ViewBase"/>.</remarks> 80 108 protected override void UpdateControls() { 81 109 base.UpdateControls();
Note: See TracChangeset
for help on using the changeset viewer.