Free cookie consent management tool by TermsFeed Policy Generator

source: branches/FitnessLandscapeAnalysis/HeuristicLab.Analysis.FitnessLandscape.Views/FDC/HeatMapView.Designer.cs @ 7128

Last change on this file since 7128 was 7128, checked in by epitzer, 12 years ago

#1696 Integrate fitness landscape analysis plugins from Heureka! repository.

File size: 3.2 KB
Line 
1namespace HeuristicLab.Analysis.FitnessLandscape.FDC {
2  partial class HeatMapView {
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.groupBox = new System.Windows.Forms.GroupBox();
27      this.heatMapControl = new HeuristicLab.Analysis.FitnessLandscape.FDC.HeatMapControl();
28      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
29      this.groupBox.SuspendLayout();
30      this.SuspendLayout();
31      //
32      // nameTextBox
33      //
34      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
35      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
36      this.nameTextBox.Size = new System.Drawing.Size(370, 20);
37      //
38      // groupBox
39      //
40      this.groupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
41                  | System.Windows.Forms.AnchorStyles.Left)
42                  | System.Windows.Forms.AnchorStyles.Right)));
43      this.groupBox.Controls.Add(this.heatMapControl);
44      this.groupBox.Location = new System.Drawing.Point(6, 52);
45      this.groupBox.Name = "groupBox";
46      this.groupBox.Size = new System.Drawing.Size(433, 236);
47      this.groupBox.TabIndex = 6;
48      this.groupBox.TabStop = false;
49      this.groupBox.Text = "Heat Map";
50      //
51      // heatMapControl
52      //
53      this.heatMapControl.Dock = System.Windows.Forms.DockStyle.Fill;
54      this.heatMapControl.Location = new System.Drawing.Point(3, 16);
55      this.heatMapControl.Name = "heatMapControl";
56      this.heatMapControl.Size = new System.Drawing.Size(427, 217);
57      this.heatMapControl.TabIndex = 0;
58      this.heatMapControl.Text = "heatMapControl1";
59      //
60      // HeatMapView
61      //
62      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
63      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
64      this.Controls.Add(this.groupBox);
65      this.Name = "HeatMapView";
66      this.Size = new System.Drawing.Size(442, 291);
67      this.Controls.SetChildIndex(this.groupBox, 0);
68      this.Controls.SetChildIndex(this.nameLabel, 0);
69      this.Controls.SetChildIndex(this.nameTextBox, 0);
70      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
71      this.groupBox.ResumeLayout(false);
72      this.ResumeLayout(false);
73      this.PerformLayout();
74
75    }
76
77    #endregion
78
79    private System.Windows.Forms.GroupBox groupBox;
80    private HeatMapControl heatMapControl;
81  }
82}
Note: See TracBrowser for help on using the repository browser.