Inertia – Blame information for rev 4

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 
2 namespace Inertia
3 {
4 partial class Form1
5 {
6 /// <summary>
7 /// Required designer variable.
8 /// </summary>
9 private System.ComponentModel.IContainer components = null;
10  
11 #region Windows Form Designer generated code
12  
13 /// <summary>
14 /// Required method for Designer support - do not modify
15 /// the contents of this method with the code editor.
16 /// </summary>
17 private void InitializeComponent()
18 {
19 this.components = new System.ComponentModel.Container();
20 System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
21 this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
4 office 22 this.settingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
23 this.launchOnBootToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
24 this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
1 office 25 this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
26 this.quitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
2 office 27 this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
1 office 28 this.contextMenuStrip1.SuspendLayout();
29 this.SuspendLayout();
30 //
31 // contextMenuStrip1
32 //
33 this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
2 office 34 this.settingsToolStripMenuItem,
35 this.toolStripSeparator1,
1 office 36 this.aboutToolStripMenuItem,
37 this.quitToolStripMenuItem});
38 this.contextMenuStrip1.Name = "contextMenuStrip1";
2 office 39 this.contextMenuStrip1.Size = new System.Drawing.Size(181, 98);
1 office 40 //
4 office 41 // settingsToolStripMenuItem
42 //
43 this.settingsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
44 this.launchOnBootToolStripMenuItem});
45 this.settingsToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("settingsToolStripMenuItem.Image")));
46 this.settingsToolStripMenuItem.Name = "settingsToolStripMenuItem";
47 this.settingsToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
48 this.settingsToolStripMenuItem.Text = "Settings";
49 //
50 // launchOnBootToolStripMenuItem
51 //
52 this.launchOnBootToolStripMenuItem.Checked = global::Inertia.Properties.Settings.Default.LaunchOnBoot;
53 this.launchOnBootToolStripMenuItem.CheckOnClick = true;
54 this.launchOnBootToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("launchOnBootToolStripMenuItem.Image")));
55 this.launchOnBootToolStripMenuItem.Name = "launchOnBootToolStripMenuItem";
56 this.launchOnBootToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
57 this.launchOnBootToolStripMenuItem.Text = "Launch On Boot";
58 this.launchOnBootToolStripMenuItem.Click += new System.EventHandler(this.LaunchOnBootToolStripMenuItem_Click);
59 //
60 // toolStripSeparator1
61 //
62 this.toolStripSeparator1.Name = "toolStripSeparator1";
63 this.toolStripSeparator1.Size = new System.Drawing.Size(177, 6);
64 //
1 office 65 // aboutToolStripMenuItem
66 //
67 this.aboutToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("aboutToolStripMenuItem.Image")));
68 this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
69 this.aboutToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
70 this.aboutToolStripMenuItem.Text = "About";
71 this.aboutToolStripMenuItem.Click += new System.EventHandler(this.AboutToolStripMenuItem_Click);
72 //
73 // quitToolStripMenuItem
74 //
75 this.quitToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("quitToolStripMenuItem.Image")));
76 this.quitToolStripMenuItem.Name = "quitToolStripMenuItem";
77 this.quitToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
78 this.quitToolStripMenuItem.Text = "Quit";
79 this.quitToolStripMenuItem.Click += new System.EventHandler(this.QuitToolStripMenuItem_Click);
80 //
2 office 81 // notifyIcon1
82 //
83 this.notifyIcon1.ContextMenuStrip = this.contextMenuStrip1;
84 this.notifyIcon1.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon")));
85 this.notifyIcon1.Text = "Inertia";
86 this.notifyIcon1.Visible = true;
87 //
1 office 88 // Form1
89 //
90 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
91 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
92 this.ClientSize = new System.Drawing.Size(800, 450);
93 this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
94 this.Name = "Form1";
95 this.Text = "Form1";
96 this.contextMenuStrip1.ResumeLayout(false);
97 this.ResumeLayout(false);
98  
99 }
100  
101 #endregion
102  
103 private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
104 private System.Windows.Forms.NotifyIcon notifyIcon1;
105 private System.Windows.Forms.ToolStripMenuItem aboutToolStripMenuItem;
106 private System.Windows.Forms.ToolStripMenuItem quitToolStripMenuItem;
2 office 107 private System.Windows.Forms.ToolStripMenuItem settingsToolStripMenuItem;
108 private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
109 private System.Windows.Forms.ToolStripMenuItem launchOnBootToolStripMenuItem;
1 office 110 }
111 }
112