Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.DiversityAnalysis/HeuristicLab.Problems.TravelingSalesman.Views/3.3/HeatmapView.Designer.cs @ 4699

Last change on this file since 4699 was 4699, checked in by swinkler, 14 years ago

Worked on first version of heatmap view, removed code that was committed unintentionally. (#1188)

File size: 5.2 KB
Line 
1namespace HeuristicLab.Problems.TravelingSalesman.Views {
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      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(HeatmapView));
27
28      System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
29      System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
30      System.Windows.Forms.DataVisualization.Charting.Title title1 = new System.Windows.Forms.DataVisualization.Charting.Title();
31
32      this.chart = new HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart();
33      this.ColorsPictureBox = new System.Windows.Forms.PictureBox();
34      this.ZeroLabel = new System.Windows.Forms.Label();
35      this.OneLabel = new System.Windows.Forms.Label();
36      ((System.ComponentModel.ISupportInitialize)(this.chart)).BeginInit();
37      ((System.ComponentModel.ISupportInitialize)(this.ColorsPictureBox)).BeginInit();
38      this.SuspendLayout();
39      //
40      // chart
41      //
42      this.chart.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
43                  | System.Windows.Forms.AnchorStyles.Left)
44                  | System.Windows.Forms.AnchorStyles.Right)));
45      this.chart.Location = new System.Drawing.Point(3, 3);
46      this.chart.Name = "chart";
47      this.chart.Size = new System.Drawing.Size(400, 352);
48      this.chart.TabIndex = 0;
49      this.chart.Text = "chart";
50      //
51      // ColorsPictureBox
52      //
53      this.ColorsPictureBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
54                  | System.Windows.Forms.AnchorStyles.Right)));
55      this.ColorsPictureBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
56      this.ColorsPictureBox.Image = ((System.Drawing.Image)(resources.GetObject("ColorsPictureBox.Image")));
57      this.ColorsPictureBox.Location = new System.Drawing.Point(409, 23);
58      this.ColorsPictureBox.Name = "ColorsPictureBox";
59      this.ColorsPictureBox.Size = new System.Drawing.Size(35, 312);
60      this.ColorsPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
61      this.ColorsPictureBox.TabIndex = 11;
62      this.ColorsPictureBox.TabStop = false;
63      //
64      // ZeroLabel
65      //
66      this.ZeroLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
67      this.ZeroLabel.AutoSize = true;
68      this.ZeroLabel.BackColor = System.Drawing.Color.Transparent;
69      this.ZeroLabel.Location = new System.Drawing.Point(416, 342);
70      this.ZeroLabel.Name = "ZeroLabel";
71      this.ZeroLabel.Size = new System.Drawing.Size(22, 13);
72      this.ZeroLabel.TabIndex = 14;
73      this.ZeroLabel.Text = "0.0";
74      //
75      // OneLabel
76      //
77      this.OneLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
78      this.OneLabel.AutoSize = true;
79      this.OneLabel.BackColor = System.Drawing.Color.Transparent;
80      this.OneLabel.Location = new System.Drawing.Point(416, 3);
81      this.OneLabel.Name = "OneLabel";
82      this.OneLabel.Size = new System.Drawing.Size(22, 13);
83      this.OneLabel.TabIndex = 13;
84      this.OneLabel.Text = "1.0";
85      //
86      // HeatmapView
87      //
88      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
89      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
90      this.Controls.Add(this.ZeroLabel);
91      this.Controls.Add(this.OneLabel);
92      this.Controls.Add(this.ColorsPictureBox);
93      this.Controls.Add(this.chart);
94      this.Name = "HeatmapView";
95      this.Size = new System.Drawing.Size(444, 358);
96      ((System.ComponentModel.ISupportInitialize)(this.chart)).EndInit();
97      ((System.ComponentModel.ISupportInitialize)(this.ColorsPictureBox)).EndInit();
98      this.ResumeLayout(false);
99      this.PerformLayout();
100
101    }
102
103    #endregion
104
105    private HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart chart;
106    private System.Windows.Forms.PictureBox ColorsPictureBox;
107    private System.Windows.Forms.Label ZeroLabel;
108    private System.Windows.Forms.Label OneLabel;
109  }
110}
Note: See TracBrowser for help on using the repository browser.