Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Scripting.Views/3.3/ExecutableScriptView.Designer.cs @ 13080

Last change on this file since 13080 was 13080, checked in by jkarder, 8 years ago

#2298: added ExecutableScript and ExecutableScriptView

File size: 5.4 KB
Line 
1namespace HeuristicLab.Scripting.Views {
2  partial class ExecutableScriptView {
3    /// <summary>
4    /// Required designer variable.
5    /// </summary>
6    private System.ComponentModel.IContainer components = null;
7
8    /// <summary>
9    /// Clean up any resources being used.
10    /// </summary>
11    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12    protected override void Dispose(bool disposing) {
13      if (disposing && (components != null)) {
14        components.Dispose();
15      }
16      base.Dispose(disposing);
17    }
18
19    #region Component Designer generated code
20
21    /// <summary>
22    /// Required method for Designer support - do not modify
23    /// the contents of this method with the code editor.
24    /// </summary>
25    private void InitializeComponent() {
26      this.startStopButton = new System.Windows.Forms.Button();
27      this.executionTimeLabel = new System.Windows.Forms.Label();
28      this.executionTimeTextBox = new System.Windows.Forms.TextBox();
29      this.infoTabControl.SuspendLayout();
30      this.outputTabPage.SuspendLayout();
31      this.errorListTabPage.SuspendLayout();
32      ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
33      this.splitContainer1.Panel1.SuspendLayout();
34      this.splitContainer1.Panel2.SuspendLayout();
35      this.splitContainer1.SuspendLayout();
36      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
37      this.SuspendLayout();
38      //
39      // splitContainer1.Panel1
40      //
41      this.splitContainer1.Panel1.Controls.Add(this.executionTimeTextBox);
42      this.splitContainer1.Panel1.Controls.Add(this.executionTimeLabel);
43      this.splitContainer1.Panel1.Controls.SetChildIndex(this.executionTimeTextBox, 0);
44      this.splitContainer1.Panel1.Controls.SetChildIndex(this.executionTimeLabel, 0);
45      //
46      // nameTextBox
47      //
48      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
49      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
50      //
51      // startStopButton
52      //
53      this.startStopButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Play;
54      this.startStopButton.Location = new System.Drawing.Point(36, 26);
55      this.startStopButton.Name = "startStopButton";
56      this.startStopButton.Size = new System.Drawing.Size(24, 24);
57      this.startStopButton.TabIndex = 10;
58      this.startStopButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
59      this.toolTip.SetToolTip(this.startStopButton, "Run (F5)");
60      this.startStopButton.UseVisualStyleBackColor = true;
61      this.startStopButton.Click += new System.EventHandler(this.startStopButton_Click);
62      //
63      // executionTimeLabel
64      //
65      this.executionTimeLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
66      this.executionTimeLabel.AutoSize = true;
67      this.executionTimeLabel.Location = new System.Drawing.Point(589, 396);
68      this.executionTimeLabel.Name = "executionTimeLabel";
69      this.executionTimeLabel.Size = new System.Drawing.Size(83, 13);
70      this.executionTimeLabel.TabIndex = 18;
71      this.executionTimeLabel.Text = "&Execution Time:";
72      //
73      // executionTimeTextBox
74      //
75      this.executionTimeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
76      this.executionTimeTextBox.Location = new System.Drawing.Point(678, 393);
77      this.executionTimeTextBox.Name = "executionTimeTextBox";
78      this.executionTimeTextBox.ReadOnly = true;
79      this.executionTimeTextBox.Size = new System.Drawing.Size(137, 20);
80      this.executionTimeTextBox.TabIndex = 19;
81      //
82      // ExecutableScriptView
83      //
84      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
85      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
86      this.Controls.Add(this.startStopButton);
87      this.Name = "ExecutableScriptView";
88      this.Controls.SetChildIndex(this.infoTextLabel, 0);
89      this.Controls.SetChildIndex(this.compileButton, 0);
90      this.Controls.SetChildIndex(this.splitContainer1, 0);
91      this.Controls.SetChildIndex(this.nameLabel, 0);
92      this.Controls.SetChildIndex(this.nameTextBox, 0);
93      this.Controls.SetChildIndex(this.infoLabel, 0);
94      this.Controls.SetChildIndex(this.startStopButton, 0);
95      this.infoTabControl.ResumeLayout(false);
96      this.outputTabPage.ResumeLayout(false);
97      this.outputTabPage.PerformLayout();
98      this.errorListTabPage.ResumeLayout(false);
99      this.splitContainer1.Panel1.ResumeLayout(false);
100      this.splitContainer1.Panel1.PerformLayout();
101      this.splitContainer1.Panel2.ResumeLayout(false);
102      ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
103      this.splitContainer1.ResumeLayout(false);
104      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
105      this.ResumeLayout(false);
106      this.PerformLayout();
107
108    }
109
110    #endregion
111
112    protected System.Windows.Forms.Button startStopButton;
113    protected System.Windows.Forms.Label executionTimeLabel;
114    protected System.Windows.Forms.TextBox executionTimeTextBox;
115  }
116}
Note: See TracBrowser for help on using the repository browser.