-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathUserSelector.Designer.vb
More file actions
88 lines (83 loc) · 3.48 KB
/
UserSelector.Designer.vb
File metadata and controls
88 lines (83 loc) · 3.48 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
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class UserSelector
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 LabelUser As System.Windows.Forms.Label
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(UserSelector))
Me.ComboBoxUser = New System.Windows.Forms.ComboBox()
Me.ButtonOK = New System.Windows.Forms.Button()
Me.ButtonCancel = New System.Windows.Forms.Button()
Me.LabelLoading = New System.Windows.Forms.Label()
LabelUser = New System.Windows.Forms.Label()
Me.SuspendLayout()
'
'LabelUser
'
resources.ApplyResources(LabelUser, "LabelUser")
LabelUser.Name = "LabelUser"
'
'ComboBoxUser
'
Me.ComboBoxUser.FormattingEnabled = True
resources.ApplyResources(Me.ComboBoxUser, "ComboBoxUser")
Me.ComboBoxUser.Name = "ComboBoxUser"
'
'ButtonOK
'
Me.ButtonOK.DialogResult = System.Windows.Forms.DialogResult.OK
resources.ApplyResources(Me.ButtonOK, "ButtonOK")
Me.ButtonOK.Name = "ButtonOK"
Me.ButtonOK.UseVisualStyleBackColor = True
'
'ButtonCancel
'
Me.ButtonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel
resources.ApplyResources(Me.ButtonCancel, "ButtonCancel")
Me.ButtonCancel.Name = "ButtonCancel"
Me.ButtonCancel.UseVisualStyleBackColor = True
'
'LabelLoading
'
resources.ApplyResources(Me.LabelLoading, "LabelLoading")
Me.LabelLoading.Name = "LabelLoading"
'
'UserSelector
'
Me.AcceptButton = Me.ButtonOK
resources.ApplyResources(Me, "$this")
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi
Me.CancelButton = Me.ButtonCancel
Me.Controls.Add(LabelUser)
Me.Controls.Add(Me.LabelLoading)
Me.Controls.Add(Me.ComboBoxUser)
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 = "UserSelector"
Me.ResumeLayout(False)
Me.PerformLayout()
End Sub
Friend WithEvents ComboBoxUser As ComboBox
Friend WithEvents ButtonOK As Button
Friend WithEvents ButtonCancel As Button
Friend WithEvents LabelLoading As Label
End Class