-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathExportDistribution.Designer.vb
More file actions
129 lines (124 loc) · 5.46 KB
/
ExportDistribution.Designer.vb
File metadata and controls
129 lines (124 loc) · 5.46 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class ExportDistribution
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 LabelDistribution As System.Windows.Forms.Label
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(ExportDistribution))
Dim LabelExportTo As System.Windows.Forms.Label
Dim LabelExportVhdxNotice As System.Windows.Forms.Label
Me.LabelDistributionName = New System.Windows.Forms.Label()
Me.TextBoxExportTo = New System.Windows.Forms.TextBox()
Me.ButtonChangeExportTo = New System.Windows.Forms.Button()
Me.ButtonOK = New System.Windows.Forms.Button()
Me.ButtonCancel = New System.Windows.Forms.Button()
Me.CheckBoxExportAsVhdx = New System.Windows.Forms.CheckBox()
Me.ButtonShutdownWSL = New System.Windows.Forms.Button()
LabelDistribution = New System.Windows.Forms.Label()
LabelExportTo = New System.Windows.Forms.Label()
LabelExportVhdxNotice = New System.Windows.Forms.Label()
Me.SuspendLayout()
'
'LabelDistribution
'
resources.ApplyResources(LabelDistribution, "LabelDistribution")
LabelDistribution.Name = "LabelDistribution"
'
'LabelExportTo
'
resources.ApplyResources(LabelExportTo, "LabelExportTo")
LabelExportTo.Name = "LabelExportTo"
'
'LabelExportVhdxNotice
'
resources.ApplyResources(LabelExportVhdxNotice, "LabelExportVhdxNotice")
LabelExportVhdxNotice.Name = "LabelExportVhdxNotice"
'
'LabelDistributionName
'
resources.ApplyResources(Me.LabelDistributionName, "LabelDistributionName")
Me.LabelDistributionName.Name = "LabelDistributionName"
'
'TextBoxExportTo
'
resources.ApplyResources(Me.TextBoxExportTo, "TextBoxExportTo")
Me.TextBoxExportTo.Name = "TextBoxExportTo"
'
'ButtonChangeExportTo
'
resources.ApplyResources(Me.ButtonChangeExportTo, "ButtonChangeExportTo")
Me.ButtonChangeExportTo.Name = "ButtonChangeExportTo"
Me.ButtonChangeExportTo.UseVisualStyleBackColor = True
'
'ButtonOK
'
Me.ButtonOK.DialogResult = System.Windows.Forms.DialogResult.OK
resources.ApplyResources(Me.ButtonOK, "ButtonOK")
Me.ButtonOK.Name = "ButtonOK"
Me.ButtonOK.UseVisualStyleBackColor = True
'
'ButtonCancel
'
resources.ApplyResources(Me.ButtonCancel, "ButtonCancel")
Me.ButtonCancel.Name = "ButtonCancel"
Me.ButtonCancel.UseVisualStyleBackColor = True
'
'CheckBoxExportAsVhdx
'
resources.ApplyResources(Me.CheckBoxExportAsVhdx, "CheckBoxExportAsVhdx")
Me.CheckBoxExportAsVhdx.Name = "CheckBoxExportAsVhdx"
Me.CheckBoxExportAsVhdx.UseVisualStyleBackColor = True
'
'ButtonShutdownWSL
'
resources.ApplyResources(Me.ButtonShutdownWSL, "ButtonShutdownWSL")
Me.ButtonShutdownWSL.Name = "ButtonShutdownWSL"
Me.ButtonShutdownWSL.UseVisualStyleBackColor = True
'
'ExportDistribution
'
Me.AcceptButton = Me.ButtonOK
resources.ApplyResources(Me, "$this")
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi
Me.CancelButton = Me.ButtonCancel
Me.Controls.Add(LabelDistribution)
Me.Controls.Add(Me.LabelDistributionName)
Me.Controls.Add(LabelExportTo)
Me.Controls.Add(Me.TextBoxExportTo)
Me.Controls.Add(Me.ButtonChangeExportTo)
Me.Controls.Add(Me.CheckBoxExportAsVhdx)
Me.Controls.Add(LabelExportVhdxNotice)
Me.Controls.Add(Me.ButtonShutdownWSL)
Me.Controls.Add(Me.ButtonOK)
Me.Controls.Add(Me.ButtonCancel)
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog
Me.MaximizeBox = False
Me.MinimizeBox = False
Me.Name = "ExportDistribution"
Me.ResumeLayout(False)
Me.PerformLayout()
End Sub
Friend WithEvents LabelDistributionName As Label
Friend WithEvents TextBoxExportTo As TextBox
Friend WithEvents ButtonChangeExportTo As Button
Friend WithEvents ButtonOK As Button
Friend WithEvents ButtonCancel As Button
Friend WithEvents CheckBoxExportAsVhdx As CheckBox
Friend WithEvents ButtonShutdownWSL As Button
End Class