Changeset 3566 for trunk/sources/HeuristicLab.MainForm.WindowsForms
- Timestamp:
- 04/30/10 10:17:22 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.MainForm.WindowsForms/3.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.MainForm.WindowsForms/3.3/AsynchronousContentView.cs
r3437 r3566 14 14 public AsynchronousContentView() { 15 15 InitializeComponent(); 16 }17 18 public AsynchronousContentView(IContent content)19 : this() {20 this.Content = content;21 16 } 22 17 -
trunk/sources/HeuristicLab.MainForm.WindowsForms/3.3/ContentView.cs
r3557 r3566 33 33 namespace HeuristicLab.MainForm.WindowsForms { 34 34 public partial class ContentView : View, IContentView { 35 public ContentView() 36 : base() { 37 InitializeComponent(); 38 this.locked = false; 39 } 40 35 41 private IContent content; 36 42 public IContent Content { … … 51 57 } 52 58 } 53 }54 55 public ContentView()56 : base() {57 InitializeComponent();58 this.locked = false;59 59 } 60 60
Note: See TracChangeset
for help on using the changeset viewer.