Changeset 11736 for trunk/sources
- Timestamp:
- 01/07/15 11:04:39 (10 years ago)
- Location:
- trunk/sources/HeuristicLab.Core.Views/3.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Core.Views/3.3/ItemView.cs
r11592 r11736 29 29 /// </summary> 30 30 public partial class ItemView : AsynchronousContentView { 31 public const int MaximumNestingLevel = 3 2;31 public const int MaximumNestingLevel = 35; 32 32 33 33 public new IItem Content { -
trunk/sources/HeuristicLab.Core.Views/3.3/NestingLevelErrorControl.cs
r11557 r11736 27 27 namespace HeuristicLab.Core.Views { 28 28 public partial class NestingLevelErrorControl : UserControl { 29 public Func<IContent> Content { get; set; } 30 public Type ViewType { get; set; } 31 32 public NestingLevelErrorControl() { 33 InitializeComponent(); 34 } 29 private Func<IContent> Content { get; set; } 30 private Type ViewType { get; set; } 35 31 36 32 public NestingLevelErrorControl(Func<IContent> content, Type viewType) 37 : this() { 33 : base() { 34 InitializeComponent(); 38 35 Content = content; 39 36 ViewType = viewType;
Note: See TracChangeset
for help on using the changeset viewer.