-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfrmWait.Designer.vb
110 lines (106 loc) · 4.94 KB
/
frmWait.Designer.vb
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
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class frmWait
Inherits frmCommon
'フォームがコンポーネントの一覧をクリーンアップするために dispose をオーバーライドします。
<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
'Windows フォーム デザイナーで必要です。
Private components As System.ComponentModel.IContainer
'メモ: 以下のプロシージャは Windows フォーム デザイナーで必要です。
'Windows フォーム デザイナーを使用して変更できます。
'コード エディターを使って変更しないでください。
<System.Diagnostics.DebuggerStepThrough()> _
Private Sub InitializeComponent()
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmWait))
Me.lblMessage = New System.Windows.Forms.Label()
Me.ssProgress = New System.Windows.Forms.StatusStrip()
Me.tspbProgressRate = New System.Windows.Forms.ToolStripProgressBar()
Me.tsslStatus = New System.Windows.Forms.ToolStripStatusLabel()
Me.ssDisplayFoloderFile = New System.Windows.Forms.StatusStrip()
Me.tsslProcessingFolderFile = New System.Windows.Forms.ToolStripStatusLabel()
Me.ssProgress.SuspendLayout()
Me.ssDisplayFoloderFile.SuspendLayout()
Me.SuspendLayout()
'
'lblMessage
'
Me.lblMessage.AutoSize = True
Me.lblMessage.Font = New System.Drawing.Font("MS UI Gothic", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(128, Byte))
Me.lblMessage.Location = New System.Drawing.Point(6, 9)
Me.lblMessage.Name = "lblMessage"
Me.lblMessage.Size = New System.Drawing.Size(175, 16)
Me.lblMessage.TabIndex = 0
Me.lblMessage.Text = "メッセージが表示されます"
'
'ssProgress
'
Me.ssProgress.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.tspbProgressRate, Me.tsslStatus})
Me.ssProgress.Location = New System.Drawing.Point(0, 59)
Me.ssProgress.Name = "ssProgress"
Me.ssProgress.Size = New System.Drawing.Size(452, 22)
Me.ssProgress.TabIndex = 1
Me.ssProgress.Text = "StatusStrip1"
'
'tspbProgressRate
'
Me.tspbProgressRate.Name = "tspbProgressRate"
Me.tspbProgressRate.Size = New System.Drawing.Size(100, 16)
'
'tsslStatus
'
Me.tsslStatus.Name = "tsslStatus"
Me.tsslStatus.Size = New System.Drawing.Size(335, 17)
Me.tsslStatus.Spring = True
Me.tsslStatus.Text = "0%完了"
Me.tsslStatus.TextAlign = System.Drawing.ContentAlignment.MiddleRight
'
'ssDisplayFoloderFile
'
Me.ssDisplayFoloderFile.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.tsslProcessingFolderFile})
Me.ssDisplayFoloderFile.Location = New System.Drawing.Point(0, 37)
Me.ssDisplayFoloderFile.Name = "ssDisplayFoloderFile"
Me.ssDisplayFoloderFile.Size = New System.Drawing.Size(452, 22)
Me.ssDisplayFoloderFile.TabIndex = 3
Me.ssDisplayFoloderFile.Text = "StatusStrip1"
'
'tsslProcessingFolderFile
'
Me.tsslProcessingFolderFile.Name = "tsslProcessingFolderFile"
Me.tsslProcessingFolderFile.Size = New System.Drawing.Size(233, 17)
Me.tsslProcessingFolderFile.Text = "処理中のフォルダファイルが表示されます"
'
'frmWait
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 12.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.ClientSize = New System.Drawing.Size(452, 81)
Me.Controls.Add(Me.ssDisplayFoloderFile)
Me.Controls.Add(Me.ssProgress)
Me.Controls.Add(Me.lblMessage)
Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
Me.MinimumSize = New System.Drawing.Size(460, 100)
Me.Name = "frmWait"
Me.Opacity = 0R
Me.Text = "リスト作成中"
Me.ssProgress.ResumeLayout(False)
Me.ssProgress.PerformLayout()
Me.ssDisplayFoloderFile.ResumeLayout(False)
Me.ssDisplayFoloderFile.PerformLayout()
Me.ResumeLayout(False)
Me.PerformLayout()
End Sub
Friend WithEvents lblMessage As System.Windows.Forms.Label
Friend WithEvents ssProgress As System.Windows.Forms.StatusStrip
Friend WithEvents tspbProgressRate As System.Windows.Forms.ToolStripProgressBar
Friend WithEvents tsslStatus As System.Windows.Forms.ToolStripStatusLabel
Friend WithEvents ssDisplayFoloderFile As StatusStrip
Friend WithEvents tsslProcessingFolderFile As ToolStripStatusLabel
End Class