-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPhising.designer.vb
116 lines (112 loc) · 4.94 KB
/
Phising.designer.vb
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
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class Phising
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)
If disposing AndAlso components IsNot Nothing Then
components.Dispose()
End If
MyBase.Dispose(disposing)
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()
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(Phising))
Me.btnBack = New System.Windows.Forms.Button()
Me.btnIgnore = New System.Windows.Forms.Button()
Me.lbPhishing = New System.Windows.Forms.ListBox()
Me.PictureBox1 = New System.Windows.Forms.PictureBox()
Me.Panel1 = New System.Windows.Forms.Panel()
Me.Label1 = New System.Windows.Forms.Label()
CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).BeginInit()
Me.Panel1.SuspendLayout()
Me.SuspendLayout()
'
'btnBack
'
Me.btnBack.Location = New System.Drawing.Point(287, 3)
Me.btnBack.Name = "btnBack"
Me.btnBack.Size = New System.Drawing.Size(75, 23)
Me.btnBack.TabIndex = 0
Me.btnBack.Text = "Back"
Me.btnBack.UseVisualStyleBackColor = True
'
'btnIgnore
'
Me.btnIgnore.Location = New System.Drawing.Point(153, 3)
Me.btnIgnore.Name = "btnIgnore"
Me.btnIgnore.Size = New System.Drawing.Size(128, 23)
Me.btnIgnore.TabIndex = 1
Me.btnIgnore.Text = "Ignore and continue"
Me.btnIgnore.UseVisualStyleBackColor = True
'
'lbPhishing
'
Me.lbPhishing.FormattingEnabled = True
Me.lbPhishing.Location = New System.Drawing.Point(66, 31)
Me.lbPhishing.Name = "lbPhishing"
Me.lbPhishing.Size = New System.Drawing.Size(296, 121)
Me.lbPhishing.TabIndex = 2
'
'PictureBox1
'
Me.PictureBox1.Location = New System.Drawing.Point(12, 31)
Me.PictureBox1.Name = "PictureBox1"
Me.PictureBox1.Size = New System.Drawing.Size(48, 48)
Me.PictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize
Me.PictureBox1.TabIndex = 3
Me.PictureBox1.TabStop = False
'
'Panel1
'
Me.Panel1.Controls.Add(Me.btnBack)
Me.Panel1.Controls.Add(Me.btnIgnore)
Me.Panel1.Dock = System.Windows.Forms.DockStyle.Bottom
Me.Panel1.Location = New System.Drawing.Point(0, 161)
Me.Panel1.Name = "Panel1"
Me.Panel1.Size = New System.Drawing.Size(375, 34)
Me.Panel1.TabIndex = 4
'
'Label1
'
Me.Label1.Font = New System.Drawing.Font("Tahoma", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Label1.Location = New System.Drawing.Point(12, 9)
Me.Label1.Name = "Label1"
Me.Label1.Size = New System.Drawing.Size(350, 19)
Me.Label1.TabIndex = 6
Me.Label1.Text = "Phishing Filter has detected potentially harmful content."
'
'Phising
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.ClientSize = New System.Drawing.Size(375, 195)
Me.Controls.Add(Me.Label1)
Me.Controls.Add(Me.Panel1)
Me.Controls.Add(Me.PictureBox1)
Me.Controls.Add(Me.lbPhishing)
Me.Font = New System.Drawing.Font("Tahoma", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle
Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
Me.MaximizeBox = False
Me.MinimizeBox = False
Me.Name = "Phising"
Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
Me.Text = "Phising Warning"
CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).EndInit()
Me.Panel1.ResumeLayout(False)
Me.ResumeLayout(False)
Me.PerformLayout()
End Sub
Friend WithEvents btnBack As System.Windows.Forms.Button
Friend WithEvents btnIgnore As System.Windows.Forms.Button
Friend WithEvents lbPhishing As System.Windows.Forms.ListBox
Friend WithEvents PictureBox1 As System.Windows.Forms.PictureBox
Friend WithEvents Panel1 As System.Windows.Forms.Panel
Friend WithEvents Label1 As System.Windows.Forms.Label
End Class