source: Common/FormProgress.Designer.cs

Last change on this file was 14, checked in by chronos, 21 months ago
  • Modified: Various improvements.
File size: 4.3 KB
Line 
1namespace Common
2{
3 partial class FormProgress
4 {
5 /// <summary>
6 /// Required designer variable.
7 /// </summary>
8 private System.ComponentModel.IContainer components = null;
9
10 /// <summary>
11 /// Clean up any resources being used.
12 /// </summary>
13 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14 protected override void Dispose(bool disposing)
15 {
16 if (disposing && (components != null))
17 {
18 components.Dispose();
19 }
20 base.Dispose(disposing);
21 }
22
23 #region Windows Form Designer generated code
24
25 /// <summary>
26 /// Required method for Designer support - do not modify
27 /// the contents of this method with the code editor.
28 /// </summary>
29 private void InitializeComponent()
30 {
31 this.components = new System.ComponentModel.Container();
32 this.progressBar1 = new System.Windows.Forms.ProgressBar();
33 this.timer1 = new System.Windows.Forms.Timer(this.components);
34 this.labelOperation = new System.Windows.Forms.Label();
35 this.labelTime = new System.Windows.Forms.Label();
36 this.SuspendLayout();
37 //
38 // progressBar1
39 //
40 this.progressBar1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
41 | System.Windows.Forms.AnchorStyles.Right)));
42 this.progressBar1.Location = new System.Drawing.Point(14, 43);
43 this.progressBar1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
44 this.progressBar1.Name = "progressBar1";
45 this.progressBar1.Size = new System.Drawing.Size(492, 29);
46 this.progressBar1.TabIndex = 0;
47 //
48 // timer1
49 //
50 this.timer1.Interval = 500;
51 this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
52 //
53 // labelOperation
54 //
55 this.labelOperation.AutoSize = true;
56 this.labelOperation.Location = new System.Drawing.Point(14, 14);
57 this.labelOperation.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
58 this.labelOperation.Name = "labelOperation";
59 this.labelOperation.Size = new System.Drawing.Size(21, 20);
60 this.labelOperation.TabIndex = 1;
61 this.labelOperation.Text = " ";
62 //
63 // labelTime
64 //
65 this.labelTime.AutoSize = true;
66 this.labelTime.Location = new System.Drawing.Point(14, 82);
67 this.labelTime.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
68 this.labelTime.Name = "labelTime";
69 this.labelTime.Size = new System.Drawing.Size(21, 20);
70 this.labelTime.TabIndex = 2;
71 this.labelTime.Text = " ";
72 //
73 // FormProgress
74 //
75 this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
76 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
77 this.ClientSize = new System.Drawing.Size(519, 132);
78 this.Controls.Add(this.labelTime);
79 this.Controls.Add(this.labelOperation);
80 this.Controls.Add(this.progressBar1);
81 this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
82 this.MinimumSize = new System.Drawing.Size(313, 121);
83 this.Name = "FormProgress";
84 this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
85 this.Text = "Progress";
86 this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FormProgress_FormClosing);
87 this.Load += new System.EventHandler(this.FormProgress_Load);
88 this.ResumeLayout(false);
89 this.PerformLayout();
90
91 }
92
93 #endregion
94
95 private System.Windows.Forms.ProgressBar progressBar1;
96 private System.Windows.Forms.Timer timer1;
97 private System.Windows.Forms.Label labelOperation;
98 private System.Windows.Forms.Label labelTime;
99 }
100}
Note: See TracBrowser for help on using the repository browser.