-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNotificationIcon.Designer.cs
100 lines (94 loc) · 4.07 KB
/
NotificationIcon.Designer.cs
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
namespace FileSaver
{
partial class NotificationIcon
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if(disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Component Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.notifyIcon = new System.Windows.Forms.NotifyIcon(this.components);
this.contextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
this.configureMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.updateMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.displayMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator = new System.Windows.Forms.ToolStripSeparator();
this.exitMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.contextMenuStrip.SuspendLayout();
//
// notifyIcon
//
this.notifyIcon.ContextMenuStrip = this.contextMenuStrip;
this.notifyIcon.Visible = true;
this.notifyIcon.DoubleClick += new System.EventHandler(this.notifyIcon_DoubleClick);
//
// contextMenuStrip
//
this.contextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.configureMenuItem,
this.updateMenuItem,
this.displayMenuItem,
this.toolStripSeparator,
this.exitMenuItem});
this.contextMenuStrip.Name = "contextMenuStrip";
this.contextMenuStrip.Size = new System.Drawing.Size(195, 98);
//
// configureMenuItem
//
this.configureMenuItem.Name = "configureMenuItem";
this.configureMenuItem.Size = new System.Drawing.Size(194, 22);
this.configureMenuItem.Text = "&Configure...";
//
// updateMenuItem
//
this.updateMenuItem.Name = "updateMenuItem";
this.updateMenuItem.Size = new System.Drawing.Size(194, 22);
this.updateMenuItem.Text = "&Update Now";
//
// displayMenuItem
//
this.displayMenuItem.Name = "displayMenuItem";
this.displayMenuItem.Size = new System.Drawing.Size(194, 22);
this.displayMenuItem.Text = "&Display changed files...";
//
// toolStripSeparator
//
this.toolStripSeparator.Name = "toolStripSeparator";
this.toolStripSeparator.Size = new System.Drawing.Size(191, 6);
//
// exitMenuItem
//
this.exitMenuItem.Name = "exitMenuItem";
this.exitMenuItem.Size = new System.Drawing.Size(194, 22);
this.exitMenuItem.Text = "E&xit";
this.contextMenuStrip.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.NotifyIcon notifyIcon;
private System.Windows.Forms.ContextMenuStrip contextMenuStrip;
private System.Windows.Forms.ToolStripMenuItem configureMenuItem;
private System.Windows.Forms.ToolStripMenuItem updateMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator;
private System.Windows.Forms.ToolStripMenuItem exitMenuItem;
private System.Windows.Forms.ToolStripMenuItem displayMenuItem;
}
}