Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/23/09 11:08:34 (15 years ago)
Author:
swagner
Message:

Implemented first draft of MainForm support in HeuristicLab.Core/HeuristicLab.Core.Views and all other depending plugins (#770)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Operators/3.3/CombinedOperatorView.cs

    r1530 r2520  
    2828using System.Windows.Forms;
    2929using HeuristicLab.Core;
     30using HeuristicLab.Core.Views;
     31using HeuristicLab.MainForm;
    3032
    3133namespace HeuristicLab.Operators {
     
    3335  /// The visual representation of a <see cref="CombinedOperator"/>.
    3436  /// </summary>
     37  [Content(typeof(CombinedOperator), true)]
    3538  public partial class CombinedOperatorView : ViewBase {
    3639    /// <summary>
     
    116119      if (dialog.ShowDialog(this) == DialogResult.OK) {
    117120        if (CombinedOperator.GetVariableInfo(dialog.VariableInfo.FormalName) != null)
    118           Auxiliary.ShowErrorMessageBox("A variable info with the same formal name already exists.");
     121          HeuristicLab.Core.Views.Auxiliary.ShowErrorMessageBox("A variable info with the same formal name already exists.");
    119122        else
    120123          CombinedOperator.AddVariableInfo(dialog.VariableInfo);
Note: See TracChangeset for help on using the changeset viewer.