-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDeleteNotePrompt.Designer.vb
More file actions
76 lines (72 loc) · 2.27 KB
/
DeleteNotePrompt.Designer.vb
File metadata and controls
76 lines (72 loc) · 2.27 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
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class DeleteNotePrompt
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()
Yes = New Button()
No = New Button()
Label1 = New Label()
SuspendLayout()
'
' Yes
'
Yes.Location = New Point(5, 57)
Yes.Name = "Yes"
Yes.Size = New Size(75, 23)
Yes.TabIndex = 0
Yes.TabStop = False
Yes.Text = "Yes"
Yes.UseVisualStyleBackColor = True
'
' No
'
No.Location = New Point(89, 57)
No.Name = "No"
No.Size = New Size(75, 23)
No.TabIndex = 1
No.Text = "No"
No.UseVisualStyleBackColor = True
'
' Label1
'
Label1.AutoSize = True
Label1.Font = New Font("Segoe UI", 15.75F, FontStyle.Regular, GraphicsUnit.Point)
Label1.Location = New Point(5, 9)
Label1.Name = "Label1"
Label1.Size = New Size(82, 30)
Label1.TabIndex = 2
Label1.Text = "Delete?"
'
' DeleteNotePrompt
'
AutoScaleDimensions = New SizeF(7F, 15F)
AutoScaleMode = AutoScaleMode.Font
ClientSize = New Size(176, 90)
Controls.Add(Label1)
Controls.Add(No)
Controls.Add(Yes)
Name = "DeleteNotePrompt"
Text = "Delete Note"
ResumeLayout(False)
PerformLayout()
End Sub
Friend WithEvents Yes As Button
Friend WithEvents No As Button
Friend WithEvents Label1 As Label
End Class