- Timestamp:
- 11/08/10 03:00:46 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Analysis.Views/3.3/HeatMapView.Designer.cs
r4703 r4739 46 46 private void InitializeComponent() { 47 47 System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea(); 48 System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend(); 49 System.Windows.Forms.DataVisualization.Charting.Title title1= new System.Windows.Forms.DataVisualization.Charting.Title(); 48 System.Windows.Forms.DataVisualization.Charting.Title title1 = new System.Windows.Forms.DataVisualization.Charting.Title(); 50 49 System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(HeatMapView)); 51 50 this.chart = new HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart(); 52 this. ColorsPictureBox = new System.Windows.Forms.PictureBox();53 this. ZeroLabel = new System.Windows.Forms.Label();54 this. OneLabel = new System.Windows.Forms.Label();55 this. GrayscalesPictureBox = new System.Windows.Forms.PictureBox();56 this.grayscale dImagesCheckBox = new System.Windows.Forms.CheckBox();51 this.colorsPictureBox = new System.Windows.Forms.PictureBox(); 52 this.minimumLabel = new System.Windows.Forms.Label(); 53 this.maximumLabel = new System.Windows.Forms.Label(); 54 this.grayscalesPictureBox = new System.Windows.Forms.PictureBox(); 55 this.grayscaleCheckBox = new System.Windows.Forms.CheckBox(); 57 56 ((System.ComponentModel.ISupportInitialize)(this.chart)).BeginInit(); 58 ((System.ComponentModel.ISupportInitialize)(this. ColorsPictureBox)).BeginInit();59 ((System.ComponentModel.ISupportInitialize)(this. GrayscalesPictureBox)).BeginInit();57 ((System.ComponentModel.ISupportInitialize)(this.colorsPictureBox)).BeginInit(); 58 ((System.ComponentModel.ISupportInitialize)(this.grayscalesPictureBox)).BeginInit(); 60 59 this.SuspendLayout(); 61 60 // … … 69 68 chartArea1.AxisX.IntervalAutoMode = System.Windows.Forms.DataVisualization.Charting.IntervalAutoMode.VariableCount; 70 69 chartArea1.AxisX.LabelAutoFitStyle = ((System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles)((System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.IncreaseFont | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.DecreaseFont))); 71 chartArea1.AxisX.Title = " Solution Index";72 chartArea1.AxisY.Title = " SolutionIndex";70 chartArea1.AxisX.Title = "Column Index"; 71 chartArea1.AxisY.Title = "Row Index"; 73 72 chartArea1.CursorX.IsUserEnabled = true; 74 73 chartArea1.CursorX.IsUserSelectionEnabled = true; … … 77 76 chartArea1.Name = "Default"; 78 77 this.chart.ChartAreas.Add(chartArea1); 79 legend1.Alignment = System.Drawing.StringAlignment.Center;80 legend1.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Top;81 legend1.Name = "Default";82 this.chart.Legends.Add(legend1);83 78 this.chart.Location = new System.Drawing.Point(0, 0); 84 79 this.chart.Name = "chart"; 85 this.chart.Size = new System.Drawing.Size(40 3, 335);80 this.chart.Size = new System.Drawing.Size(406, 463); 86 81 this.chart.TabIndex = 0; 87 82 this.chart.Text = "chart"; 88 83 title1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 89 84 title1.Name = "Default"; 90 title1.Text = " Solution Similarities";85 title1.Text = "Heat Map"; 91 86 this.chart.Titles.Add(title1); 92 87 // 93 // ColorsPictureBox88 // colorsPictureBox 94 89 // 95 this. ColorsPictureBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)90 this.colorsPictureBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 96 91 | System.Windows.Forms.AnchorStyles.Right))); 97 this. ColorsPictureBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;98 this. ColorsPictureBox.Image = ((System.Drawing.Image)(resources.GetObject("ColorsPictureBox.Image")));99 this. ColorsPictureBox.Location = new System.Drawing.Point(409, 23);100 this. ColorsPictureBox.Name = "ColorsPictureBox";101 this. ColorsPictureBox.Size = new System.Drawing.Size(35, 312);102 this. ColorsPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;103 this. ColorsPictureBox.TabIndex = 11;104 this. ColorsPictureBox.TabStop = false;92 this.colorsPictureBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; 93 this.colorsPictureBox.Image = ((System.Drawing.Image)(resources.GetObject("colorsPictureBox.Image"))); 94 this.colorsPictureBox.Location = new System.Drawing.Point(430, 28); 95 this.colorsPictureBox.Name = "colorsPictureBox"; 96 this.colorsPictureBox.Size = new System.Drawing.Size(35, 393); 97 this.colorsPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; 98 this.colorsPictureBox.TabIndex = 11; 99 this.colorsPictureBox.TabStop = false; 105 100 // 106 // ZeroLabel101 // minimumLabel 107 102 // 108 this. ZeroLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));109 this. ZeroLabel.AutoSize = true;110 this. ZeroLabel.BackColor = System.Drawing.Color.Transparent;111 this. ZeroLabel.Location = new System.Drawing.Point(416, 342);112 this. ZeroLabel.Name = "ZeroLabel";113 this. ZeroLabel.Size = new System.Drawing.Size(22, 13);114 this. ZeroLabel.TabIndex = 14;115 this. ZeroLabel.Text = "0.0";103 this.minimumLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); 104 this.minimumLabel.BackColor = System.Drawing.Color.Transparent; 105 this.minimumLabel.Location = new System.Drawing.Point(412, 424); 106 this.minimumLabel.Name = "minimumLabel"; 107 this.minimumLabel.Size = new System.Drawing.Size(73, 19); 108 this.minimumLabel.TabIndex = 2; 109 this.minimumLabel.Text = "0.0"; 110 this.minimumLabel.TextAlign = System.Drawing.ContentAlignment.TopCenter; 116 111 // 117 // OneLabel112 // maximumLabel 118 113 // 119 this. OneLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));120 this. OneLabel.AutoSize = true;121 this. OneLabel.BackColor = System.Drawing.Color.Transparent;122 this. OneLabel.Location = new System.Drawing.Point(416, 3);123 this. OneLabel.Name = "OneLabel";124 this. OneLabel.Size = new System.Drawing.Size(22, 13);125 this. OneLabel.TabIndex = 13;126 this. OneLabel.Text = "1.0";114 this.maximumLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); 115 this.maximumLabel.BackColor = System.Drawing.Color.Transparent; 116 this.maximumLabel.Location = new System.Drawing.Point(412, 0); 117 this.maximumLabel.Name = "maximumLabel"; 118 this.maximumLabel.Size = new System.Drawing.Size(73, 25); 119 this.maximumLabel.TabIndex = 1; 120 this.maximumLabel.Text = "1.0"; 121 this.maximumLabel.TextAlign = System.Drawing.ContentAlignment.BottomCenter; 127 122 // 128 // GrayscalesPictureBox123 // grayscalesPictureBox 129 124 // 130 this. GrayscalesPictureBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)125 this.grayscalesPictureBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 131 126 | System.Windows.Forms.AnchorStyles.Right))); 132 this. GrayscalesPictureBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;133 this. GrayscalesPictureBox.Image = ((System.Drawing.Image)(resources.GetObject("GrayscalesPictureBox.Image")));134 this. GrayscalesPictureBox.Location = new System.Drawing.Point(409, 23);135 this. GrayscalesPictureBox.Name = "GrayscalesPictureBox";136 this. GrayscalesPictureBox.Size = new System.Drawing.Size(35, 312);137 this. GrayscalesPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;138 this. GrayscalesPictureBox.TabIndex = 15;139 this. GrayscalesPictureBox.TabStop = false;140 this. GrayscalesPictureBox.Visible = false;127 this.grayscalesPictureBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; 128 this.grayscalesPictureBox.Image = ((System.Drawing.Image)(resources.GetObject("grayscalesPictureBox.Image"))); 129 this.grayscalesPictureBox.Location = new System.Drawing.Point(430, 28); 130 this.grayscalesPictureBox.Name = "grayscalesPictureBox"; 131 this.grayscalesPictureBox.Size = new System.Drawing.Size(35, 393); 132 this.grayscalesPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; 133 this.grayscalesPictureBox.TabIndex = 15; 134 this.grayscalesPictureBox.TabStop = false; 135 this.grayscalesPictureBox.Visible = false; 141 136 // 142 // grayscale dImagesCheckBox137 // grayscaleCheckBox 143 138 // 144 this.grayscale dImagesCheckBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));145 this.grayscale dImagesCheckBox.AutoSize = true;146 this.grayscale dImagesCheckBox.Location = new System.Drawing.Point(0, 338);147 this.grayscale dImagesCheckBox.Name = "grayscaledImagesCheckBox";148 this.grayscale dImagesCheckBox.Size = new System.Drawing.Size(115, 17);149 this.grayscale dImagesCheckBox.TabIndex = 16;150 this.grayscale dImagesCheckBox.Text = "Grayscaled images";151 this.grayscale dImagesCheckBox.UseVisualStyleBackColor = true;152 this.grayscale dImagesCheckBox.CheckedChanged += new System.EventHandler(this.grayscaledImagesCheckBox_CheckedChanged);139 this.grayscaleCheckBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); 140 this.grayscaleCheckBox.AutoSize = true; 141 this.grayscaleCheckBox.Location = new System.Drawing.Point(412, 446); 142 this.grayscaleCheckBox.Name = "grayscaleCheckBox"; 143 this.grayscaleCheckBox.Size = new System.Drawing.Size(73, 17); 144 this.grayscaleCheckBox.TabIndex = 3; 145 this.grayscaleCheckBox.Text = "Grayscale"; 146 this.grayscaleCheckBox.UseVisualStyleBackColor = true; 147 this.grayscaleCheckBox.CheckedChanged += new System.EventHandler(this.grayscaledImagesCheckBox_CheckedChanged); 153 148 // 154 // Heat mapView149 // HeatMapView 155 150 // 156 151 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 157 152 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 158 this.Controls.Add(this.grayscale dImagesCheckBox);159 this.Controls.Add(this. ZeroLabel);160 this.Controls.Add(this. OneLabel);161 this.Controls.Add(this. ColorsPictureBox);153 this.Controls.Add(this.grayscaleCheckBox); 154 this.Controls.Add(this.minimumLabel); 155 this.Controls.Add(this.maximumLabel); 156 this.Controls.Add(this.colorsPictureBox); 162 157 this.Controls.Add(this.chart); 163 this.Controls.Add(this. GrayscalesPictureBox);164 this.Name = "Heat mapView";165 this.Size = new System.Drawing.Size(4 44, 358);158 this.Controls.Add(this.grayscalesPictureBox); 159 this.Name = "HeatMapView"; 160 this.Size = new System.Drawing.Size(485, 463); 166 161 ((System.ComponentModel.ISupportInitialize)(this.chart)).EndInit(); 167 ((System.ComponentModel.ISupportInitialize)(this. ColorsPictureBox)).EndInit();168 ((System.ComponentModel.ISupportInitialize)(this. GrayscalesPictureBox)).EndInit();162 ((System.ComponentModel.ISupportInitialize)(this.colorsPictureBox)).EndInit(); 163 ((System.ComponentModel.ISupportInitialize)(this.grayscalesPictureBox)).EndInit(); 169 164 this.ResumeLayout(false); 170 165 this.PerformLayout(); … … 174 169 #endregion 175 170 176 pr ivateHeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart chart;177 pr ivate System.Windows.Forms.PictureBox ColorsPictureBox;178 pr ivate System.Windows.Forms.Label ZeroLabel;179 pr ivate System.Windows.Forms.Label OneLabel;180 pr ivate System.Windows.Forms.PictureBox GrayscalesPictureBox;181 pr ivate System.Windows.Forms.CheckBox grayscaledImagesCheckBox;171 protected HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart chart; 172 protected System.Windows.Forms.PictureBox colorsPictureBox; 173 protected System.Windows.Forms.Label minimumLabel; 174 protected System.Windows.Forms.Label maximumLabel; 175 protected System.Windows.Forms.PictureBox grayscalesPictureBox; 176 protected System.Windows.Forms.CheckBox grayscaleCheckBox; 182 177 } 183 178 }
Note: See TracChangeset
for help on using the changeset viewer.