-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathForm3.Designer.vb
More file actions
113 lines (109 loc) · 3.55 KB
/
Form3.Designer.vb
File metadata and controls
113 lines (109 loc) · 3.55 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
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class Dashboard
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()
Button1 = New Button()
Button2 = New Button()
Button3 = New Button()
Label1 = New Label()
Order_Details = New Button()
Button4 = New Button()
SuspendLayout()
'
' Button1
'
Button1.Location = New Point(66, 193)
Button1.Name = "Button1"
Button1.Size = New Size(113, 56)
Button1.TabIndex = 0
Button1.Text = "Shoe"
Button1.UseVisualStyleBackColor = True
'
' Button2
'
Button2.Location = New Point(246, 193)
Button2.Name = "Button2"
Button2.Size = New Size(119, 56)
Button2.TabIndex = 1
Button2.Text = "customer"
Button2.UseVisualStyleBackColor = True
'
' Button3
'
Button3.Location = New Point(423, 193)
Button3.Name = "Button3"
Button3.Size = New Size(134, 56)
Button3.TabIndex = 2
Button3.Text = "customization"
Button3.UseVisualStyleBackColor = True
'
' Label1
'
Label1.AutoSize = True
Label1.BackColor = SystemColors.ActiveBorder
Label1.Font = New Font("Segoe UI", 16F)
Label1.Location = New Point(312, 54)
Label1.Name = "Label1"
Label1.Size = New Size(171, 37)
Label1.TabIndex = 3
Label1.Text = "DASHBOARD"
'
' Order_Details
'
Order_Details.Location = New Point(620, 193)
Order_Details.Name = "Order_Details"
Order_Details.Size = New Size(107, 56)
Order_Details.TabIndex = 4
Order_Details.Text = "Order Details"
Order_Details.UseVisualStyleBackColor = True
'
' Button4
'
Button4.Location = New Point(352, 347)
Button4.Name = "Button4"
Button4.Size = New Size(94, 29)
Button4.TabIndex = 5
Button4.Text = "EXIT"
Button4.UseVisualStyleBackColor = True
'
' Dashboard
'
AutoScaleDimensions = New SizeF(8F, 20F)
AutoScaleMode = AutoScaleMode.Font
BackColor = SystemColors.ActiveCaption
ClientSize = New Size(800, 450)
Controls.Add(Button4)
Controls.Add(Order_Details)
Controls.Add(Label1)
Controls.Add(Button3)
Controls.Add(Button2)
Controls.Add(Button1)
Name = "Dashboard"
Text = "Dashboard"
ResumeLayout(False)
PerformLayout()
End Sub
Friend WithEvents Button1 As Button
Friend WithEvents Button2 As Button
Friend WithEvents Button3 As Button
Friend WithEvents Label1 As Label
Friend WithEvents Order_Details As Button
Friend WithEvents Button4 As Button
End Class