1 | namespace HeuristicLab.BenchmarkGenerator {
|
---|
2 | partial class BenchmarkGeneratorForm {
|
---|
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 Windows Form 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.formulaTextBox = new System.Windows.Forms.RichTextBox();
|
---|
27 | this.viewHost1 = new HeuristicLab.MainForm.WindowsForms.ViewHost();
|
---|
28 | this.generateButton = new System.Windows.Forms.Button();
|
---|
29 | this.SuspendLayout();
|
---|
30 | //
|
---|
31 | // formulaTextBox
|
---|
32 | //
|
---|
33 | this.formulaTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
34 | | System.Windows.Forms.AnchorStyles.Left)));
|
---|
35 | this.formulaTextBox.Location = new System.Drawing.Point(141, 52);
|
---|
36 | this.formulaTextBox.Name = "formulaTextBox";
|
---|
37 | this.formulaTextBox.Size = new System.Drawing.Size(353, 431);
|
---|
38 | this.formulaTextBox.TabIndex = 0;
|
---|
39 | this.formulaTextBox.Text = "";
|
---|
40 | //
|
---|
41 | // viewHost1
|
---|
42 | //
|
---|
43 | this.viewHost1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
44 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
45 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
46 | this.viewHost1.AutoSize = true;
|
---|
47 | this.viewHost1.Caption = "View";
|
---|
48 | this.viewHost1.Content = null;
|
---|
49 | this.viewHost1.Enabled = false;
|
---|
50 | this.viewHost1.Location = new System.Drawing.Point(500, 52);
|
---|
51 | this.viewHost1.Name = "viewHost1";
|
---|
52 | this.viewHost1.ReadOnly = false;
|
---|
53 | this.viewHost1.Size = new System.Drawing.Size(385, 431);
|
---|
54 | this.viewHost1.TabIndex = 4;
|
---|
55 | this.viewHost1.ViewsLabelVisible = true;
|
---|
56 | this.viewHost1.ViewType = null;
|
---|
57 | //
|
---|
58 | // generateButton
|
---|
59 | //
|
---|
60 | this.generateButton.Location = new System.Drawing.Point(12, 52);
|
---|
61 | this.generateButton.Name = "generateButton";
|
---|
62 | this.generateButton.Size = new System.Drawing.Size(123, 24);
|
---|
63 | this.generateButton.TabIndex = 1;
|
---|
64 | this.generateButton.Text = "Generate";
|
---|
65 | this.generateButton.UseVisualStyleBackColor = true;
|
---|
66 | this.generateButton.Click += new System.EventHandler(this.generateButton_Click);
|
---|
67 | //
|
---|
68 | // BenchmarkGeneratorForm
|
---|
69 | //
|
---|
70 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
71 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
72 | this.ClientSize = new System.Drawing.Size(885, 508);
|
---|
73 | this.Controls.Add(this.viewHost1);
|
---|
74 | this.Controls.Add(this.generateButton);
|
---|
75 | this.Controls.Add(this.formulaTextBox);
|
---|
76 | this.Name = "BenchmarkGeneratorForm";
|
---|
77 | this.Text = "BenchmarkGeneratorForm";
|
---|
78 | this.Title = "BenchmarkGeneratorForm";
|
---|
79 | this.Controls.SetChildIndex(this.formulaTextBox, 0);
|
---|
80 | this.Controls.SetChildIndex(this.generateButton, 0);
|
---|
81 | this.Controls.SetChildIndex(this.viewHost1, 0);
|
---|
82 | this.ResumeLayout(false);
|
---|
83 | this.PerformLayout();
|
---|
84 |
|
---|
85 | }
|
---|
86 |
|
---|
87 | #endregion
|
---|
88 |
|
---|
89 | private System.Windows.Forms.RichTextBox formulaTextBox;
|
---|
90 | private MainForm.WindowsForms.ViewHost viewHost1;
|
---|
91 | private System.Windows.Forms.Button generateButton;
|
---|
92 | }
|
---|
93 | } |
---|