-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathForm1.Designer.cs
More file actions
157 lines (149 loc) · 6.9 KB
/
Form1.Designer.cs
File metadata and controls
157 lines (149 loc) · 6.9 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
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
namespace INFOIBV
{
partial class INFOIBV
{
/// <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.LoadImageButton = new System.Windows.Forms.Button();
this.openImageDialog = new System.Windows.Forms.OpenFileDialog();
this.imageFileName = new System.Windows.Forms.TextBox();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.applyButton = new System.Windows.Forms.Button();
this.saveImageDialog = new System.Windows.Forms.SaveFileDialog();
this.saveButton = new System.Windows.Forms.Button();
this.pictureBox2 = new System.Windows.Forms.PictureBox();
this.progressBar = new System.Windows.Forms.ProgressBar();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
this.SuspendLayout();
//
// LoadImageButton
//
this.LoadImageButton.Location = new System.Drawing.Point(12, 12);
this.LoadImageButton.Name = "LoadImageButton";
this.LoadImageButton.Size = new System.Drawing.Size(98, 23);
this.LoadImageButton.TabIndex = 0;
this.LoadImageButton.Text = "Load image...";
this.LoadImageButton.UseVisualStyleBackColor = true;
this.LoadImageButton.Click += new System.EventHandler(this.LoadImageButton_Click);
//
// openImageDialog
//
this.openImageDialog.Filter = "Bitmap files (*.bmp;*.gif;*.jpg;*.png;*.tiff;*.jpeg)|*.bmp;*.gif;*.jpg;*.png;*.ti" +
"ff;*.jpeg";
this.openImageDialog.InitialDirectory = "..\\..\\images";
//
// imageFileName
//
this.imageFileName.Location = new System.Drawing.Point(116, 14);
this.imageFileName.Name = "imageFileName";
this.imageFileName.ReadOnly = true;
this.imageFileName.Size = new System.Drawing.Size(316, 20);
this.imageFileName.TabIndex = 1;
//
// pictureBox1
//
this.pictureBox1.Location = new System.Drawing.Point(13, 45);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(512, 512);
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
this.pictureBox1.TabIndex = 2;
this.pictureBox1.TabStop = false;
//
// applyButton
//
this.applyButton.Location = new System.Drawing.Point(478, 12);
this.applyButton.Name = "applyButton";
this.applyButton.Size = new System.Drawing.Size(103, 23);
this.applyButton.TabIndex = 3;
this.applyButton.Text = "Apply";
this.applyButton.UseVisualStyleBackColor = true;
this.applyButton.Click += new System.EventHandler(this.applyButton_Click);
//
// saveImageDialog
//
this.saveImageDialog.Filter = "Bitmap file (*.bmp)|*.bmp";
this.saveImageDialog.InitialDirectory = "..\\..\\images";
//
// saveButton
//
this.saveButton.Location = new System.Drawing.Point(948, 11);
this.saveButton.Name = "saveButton";
this.saveButton.Size = new System.Drawing.Size(95, 23);
this.saveButton.TabIndex = 4;
this.saveButton.Text = "Save as BMP...";
this.saveButton.UseVisualStyleBackColor = true;
this.saveButton.Click += new System.EventHandler(this.saveButton_Click);
//
// pictureBox2
//
this.pictureBox2.Location = new System.Drawing.Point(531, 45);
this.pictureBox2.Name = "pictureBox2";
this.pictureBox2.Size = new System.Drawing.Size(512, 512);
this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
this.pictureBox2.TabIndex = 5;
this.pictureBox2.TabStop = false;
//
// progressBar
//
this.progressBar.Location = new System.Drawing.Point(587, 14);
this.progressBar.Name = "progressBar";
this.progressBar.Size = new System.Drawing.Size(276, 20);
this.progressBar.Style = System.Windows.Forms.ProgressBarStyle.Continuous;
this.progressBar.TabIndex = 6;
this.progressBar.Visible = false;
//
// INFOIBV
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1052, 576);
this.Controls.Add(this.progressBar);
this.Controls.Add(this.pictureBox2);
this.Controls.Add(this.saveButton);
this.Controls.Add(this.applyButton);
this.Controls.Add(this.pictureBox1);
this.Controls.Add(this.imageFileName);
this.Controls.Add(this.LoadImageButton);
this.Location = new System.Drawing.Point(10, 10);
this.Name = "INFOIBV";
this.ShowIcon = false;
this.Text = "INFOIBV";
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button LoadImageButton;
private System.Windows.Forms.OpenFileDialog openImageDialog;
private System.Windows.Forms.TextBox imageFileName;
private System.Windows.Forms.PictureBox pictureBox1;
private System.Windows.Forms.Button applyButton;
private System.Windows.Forms.SaveFileDialog saveImageDialog;
private System.Windows.Forms.Button saveButton;
private System.Windows.Forms.PictureBox pictureBox2;
private System.Windows.Forms.ProgressBar progressBar;
}
}