[4311] | 1 | namespace HeuristicLab.OKB.AlgorithmHost {
|
---|
| 2 | partial class MappingView {
|
---|
| 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.mappingDataSet = new System.Data.DataSet();
|
---|
| 27 | this.mappingTable = new System.Data.DataTable();
|
---|
| 28 | this.keyColumn = new System.Data.DataColumn();
|
---|
| 29 | this.valueColumn = new System.Data.DataColumn();
|
---|
| 30 | this.ValueTable = new System.Data.DataTable();
|
---|
| 31 | this.valuesColumn = new System.Data.DataColumn();
|
---|
| 32 | this.mappingGridView = new System.Windows.Forms.DataGridView();
|
---|
| 33 | this.keyDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
---|
| 34 | this.valueDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewComboBoxColumn();
|
---|
| 35 | ((System.ComponentModel.ISupportInitialize)(this.mappingDataSet)).BeginInit();
|
---|
| 36 | ((System.ComponentModel.ISupportInitialize)(this.mappingTable)).BeginInit();
|
---|
| 37 | ((System.ComponentModel.ISupportInitialize)(this.ValueTable)).BeginInit();
|
---|
| 38 | ((System.ComponentModel.ISupportInitialize)(this.mappingGridView)).BeginInit();
|
---|
| 39 | this.SuspendLayout();
|
---|
| 40 | //
|
---|
| 41 | // mappingDataSet
|
---|
| 42 | //
|
---|
| 43 | this.mappingDataSet.DataSetName = "NewDataSet";
|
---|
| 44 | this.mappingDataSet.Tables.AddRange(new System.Data.DataTable[] {
|
---|
| 45 | this.mappingTable,
|
---|
| 46 | this.ValueTable});
|
---|
| 47 | //
|
---|
| 48 | // mappingTable
|
---|
| 49 | //
|
---|
| 50 | this.mappingTable.Columns.AddRange(new System.Data.DataColumn[] {
|
---|
| 51 | this.keyColumn,
|
---|
| 52 | this.valueColumn});
|
---|
| 53 | this.mappingTable.TableName = "Mapping";
|
---|
| 54 | //
|
---|
| 55 | // keyColumn
|
---|
| 56 | //
|
---|
| 57 | this.keyColumn.ColumnName = "Key";
|
---|
| 58 | //
|
---|
| 59 | // valueColumn
|
---|
| 60 | //
|
---|
| 61 | this.valueColumn.ColumnName = "Value";
|
---|
| 62 | //
|
---|
| 63 | // ValueTable
|
---|
| 64 | //
|
---|
| 65 | this.ValueTable.Columns.AddRange(new System.Data.DataColumn[] {
|
---|
| 66 | this.valuesColumn});
|
---|
| 67 | this.ValueTable.TableName = "Values";
|
---|
| 68 | //
|
---|
| 69 | // valuesColumn
|
---|
| 70 | //
|
---|
| 71 | this.valuesColumn.ColumnName = "Values";
|
---|
| 72 | //
|
---|
| 73 | // mappingGridView
|
---|
| 74 | //
|
---|
| 75 | this.mappingGridView.AllowUserToAddRows = false;
|
---|
| 76 | this.mappingGridView.AllowUserToDeleteRows = false;
|
---|
| 77 | this.mappingGridView.AllowUserToResizeRows = false;
|
---|
| 78 | this.mappingGridView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 79 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 80 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 81 | this.mappingGridView.AutoGenerateColumns = false;
|
---|
| 82 | this.mappingGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
---|
| 83 | this.mappingGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
---|
| 84 | this.keyDataGridViewTextBoxColumn,
|
---|
| 85 | this.valueDataGridViewTextBoxColumn});
|
---|
| 86 | this.mappingGridView.DataMember = "Mapping";
|
---|
| 87 | this.mappingGridView.DataSource = this.mappingDataSet;
|
---|
| 88 | this.mappingGridView.EditMode = System.Windows.Forms.DataGridViewEditMode.EditOnEnter;
|
---|
| 89 | this.mappingGridView.Location = new System.Drawing.Point(0, 0);
|
---|
| 90 | this.mappingGridView.MultiSelect = false;
|
---|
| 91 | this.mappingGridView.Name = "mappingGridView";
|
---|
| 92 | this.mappingGridView.Size = new System.Drawing.Size(433, 265);
|
---|
| 93 | this.mappingGridView.TabIndex = 0;
|
---|
| 94 | this.mappingGridView.CellValidated += new System.Windows.Forms.DataGridViewCellEventHandler(this.parameterMappingGridView_CellValidated);
|
---|
| 95 | this.mappingGridView.CellValidating += new System.Windows.Forms.DataGridViewCellValidatingEventHandler(this.mappingGridView_CellValidating);
|
---|
| 96 | this.mappingGridView.DataError += new System.Windows.Forms.DataGridViewDataErrorEventHandler(this.mappingGridView_DataError);
|
---|
| 97 | //
|
---|
| 98 | // keyDataGridViewTextBoxColumn
|
---|
| 99 | //
|
---|
| 100 | this.keyDataGridViewTextBoxColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
|
---|
| 101 | this.keyDataGridViewTextBoxColumn.DataPropertyName = "Key";
|
---|
| 102 | this.keyDataGridViewTextBoxColumn.HeaderText = "Key";
|
---|
| 103 | this.keyDataGridViewTextBoxColumn.MinimumWidth = 100;
|
---|
| 104 | this.keyDataGridViewTextBoxColumn.Name = "keyDataGridViewTextBoxColumn";
|
---|
| 105 | this.keyDataGridViewTextBoxColumn.ReadOnly = true;
|
---|
| 106 | this.keyDataGridViewTextBoxColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
|
---|
| 107 | //
|
---|
| 108 | // valueDataGridViewTextBoxColumn
|
---|
| 109 | //
|
---|
| 110 | this.valueDataGridViewTextBoxColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
|
---|
| 111 | this.valueDataGridViewTextBoxColumn.DataPropertyName = "Value";
|
---|
| 112 | this.valueDataGridViewTextBoxColumn.DataSource = this.mappingDataSet;
|
---|
| 113 | this.valueDataGridViewTextBoxColumn.DisplayMember = "Values.Values";
|
---|
| 114 | this.valueDataGridViewTextBoxColumn.HeaderText = "Value";
|
---|
| 115 | this.valueDataGridViewTextBoxColumn.MinimumWidth = 100;
|
---|
| 116 | this.valueDataGridViewTextBoxColumn.Name = "valueDataGridViewTextBoxColumn";
|
---|
| 117 | this.valueDataGridViewTextBoxColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
|
---|
| 118 | this.valueDataGridViewTextBoxColumn.ValueMember = "Values.Values";
|
---|
| 119 | //
|
---|
| 120 | // MappingView
|
---|
| 121 | //
|
---|
| 122 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 123 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
| 124 | this.Controls.Add(this.mappingGridView);
|
---|
| 125 | this.Name = "MappingView";
|
---|
| 126 | this.Size = new System.Drawing.Size(433, 265);
|
---|
| 127 | ((System.ComponentModel.ISupportInitialize)(this.mappingDataSet)).EndInit();
|
---|
| 128 | ((System.ComponentModel.ISupportInitialize)(this.mappingTable)).EndInit();
|
---|
| 129 | ((System.ComponentModel.ISupportInitialize)(this.ValueTable)).EndInit();
|
---|
| 130 | ((System.ComponentModel.ISupportInitialize)(this.mappingGridView)).EndInit();
|
---|
| 131 | this.ResumeLayout(false);
|
---|
| 132 |
|
---|
| 133 | }
|
---|
| 134 |
|
---|
| 135 | #endregion
|
---|
| 136 |
|
---|
| 137 | private System.Data.DataSet mappingDataSet;
|
---|
| 138 | private System.Data.DataTable mappingTable;
|
---|
| 139 | private System.Data.DataColumn keyColumn;
|
---|
| 140 | private System.Data.DataColumn valueColumn;
|
---|
| 141 | private System.Data.DataTable ValueTable;
|
---|
| 142 | private System.Data.DataColumn valuesColumn;
|
---|
| 143 | private System.Windows.Forms.DataGridView mappingGridView;
|
---|
| 144 | private System.Windows.Forms.DataGridViewTextBoxColumn keyDataGridViewTextBoxColumn;
|
---|
| 145 | private System.Windows.Forms.DataGridViewComboBoxColumn valueDataGridViewTextBoxColumn;
|
---|
| 146 | }
|
---|
| 147 | }
|
---|