[9671] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[15583] | 3 | * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[9671] | 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 |
|
---|
[16582] | 22 | using HeuristicLab.Data.Views;
|
---|
| 23 |
|
---|
| 24 | namespace HeuristicLab.ExactOptimization.Views {
|
---|
| 25 | partial class FileBasedLinearProblemDefinitionView {
|
---|
[9671] | 26 | /// <summary>
|
---|
| 27 | /// Required designer variable.
|
---|
| 28 | /// </summary>
|
---|
| 29 | private System.ComponentModel.IContainer components = null;
|
---|
| 30 |
|
---|
| 31 | /// <summary>
|
---|
| 32 | /// Clean up any resources being used.
|
---|
| 33 | /// </summary>
|
---|
| 34 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
---|
| 35 | protected override void Dispose(bool disposing) {
|
---|
| 36 | if (disposing && (components != null)) {
|
---|
| 37 | components.Dispose();
|
---|
| 38 | }
|
---|
| 39 | base.Dispose(disposing);
|
---|
| 40 | }
|
---|
| 41 |
|
---|
| 42 | #region Component Designer generated code
|
---|
| 43 |
|
---|
| 44 | /// <summary>
|
---|
| 45 | /// Required method for Designer support - do not modify
|
---|
| 46 | /// the contents of this method with the code editor.
|
---|
| 47 | /// </summary>
|
---|
| 48 | private void InitializeComponent() {
|
---|
| 49 | this.openButton = new System.Windows.Forms.Button();
|
---|
| 50 | this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
|
---|
[9833] | 51 | this.stringConvertibleValueView = new HeuristicLab.Data.Views.StringConvertibleValueView();
|
---|
[9671] | 52 | this.SuspendLayout();
|
---|
| 53 | //
|
---|
| 54 | // openButton
|
---|
| 55 | //
|
---|
| 56 | this.openButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 57 | this.openButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Open;
|
---|
[9949] | 58 | this.openButton.Location = new System.Drawing.Point(167, 0);
|
---|
[9671] | 59 | this.openButton.Name = "openButton";
|
---|
| 60 | this.openButton.Size = new System.Drawing.Size(24, 24);
|
---|
| 61 | this.openButton.TabIndex = 3;
|
---|
| 62 | this.openButton.UseVisualStyleBackColor = true;
|
---|
| 63 | this.openButton.Click += new System.EventHandler(this.openButton_Click);
|
---|
| 64 | //
|
---|
[9833] | 65 | // stringConvertibleValueView
|
---|
| 66 | //
|
---|
| 67 | this.stringConvertibleValueView.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 68 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 69 | this.stringConvertibleValueView.Caption = "StringConvertibleValue View";
|
---|
| 70 | this.stringConvertibleValueView.Content = null;
|
---|
| 71 | this.stringConvertibleValueView.LabelVisible = true;
|
---|
| 72 | this.stringConvertibleValueView.Location = new System.Drawing.Point(4, 2);
|
---|
| 73 | this.stringConvertibleValueView.Name = "stringConvertibleValueView";
|
---|
| 74 | this.stringConvertibleValueView.ReadOnly = false;
|
---|
| 75 | this.stringConvertibleValueView.Size = new System.Drawing.Size(157, 21);
|
---|
| 76 | this.stringConvertibleValueView.TabIndex = 0;
|
---|
| 77 | //
|
---|
[9671] | 78 | // FileValueView
|
---|
| 79 | //
|
---|
[9833] | 80 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
|
---|
| 81 | this.Controls.Add(this.stringConvertibleValueView);
|
---|
| 82 | this.Controls.Add(this.openButton);
|
---|
[9671] | 83 | this.Name = "FileValueView";
|
---|
| 84 | this.Size = new System.Drawing.Size(194, 24);
|
---|
| 85 | this.ResumeLayout(false);
|
---|
| 86 |
|
---|
| 87 | }
|
---|
| 88 |
|
---|
| 89 | #endregion
|
---|
| 90 |
|
---|
| 91 | protected System.Windows.Forms.Button openButton;
|
---|
| 92 | protected System.Windows.Forms.OpenFileDialog openFileDialog;
|
---|
[9833] | 93 | protected StringConvertibleValueView stringConvertibleValueView;
|
---|
[9671] | 94 | }
|
---|
| 95 | }
|
---|