/TabularEditor/UI/Dialogs/ReplaceForm.Designer.cs
https://github.com/otykier/TabularEditor · C# · 184 lines · 135 code · 5 blank · 44 comment · 3 complexity · 93b9e189918c4850898c1841a7a8da75 MD5 · raw file
- namespace TabularEditor.UI.Dialogs
- {
- partial class ReplaceForm
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- this.label1 = new System.Windows.Forms.Label();
- this.label2 = new System.Windows.Forms.Label();
- this.chkMatchCase = new System.Windows.Forms.CheckBox();
- this.chkWholeWord = new System.Windows.Forms.CheckBox();
- this.chkRegEx = new System.Windows.Forms.CheckBox();
- this.txtPattern = new System.Windows.Forms.TextBox();
- this.txtReplaceWith = new System.Windows.Forms.TextBox();
- this.btnCancel = new System.Windows.Forms.Button();
- this.btnOK = new System.Windows.Forms.Button();
- this.chkTranslations = new System.Windows.Forms.CheckBox();
- this.SuspendLayout();
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Location = new System.Drawing.Point(24, 12);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(30, 13);
- this.label1.TabIndex = 0;
- this.label1.Text = "Find:";
- this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.Location = new System.Drawing.Point(4, 80);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(50, 13);
- this.label2.TabIndex = 2;
- this.label2.Text = "Replace:";
- this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
- //
- // chkMatchCase
- //
- this.chkMatchCase.AutoSize = true;
- this.chkMatchCase.Enabled = false;
- this.chkMatchCase.Location = new System.Drawing.Point(62, 35);
- this.chkMatchCase.Name = "chkMatchCase";
- this.chkMatchCase.Size = new System.Drawing.Size(82, 17);
- this.chkMatchCase.TabIndex = 3;
- this.chkMatchCase.Text = "Match case";
- this.chkMatchCase.UseVisualStyleBackColor = true;
- //
- // chkWholeWord
- //
- this.chkWholeWord.AutoSize = true;
- this.chkWholeWord.Enabled = false;
- this.chkWholeWord.Location = new System.Drawing.Point(150, 35);
- this.chkWholeWord.Name = "chkWholeWord";
- this.chkWholeWord.Size = new System.Drawing.Size(113, 17);
- this.chkWholeWord.TabIndex = 4;
- this.chkWholeWord.Text = "Match whole word";
- this.chkWholeWord.UseVisualStyleBackColor = true;
- //
- // chkRegEx
- //
- this.chkRegEx.AutoSize = true;
- this.chkRegEx.Location = new System.Drawing.Point(269, 35);
- this.chkRegEx.Name = "chkRegEx";
- this.chkRegEx.Size = new System.Drawing.Size(144, 17);
- this.chkRegEx.TabIndex = 5;
- this.chkRegEx.Text = "Use Regular Expressions";
- this.chkRegEx.UseVisualStyleBackColor = true;
- //
- // txtPattern
- //
- this.txtPattern.Location = new System.Drawing.Point(59, 9);
- this.txtPattern.Name = "txtPattern";
- this.txtPattern.Size = new System.Drawing.Size(375, 20);
- this.txtPattern.TabIndex = 6;
- this.txtPattern.TextChanged += new System.EventHandler(this.txtPattern_TextChanged);
- //
- // txtReplaceWith
- //
- this.txtReplaceWith.Location = new System.Drawing.Point(59, 77);
- this.txtReplaceWith.Name = "txtReplaceWith";
- this.txtReplaceWith.Size = new System.Drawing.Size(375, 20);
- this.txtReplaceWith.TabIndex = 7;
- //
- // btnCancel
- //
- this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
- this.btnCancel.Location = new System.Drawing.Point(359, 128);
- this.btnCancel.Name = "btnCancel";
- this.btnCancel.Size = new System.Drawing.Size(75, 23);
- this.btnCancel.TabIndex = 8;
- this.btnCancel.Text = "Cancel";
- this.btnCancel.UseVisualStyleBackColor = true;
- //
- // btnOK
- //
- this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
- this.btnOK.Enabled = false;
- this.btnOK.Location = new System.Drawing.Point(276, 128);
- this.btnOK.Name = "btnOK";
- this.btnOK.Size = new System.Drawing.Size(75, 23);
- this.btnOK.TabIndex = 9;
- this.btnOK.Text = "OK";
- this.btnOK.UseVisualStyleBackColor = true;
- //
- // chkTranslations
- //
- this.chkTranslations.AutoSize = true;
- this.chkTranslations.Location = new System.Drawing.Point(62, 103);
- this.chkTranslations.Name = "chkTranslations";
- this.chkTranslations.Size = new System.Drawing.Size(148, 17);
- this.chkTranslations.TabIndex = 10;
- this.chkTranslations.Text = "Include Name translations";
- this.chkTranslations.UseVisualStyleBackColor = true;
- //
- // ReplaceForm
- //
- this.AcceptButton = this.btnOK;
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.CancelButton = this.btnCancel;
- this.ClientSize = new System.Drawing.Size(446, 163);
- this.Controls.Add(this.chkTranslations);
- this.Controls.Add(this.btnOK);
- this.Controls.Add(this.btnCancel);
- this.Controls.Add(this.txtReplaceWith);
- this.Controls.Add(this.label2);
- this.Controls.Add(this.chkMatchCase);
- this.Controls.Add(this.label1);
- this.Controls.Add(this.chkRegEx);
- this.Controls.Add(this.txtPattern);
- this.Controls.Add(this.chkWholeWord);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
- this.MaximizeBox = false;
- this.MinimizeBox = false;
- this.Name = "ReplaceForm";
- this.ShowIcon = false;
- this.ShowInTaskbar = false;
- this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
- this.Text = "Replace in names";
- this.Shown += new System.EventHandler(this.ReplaceForm_Shown);
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.CheckBox chkMatchCase;
- private System.Windows.Forms.CheckBox chkWholeWord;
- private System.Windows.Forms.CheckBox chkRegEx;
- private System.Windows.Forms.TextBox txtPattern;
- private System.Windows.Forms.TextBox txtReplaceWith;
- private System.Windows.Forms.Button btnCancel;
- private System.Windows.Forms.Button btnOK;
- private System.Windows.Forms.CheckBox chkTranslations;
- }
- }