-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathProgressForm.Designer.vb
More file actions
109 lines (104 loc) · 4.11 KB
/
Copy pathProgressForm.Designer.vb
File metadata and controls
109 lines (104 loc) · 4.11 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
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class ProgressForm
Inherits System.Windows.Forms.Form
<System.Diagnostics.DebuggerNonUserCode()> _
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
Try
If disposing AndAlso components IsNot Nothing Then
components.Dispose()
End If
Finally
MyBase.Dispose(disposing)
End Try
End Sub
Private components As System.ComponentModel.IContainer
Friend WithEvents lblTitle As System.Windows.Forms.Label
Friend WithEvents lblTotal As System.Windows.Forms.Label
Friend WithEvents lblCurrent As System.Windows.Forms.Label
Friend WithEvents lblStage As System.Windows.Forms.Label
Friend WithEvents lblNote As System.Windows.Forms.Label
Friend WithEvents progressBar1 As System.Windows.Forms.ProgressBar
<System.Diagnostics.DebuggerStepThrough()> _
Private Sub InitializeComponent()
Me.lblTitle = New System.Windows.Forms.Label()
Me.lblTotal = New System.Windows.Forms.Label()
Me.lblCurrent = New System.Windows.Forms.Label()
Me.lblStage = New System.Windows.Forms.Label()
Me.lblNote = New System.Windows.Forms.Label()
Me.progressBar1 = New System.Windows.Forms.ProgressBar()
Me.SuspendLayout()
'
'lblTitle
'
Me.lblTitle.AutoSize = True
Me.lblTitle.Location = New System.Drawing.Point(12, 12)
Me.lblTitle.Name = "lblTitle"
Me.lblTitle.Size = New System.Drawing.Size(125, 12)
Me.lblTitle.TabIndex = 5
Me.lblTitle.Text = "正在归档,请稍候……"
'
'lblTotal
'
Me.lblTotal.AutoSize = True
Me.lblTotal.Location = New System.Drawing.Point(189, 12)
Me.lblTotal.Name = "lblTotal"
Me.lblTotal.Size = New System.Drawing.Size(149, 12)
Me.lblTotal.TabIndex = 4
Me.lblTotal.Text = "共 0 封邮件,已处理 0 封"
'
'lblCurrent
'
Me.lblCurrent.AutoSize = True
Me.lblCurrent.Location = New System.Drawing.Point(12, 36)
Me.lblCurrent.Name = "lblCurrent"
Me.lblCurrent.Size = New System.Drawing.Size(47, 12)
Me.lblCurrent.TabIndex = 3
Me.lblCurrent.Text = "当前:-"
'
'lblStage
'
Me.lblStage.AutoSize = True
Me.lblStage.Location = New System.Drawing.Point(12, 62)
Me.lblStage.Name = "lblStage"
Me.lblStage.Size = New System.Drawing.Size(47, 12)
Me.lblStage.TabIndex = 2
Me.lblStage.Text = "阶段:-"
'
'lblNote
'
Me.lblNote.AutoSize = True
Me.lblNote.ForeColor = System.Drawing.Color.FromArgb(CType(CType(180, Byte), Integer), CType(CType(90, Byte), Integer), CType(CType(0, Byte), Integer))
Me.lblNote.Location = New System.Drawing.Point(12, 135)
Me.lblNote.Name = "lblNote"
Me.lblNote.Size = New System.Drawing.Size(0, 12)
Me.lblNote.TabIndex = 1
'
'progressBar1
'
Me.progressBar1.Location = New System.Drawing.Point(12, 88)
Me.progressBar1.Name = "progressBar1"
Me.progressBar1.Size = New System.Drawing.Size(400, 22)
Me.progressBar1.TabIndex = 0
'
'ProgressForm
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 12.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.ClientSize = New System.Drawing.Size(424, 128)
Me.ControlBox = False
Me.Controls.Add(Me.progressBar1)
Me.Controls.Add(Me.lblNote)
Me.Controls.Add(Me.lblStage)
Me.Controls.Add(Me.lblCurrent)
Me.Controls.Add(Me.lblTotal)
Me.Controls.Add(Me.lblTitle)
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog
Me.MaximizeBox = False
Me.MinimizeBox = False
Me.Name = "ProgressForm"
Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
Me.Text = "工作助手 - 归档进度"
Me.ResumeLayout(False)
Me.PerformLayout()
End Sub
End Class