Changeset 2462 for trunk/sources
- Timestamp:
- 11/03/09 14:06:01 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.MainForm.WindowsForms/3.2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.MainForm.WindowsForms/3.2/MainFormBase.cs
r2460 r2462 46 46 this.userInterfaceItemType = userInterfaceItemType; 47 47 CreateGUI(); 48 OnActiveViewChanged();49 FireMainFormChanged();50 48 } 51 49 -
trunk/sources/HeuristicLab.MainForm.WindowsForms/3.2/ViewBase.cs
r2461 r2462 67 67 public class ViewBase<T> : ViewBase, IView<T> { 68 68 private T item; 69 public virtualT Item {69 public T Item { 70 70 get { return this.item; } 71 71 protected set { this.item = value; }
Note: See TracChangeset
for help on using the changeset viewer.