- Timestamp:
- 04/20/10 03:00:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Operators.Views.GraphVisualization/3.3/General/GraphVisualizationInfo.cs
r3386 r3431 86 86 return clone; 87 87 } 88 89 #region IContent Members90 [Storable]91 private bool readOnlyView;92 public virtual bool ReadOnlyView {93 get { return readOnlyView; }94 set {95 if (readOnlyView != value) {96 readOnlyView = value;97 OnReadOnlyViewChanged();98 }99 }100 }101 public event EventHandler ReadOnlyViewChanged;102 protected virtual void OnReadOnlyViewChanged() {103 EventHandler handler = ReadOnlyViewChanged;104 if (handler != null) handler(this, EventArgs.Empty);105 }106 #endregion107 88 } 108 89 }
Note: See TracChangeset
for help on using the changeset viewer.