-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.Designer.vb
118 lines (113 loc) · 4.97 KB
/
Main.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
117
118
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()>
Partial Class Main
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.components = New System.ComponentModel.Container()
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(Main))
Me.WV = New Microsoft.Web.WebView2.WinForms.WebView2()
Me.Timer_Title = New System.Windows.Forms.Timer(Me.components)
Me.SystemTrayIcon = New System.Windows.Forms.NotifyIcon(Me.components)
Me.ContextMenu = New System.Windows.Forms.ContextMenuStrip(Me.components)
Me.ShowToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.RestartToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.ExitToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.Startup = New System.Windows.Forms.Timer(Me.components)
CType(Me.WV, System.ComponentModel.ISupportInitialize).BeginInit()
Me.ContextMenu.SuspendLayout()
Me.SuspendLayout()
'
'WV
'
Me.WV.AllowExternalDrop = True
Me.WV.CreationProperties = Nothing
Me.WV.DefaultBackgroundColor = System.Drawing.Color.White
Me.WV.Dock = System.Windows.Forms.DockStyle.Fill
Me.WV.Location = New System.Drawing.Point(0, 0)
Me.WV.Name = "WV"
Me.WV.Size = New System.Drawing.Size(819, 482)
Me.WV.Source = New System.Uri("https://app.clickup.com/", System.UriKind.Absolute)
Me.WV.TabIndex = 0
Me.WV.ZoomFactor = 1.0R
'
'Timer_Title
'
Me.Timer_Title.Interval = 1000
'
'SystemTrayIcon
'
Me.SystemTrayIcon.ContextMenuStrip = Me.ContextMenu
Me.SystemTrayIcon.Icon = CType(resources.GetObject("SystemTrayIcon.Icon"), System.Drawing.Icon)
Me.SystemTrayIcon.Text = "ClickUp (Press Alt+Esc to show)"
Me.SystemTrayIcon.Visible = True
'
'ContextMenu
'
Me.ContextMenu.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.ShowToolStripMenuItem, Me.RestartToolStripMenuItem, Me.ExitToolStripMenuItem})
Me.ContextMenu.Name = "ContextMenu"
Me.ContextMenu.Size = New System.Drawing.Size(111, 70)
'
'ShowToolStripMenuItem
'
Me.ShowToolStripMenuItem.Name = "ShowToolStripMenuItem"
Me.ShowToolStripMenuItem.Size = New System.Drawing.Size(110, 22)
Me.ShowToolStripMenuItem.Text = "Show"
'
'RestartToolStripMenuItem
'
Me.RestartToolStripMenuItem.Name = "RestartToolStripMenuItem"
Me.RestartToolStripMenuItem.Size = New System.Drawing.Size(110, 22)
Me.RestartToolStripMenuItem.Text = "Restart"
'
'ExitToolStripMenuItem
'
Me.ExitToolStripMenuItem.Name = "ExitToolStripMenuItem"
Me.ExitToolStripMenuItem.Size = New System.Drawing.Size(110, 22)
Me.ExitToolStripMenuItem.Text = "Exit"
'
'Startup
'
Me.Startup.Enabled = True
'
'Main
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.ClientSize = New System.Drawing.Size(819, 482)
Me.Controls.Add(Me.WV)
Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
Me.KeyPreview = True
Me.Name = "Main"
Me.Opacity = 0R
Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
Me.Text = "ClickUp"
Me.WindowState = System.Windows.Forms.FormWindowState.Maximized
CType(Me.WV, System.ComponentModel.ISupportInitialize).EndInit()
Me.ContextMenu.ResumeLayout(False)
Me.ResumeLayout(False)
End Sub
Friend WithEvents WV As Microsoft.Web.WebView2.WinForms.WebView2
Friend WithEvents Timer_Title As Timer
Friend WithEvents SystemTrayIcon As NotifyIcon
Friend Shadows WithEvents ContextMenu As ContextMenuStrip
Friend WithEvents ShowToolStripMenuItem As ToolStripMenuItem
Friend WithEvents ExitToolStripMenuItem As ToolStripMenuItem
Friend WithEvents Startup As Timer
Friend WithEvents RestartToolStripMenuItem As ToolStripMenuItem
End Class