using System.Windows.Forms; using HeuristicLab.Core.Views; using HeuristicLab.MainForm; namespace HeuristicLab.Encodings.ParameterConfigurationEncoding.Views { /// /// The visual representation of a . /// [View("ParameterConfiguration View")] [Content(typeof(ParameterConfigurationTree), true)] public partial class ParameterConfigurationTreeView : ItemView { /// /// Gets or sets the variable to represent visually. /// /// Uses property of base class . /// No own data storage present. public new ParameterConfigurationTree Content { get { return (ParameterConfigurationTree)base.Content; } set { base.Content = value; } } public ParameterConfigurationTreeView() { InitializeComponent(); } protected override void OnContentChanged() { base.OnContentChanged(); if (Content != null) { listView.Content = Content.ParameterConfigurations; } else { listView.Content = null; } SetEnabledStateOfControls(); } protected override void SetEnabledStateOfControls() { base.SetEnabledStateOfControls(); } } }