Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2931_OR-Tools_LP_MIP/HeuristicLab.Data.Views/3.3/Path Views/FileValueView.Designer.cs @ 16405

Last change on this file since 16405 was 16405, checked in by ddorfmei, 5 years ago

#2931:

  • moved views to separate plugin HeuristicLab.MathematicalOptimization.Views
  • added button in LinearProgrammingProblemView to select the problem definition type
  • added views for problem definitions
  • added ExportFile parameter to LinearProgrammingAlgorithm
  • extended FileValue and FileValueView by the option to save a file
  • code cleanup
File size: 4.2 KB
RevLine 
[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
[9680]22namespace HeuristicLab.Data.Views {
[9671]23  partial class FileValueView {
24    /// <summary>
25    /// Required designer variable.
26    /// </summary>
27    private System.ComponentModel.IContainer components = null;
28
29    /// <summary>
30    /// Clean up any resources being used.
31    /// </summary>
32    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
33    protected override void Dispose(bool disposing) {
34      if (disposing && (components != null)) {
35        components.Dispose();
36      }
37      base.Dispose(disposing);
38    }
39
40    #region Component Designer generated code
41
42    /// <summary>
43    /// Required method for Designer support - do not modify
44    /// the contents of this method with the code editor.
45    /// </summary>
46    private void InitializeComponent() {
[16405]47      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FileValueView));
[9671]48      this.openButton = new System.Windows.Forms.Button();
49      this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
[9833]50      this.stringConvertibleValueView = new HeuristicLab.Data.Views.StringConvertibleValueView();
[16405]51      this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
[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;
[16405]94    private System.Windows.Forms.SaveFileDialog saveFileDialog;
[9671]95  }
96}
Note: See TracBrowser for help on using the repository browser.