- Timestamp:
- 02/10/15 09:57:29 (10 years ago)
- Location:
- branches/ALPS
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ALPS
- Property svn:mergeinfo changed
-
branches/ALPS/HeuristicLab.Core.Views/3.3/NestingLevelErrorControl.cs
r11677 r11975 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.