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
/
FindForm.Designer.cs
92 lines (86 loc) · 3.82 KB
/
FindForm.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
namespace Ava
{
partial class SeekForm
{
/// <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.tbTarget = new System.Windows.Forms.TextBox();
this.lbTargetTitle = new System.Windows.Forms.Label();
this.btnFind = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// 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(12, 64);
this.tbTarget.MaxLength = 254;
this.tbTarget.Name = "tbTarget";
this.tbTarget.Size = new System.Drawing.Size(280, 31);
this.tbTarget.TabIndex = 0;
this.tbTarget.TextChanged += new System.EventHandler(this.tbTarget_TextChanged);
//
// lbTargetTitle
//
this.lbTargetTitle.Font = new System.Drawing.Font("Segoe UI Semibold", 20F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point);
this.lbTargetTitle.Location = new System.Drawing.Point(13, 9);
this.lbTargetTitle.Name = "lbTargetTitle";
this.lbTargetTitle.Size = new System.Drawing.Size(279, 52);
this.lbTargetTitle.TabIndex = 1;
this.lbTargetTitle.Text = "Target string";
this.lbTargetTitle.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
//
// btnFind
//
this.btnFind.Font = new System.Drawing.Font("Segoe UI", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.btnFind.Location = new System.Drawing.Point(13, 102);
this.btnFind.Name = "btnFind";
this.btnFind.Size = new System.Drawing.Size(279, 47);
this.btnFind.TabIndex = 2;
this.btnFind.Text = "Find";
this.btnFind.UseVisualStyleBackColor = true;
this.btnFind.Click += new System.EventHandler(this.btnFind_Click);
//
// SeekForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(304, 161);
this.Controls.Add(this.btnFind);
this.Controls.Add(this.lbTargetTitle);
this.Controls.Add(this.tbTarget);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.Name = "SeekForm";
this.Text = "Find";
// this.FormClosing -= defaultClosing;
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.SeekForm_OnFormClosing);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox tbTarget;
private System.Windows.Forms.Label lbTargetTitle;
private System.Windows.Forms.Button btnFind;
}
}