[10024] | 1 | namespace HeuristicLab.Analysis.SolutionCaching.Views {
|
---|
| 2 | partial class SolutionCacheView<TKey, TValue> {
|
---|
| 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.cacheSizeTextBox = new System.Windows.Forms.TextBox();
|
---|
| 28 | this.toolStrip = new System.Windows.Forms.ToolStrip();
|
---|
| 29 | this.analyzeToolStripButton = new System.Windows.Forms.ToolStripDropDownButton();
|
---|
| 30 | this.toolStrip.SuspendLayout();
|
---|
| 31 | this.SuspendLayout();
|
---|
| 32 | //
|
---|
| 33 | // label1
|
---|
| 34 | //
|
---|
| 35 | this.label1.AutoSize = true;
|
---|
| 36 | this.label1.Location = new System.Drawing.Point(3, 60);
|
---|
| 37 | this.label1.Name = "label1";
|
---|
| 38 | this.label1.Size = new System.Drawing.Size(64, 13);
|
---|
| 39 | this.label1.TabIndex = 0;
|
---|
| 40 | this.label1.Text = "Cache Size:";
|
---|
| 41 | //
|
---|
| 42 | // cacheSizeTextBox
|
---|
| 43 | //
|
---|
| 44 | this.cacheSizeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 45 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 46 | this.cacheSizeTextBox.Location = new System.Drawing.Point(132, 57);
|
---|
| 47 | this.cacheSizeTextBox.Name = "cacheSizeTextBox";
|
---|
| 48 | this.cacheSizeTextBox.ReadOnly = true;
|
---|
| 49 | this.cacheSizeTextBox.Size = new System.Drawing.Size(351, 20);
|
---|
| 50 | this.cacheSizeTextBox.TabIndex = 3;
|
---|
| 51 | //
|
---|
| 52 | // toolStrip
|
---|
| 53 | //
|
---|
| 54 | this.toolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
---|
| 55 | this.analyzeToolStripButton});
|
---|
| 56 | this.toolStrip.Location = new System.Drawing.Point(0, 0);
|
---|
| 57 | this.toolStrip.Name = "toolStrip";
|
---|
| 58 | this.toolStrip.Size = new System.Drawing.Size(486, 25);
|
---|
| 59 | this.toolStrip.TabIndex = 6;
|
---|
| 60 | //
|
---|
| 61 | // analyzeToolStripButton
|
---|
| 62 | //
|
---|
| 63 | this.analyzeToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
|
---|
| 64 | this.analyzeToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
|
---|
| 65 | this.analyzeToolStripButton.Name = "analyzeToolStripButton";
|
---|
| 66 | this.analyzeToolStripButton.Size = new System.Drawing.Size(61, 22);
|
---|
| 67 | this.analyzeToolStripButton.Text = "Analyze";
|
---|
| 68 | //
|
---|
| 69 | // SolutionCacheView
|
---|
| 70 | //
|
---|
| 71 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 72 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
| 73 | this.Controls.Add(this.toolStrip);
|
---|
| 74 | this.Controls.Add(this.cacheSizeTextBox);
|
---|
| 75 | this.Controls.Add(this.label1);
|
---|
| 76 | this.Name = "SolutionCacheView";
|
---|
| 77 | this.Size = new System.Drawing.Size(486, 175);
|
---|
| 78 | this.toolStrip.ResumeLayout(false);
|
---|
| 79 | this.toolStrip.PerformLayout();
|
---|
| 80 | this.ResumeLayout(false);
|
---|
| 81 | this.PerformLayout();
|
---|
| 82 |
|
---|
| 83 | }
|
---|
| 84 |
|
---|
| 85 | #endregion
|
---|
| 86 |
|
---|
| 87 | private System.Windows.Forms.Label label1;
|
---|
| 88 | private System.Windows.Forms.TextBox cacheSizeTextBox;
|
---|
| 89 | private System.Windows.Forms.ToolStrip toolStrip;
|
---|
| 90 | private System.Windows.Forms.ToolStripDropDownButton analyzeToolStripButton;
|
---|
| 91 | }
|
---|
| 92 | }
|
---|