Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Analysis.AlgorithmBehavior/HeuristicLab.Analysis.AlgorithmBehavior.Analyzers.Views/3.3/PermutationSolutionDictionaryView.Designer.cs @ 9728

Last change on this file since 9728 was 9728, checked in by ascheibe, 11 years ago

#1886 worked on solution caching

File size: 4.8 KB
RevLine 
[9728]1namespace HeuristicLab.Analysis.AlgorithmBehavior.Analyzers.Views {
2  partial class PermutationSolutionDictionaryView {
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.label1 = new System.Windows.Forms.Label();
27      this.label2 = new System.Windows.Forms.Label();
28      this.label3 = new System.Windows.Forms.Label();
29      this.cacheSizeTextBox = new System.Windows.Forms.TextBox();
30      this.partialSizeTextBox = new System.Windows.Forms.TextBox();
31      this.completeSizeTextBox = new System.Windows.Forms.TextBox();
32      this.SuspendLayout();
33      //
34      // label1
35      //
36      this.label1.AutoSize = true;
37      this.label1.Location = new System.Drawing.Point(3, 10);
38      this.label1.Name = "label1";
39      this.label1.Size = new System.Drawing.Size(64, 13);
40      this.label1.TabIndex = 0;
41      this.label1.Text = "Cache Size:";
42      //
43      // label2
44      //
45      this.label2.AutoSize = true;
46      this.label2.Location = new System.Drawing.Point(3, 42);
47      this.label2.Name = "label2";
48      this.label2.Size = new System.Drawing.Size(108, 13);
49      this.label2.TabIndex = 1;
50      this.label2.Text = "Partial Solutions Size:";
51      //
52      // label3
53      //
54      this.label3.AutoSize = true;
55      this.label3.Location = new System.Drawing.Point(3, 74);
56      this.label3.Name = "label3";
57      this.label3.Size = new System.Drawing.Size(123, 13);
58      this.label3.TabIndex = 2;
59      this.label3.Text = "Complete Solutions Size:";
60      //
61      // cacheSizeTextBox
62      //
63      this.cacheSizeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
64            | System.Windows.Forms.AnchorStyles.Right)));
65      this.cacheSizeTextBox.Location = new System.Drawing.Point(132, 7);
66      this.cacheSizeTextBox.Name = "cacheSizeTextBox";
67      this.cacheSizeTextBox.ReadOnly = true;
68      this.cacheSizeTextBox.Size = new System.Drawing.Size(351, 20);
69      this.cacheSizeTextBox.TabIndex = 3;
70      //
71      // partialSizeTextBox
72      //
73      this.partialSizeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
74            | System.Windows.Forms.AnchorStyles.Right)));
75      this.partialSizeTextBox.Location = new System.Drawing.Point(132, 39);
76      this.partialSizeTextBox.Name = "partialSizeTextBox";
77      this.partialSizeTextBox.ReadOnly = true;
78      this.partialSizeTextBox.Size = new System.Drawing.Size(351, 20);
79      this.partialSizeTextBox.TabIndex = 4;
80      //
81      // completeSizeTextBox
82      //
83      this.completeSizeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
84            | System.Windows.Forms.AnchorStyles.Right)));
85      this.completeSizeTextBox.Location = new System.Drawing.Point(132, 71);
86      this.completeSizeTextBox.Name = "completeSizeTextBox";
87      this.completeSizeTextBox.ReadOnly = true;
88      this.completeSizeTextBox.Size = new System.Drawing.Size(351, 20);
89      this.completeSizeTextBox.TabIndex = 5;
90      //
91      // PermutationSolutionDictionaryView
92      //
93      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
94      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
95      this.Controls.Add(this.completeSizeTextBox);
96      this.Controls.Add(this.partialSizeTextBox);
97      this.Controls.Add(this.cacheSizeTextBox);
98      this.Controls.Add(this.label3);
99      this.Controls.Add(this.label2);
100      this.Controls.Add(this.label1);
101      this.Name = "PermutationSolutionDictionaryView";
102      this.Size = new System.Drawing.Size(486, 98);
103      this.ResumeLayout(false);
104      this.PerformLayout();
105
106    }
107
108    #endregion
109
110    private System.Windows.Forms.Label label1;
111    private System.Windows.Forms.Label label2;
112    private System.Windows.Forms.Label label3;
113    private System.Windows.Forms.TextBox cacheSizeTextBox;
114    private System.Windows.Forms.TextBox partialSizeTextBox;
115    private System.Windows.Forms.TextBox completeSizeTextBox;
116  }
117}
Note: See TracBrowser for help on using the repository browser.