This repository was archived by the owner on Jun 24, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFormLoading.Designer.cs
More file actions
71 lines (66 loc) · 2.41 KB
/
Copy pathFormLoading.Designer.cs
File metadata and controls
71 lines (66 loc) · 2.41 KB
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
namespace ffmpegGui_SimpleCut
{
partial class FormLoading
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormLoading));
label_Loading = new Label();
SuspendLayout();
//
// label_Loading
//
label_Loading.AutoSize = true;
label_Loading.Font = new Font("Segoe UI", 36F);
label_Loading.Location = new Point(36, 43);
label_Loading.Name = "label_Loading";
label_Loading.Size = new Size(228, 65);
label_Loading.TabIndex = 1;
label_Loading.Text = "Loading...";
label_Loading.TextAlign = ContentAlignment.MiddleCenter;
label_Loading.UseWaitCursor = true;
//
// FormLoading
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(300, 150);
Controls.Add(label_Loading);
Cursor = Cursors.WaitCursor;
FormBorderStyle = FormBorderStyle.None;
Icon = (Icon)resources.GetObject("$this.Icon");
MaximizeBox = false;
MinimizeBox = false;
Name = "FormLoading";
ShowInTaskbar = false;
StartPosition = FormStartPosition.CenterScreen;
Text = "Loading";
UseWaitCursor = true;
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label label_Loading;
}
}