[6983] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[16565] | 3 | * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[6983] | 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 |
|
---|
| 22 | using System.Windows.Forms;
|
---|
| 23 | using HeuristicLab.MainForm;
|
---|
| 24 |
|
---|
| 25 | namespace HeuristicLab.Clients.Hive.SlaveCore.Views {
|
---|
| 26 |
|
---|
| 27 | [View("HeuristicLab Slave Main View")]
|
---|
| 28 | [Content(typeof(SlaveItem), IsDefaultView = false)]
|
---|
| 29 | public partial class SlaveMainView : SlaveMainViewBase {
|
---|
| 30 |
|
---|
| 31 | public new SlaveItem Content {
|
---|
| 32 | get { return (SlaveItem)base.Content; }
|
---|
| 33 | set {
|
---|
| 34 | if (base.Content != value) {
|
---|
| 35 | base.Content = value;
|
---|
| 36 | }
|
---|
| 37 | }
|
---|
| 38 | }
|
---|
| 39 |
|
---|
| 40 | public SlaveMainView() {
|
---|
| 41 | InitializeComponent();
|
---|
| 42 | }
|
---|
| 43 |
|
---|
| 44 | #region Register Content Events
|
---|
| 45 | protected override void DeregisterContentEvents() {
|
---|
| 46 | base.DeregisterContentEvents();
|
---|
| 47 | }
|
---|
| 48 |
|
---|
| 49 | protected override void RegisterContentEvents() {
|
---|
| 50 | base.RegisterContentEvents();
|
---|
| 51 | }
|
---|
| 52 | #endregion
|
---|
| 53 |
|
---|
| 54 | protected override void OnContentChanged() {
|
---|
| 55 | base.OnContentChanged();
|
---|
| 56 |
|
---|
| 57 | slaveCmdsBase.Content = Content;
|
---|
| 58 | }
|
---|
| 59 |
|
---|
| 60 | protected override void SetEnabledStateOfControls() {
|
---|
| 61 | base.SetEnabledStateOfControls();
|
---|
| 62 | }
|
---|
| 63 | }
|
---|
| 64 | }
|
---|