Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 4701 was 4701, checked in by swinkler, 13 years ago

Finished first version of heatmap view. (#1188)

File size: 8.9 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.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
27      System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
28      System.Windows.Forms.DataVisualization.Charting.Title title1= new System.Windows.Forms.DataVisualization.Charting.Title();
29      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(HeatmapView));
30      this.chart = new HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart();
31      this.ColorsPictureBox = new System.Windows.Forms.PictureBox();
32      this.ZeroLabel = new System.Windows.Forms.Label();
33      this.OneLabel = new System.Windows.Forms.Label();
34      this.GrayscalesPictureBox = new System.Windows.Forms.PictureBox();
35      this.grayscaledImagesCheckBox = new System.Windows.Forms.CheckBox();
36      ((System.ComponentModel.ISupportInitialize)(this.chart)).BeginInit();
37      ((System.ComponentModel.ISupportInitialize)(this.ColorsPictureBox)).BeginInit();
38      ((System.ComponentModel.ISupportInitialize)(this.GrayscalesPictureBox)).BeginInit();
39      this.SuspendLayout();
40      //
41      // chart
42      //
43      this.chart.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.chart.BorderlineColor = System.Drawing.Color.Black;
47      this.chart.BorderlineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Solid;
48      chartArea1.AxisX.IntervalAutoMode = System.Windows.Forms.DataVisualization.Charting.IntervalAutoMode.VariableCount;
49      chartArea1.AxisX.LabelAutoFitStyle = ((System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles)((System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.IncreaseFont | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.DecreaseFont)));
50      chartArea1.AxisX.Title = "Solution Index";
51      chartArea1.AxisY.Title = "Solution Index";
52      chartArea1.CursorX.IsUserEnabled = true;
53      chartArea1.CursorX.IsUserSelectionEnabled = true;
54      chartArea1.CursorY.IsUserEnabled = true;
55      chartArea1.CursorY.IsUserSelectionEnabled = true;
56      chartArea1.Name = "Default";
57      this.chart.ChartAreas.Add(chartArea1);
58      legend1.Alignment = System.Drawing.StringAlignment.Center;
59      legend1.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Top;
60      legend1.Name = "Default";
61      this.chart.Legends.Add(legend1);
62      this.chart.Location = new System.Drawing.Point(0, 0);
63      this.chart.Name = "chart";
64      this.chart.Size = new System.Drawing.Size(403, 335);
65      this.chart.TabIndex = 0;
66      this.chart.Text = "chart";
67      title1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
68      title1.Name = "Default";
69      title1.Text = "Solution Similarities";
70      this.chart.Titles.Add(title1);
71      //
72      // ColorsPictureBox
73      //
74      this.ColorsPictureBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
75                  | System.Windows.Forms.AnchorStyles.Right)));
76      this.ColorsPictureBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
77      this.ColorsPictureBox.Image = ((System.Drawing.Image)(resources.GetObject("ColorsPictureBox.Image")));
78      this.ColorsPictureBox.Location = new System.Drawing.Point(409, 23);
79      this.ColorsPictureBox.Name = "ColorsPictureBox";
80      this.ColorsPictureBox.Size = new System.Drawing.Size(35, 312);
81      this.ColorsPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
82      this.ColorsPictureBox.TabIndex = 11;
83      this.ColorsPictureBox.TabStop = false;
84      //
85      // ZeroLabel
86      //
87      this.ZeroLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
88      this.ZeroLabel.AutoSize = true;
89      this.ZeroLabel.BackColor = System.Drawing.Color.Transparent;
90      this.ZeroLabel.Location = new System.Drawing.Point(416, 342);
91      this.ZeroLabel.Name = "ZeroLabel";
92      this.ZeroLabel.Size = new System.Drawing.Size(22, 13);
93      this.ZeroLabel.TabIndex = 14;
94      this.ZeroLabel.Text = "0.0";
95      //
96      // OneLabel
97      //
98      this.OneLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
99      this.OneLabel.AutoSize = true;
100      this.OneLabel.BackColor = System.Drawing.Color.Transparent;
101      this.OneLabel.Location = new System.Drawing.Point(416, 3);
102      this.OneLabel.Name = "OneLabel";
103      this.OneLabel.Size = new System.Drawing.Size(22, 13);
104      this.OneLabel.TabIndex = 13;
105      this.OneLabel.Text = "1.0";
106      //
107      // GrayscalesPictureBox
108      //
109      this.GrayscalesPictureBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
110                  | System.Windows.Forms.AnchorStyles.Right)));
111      this.GrayscalesPictureBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
112      this.GrayscalesPictureBox.Image = ((System.Drawing.Image)(resources.GetObject("GrayscalesPictureBox.Image")));
113      this.GrayscalesPictureBox.Location = new System.Drawing.Point(409, 23);
114      this.GrayscalesPictureBox.Name = "GrayscalesPictureBox";
115      this.GrayscalesPictureBox.Size = new System.Drawing.Size(35, 312);
116      this.GrayscalesPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
117      this.GrayscalesPictureBox.TabIndex = 15;
118      this.GrayscalesPictureBox.TabStop = false;
119      this.GrayscalesPictureBox.Visible = false;
120      //
121      // grayscaledImagesCheckBox
122      //
123      this.grayscaledImagesCheckBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
124      this.grayscaledImagesCheckBox.AutoSize = true;
125      this.grayscaledImagesCheckBox.Location = new System.Drawing.Point(0, 338);
126      this.grayscaledImagesCheckBox.Name = "grayscaledImagesCheckBox";
127      this.grayscaledImagesCheckBox.Size = new System.Drawing.Size(115, 17);
128      this.grayscaledImagesCheckBox.TabIndex = 16;
129      this.grayscaledImagesCheckBox.Text = "Grayscaled images";
130      this.grayscaledImagesCheckBox.UseVisualStyleBackColor = true;
131      this.grayscaledImagesCheckBox.CheckedChanged += new System.EventHandler(this.grayscaledImagesCheckBox_CheckedChanged);
132      //
133      // HeatmapView
134      //
135      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
136      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
137      this.Controls.Add(this.grayscaledImagesCheckBox);
138      this.Controls.Add(this.ZeroLabel);
139      this.Controls.Add(this.OneLabel);
140      this.Controls.Add(this.ColorsPictureBox);
141      this.Controls.Add(this.chart);
142      this.Controls.Add(this.GrayscalesPictureBox);
143      this.Name = "HeatmapView";
144      this.Size = new System.Drawing.Size(444, 358);
145      ((System.ComponentModel.ISupportInitialize)(this.chart)).EndInit();
146      ((System.ComponentModel.ISupportInitialize)(this.ColorsPictureBox)).EndInit();
147      ((System.ComponentModel.ISupportInitialize)(this.GrayscalesPictureBox)).EndInit();
148      this.ResumeLayout(false);
149      this.PerformLayout();
150
151    }
152
153    #endregion
154
155    private HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart chart;
156    private System.Windows.Forms.PictureBox ColorsPictureBox;
157    private System.Windows.Forms.Label ZeroLabel;
158    private System.Windows.Forms.Label OneLabel;
159    private System.Windows.Forms.PictureBox GrayscalesPictureBox;
160    private System.Windows.Forms.CheckBox grayscaledImagesCheckBox;
161  }
162}
Note: See TracBrowser for help on using the repository browser.