Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2931_OR-Tools_LP_MIP/HeuristicLab.ExactOptimization.Views/3.3/LinearProgrammingAlgorithmView.Designer.cs @ 16745

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

#2931: solved the issues found during the review

File size: 6.2 KB
Line 
1using HeuristicLab.Common.Resources;
2
3namespace HeuristicLab.ExactOptimization.Views {
4  partial class LinearProgrammingAlgorithmView {
5    /// <summary>
6    /// Required designer variable.
7    /// </summary>
8    private System.ComponentModel.IContainer components = null;
9
10    /// <summary>
11    /// Clean up any resources being used.
12    /// </summary>
13    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14    protected override void Dispose(bool disposing) {
15      if (disposing && (components != null)) {
16        components.Dispose();
17      }
18      base.Dispose(disposing);
19    }
20
21    #region Component Designer generated code
22
23    /// <summary>
24    /// Required method for Designer support - do not modify
25    /// the contents of this method with the code editor.
26    /// </summary>
27    private void InitializeComponent() {
28      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(LinearProgrammingAlgorithmView));
29      this.exportModelButton = new System.Windows.Forms.Button();
30      this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
31      this.showInRunCheckBox = new System.Windows.Forms.CheckBox();
32      this.tabControl.SuspendLayout();
33      this.parametersTabPage.SuspendLayout();
34      this.problemTabPage.SuspendLayout();
35      this.resultsTabPage.SuspendLayout();
36      this.runsTabPage.SuspendLayout();
37      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
38      this.SuspendLayout();
39      //
40      // parametersTabPage
41      //
42      this.parametersTabPage.Size = new System.Drawing.Size(671, 404);
43      //
44      // problemTabPage
45      //
46      this.problemTabPage.Controls.Add(this.showInRunCheckBox);
47      this.problemTabPage.Controls.Add(this.exportModelButton);
48      this.problemTabPage.Controls.SetChildIndex(this.newProblemButton, 0);
49      this.problemTabPage.Controls.SetChildIndex(this.openProblemButton, 0);
50      this.problemTabPage.Controls.SetChildIndex(this.problemViewHost, 0);
51      this.problemTabPage.Controls.SetChildIndex(this.exportModelButton, 0);
52      this.problemTabPage.Controls.SetChildIndex(this.showInRunCheckBox, 0);
53      //
54      // parameterCollectionView
55      //
56      this.parameterCollectionView.Size = new System.Drawing.Size(659, 392);
57      //
58      // problemViewHost
59      //
60      this.problemViewHost.TabIndex = 4;
61      //
62      // newProblemButton
63      //
64      this.toolTip.SetToolTip(this.newProblemButton, "New Programmable Model");
65      //
66      // openProblemButton
67      //
68      this.toolTip.SetToolTip(this.openProblemButton, "Import Model From File");
69      //
70      // resultsTabPage
71      //
72      this.resultsTabPage.Size = new System.Drawing.Size(671, 404);
73      //
74      // resultsView
75      //
76      this.resultsView.Size = new System.Drawing.Size(659, 392);
77      //
78      // runsTabPage
79      //
80      this.runsTabPage.Size = new System.Drawing.Size(671, 404);
81      //
82      // runsView
83      //
84      this.runsView.Size = new System.Drawing.Size(659, 392);
85      //
86      // storeAlgorithmInEachRunCheckBox
87      //
88      this.toolTip.SetToolTip(this.storeAlgorithmInEachRunCheckBox, "Check to store a copy of the algorithm in each run.");
89      //
90      // startButton
91      //
92      this.toolTip.SetToolTip(this.startButton, "Start/Resume Algorithm");
93      //
94      // pauseButton
95      //
96      this.toolTip.SetToolTip(this.pauseButton, "Pause Algorithm");
97      //
98      // stopButton
99      //
100      this.toolTip.SetToolTip(this.stopButton, "Stop Algorithm");
101      //
102      // resetButton
103      //
104      this.toolTip.SetToolTip(this.resetButton, "Reset Algorithm");
105      //
106      // nameTextBox
107      //
108      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
109      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
110      //
111      // exportModelButton
112      //
113      this.exportModelButton.Image = VSImageLibrary.SaveAs;
114      this.exportModelButton.Location = new System.Drawing.Point(66, 6);
115      this.exportModelButton.Name = "exportModelButton";
116      this.exportModelButton.Size = new System.Drawing.Size(24, 24);
117      this.exportModelButton.TabIndex = 2;
118      this.toolTip.SetToolTip(this.exportModelButton, "Export Model To File");
119      this.exportModelButton.UseVisualStyleBackColor = true;
120      this.exportModelButton.Click += new System.EventHandler(this.exportModelButton_Click);
121      //
122      // showInRunCheckBox
123      //
124      this.showInRunCheckBox.AutoSize = true;
125      this.showInRunCheckBox.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
126      this.showInRunCheckBox.Location = new System.Drawing.Point(96, 11);
127      this.showInRunCheckBox.Name = "showInRunCheckBox";
128      this.showInRunCheckBox.Size = new System.Drawing.Size(90, 17);
129      this.showInRunCheckBox.TabIndex = 3;
130      this.showInRunCheckBox.Text = "&Show in Run:";
131      this.toolTip.SetToolTip(this.showInRunCheckBox, "Check to show the model in each run.");
132      this.showInRunCheckBox.UseVisualStyleBackColor = true;
133      this.showInRunCheckBox.CheckedChanged += new System.EventHandler(this.showInRunCheckBox_CheckedChanged);
134      //
135      // LinearProgrammingAlgorithmView
136      //
137      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
138      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
139      this.Name = "LinearProgrammingAlgorithmView";
140      this.tabControl.ResumeLayout(false);
141      this.parametersTabPage.ResumeLayout(false);
142      this.problemTabPage.ResumeLayout(false);
143      this.problemTabPage.PerformLayout();
144      this.resultsTabPage.ResumeLayout(false);
145      this.runsTabPage.ResumeLayout(false);
146      this.runsTabPage.PerformLayout();
147      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
148      this.ResumeLayout(false);
149      this.PerformLayout();
150
151    }
152
153    #endregion
154
155    protected System.Windows.Forms.Button exportModelButton;
156    private System.Windows.Forms.SaveFileDialog saveFileDialog;
157    protected System.Windows.Forms.CheckBox showInRunCheckBox;
158  }
159}
Note: See TracBrowser for help on using the repository browser.