[13502] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[17180] | 3 | * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[13502] | 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 {
|
---|
[10762] | 23 | partial class SearchAndReplaceDialog {
|
---|
[10630] | 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() {
|
---|
[10633] | 47 | this.tabSearchReplace = new System.Windows.Forms.TabControl();
|
---|
| 48 | this.tabSearch = new System.Windows.Forms.TabPage();
|
---|
[10672] | 49 | this.tabReplace = new System.Windows.Forms.TabPage();
|
---|
[10930] | 50 | this.cmbComparisonOperator = new System.Windows.Forms.ComboBox();
|
---|
[10630] | 51 | this.txtSearchString = new System.Windows.Forms.TextBox();
|
---|
| 52 | this.lblSearch = new System.Windows.Forms.Label();
|
---|
| 53 | this.btnFindAll = new System.Windows.Forms.Button();
|
---|
| 54 | this.btnFindNext = new System.Windows.Forms.Button();
|
---|
[10636] | 55 | this.lblValue = new System.Windows.Forms.Label();
|
---|
| 56 | this.btnReplaceAll = new System.Windows.Forms.Button();
|
---|
[10672] | 57 | this.btnReplace = new System.Windows.Forms.Button();
|
---|
[10636] | 58 | this.cmbReplaceWith = new System.Windows.Forms.ComboBox();
|
---|
| 59 | this.txtValue = new System.Windows.Forms.TextBox();
|
---|
| 60 | this.label1 = new System.Windows.Forms.Label();
|
---|
[10633] | 61 | this.tabSearchReplace.SuspendLayout();
|
---|
[10636] | 62 | this.tabReplace.SuspendLayout();
|
---|
[10630] | 63 | this.SuspendLayout();
|
---|
| 64 | //
|
---|
[10633] | 65 | // tabSearchReplace
|
---|
[10630] | 66 | //
|
---|
[13502] | 67 | this.tabSearchReplace.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 68 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
[10636] | 69 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[10633] | 70 | this.tabSearchReplace.Controls.Add(this.tabSearch);
|
---|
| 71 | this.tabSearchReplace.Controls.Add(this.tabReplace);
|
---|
| 72 | this.tabSearchReplace.Location = new System.Drawing.Point(12, 12);
|
---|
| 73 | this.tabSearchReplace.Name = "tabSearchReplace";
|
---|
| 74 | this.tabSearchReplace.SelectedIndex = 0;
|
---|
[10706] | 75 | this.tabSearchReplace.Size = new System.Drawing.Size(564, 132);
|
---|
[10633] | 76 | this.tabSearchReplace.TabIndex = 0;
|
---|
[10672] | 77 | this.tabSearchReplace.SelectedIndexChanged += new System.EventHandler(this.tabSearchReplace_SelectedIndexChanged);
|
---|
[10630] | 78 | //
|
---|
[10633] | 79 | // tabSearch
|
---|
[10630] | 80 | //
|
---|
[16506] | 81 | this.tabSearch.BackColor = System.Drawing.SystemColors.Window;
|
---|
[10633] | 82 | this.tabSearch.Location = new System.Drawing.Point(4, 22);
|
---|
| 83 | this.tabSearch.Name = "tabSearch";
|
---|
| 84 | this.tabSearch.Padding = new System.Windows.Forms.Padding(3);
|
---|
[10739] | 85 | this.tabSearch.Size = new System.Drawing.Size(556, 106);
|
---|
[10633] | 86 | this.tabSearch.TabIndex = 0;
|
---|
| 87 | this.tabSearch.Text = "Search";
|
---|
[10630] | 88 | //
|
---|
[10672] | 89 | // tabReplace
|
---|
| 90 | //
|
---|
[16506] | 91 | this.tabReplace.BackColor = System.Drawing.SystemColors.Window;
|
---|
[10870] | 92 | this.tabReplace.Controls.Add(this.cmbComparisonOperator);
|
---|
[10672] | 93 | this.tabReplace.Controls.Add(this.txtSearchString);
|
---|
| 94 | this.tabReplace.Controls.Add(this.lblSearch);
|
---|
| 95 | this.tabReplace.Controls.Add(this.btnFindAll);
|
---|
| 96 | this.tabReplace.Controls.Add(this.btnFindNext);
|
---|
| 97 | this.tabReplace.Controls.Add(this.lblValue);
|
---|
| 98 | this.tabReplace.Controls.Add(this.btnReplaceAll);
|
---|
| 99 | this.tabReplace.Controls.Add(this.btnReplace);
|
---|
| 100 | this.tabReplace.Controls.Add(this.cmbReplaceWith);
|
---|
| 101 | this.tabReplace.Controls.Add(this.txtValue);
|
---|
| 102 | this.tabReplace.Controls.Add(this.label1);
|
---|
| 103 | this.tabReplace.Location = new System.Drawing.Point(4, 22);
|
---|
| 104 | this.tabReplace.Name = "tabReplace";
|
---|
| 105 | this.tabReplace.Padding = new System.Windows.Forms.Padding(3);
|
---|
[10706] | 106 | this.tabReplace.Size = new System.Drawing.Size(556, 106);
|
---|
[10672] | 107 | this.tabReplace.TabIndex = 1;
|
---|
| 108 | this.tabReplace.Text = "Replace";
|
---|
| 109 | //
|
---|
[10930] | 110 | // cmbComparisonOperator
|
---|
| 111 | //
|
---|
| 112 | this.cmbComparisonOperator.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
---|
| 113 | this.cmbComparisonOperator.FormattingEnabled = true;
|
---|
| 114 | this.cmbComparisonOperator.Location = new System.Drawing.Point(103, 19);
|
---|
| 115 | this.cmbComparisonOperator.Name = "cmbComparisonOperator";
|
---|
| 116 | this.cmbComparisonOperator.Size = new System.Drawing.Size(45, 21);
|
---|
| 117 | this.cmbComparisonOperator.TabIndex = 24;
|
---|
| 118 | //
|
---|
[10630] | 119 | // txtSearchString
|
---|
| 120 | //
|
---|
[10870] | 121 | this.txtSearchString.Location = new System.Drawing.Point(154, 20);
|
---|
[10630] | 122 | this.txtSearchString.Name = "txtSearchString";
|
---|
[10870] | 123 | this.txtSearchString.Size = new System.Drawing.Size(203, 20);
|
---|
[10636] | 124 | this.txtSearchString.TabIndex = 23;
|
---|
[10630] | 125 | //
|
---|
| 126 | // lblSearch
|
---|
| 127 | //
|
---|
| 128 | this.lblSearch.AutoSize = true;
|
---|
[10636] | 129 | this.lblSearch.Location = new System.Drawing.Point(41, 26);
|
---|
[10630] | 130 | this.lblSearch.Name = "lblSearch";
|
---|
[10636] | 131 | this.lblSearch.Size = new System.Drawing.Size(56, 13);
|
---|
| 132 | this.lblSearch.TabIndex = 22;
|
---|
| 133 | this.lblSearch.Text = "Search for";
|
---|
[10630] | 134 | //
|
---|
| 135 | // btnFindAll
|
---|
| 136 | //
|
---|
[10636] | 137 | this.btnFindAll.Location = new System.Drawing.Point(458, 20);
|
---|
[10630] | 138 | this.btnFindAll.Name = "btnFindAll";
|
---|
[10636] | 139 | this.btnFindAll.Size = new System.Drawing.Size(80, 23);
|
---|
| 140 | this.btnFindAll.TabIndex = 21;
|
---|
[10630] | 141 | this.btnFindAll.Text = "Find All";
|
---|
| 142 | this.btnFindAll.UseVisualStyleBackColor = true;
|
---|
| 143 | //
|
---|
| 144 | // btnFindNext
|
---|
| 145 | //
|
---|
[10636] | 146 | this.btnFindNext.Location = new System.Drawing.Point(372, 20);
|
---|
[10630] | 147 | this.btnFindNext.Name = "btnFindNext";
|
---|
[10636] | 148 | this.btnFindNext.Size = new System.Drawing.Size(80, 23);
|
---|
| 149 | this.btnFindNext.TabIndex = 20;
|
---|
[10630] | 150 | this.btnFindNext.Text = "Find Next";
|
---|
| 151 | this.btnFindNext.UseVisualStyleBackColor = true;
|
---|
| 152 | //
|
---|
[10636] | 153 | // lblValue
|
---|
| 154 | //
|
---|
| 155 | this.lblValue.AutoSize = true;
|
---|
| 156 | this.lblValue.Location = new System.Drawing.Point(64, 76);
|
---|
| 157 | this.lblValue.Name = "lblValue";
|
---|
| 158 | this.lblValue.Size = new System.Drawing.Size(34, 13);
|
---|
| 159 | this.lblValue.TabIndex = 19;
|
---|
| 160 | this.lblValue.Text = "Value";
|
---|
| 161 | //
|
---|
| 162 | // btnReplaceAll
|
---|
| 163 | //
|
---|
| 164 | this.btnReplaceAll.Location = new System.Drawing.Point(458, 47);
|
---|
| 165 | this.btnReplaceAll.Name = "btnReplaceAll";
|
---|
| 166 | this.btnReplaceAll.Size = new System.Drawing.Size(80, 23);
|
---|
| 167 | this.btnReplaceAll.TabIndex = 18;
|
---|
| 168 | this.btnReplaceAll.Text = "Replace All";
|
---|
| 169 | this.btnReplaceAll.UseVisualStyleBackColor = true;
|
---|
| 170 | //
|
---|
[10672] | 171 | // btnReplace
|
---|
[10636] | 172 | //
|
---|
[10672] | 173 | this.btnReplace.Location = new System.Drawing.Point(372, 47);
|
---|
| 174 | this.btnReplace.Name = "btnReplace";
|
---|
| 175 | this.btnReplace.Size = new System.Drawing.Size(80, 23);
|
---|
| 176 | this.btnReplace.TabIndex = 17;
|
---|
| 177 | this.btnReplace.Text = "Replace";
|
---|
| 178 | this.btnReplace.UseVisualStyleBackColor = true;
|
---|
[10636] | 179 | //
|
---|
| 180 | // cmbReplaceWith
|
---|
| 181 | //
|
---|
[10672] | 182 | this.cmbReplaceWith.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
---|
[10636] | 183 | this.cmbReplaceWith.FormattingEnabled = true;
|
---|
| 184 | this.cmbReplaceWith.Location = new System.Drawing.Point(103, 46);
|
---|
| 185 | this.cmbReplaceWith.Name = "cmbReplaceWith";
|
---|
| 186 | this.cmbReplaceWith.Size = new System.Drawing.Size(254, 21);
|
---|
| 187 | this.cmbReplaceWith.TabIndex = 16;
|
---|
[10672] | 188 | this.cmbReplaceWith.SelectedIndexChanged += new System.EventHandler(this.cmbReplaceWith_SelectedIndexChanged);
|
---|
[10636] | 189 | //
|
---|
| 190 | // txtValue
|
---|
| 191 | //
|
---|
| 192 | this.txtValue.Location = new System.Drawing.Point(103, 73);
|
---|
| 193 | this.txtValue.Name = "txtValue";
|
---|
| 194 | this.txtValue.Size = new System.Drawing.Size(254, 20);
|
---|
| 195 | this.txtValue.TabIndex = 15;
|
---|
| 196 | //
|
---|
| 197 | // label1
|
---|
| 198 | //
|
---|
| 199 | this.label1.AutoSize = true;
|
---|
| 200 | this.label1.Location = new System.Drawing.Point(28, 49);
|
---|
| 201 | this.label1.Name = "label1";
|
---|
| 202 | this.label1.Size = new System.Drawing.Size(69, 13);
|
---|
| 203 | this.label1.TabIndex = 14;
|
---|
| 204 | this.label1.Text = "Replace with";
|
---|
| 205 | //
|
---|
[10762] | 206 | // SearchAndReplaceDialog
|
---|
[10630] | 207 | //
|
---|
| 208 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 209 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
[10706] | 210 | this.ClientSize = new System.Drawing.Size(588, 156);
|
---|
[10633] | 211 | this.Controls.Add(this.tabSearchReplace);
|
---|
[10739] | 212 | this.MaximizeBox = false;
|
---|
| 213 | this.MinimizeBox = false;
|
---|
[10762] | 214 | this.Name = "SearchAndReplaceDialog";
|
---|
[10739] | 215 | this.ShowIcon = false;
|
---|
| 216 | this.ShowInTaskbar = false;
|
---|
[10762] | 217 | this.Text = "Search and Replace";
|
---|
[10633] | 218 | this.tabSearchReplace.ResumeLayout(false);
|
---|
[10636] | 219 | this.tabReplace.ResumeLayout(false);
|
---|
| 220 | this.tabReplace.PerformLayout();
|
---|
[10630] | 221 | this.ResumeLayout(false);
|
---|
| 222 |
|
---|
| 223 | }
|
---|
| 224 |
|
---|
| 225 | #endregion
|
---|
| 226 |
|
---|
[10633] | 227 | private System.Windows.Forms.TabControl tabSearchReplace;
|
---|
| 228 | private System.Windows.Forms.TabPage tabSearch;
|
---|
| 229 | private System.Windows.Forms.TabPage tabReplace;
|
---|
[10636] | 230 | private System.Windows.Forms.TextBox txtSearchString;
|
---|
| 231 | private System.Windows.Forms.Label lblSearch;
|
---|
[10630] | 232 | private System.Windows.Forms.Button btnFindAll;
|
---|
| 233 | private System.Windows.Forms.Button btnFindNext;
|
---|
[10636] | 234 | private System.Windows.Forms.Label lblValue;
|
---|
| 235 | private System.Windows.Forms.Button btnReplaceAll;
|
---|
[10672] | 236 | private System.Windows.Forms.Button btnReplace;
|
---|
[10636] | 237 | private System.Windows.Forms.ComboBox cmbReplaceWith;
|
---|
| 238 | private System.Windows.Forms.TextBox txtValue;
|
---|
| 239 | private System.Windows.Forms.Label label1;
|
---|
[10870] | 240 | private System.Windows.Forms.ComboBox cmbComparisonOperator;
|
---|
[10630] | 241 | }
|
---|
| 242 | } |
---|