-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathfrmCaptureCard.Designer.vb
More file actions
117 lines (113 loc) · 4.5 KB
/
Copy pathfrmCaptureCard.Designer.vb
File metadata and controls
117 lines (113 loc) · 4.5 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
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class frmCaptureCard
Inherits System.Windows.Forms.Form
'Form overrides dispose to clean up the component list.
<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
'Required by the Windows Form Designer
Private components As System.ComponentModel.IContainer
'NOTE: The following procedure is required by the Windows Form Designer
'It can be modified using the Windows Form Designer.
'Do not modify it using the code editor.
<System.Diagnostics.DebuggerStepThrough()> _
Private Sub InitializeComponent()
Me.cbDevice = New System.Windows.Forms.ComboBox()
Me.lblDevice = New System.Windows.Forms.Label()
Me.btnTest = New System.Windows.Forms.Button()
Me.pbTest = New System.Windows.Forms.PictureBox()
Me.btnOK = New System.Windows.Forms.Button()
Me.btnCancel = New System.Windows.Forms.Button()
CType(Me.pbTest, System.ComponentModel.ISupportInitialize).BeginInit()
Me.SuspendLayout()
'
'cbDevice
'
Me.cbDevice.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
Me.cbDevice.FormattingEnabled = True
Me.cbDevice.Location = New System.Drawing.Point(62, 13)
Me.cbDevice.Name = "cbDevice"
Me.cbDevice.Size = New System.Drawing.Size(352, 21)
Me.cbDevice.TabIndex = 0
'
'lblDevice
'
Me.lblDevice.AutoSize = True
Me.lblDevice.Location = New System.Drawing.Point(12, 16)
Me.lblDevice.Name = "lblDevice"
Me.lblDevice.Size = New System.Drawing.Size(44, 13)
Me.lblDevice.TabIndex = 1
Me.lblDevice.Text = "Device:"
'
'btnTest
'
Me.btnTest.Location = New System.Drawing.Point(420, 11)
Me.btnTest.Name = "btnTest"
Me.btnTest.Size = New System.Drawing.Size(75, 23)
Me.btnTest.TabIndex = 2
Me.btnTest.Text = "Test"
Me.btnTest.UseVisualStyleBackColor = True
'
'pbTest
'
Me.pbTest.Location = New System.Drawing.Point(15, 40)
Me.pbTest.Name = "pbTest"
Me.pbTest.Size = New System.Drawing.Size(480, 320)
Me.pbTest.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage
Me.pbTest.TabIndex = 3
Me.pbTest.TabStop = False
'
'btnOK
'
Me.btnOK.Location = New System.Drawing.Point(420, 366)
Me.btnOK.Name = "btnOK"
Me.btnOK.Size = New System.Drawing.Size(75, 23)
Me.btnOK.TabIndex = 4
Me.btnOK.Text = "OK"
Me.btnOK.UseVisualStyleBackColor = True
'
'btnCancel
'
Me.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel
Me.btnCancel.Location = New System.Drawing.Point(339, 366)
Me.btnCancel.Name = "btnCancel"
Me.btnCancel.Size = New System.Drawing.Size(75, 23)
Me.btnCancel.TabIndex = 5
Me.btnCancel.Text = "Cancel"
Me.btnCancel.UseVisualStyleBackColor = True
'
'frmCaptureCard
'
Me.AcceptButton = Me.btnOK
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.CancelButton = Me.btnCancel
Me.ClientSize = New System.Drawing.Size(510, 404)
Me.ControlBox = False
Me.Controls.Add(Me.btnCancel)
Me.Controls.Add(Me.btnOK)
Me.Controls.Add(Me.pbTest)
Me.Controls.Add(Me.btnTest)
Me.Controls.Add(Me.lblDevice)
Me.Controls.Add(Me.cbDevice)
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog
Me.Name = "frmCaptureCard"
Me.Text = "Select Capture Card"
CType(Me.pbTest, System.ComponentModel.ISupportInitialize).EndInit()
Me.ResumeLayout(False)
Me.PerformLayout()
End Sub
Friend WithEvents cbDevice As System.Windows.Forms.ComboBox
Friend WithEvents lblDevice As System.Windows.Forms.Label
Friend WithEvents btnTest As System.Windows.Forms.Button
Friend WithEvents pbTest As System.Windows.Forms.PictureBox
Friend WithEvents btnOK As System.Windows.Forms.Button
Friend WithEvents btnCancel As System.Windows.Forms.Button
End Class