Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/FindAndReplaceDialog.Designer.cs @ 10633

Last change on this file since 10633 was 10633, checked in by rstoll, 10 years ago

show FindReplaceDialog when CTRL+F, CTRL+R respectively

File size: 5.1 KB
Line 
1namespace HeuristicLab.DataPreprocessing.Views {
2  partial class FindAndReplaceDialog {
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 Windows Form 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.tabSearchReplace = new System.Windows.Forms.TabControl();
27      this.tabSearch = new System.Windows.Forms.TabPage();
28      this.txtSearchString = new System.Windows.Forms.TextBox();
29      this.lblSearch = new System.Windows.Forms.Label();
30      this.btnFindAll = new System.Windows.Forms.Button();
31      this.btnFindNext = new System.Windows.Forms.Button();
32      this.tabReplace = new System.Windows.Forms.TabPage();
33      this.tabSearchReplace.SuspendLayout();
34      this.tabSearch.SuspendLayout();
35      this.SuspendLayout();
36      //
37      // tabSearchReplace
38      //
39      this.tabSearchReplace.Controls.Add(this.tabSearch);
40      this.tabSearchReplace.Controls.Add(this.tabReplace);
41      this.tabSearchReplace.Location = new System.Drawing.Point(12, 12);
42      this.tabSearchReplace.Name = "tabSearchReplace";
43      this.tabSearchReplace.SelectedIndex = 0;
44      this.tabSearchReplace.Size = new System.Drawing.Size(511, 174);
45      this.tabSearchReplace.TabIndex = 0;
46      //
47      // tabSearch
48      //
49      this.tabSearch.Controls.Add(this.txtSearchString);
50      this.tabSearch.Controls.Add(this.lblSearch);
51      this.tabSearch.Controls.Add(this.btnFindAll);
52      this.tabSearch.Controls.Add(this.btnFindNext);
53      this.tabSearch.Location = new System.Drawing.Point(4, 22);
54      this.tabSearch.Name = "tabSearch";
55      this.tabSearch.Padding = new System.Windows.Forms.Padding(3);
56      this.tabSearch.Size = new System.Drawing.Size(503, 148);
57      this.tabSearch.TabIndex = 0;
58      this.tabSearch.Text = "Search";
59      this.tabSearch.UseVisualStyleBackColor = true;
60      //
61      // txtSearchString
62      //
63      this.txtSearchString.Location = new System.Drawing.Point(97, 27);
64      this.txtSearchString.Name = "txtSearchString";
65      this.txtSearchString.Size = new System.Drawing.Size(254, 20);
66      this.txtSearchString.TabIndex = 3;
67      //
68      // lblSearch
69      //
70      this.lblSearch.AutoSize = true;
71      this.lblSearch.Location = new System.Drawing.Point(32, 30);
72      this.lblSearch.Name = "lblSearch";
73      this.lblSearch.Size = new System.Drawing.Size(59, 13);
74      this.lblSearch.TabIndex = 2;
75      this.lblSearch.Text = "Search for:";
76      //
77      // btnFindAll
78      //
79      this.btnFindAll.Location = new System.Drawing.Point(360, 96);
80      this.btnFindAll.Name = "btnFindAll";
81      this.btnFindAll.Size = new System.Drawing.Size(75, 23);
82      this.btnFindAll.TabIndex = 1;
83      this.btnFindAll.Text = "Find All";
84      this.btnFindAll.UseVisualStyleBackColor = true;
85      //
86      // btnFindNext
87      //
88      this.btnFindNext.Location = new System.Drawing.Point(360, 67);
89      this.btnFindNext.Name = "btnFindNext";
90      this.btnFindNext.Size = new System.Drawing.Size(75, 23);
91      this.btnFindNext.TabIndex = 0;
92      this.btnFindNext.Text = "Find Next";
93      this.btnFindNext.UseVisualStyleBackColor = true;
94      //
95      // tabReplace
96      //
97      this.tabReplace.Location = new System.Drawing.Point(4, 22);
98      this.tabReplace.Name = "tabReplace";
99      this.tabReplace.Padding = new System.Windows.Forms.Padding(3);
100      this.tabReplace.Size = new System.Drawing.Size(503, 148);
101      this.tabReplace.TabIndex = 1;
102      this.tabReplace.Text = "Replace";
103      this.tabReplace.UseVisualStyleBackColor = true;
104      //
105      // FindAndReplaceDialog
106      //
107      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
108      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
109      this.ClientSize = new System.Drawing.Size(532, 197);
110      this.Controls.Add(this.tabSearchReplace);
111      this.Name = "FindAndReplaceDialog";
112      this.Text = "FindAndReplaceDialog";
113      this.tabSearchReplace.ResumeLayout(false);
114      this.tabSearch.ResumeLayout(false);
115      this.tabSearch.PerformLayout();
116      this.ResumeLayout(false);
117
118    }
119
120    #endregion
121
122    private System.Windows.Forms.TabControl tabSearchReplace;
123    private System.Windows.Forms.TabPage tabSearch;
124    private System.Windows.Forms.TabPage tabReplace;
125    private System.Windows.Forms.Button btnFindAll;
126    private System.Windows.Forms.Button btnFindNext;
127    private System.Windows.Forms.TextBox txtSearchString;
128    private System.Windows.Forms.Label lblSearch;
129  }
130}
Note: See TracBrowser for help on using the repository browser.