using System; using System.Collections.Generic; using System.ComponentModel; using System.Drawing; using System.Data; using System.Linq; using System.Text; using System.Windows.Forms; using HeuristicLab.Core.Views; using HeuristicLab.Core; using HeuristicLab.MainForm; using HeuristicLab.Optimization; using HeuristicLab.PluginInfrastructure; namespace HeuristicLab.Hive.Experiment.Views { [View("JobItemList View")] [Content(typeof(HiveJobList), true)] [Content(typeof(IItemList), false)] public partial class HiveJobListView : ItemListView { public HiveJobListView() { InitializeComponent(); itemsGroupBox.Text = "Jobs"; } protected override HiveJob CreateItem() { return null; } protected override void SetEnabledStateOfControls() { base.SetEnabledStateOfControls(); this.addButton.Enabled = false; this.moveDownButton.Enabled = false; this.moveUpButton.Enabled = false; this.removeButton.Enabled = false; } } }