using HeuristicLab.Collections; using HeuristicLab.MainForm; namespace HeuristicLab.Core.Views { [Content(typeof(ScopeList), true)] [Content(typeof(IObservableList), false)] public partial class ScopeListView : ItemListView { /// /// Initializes a new instance of with caption "Variables Scope View". /// public ScopeListView() { InitializeComponent(); Caption = "ScopeList"; itemsGroupBox.Text = "&Scopes"; } /// /// Initializes a new instance of with /// the given . /// /// Calls . /// The scope whose variables should be represented visually. public ScopeListView(IObservableList content) : this() { Content = content; } } }