[5829] | 1 | namespace HeuristicLab.Problems.DataAnalysis.Views {
|
---|
[5664] | 2 | partial class ClassificationSolutionConfusionMatrixView {
|
---|
[4417] | 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.dataGridView = new System.Windows.Forms.DataGridView();
|
---|
| 27 | this.cmbSamples = new System.Windows.Forms.ComboBox();
|
---|
| 28 | this.label1 = new System.Windows.Forms.Label();
|
---|
| 29 | ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
|
---|
| 30 | this.SuspendLayout();
|
---|
| 31 | //
|
---|
| 32 | // dataGridView
|
---|
| 33 | //
|
---|
| 34 | this.dataGridView.AllowUserToAddRows = false;
|
---|
| 35 | this.dataGridView.AllowUserToDeleteRows = false;
|
---|
| 36 | this.dataGridView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 37 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 38 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 39 | this.dataGridView.Location = new System.Drawing.Point(3, 30);
|
---|
| 40 | this.dataGridView.Name = "dataGridView";
|
---|
| 41 | this.dataGridView.ReadOnly = true;
|
---|
| 42 | this.dataGridView.Size = new System.Drawing.Size(303, 197);
|
---|
| 43 | this.dataGridView.TabIndex = 0;
|
---|
| 44 | //
|
---|
| 45 | // cmbSamples
|
---|
| 46 | //
|
---|
| 47 | this.cmbSamples.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
---|
| 48 | this.cmbSamples.FormattingEnabled = true;
|
---|
| 49 | this.cmbSamples.Location = new System.Drawing.Point(56, 3);
|
---|
| 50 | this.cmbSamples.Name = "cmbSamples";
|
---|
| 51 | this.cmbSamples.Size = new System.Drawing.Size(121, 21);
|
---|
| 52 | this.cmbSamples.TabIndex = 1;
|
---|
| 53 | this.cmbSamples.SelectedIndexChanged += new System.EventHandler(this.cmbSamples_SelectedIndexChanged);
|
---|
| 54 | //
|
---|
| 55 | // label1
|
---|
| 56 | //
|
---|
| 57 | this.label1.AutoSize = true;
|
---|
| 58 | this.label1.Location = new System.Drawing.Point(3, 6);
|
---|
| 59 | this.label1.Name = "label1";
|
---|
| 60 | this.label1.Size = new System.Drawing.Size(47, 13);
|
---|
| 61 | this.label1.TabIndex = 2;
|
---|
| 62 | this.label1.Text = "Samples";
|
---|
| 63 | //
|
---|
| 64 | // ConfusionMatrixView
|
---|
| 65 | //
|
---|
| 66 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 67 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
| 68 | this.Controls.Add(this.label1);
|
---|
| 69 | this.Controls.Add(this.cmbSamples);
|
---|
| 70 | this.Controls.Add(this.dataGridView);
|
---|
| 71 | this.Name = "ConfusionMatrixView";
|
---|
| 72 | this.Size = new System.Drawing.Size(309, 230);
|
---|
| 73 | ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
|
---|
| 74 | this.ResumeLayout(false);
|
---|
| 75 | this.PerformLayout();
|
---|
| 76 |
|
---|
| 77 | }
|
---|
| 78 |
|
---|
| 79 | #endregion
|
---|
| 80 |
|
---|
| 81 | private System.Windows.Forms.DataGridView dataGridView;
|
---|
| 82 | private System.Windows.Forms.ComboBox cmbSamples;
|
---|
| 83 | private System.Windows.Forms.Label label1;
|
---|
| 84 |
|
---|
| 85 | }
|
---|
| 86 | }
|
---|