1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
4 | *
|
---|
5 | * This file is part of HeuristicLab.
|
---|
6 | *
|
---|
7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
8 | * it under the terms of the GNU General Public License as published by
|
---|
9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
10 | * (at your option) any later version.
|
---|
11 | *
|
---|
12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
15 | * GNU General Public License for more details.
|
---|
16 | *
|
---|
17 | * You should have received a copy of the GNU General Public License
|
---|
18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
19 | */
|
---|
20 | #endregion
|
---|
21 |
|
---|
22 | namespace HeuristicLab.DataPreprocessing.Views {
|
---|
23 | partial class DataCompletenessView {
|
---|
24 | /// <summary>
|
---|
25 | /// Required designer variable.
|
---|
26 | /// </summary>
|
---|
27 | private System.ComponentModel.IContainer components = null;
|
---|
28 |
|
---|
29 | /// <summary>
|
---|
30 | /// Clean up any resources being used.
|
---|
31 | /// </summary>
|
---|
32 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
---|
33 | protected override void Dispose(bool disposing) {
|
---|
34 | if (disposing && (components != null)) {
|
---|
35 | components.Dispose();
|
---|
36 | }
|
---|
37 | base.Dispose(disposing);
|
---|
38 | }
|
---|
39 |
|
---|
40 | #region Component Designer generated code
|
---|
41 |
|
---|
42 | /// <summary>
|
---|
43 | /// Required method for Designer support - do not modify
|
---|
44 | /// the contents of this method with the code editor.
|
---|
45 | /// </summary>
|
---|
46 | private void InitializeComponent() {
|
---|
47 | this.components = new System.ComponentModel.Container();
|
---|
48 | this.nonMissingLabel = new System.Windows.Forms.Label();
|
---|
49 | this.missingLabel = new System.Windows.Forms.Label();
|
---|
50 | this.nonMissingColorPanel = new System.Windows.Forms.Panel();
|
---|
51 | this.missingColorPanel = new System.Windows.Forms.Panel();
|
---|
52 | this.legendPanel = new System.Windows.Forms.Panel();
|
---|
53 | this.pictureBox = new System.Windows.Forms.PictureBox();
|
---|
54 | this.toolTip = new System.Windows.Forms.ToolTip(this.components);
|
---|
55 | this.legendPanel.SuspendLayout();
|
---|
56 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit();
|
---|
57 | this.SuspendLayout();
|
---|
58 | //
|
---|
59 | // nonMissingLabel
|
---|
60 | //
|
---|
61 | this.nonMissingLabel.AutoSize = true;
|
---|
62 | this.nonMissingLabel.ForeColor = System.Drawing.Color.Black;
|
---|
63 | this.nonMissingLabel.Location = new System.Drawing.Point(159, 3);
|
---|
64 | this.nonMissingLabel.Name = "nonMissingLabel";
|
---|
65 | this.nonMissingLabel.Size = new System.Drawing.Size(91, 13);
|
---|
66 | this.nonMissingLabel.TabIndex = 1;
|
---|
67 | this.nonMissingLabel.Text = "non-missing value";
|
---|
68 | //
|
---|
69 | // missingLabel
|
---|
70 | //
|
---|
71 | this.missingLabel.AutoSize = true;
|
---|
72 | this.missingLabel.Location = new System.Drawing.Point(297, 3);
|
---|
73 | this.missingLabel.Name = "missingLabel";
|
---|
74 | this.missingLabel.Size = new System.Drawing.Size(70, 13);
|
---|
75 | this.missingLabel.TabIndex = 2;
|
---|
76 | this.missingLabel.Text = "missing value";
|
---|
77 | //
|
---|
78 | // nonMissingColorPanel
|
---|
79 | //
|
---|
80 | this.nonMissingColorPanel.BackColor = System.Drawing.Color.CornflowerBlue;
|
---|
81 | this.nonMissingColorPanel.Location = new System.Drawing.Point(118, 3);
|
---|
82 | this.nonMissingColorPanel.Name = "nonMissingColorPanel";
|
---|
83 | this.nonMissingColorPanel.Size = new System.Drawing.Size(35, 13);
|
---|
84 | this.nonMissingColorPanel.TabIndex = 3;
|
---|
85 | //
|
---|
86 | // missingColorPanel
|
---|
87 | //
|
---|
88 | this.missingColorPanel.BackColor = System.Drawing.Color.Orange;
|
---|
89 | this.missingColorPanel.Location = new System.Drawing.Point(256, 3);
|
---|
90 | this.missingColorPanel.Name = "missingColorPanel";
|
---|
91 | this.missingColorPanel.Size = new System.Drawing.Size(35, 13);
|
---|
92 | this.missingColorPanel.TabIndex = 4;
|
---|
93 | //
|
---|
94 | // legendPanel
|
---|
95 | //
|
---|
96 | this.legendPanel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
97 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
98 | this.legendPanel.Controls.Add(this.nonMissingColorPanel);
|
---|
99 | this.legendPanel.Controls.Add(this.missingLabel);
|
---|
100 | this.legendPanel.Controls.Add(this.missingColorPanel);
|
---|
101 | this.legendPanel.Controls.Add(this.nonMissingLabel);
|
---|
102 | this.legendPanel.Location = new System.Drawing.Point(3, 3);
|
---|
103 | this.legendPanel.Name = "legendPanel";
|
---|
104 | this.legendPanel.Size = new System.Drawing.Size(487, 23);
|
---|
105 | this.legendPanel.TabIndex = 0;
|
---|
106 | //
|
---|
107 | // pictureBox
|
---|
108 | //
|
---|
109 | this.pictureBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
110 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
111 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
112 | this.pictureBox.Location = new System.Drawing.Point(3, 32);
|
---|
113 | this.pictureBox.Name = "pictureBox";
|
---|
114 | this.pictureBox.Size = new System.Drawing.Size(487, 309);
|
---|
115 | this.pictureBox.TabIndex = 1;
|
---|
116 | this.pictureBox.TabStop = false;
|
---|
117 | this.pictureBox.Paint += new System.Windows.Forms.PaintEventHandler(this.pictureBox_Paint);
|
---|
118 | this.pictureBox.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pictureBox_MouseMove);
|
---|
119 | //
|
---|
120 | // toolTip
|
---|
121 | //
|
---|
122 | this.toolTip.AutomaticDelay = 0;
|
---|
123 | this.toolTip.ShowAlways = true;
|
---|
124 | this.toolTip.UseAnimation = false;
|
---|
125 | this.toolTip.UseFading = false;
|
---|
126 | //
|
---|
127 | // DataCompletenessView
|
---|
128 | //
|
---|
129 | this.Controls.Add(this.pictureBox);
|
---|
130 | this.Controls.Add(this.legendPanel);
|
---|
131 | this.Name = "DataCompletenessView";
|
---|
132 | this.Size = new System.Drawing.Size(493, 344);
|
---|
133 | this.legendPanel.ResumeLayout(false);
|
---|
134 | this.legendPanel.PerformLayout();
|
---|
135 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit();
|
---|
136 | this.ResumeLayout(false);
|
---|
137 |
|
---|
138 | }
|
---|
139 |
|
---|
140 |
|
---|
141 | #endregion
|
---|
142 | private System.Windows.Forms.Label nonMissingLabel;
|
---|
143 | private System.Windows.Forms.Label missingLabel;
|
---|
144 | private System.Windows.Forms.Panel nonMissingColorPanel;
|
---|
145 | private System.Windows.Forms.Panel missingColorPanel;
|
---|
146 | private System.Windows.Forms.Panel legendPanel;
|
---|
147 | private System.Windows.Forms.PictureBox pictureBox;
|
---|
148 | private System.Windows.Forms.ToolTip toolTip;
|
---|
149 | }
|
---|
150 | }
|
---|