Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/30/10 05:05:19 (15 years ago)
Author:
swagner
Message:

Operator architecture refactoring (#95)

  • worked on content definitions of views
  • corrected bug in cloning of CombinedOperator
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Core.Views/3.3/ItemListView.cs

    r2713 r2727  
    3636  /// The visual representation of all variables in a specified scope.
    3737  /// </summary>
     38  [Content(typeof(ItemList<>), true)]
     39  [Content(typeof(IObservableList<>), false)]
    3840  public partial class ItemListView<T> : ContentView where T : class, IItem {
    3941    /// <summary>
     
    5759      InitializeComponent();
    5860      Caption = "Item List";
     61    }
     62    public ItemListView(IObservableList<T> content)
     63      : this() {
     64      Content = content;
    5965    }
    6066
Note: See TracChangeset for help on using the changeset viewer.