-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainForm.Designer.cs
More file actions
129 lines (122 loc) · 6.09 KB
/
MainForm.Designer.cs
File metadata and controls
129 lines (122 loc) · 6.09 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
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
124
125
126
127
128
namespace MechVibesSoundPackInstaller
{
partial class MainForm
{
/// <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(MainForm));
this.lblSoundPackPath = new CometUI.CometLabel();
this.fileSoundPackPath = new CometUI.CometFileInput();
this.btnInstallSoundPack = new CometUI.CometButton();
this.chckShowInstalledPack = new CometUI.CometCheckBox();
this.SuspendLayout();
//
// lblSoundPackPath
//
this.lblSoundPackPath.AutoSize = true;
this.lblSoundPackPath.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(25)))), ((int)(((byte)(25)))));
this.lblSoundPackPath.Font = new System.Drawing.Font("Segoe UI", 10F);
this.lblSoundPackPath.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(200)))), ((int)(((byte)(200)))));
this.lblSoundPackPath.Location = new System.Drawing.Point(12, 47);
this.lblSoundPackPath.Name = "lblSoundPackPath";
this.lblSoundPackPath.Size = new System.Drawing.Size(83, 19);
this.lblSoundPackPath.TabIndex = 0;
this.lblSoundPackPath.Text = "Sound Pack:";
//
// fileSoundPackPath
//
this.fileSoundPackPath.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(25)))), ((int)(((byte)(25)))));
this.fileSoundPackPath.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(70)))), ((int)(((byte)(70)))));
this.fileSoundPackPath.Cursor = System.Windows.Forms.Cursors.Default;
this.fileSoundPackPath.DefaultFilter = 1;
this.fileSoundPackPath.DialogTitle = "Please select the soundpack to install...";
this.fileSoundPackPath.FileChooserColor = System.Drawing.Color.DodgerBlue;
this.fileSoundPackPath.FileFilter = "SoundPack|*.zip";
this.fileSoundPackPath.FocusedBorderColor = System.Drawing.Color.DodgerBlue;
this.fileSoundPackPath.Font = new System.Drawing.Font("Segoe UI", 10F);
this.fileSoundPackPath.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(200)))), ((int)(((byte)(200)))));
this.fileSoundPackPath.InputType = CometUI.CometFileInputType.OpenFile;
this.fileSoundPackPath.Location = new System.Drawing.Point(101, 44);
this.fileSoundPackPath.Name = "fileSoundPackPath";
this.fileSoundPackPath.Size = new System.Drawing.Size(262, 26);
this.fileSoundPackPath.TabIndex = 1;
this.fileSoundPackPath.UnderlineBorder = false;
//
// btnInstallSoundPack
//
this.btnInstallSoundPack.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(25)))), ((int)(((byte)(25)))));
this.btnInstallSoundPack.Cursor = System.Windows.Forms.Cursors.Hand;
this.btnInstallSoundPack.Font = new System.Drawing.Font("Segoe UI", 10F);
this.btnInstallSoundPack.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(200)))), ((int)(((byte)(200)))));
this.btnInstallSoundPack.Location = new System.Drawing.Point(243, 84);
this.btnInstallSoundPack.Name = "btnInstallSoundPack";
this.btnInstallSoundPack.Size = new System.Drawing.Size(120, 39);
this.btnInstallSoundPack.TabIndex = 2;
this.btnInstallSoundPack.Text = "Install SoundPack";
this.btnInstallSoundPack.Click += new System.EventHandler(this.InstallSoundPack);
//
// chckShowInstalledPack
//
this.chckShowInstalledPack.AutoSize = true;
this.chckShowInstalledPack.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(25)))), ((int)(((byte)(25)))));
this.chckShowInstalledPack.CheckColor = System.Drawing.Color.FromArgb(((int)(((byte)(160)))), ((int)(((byte)(160)))), ((int)(((byte)(160)))));
this.chckShowInstalledPack.Checked = true;
this.chckShowInstalledPack.Cursor = System.Windows.Forms.Cursors.Hand;
this.chckShowInstalledPack.Font = new System.Drawing.Font("Segoe UI", 10F);
this.chckShowInstalledPack.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(200)))), ((int)(((byte)(200)))));
this.chckShowInstalledPack.Location = new System.Drawing.Point(12, 92);
this.chckShowInstalledPack.Name = "chckShowInstalledPack";
this.chckShowInstalledPack.Size = new System.Drawing.Size(198, 23);
this.chckShowInstalledPack.TabIndex = 3;
this.chckShowInstalledPack.Text = "Show Pack After Installation";
this.chckShowInstalledPack.UseVisualStyleBackColor = false;
//
// MainForm
//
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
this.CanResize = false;
this.ClientSize = new System.Drawing.Size(375, 134);
this.Controls.Add(this.chckShowInstalledPack);
this.Controls.Add(this.btnInstallSoundPack);
this.Controls.Add(this.fileSoundPackPath);
this.Controls.Add(this.lblSoundPackPath);
this.Font = new System.Drawing.Font("Segoe UI", 9F);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MaximumSize = new System.Drawing.Size(375, 134);
this.MinimumSize = new System.Drawing.Size(375, 134);
this.Name = "MainForm";
this.ShowIcon = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "MechVibes SoundPack Installer";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private CometUI.CometLabel lblSoundPackPath;
private CometUI.CometFileInput fileSoundPackPath;
private CometUI.CometButton btnInstallSoundPack;
private CometUI.CometCheckBox chckShowInstalledPack;
}
}