-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathImportDistributionInPlace.Designer.vb
110 lines (105 loc) · 4.67 KB
/
ImportDistributionInPlace.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 ImportDistributionInPlace
Inherits System.Windows.Forms.Form
'フォームがコンポーネントの一覧をクリーンアップするために 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 LabelFileName As System.Windows.Forms.Label
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(ImportDistributionInPlace))
Dim LabelDistributionName As System.Windows.Forms.Label
Me.TextBoxProgress = New System.Windows.Forms.TextBox()
Me.TextBoxFileName = New System.Windows.Forms.TextBox()
Me.ButtonOpenFileName = New System.Windows.Forms.Button()
Me.TextBoxDistributionName = New System.Windows.Forms.TextBox()
Me.ButtonDoImport = New System.Windows.Forms.Button()
Me.ButtonCancel = New System.Windows.Forms.Button()
LabelFileName = New System.Windows.Forms.Label()
LabelDistributionName = New System.Windows.Forms.Label()
Me.SuspendLayout()
'
'LabelFileName
'
resources.ApplyResources(LabelFileName, "LabelFileName")
LabelFileName.Name = "LabelFileName"
'
'LabelDistributionName
'
resources.ApplyResources(LabelDistributionName, "LabelDistributionName")
LabelDistributionName.Name = "LabelDistributionName"
'
'TextBoxProgress
'
Me.TextBoxProgress.BorderStyle = System.Windows.Forms.BorderStyle.None
resources.ApplyResources(Me.TextBoxProgress, "TextBoxProgress")
Me.TextBoxProgress.Name = "TextBoxProgress"
Me.TextBoxProgress.ReadOnly = True
'
'TextBoxFileName
'
resources.ApplyResources(Me.TextBoxFileName, "TextBoxFileName")
Me.TextBoxFileName.Name = "TextBoxFileName"
'
'ButtonOpenFileName
'
resources.ApplyResources(Me.ButtonOpenFileName, "ButtonOpenFileName")
Me.ButtonOpenFileName.Name = "ButtonOpenFileName"
Me.ButtonOpenFileName.UseVisualStyleBackColor = True
'
'TextBoxDistributionName
'
resources.ApplyResources(Me.TextBoxDistributionName, "TextBoxDistributionName")
Me.TextBoxDistributionName.Name = "TextBoxDistributionName"
'
'ButtonDoImport
'
resources.ApplyResources(Me.ButtonDoImport, "ButtonDoImport")
Me.ButtonDoImport.Name = "ButtonDoImport"
Me.ButtonDoImport.UseVisualStyleBackColor = True
'
'ButtonCancel
'
resources.ApplyResources(Me.ButtonCancel, "ButtonCancel")
Me.ButtonCancel.Name = "ButtonCancel"
Me.ButtonCancel.UseVisualStyleBackColor = True
'
'ImportDistributionInPlace
'
resources.ApplyResources(Me, "$this")
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi
Me.Controls.Add(Me.TextBoxProgress)
Me.Controls.Add(LabelFileName)
Me.Controls.Add(Me.TextBoxFileName)
Me.Controls.Add(Me.ButtonOpenFileName)
Me.Controls.Add(LabelDistributionName)
Me.Controls.Add(Me.TextBoxDistributionName)
Me.Controls.Add(Me.ButtonDoImport)
Me.Controls.Add(Me.ButtonCancel)
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog
Me.MaximizeBox = False
Me.MinimizeBox = False
Me.Name = "ImportDistributionInPlace"
Me.ResumeLayout(False)
Me.PerformLayout()
End Sub
Friend WithEvents TextBoxProgress As TextBox
Friend WithEvents TextBoxFileName As TextBox
Friend WithEvents ButtonOpenFileName As Button
Friend WithEvents TextBoxDistributionName As TextBox
Friend WithEvents ButtonDoImport As Button
Friend WithEvents ButtonCancel As Button
End Class