-
Notifications
You must be signed in to change notification settings - Fork 0
/
Form1.Designer.cs
123 lines (117 loc) · 4.61 KB
/
Form1.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
119
120
121
122
123
namespace Srt_to_Doc_Converter
{
partial class Form1
{
/// <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()
{
richTextBox1 = new System.Windows.Forms.RichTextBox();
button2 = new System.Windows.Forms.Button();
button3 = new System.Windows.Forms.Button();
openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
button4 = new System.Windows.Forms.Button();
button1 = new System.Windows.Forms.Button();
SuspendLayout();
//
// richTextBox1
//
richTextBox1.Location = new System.Drawing.Point(12, 8);
richTextBox1.Name = "richTextBox1";
richTextBox1.Size = new System.Drawing.Size(540, 288);
richTextBox1.TabIndex = 0;
richTextBox1.Text = "";
richTextBox1.TextChanged += richTextBox1_TextChanged;
//
// button2
//
button2.Location = new System.Drawing.Point(570, 11);
button2.Name = "button2";
button2.Size = new System.Drawing.Size(95, 34);
button2.TabIndex = 2;
button2.Text = "Open .srt";
button2.UseVisualStyleBackColor = true;
button2.Click += button2_Click;
//
// button3
//
button3.Location = new System.Drawing.Point(570, 265);
button3.Name = "button3";
button3.Size = new System.Drawing.Size(95, 34);
button3.TabIndex = 3;
button3.Text = "Clear All";
button3.UseVisualStyleBackColor = true;
button3.Click += button3_Click;
//
// openFileDialog1
//
openFileDialog1.FileName = "openFileDialog1";
openFileDialog1.FileOk += openFileDialog1_FileOk;
//
// button4
//
button4.Location = new System.Drawing.Point(570, 119);
button4.Name = "button4";
button4.Size = new System.Drawing.Size(95, 34);
button4.TabIndex = 4;
button4.Text = "Save As...";
button4.UseVisualStyleBackColor = true;
button4.Click += button4_Click;
//
// button1
//
button1.Location = new System.Drawing.Point(570, 66);
button1.Name = "button1";
button1.Size = new System.Drawing.Size(95, 34);
button1.TabIndex = 5;
button1.Text = "Convert text";
button1.UseVisualStyleBackColor = true;
button1.Click += button1_Click_1;
//
// Form1
//
AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
ClientSize = new System.Drawing.Size(677, 308);
Controls.Add(button1);
Controls.Add(button4);
Controls.Add(button3);
Controls.Add(button2);
Controls.Add(richTextBox1);
MaximizeBox = false;
Name = "Form1";
Text = "Srt to Doc Converter 5.3.2024 ";
Load += Form1_Load;
ResumeLayout(false);
}
#endregion
private System.Windows.Forms.RichTextBox richTextBox1;
private System.Windows.Forms.Button button2;
private System.Windows.Forms.Button button3;
private System.Windows.Forms.OpenFileDialog openFileDialog1;
private System.Windows.Forms.SaveFileDialog saveFileDialog1;
private System.Windows.Forms.Button button4;
private System.Windows.Forms.Button button1;
}
}