Free cookie consent management tool by TermsFeed Policy Generator

source: branches/TerminationCriteria/HeuristicLab.Termination/3.3/Views/ThresholdTerminatorView.Designer.cs @ 12408

Last change on this file since 12408 was 12408, checked in by pfleck, 9 years ago

#2027

  • Added ValueChanged-events to Terminators.
  • Fixed wiring bug of quality-based Terminator.
File size: 2.9 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2015 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 HeuristicLab.Core;
24using HeuristicLab.Data;
25
26namespace HeuristicLab.Termination.Views {
27  partial class ThresholdTerminatorView<T> where T : class, IItem, IComparable, IStringConvertibleValue, new() {
28    /// <summary>
29    /// Required designer variable.
30    /// </summary>
31    private System.ComponentModel.IContainer components = null;
32
33    /// <summary>
34    /// Clean up any resources being used.
35    /// </summary>
36    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
37    protected override void Dispose(bool disposing) {
38      if (disposing && (components != null)) {
39        components.Dispose();
40      }
41      base.Dispose(disposing);
42    }
43
44    #region Component Designer generated code
45
46    /// <summary>
47    /// Required method for Designer support - do not modify
48    /// the contents of this method with the code editor.
49    /// </summary>
50    private void InitializeComponent() {
51      this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
52      this.SuspendLayout();
53      //
54      // viewHost
55      //
56      this.viewHost.Caption = "View";
57      this.viewHost.Content = null;
58      this.viewHost.Dock = System.Windows.Forms.DockStyle.Fill;
59      this.viewHost.Enabled = false;
60      this.viewHost.Location = new System.Drawing.Point(0, 0);
61      this.viewHost.Name = "viewHost";
62      this.viewHost.ReadOnly = false;
63      this.viewHost.Size = new System.Drawing.Size(150, 150);
64      this.viewHost.TabIndex = 0;
65      this.viewHost.ViewsLabelVisible = false;
66      this.viewHost.ViewType = null;
67      //
68      // ThresholdTerminatorView
69      //
70      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
71      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
72      this.Controls.Add(this.viewHost);
73      this.Name = "ThresholdTerminatorView";
74      this.ResumeLayout(false);
75
76    }
77
78    #endregion
79
80    private HeuristicLab.MainForm.WindowsForms.ViewHost viewHost;
81  }
82}
Note: See TracBrowser for help on using the repository browser.