This repository has been archived by the owner on Dec 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ReplaceForm.Designer.cs
118 lines (112 loc) · 5.44 KB
/
ReplaceForm.Designer.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
namespace Ava
{
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.btnReplace = new System.Windows.Forms.Button();
this.lbTargetTitle = new System.Windows.Forms.Label();
this.tbTarget = new System.Windows.Forms.TextBox();
this.tbReplacement = new System.Windows.Forms.TextBox();
this.lbReplaceTitle = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// btnReplace
//
this.btnReplace.Font = new System.Drawing.Font("Segoe UI", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.btnReplace.Location = new System.Drawing.Point(11, 166);
this.btnReplace.Name = "btnReplace";
this.btnReplace.Size = new System.Drawing.Size(279, 60);
this.btnReplace.TabIndex = 5;
this.btnReplace.Text = "Replace";
this.btnReplace.UseVisualStyleBackColor = true;
this.btnReplace.Click += new System.EventHandler(this.btnReplace_Click);
//
// lbTargetTitle
//
this.lbTargetTitle.Font = new System.Drawing.Font("Segoe UI Semibold", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point);
this.lbTargetTitle.Location = new System.Drawing.Point(12, 9);
this.lbTargetTitle.Name = "lbTargetTitle";
this.lbTargetTitle.Size = new System.Drawing.Size(278, 40);
this.lbTargetTitle.TabIndex = 4;
this.lbTargetTitle.Text = "Target string";
this.lbTargetTitle.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
//
// tbTarget
//
this.tbTarget.Font = new System.Drawing.Font("Segoe UI", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.tbTarget.Location = new System.Drawing.Point(11, 52);
this.tbTarget.MaxLength = 254;
this.tbTarget.Name = "tbTarget";
this.tbTarget.Size = new System.Drawing.Size(279, 31);
this.tbTarget.TabIndex = 3;
this.tbTarget.TextChanged += new System.EventHandler(this.tbTarget_TextChanged);
//
// tbReplacement
//
this.tbReplacement.Font = new System.Drawing.Font("Segoe UI", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.tbReplacement.Location = new System.Drawing.Point(11, 129);
this.tbReplacement.MaxLength = 254;
this.tbReplacement.Name = "tbReplacement";
this.tbReplacement.Size = new System.Drawing.Size(279, 31);
this.tbReplacement.TabIndex = 3;
this.tbReplacement.TextChanged += new System.EventHandler(this.tbReplacement_TextChanged);
//
// lbReplaceTitle
//
this.lbReplaceTitle.Font = new System.Drawing.Font("Segoe UI Semibold", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point);
this.lbReplaceTitle.Location = new System.Drawing.Point(11, 86);
this.lbReplaceTitle.Name = "lbReplaceTitle";
this.lbReplaceTitle.Size = new System.Drawing.Size(279, 40);
this.lbReplaceTitle.TabIndex = 4;
this.lbReplaceTitle.Text = "Replacement string";
this.lbReplaceTitle.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
//
// ReplaceForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(304, 242);
this.Controls.Add(this.btnReplace);
this.Controls.Add(this.lbReplaceTitle);
this.Controls.Add(this.lbTargetTitle);
this.Controls.Add(this.tbReplacement);
this.Controls.Add(this.tbTarget);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.Name = "ReplaceForm";
this.Text = "Replace";
// this.FormClosing -= defaultClosing;
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.ReplaceForm_OnFormClosing);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button btnReplace;
private System.Windows.Forms.Label lbTargetTitle;
private System.Windows.Forms.TextBox tbTarget;
private System.Windows.Forms.TextBox tbReplacement;
private System.Windows.Forms.Label lbReplaceTitle;
}
}