Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Operators/3.3/VariableInjectorView.cs @ 2687

Last change on this file since 2687 was 2520, checked in by swagner, 15 years ago

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

File size: 2.4 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2008 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22using System;
23using System.Collections.Generic;
24using System.ComponentModel;
25using System.Drawing;
26using System.Data;
27using System.Text;
28using System.Windows.Forms;
29using HeuristicLab.Core;
30using HeuristicLab.Core.Views;
31using HeuristicLab.MainForm;
32
33namespace HeuristicLab.Operators {
34  /// <summary>
35  /// Visual representation of <see cref="VariableInjector"/>.
36  /// </summary>
37  [Content(typeof(VariableInjector), true)]
38  public partial class VariableInjectorView : OperatorBaseView {
39    /// <summary>
40    /// Gets or sets the <see cref="HeuristicLab.Operators.VariableInjector"/> to display.
41    /// </summary>
42    /// <remarks>Uses property <see cref="OperatorBaseView.Operator"/> of base class
43    /// <see cref="OperatorBaseView"/>. No own data storage present.</remarks>
44    public VariableInjector VariableInjector {
45      get { return (VariableInjector)Operator; }
46      set { base.Operator = value; }
47    }
48
49    /// <summary>
50    /// Initializes a new instance of <see cref="VariableInjectorView"/>.
51    /// </summary>
52    public VariableInjectorView() {
53      InitializeComponent();
54      tabControl.SelectedTab = variablesTabPage;
55    }
56    /// <summary>
57    /// Initializes a new instance of <see cref="VariableInjectorView"/> with the specified
58    /// <paramref name="variableInjector"/>.
59    /// </summary>
60    /// <param name="variableInjector">The variable injector to display.</param>
61    public VariableInjectorView(VariableInjector variableInjector)
62      : this() {
63      VariableInjector = variableInjector;
64    }
65  }
66}
Note: See TracBrowser for help on using the repository browser.