[13252] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[16565] | 3 | * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[13252] | 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 RenameColumnsDialog {
|
---|
| 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 Windows Form 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.okButton = new System.Windows.Forms.Button();
|
---|
| 48 | this.cancelButton = new System.Windows.Forms.Button();
|
---|
| 49 | this.dataGridView = new System.Windows.Forms.DataGridView();
|
---|
| 50 | this.ColumName = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
---|
| 51 | ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
|
---|
| 52 | this.SuspendLayout();
|
---|
| 53 | //
|
---|
| 54 | // okButton
|
---|
| 55 | //
|
---|
| 56 | this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 57 | this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
|
---|
[13271] | 58 | this.okButton.Location = new System.Drawing.Point(48, 302);
|
---|
[13252] | 59 | this.okButton.Name = "okButton";
|
---|
| 60 | this.okButton.Size = new System.Drawing.Size(75, 23);
|
---|
| 61 | this.okButton.TabIndex = 0;
|
---|
| 62 | this.okButton.Text = "&OK";
|
---|
| 63 | this.okButton.UseVisualStyleBackColor = true;
|
---|
| 64 | //
|
---|
| 65 | // cancelButton
|
---|
| 66 | //
|
---|
| 67 | this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 68 | this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
---|
[13271] | 69 | this.cancelButton.Location = new System.Drawing.Point(129, 302);
|
---|
[13252] | 70 | this.cancelButton.Name = "cancelButton";
|
---|
| 71 | this.cancelButton.Size = new System.Drawing.Size(75, 23);
|
---|
| 72 | this.cancelButton.TabIndex = 1;
|
---|
| 73 | this.cancelButton.Text = "&Cancel";
|
---|
| 74 | this.cancelButton.UseVisualStyleBackColor = true;
|
---|
| 75 | //
|
---|
| 76 | // dataGridView
|
---|
| 77 | //
|
---|
| 78 | this.dataGridView.AllowUserToAddRows = false;
|
---|
| 79 | this.dataGridView.AllowUserToDeleteRows = false;
|
---|
[13502] | 80 | this.dataGridView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 81 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
[13252] | 82 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 83 | this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
---|
[13271] | 84 | this.dataGridView.ColumnHeadersVisible = false;
|
---|
[13252] | 85 | this.dataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
---|
| 86 | this.ColumName});
|
---|
[13271] | 87 | this.dataGridView.Location = new System.Drawing.Point(0, 0);
|
---|
[13252] | 88 | this.dataGridView.Name = "dataGridView";
|
---|
[13271] | 89 | this.dataGridView.RowHeadersVisible = false;
|
---|
| 90 | this.dataGridView.Size = new System.Drawing.Size(207, 296);
|
---|
[13252] | 91 | this.dataGridView.TabIndex = 2;
|
---|
| 92 | //
|
---|
| 93 | // ColumName
|
---|
| 94 | //
|
---|
[13271] | 95 | this.ColumName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
|
---|
[13252] | 96 | this.ColumName.HeaderText = "Column Name";
|
---|
| 97 | this.ColumName.Name = "ColumName";
|
---|
| 98 | this.ColumName.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
|
---|
| 99 | //
|
---|
| 100 | // RenameColumnsDialog
|
---|
| 101 | //
|
---|
| 102 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 103 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
[13271] | 104 | this.ClientSize = new System.Drawing.Size(207, 330);
|
---|
[13252] | 105 | this.Controls.Add(this.dataGridView);
|
---|
| 106 | this.Controls.Add(this.cancelButton);
|
---|
| 107 | this.Controls.Add(this.okButton);
|
---|
[13271] | 108 | this.MaximizeBox = false;
|
---|
| 109 | this.MinimizeBox = false;
|
---|
[13252] | 110 | this.Name = "RenameColumnsDialog";
|
---|
[13271] | 111 | this.ShowIcon = false;
|
---|
[13252] | 112 | this.Text = "Rename Columns";
|
---|
| 113 | ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
|
---|
| 114 | this.ResumeLayout(false);
|
---|
| 115 |
|
---|
| 116 | }
|
---|
| 117 |
|
---|
| 118 | #endregion
|
---|
| 119 |
|
---|
| 120 | private System.Windows.Forms.Button okButton;
|
---|
| 121 | private System.Windows.Forms.Button cancelButton;
|
---|
| 122 | private System.Windows.Forms.DataGridView dataGridView;
|
---|
| 123 | private System.Windows.Forms.DataGridViewTextBoxColumn ColumName;
|
---|
| 124 | }
|
---|
| 125 | } |
---|