-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathForm1.Designer.cs
164 lines (158 loc) · 7.37 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
namespace ColorPaletteGenerator
{
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()
{
this.btnDownload = new System.Windows.Forms.Button();
this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
this.lblStatus = new System.Windows.Forms.Label();
this.progressBar1 = new System.Windows.Forms.ProgressBar();
this.lblPixelCount = new System.Windows.Forms.Label();
this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
this.btnSingleImage = new System.Windows.Forms.Button();
this.btnFolder = new System.Windows.Forms.Button();
this.lblTotalPixelCount = new System.Windows.Forms.Label();
this.btnRestart = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// btnDownload
//
this.btnDownload.Enabled = false;
this.btnDownload.Location = new System.Drawing.Point(17, 422);
this.btnDownload.Margin = new System.Windows.Forms.Padding(4);
this.btnDownload.Name = "btnDownload";
this.btnDownload.Size = new System.Drawing.Size(1032, 117);
this.btnDownload.TabIndex = 2;
this.btnDownload.Text = "Download";
this.btnDownload.UseVisualStyleBackColor = true;
this.btnDownload.Click += new System.EventHandler(this.BtnDownload_Click);
//
// openFileDialog1
//
this.openFileDialog1.FileName = "openFileDialog1";
//
// lblStatus
//
this.lblStatus.AutoSize = true;
this.lblStatus.Location = new System.Drawing.Point(500, 306);
this.lblStatus.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.lblStatus.Name = "lblStatus";
this.lblStatus.Size = new System.Drawing.Size(61, 17);
this.lblStatus.TabIndex = 3;
this.lblStatus.Text = "Ready...";
//
// progressBar1
//
this.progressBar1.Location = new System.Drawing.Point(17, 274);
this.progressBar1.Margin = new System.Windows.Forms.Padding(4);
this.progressBar1.Name = "progressBar1";
this.progressBar1.Size = new System.Drawing.Size(1032, 28);
this.progressBar1.TabIndex = 4;
//
// lblPixelCount
//
this.lblPixelCount.AutoSize = true;
this.lblPixelCount.Location = new System.Drawing.Point(16, 402);
this.lblPixelCount.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.lblPixelCount.Name = "lblPixelCount";
this.lblPixelCount.Size = new System.Drawing.Size(144, 17);
this.lblPixelCount.TabIndex = 5;
this.lblPixelCount.Text = "Different Pixel Count: ";
//
// btnSingleImage
//
this.btnSingleImage.Location = new System.Drawing.Point(17, 16);
this.btnSingleImage.Margin = new System.Windows.Forms.Padding(4);
this.btnSingleImage.Name = "btnSingleImage";
this.btnSingleImage.Size = new System.Drawing.Size(1033, 82);
this.btnSingleImage.TabIndex = 0;
this.btnSingleImage.Text = "Upload Single Image";
this.btnSingleImage.UseVisualStyleBackColor = true;
this.btnSingleImage.Click += new System.EventHandler(this.BtnSingleImage_Click);
//
// btnFolder
//
this.btnFolder.Location = new System.Drawing.Point(17, 106);
this.btnFolder.Margin = new System.Windows.Forms.Padding(4);
this.btnFolder.Name = "btnFolder";
this.btnFolder.Size = new System.Drawing.Size(1033, 82);
this.btnFolder.TabIndex = 6;
this.btnFolder.Text = "Upload Folder";
this.btnFolder.UseVisualStyleBackColor = true;
this.btnFolder.Click += new System.EventHandler(this.btnFolder_Click);
//
// lblTotalPixelCount
//
this.lblTotalPixelCount.AutoSize = true;
this.lblTotalPixelCount.Location = new System.Drawing.Point(16, 381);
this.lblTotalPixelCount.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.lblTotalPixelCount.Name = "lblTotalPixelCount";
this.lblTotalPixelCount.Size = new System.Drawing.Size(86, 17);
this.lblTotalPixelCount.TabIndex = 7;
this.lblTotalPixelCount.Text = "Pixel Count: ";
//
// btnRestart
//
this.btnRestart.Location = new System.Drawing.Point(17, 195);
this.btnRestart.Name = "btnRestart";
this.btnRestart.Size = new System.Drawing.Size(252, 52);
this.btnRestart.TabIndex = 8;
this.btnRestart.Text = "New Image (App Will Restart)";
this.btnRestart.UseVisualStyleBackColor = true;
this.btnRestart.Click += new System.EventHandler(this.btnRestart_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1067, 554);
this.Controls.Add(this.btnRestart);
this.Controls.Add(this.lblTotalPixelCount);
this.Controls.Add(this.btnFolder);
this.Controls.Add(this.lblPixelCount);
this.Controls.Add(this.progressBar1);
this.Controls.Add(this.lblStatus);
this.Controls.Add(this.btnDownload);
this.Controls.Add(this.btnSingleImage);
this.Margin = new System.Windows.Forms.Padding(4);
this.Name = "Form1";
this.Text = "Form1";
this.Load += new System.EventHandler(this.Form1_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button btnDownload;
private System.Windows.Forms.OpenFileDialog openFileDialog1;
private System.Windows.Forms.Label lblStatus;
private System.Windows.Forms.ProgressBar progressBar1;
private System.Windows.Forms.Label lblPixelCount;
private System.Windows.Forms.SaveFileDialog saveFileDialog1;
private System.Windows.Forms.Button btnSingleImage;
private System.Windows.Forms.Button btnFolder;
private System.Windows.Forms.Label lblTotalPixelCount;
private System.Windows.Forms.Button btnRestart;
}
}