Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3.3-Hive/sources/HeuristicLab.Hive/HeuristicLab.Hive.Experiment.Views/3.3/HiveExperimentListView.cs @ 4368

Last change on this file since 4368 was 4368, checked in by cneumuel, 14 years ago
  • created HiveClient which shows an overview over all submitted HiveExperiments
  • its possible to download all submitted HiveExperiments including results
  • Experiments are now sent as a whole to the Hive and the Hive-Slaves take care of creating child-jobs (if necessary). The parent job is then paused and will be reactivated when all child-jobs are finished
  • WcfService-Clients are now consistently managed by WcfServicePool which allows to use IDisposable-Pattern and always keeps exactly one proxy-object until all callers disposed them.
  • created ProgressView which is able to lock a View and display progress of an action. It also allows to simulate progress if no progress-information is available so that users don't get too nervous while waiting.
File size: 970 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.ComponentModel;
4using System.Drawing;
5using System.Data;
6using System.Linq;
7using System.Text;
8using System.Windows.Forms;
9using HeuristicLab.Core.Views;
10using HeuristicLab.Core;
11using HeuristicLab.MainForm;
12using HeuristicLab.Optimization;
13using HeuristicLab.PluginInfrastructure;
14
15namespace HeuristicLab.Hive.Experiment.Views {
16  [View("HiveExperimentList View")]
17  [Content(typeof(HiveExperimentList), true)]
18  [Content(typeof(IItemList<HiveExperiment>), false)]
19  public partial class HiveExperimentListView : ItemListView<HiveExperiment> {
20
21    public HiveExperimentListView() {
22      InitializeComponent();
23      itemsGroupBox.Text = "Hive Experiments";
24    }
25
26    protected override HiveExperiment CreateItem() {
27      return new HiveExperiment();
28    }
29
30    protected override void SetEnabledStateOfControls() {
31      base.SetEnabledStateOfControls();
32    }
33  }
34}
Note: See TracBrowser for help on using the repository browser.