-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathForm1.Designer.cs
More file actions
69 lines (62 loc) · 2.45 KB
/
Form1.Designer.cs
File metadata and controls
69 lines (62 loc) · 2.45 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
namespace ThreadSort
{
partial class Form1
{
/// <summary>
/// Vyžaduje se proměnná návrháře.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Uvolněte všechny používané prostředky.
/// </summary>
/// <param name="disposing">hodnota true, když by se měl spravovaný prostředek odstranit; jinak false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Kód generovaný Návrhářem Windows Form
/// <summary>
/// Metoda vyžadovaná pro podporu Návrháře - neupravovat
/// obsah této metody v editoru kódu.
/// </summary>
private void InitializeComponent()
{
this.progressBar1 = new System.Windows.Forms.ProgressBar();
this.progressBar2 = new System.Windows.Forms.ProgressBar();
this.SuspendLayout();
//
// progressBar1
//
this.progressBar1.Location = new System.Drawing.Point(48, 29);
this.progressBar1.Name = "progressBar1";
this.progressBar1.Size = new System.Drawing.Size(322, 47);
this.progressBar1.TabIndex = 0;
//
// progressBar2
//
this.progressBar2.Location = new System.Drawing.Point(46, 104);
this.progressBar2.Name = "progressBar2";
this.progressBar2.Size = new System.Drawing.Size(323, 38);
this.progressBar2.TabIndex = 1;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450);
this.Controls.Add(this.progressBar2);
this.Controls.Add(this.progressBar1);
this.Name = "Form1";
this.Text = "Form1";
this.Load += new System.EventHandler(this.Form1_Load);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.ProgressBar progressBar1;
private System.Windows.Forms.ProgressBar progressBar2;
}
}