[16405] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[17181] | 3 | * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[16405] | 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.ComponentModel;
|
---|
| 23 | using HeuristicLab.Common.Resources;
|
---|
| 24 |
|
---|
[16582] | 25 | namespace HeuristicLab.ExactOptimization.Views {
|
---|
[16405] | 26 | partial class LinearProgrammingProblemView {
|
---|
| 27 | /// <summary>
|
---|
| 28 | /// Required designer variable.
|
---|
| 29 | /// </summary>
|
---|
| 30 | private IContainer components = null;
|
---|
| 31 |
|
---|
| 32 | /// <summary>
|
---|
| 33 | /// Clean up any resources being used.
|
---|
| 34 | /// </summary>
|
---|
| 35 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
---|
| 36 | protected override void Dispose(bool disposing) {
|
---|
| 37 | if (disposing && (components != null)) {
|
---|
| 38 | components.Dispose();
|
---|
| 39 | }
|
---|
| 40 | base.Dispose(disposing);
|
---|
| 41 | }
|
---|
| 42 |
|
---|
| 43 | #region Component Designer generated code
|
---|
| 44 |
|
---|
| 45 | /// <summary>
|
---|
| 46 | /// Required method for Designer support - do not modify
|
---|
| 47 | /// the contents of this method with the code editor.
|
---|
| 48 | /// </summary>
|
---|
| 49 | private void InitializeComponent() {
|
---|
| 50 | this.components = new System.ComponentModel.Container();
|
---|
| 51 | this.panel1 = new System.Windows.Forms.Panel();
|
---|
| 52 | this.ViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
|
---|
| 53 | this.toolTip = new System.Windows.Forms.ToolTip(this.components);
|
---|
| 54 | this.panel1.SuspendLayout();
|
---|
| 55 | this.SuspendLayout();
|
---|
| 56 | //
|
---|
| 57 | // panel1
|
---|
| 58 | //
|
---|
| 59 | this.panel1.Controls.Add(this.ViewHost);
|
---|
| 60 | this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
| 61 | this.panel1.Location = new System.Drawing.Point(0, 0);
|
---|
| 62 | this.panel1.Name = "panel1";
|
---|
| 63 | this.panel1.Size = new System.Drawing.Size(300, 150);
|
---|
| 64 | this.panel1.TabIndex = 7;
|
---|
| 65 | //
|
---|
| 66 | // ViewHost
|
---|
| 67 | //
|
---|
| 68 | this.ViewHost.Caption = "View";
|
---|
| 69 | this.ViewHost.Content = null;
|
---|
| 70 | this.ViewHost.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
| 71 | this.ViewHost.Enabled = false;
|
---|
[16582] | 72 | this.ViewHost.Location = new System.Drawing.Point(0, 0);
|
---|
[16405] | 73 | this.ViewHost.Name = "ViewHost";
|
---|
| 74 | this.ViewHost.ReadOnly = false;
|
---|
[16582] | 75 | this.ViewHost.Size = new System.Drawing.Size(300, 150);
|
---|
[16405] | 76 | this.ViewHost.TabIndex = 6;
|
---|
| 77 | this.ViewHost.ViewsLabelVisible = false;
|
---|
| 78 | this.ViewHost.ViewType = null;
|
---|
| 79 | //
|
---|
| 80 | // LinearProgrammingProblemView
|
---|
| 81 | //
|
---|
| 82 | this.Controls.Add(this.panel1);
|
---|
| 83 | this.Name = "LinearProgrammingProblemView";
|
---|
| 84 | this.Size = new System.Drawing.Size(300, 150);
|
---|
| 85 | this.panel1.ResumeLayout(false);
|
---|
| 86 | this.ResumeLayout(false);
|
---|
| 87 |
|
---|
| 88 | }
|
---|
| 89 |
|
---|
| 90 | #endregion
|
---|
| 91 |
|
---|
| 92 | private System.Windows.Forms.Panel panel1;
|
---|
| 93 | private MainForm.WindowsForms.ViewHost ViewHost;
|
---|
| 94 | private System.Windows.Forms.ToolTip toolTip;
|
---|
| 95 | protected System.Windows.Forms.Button newProblemDefinitionButton;
|
---|
| 96 | }
|
---|
| 97 | }
|
---|