Winify – Blame information for rev 14

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 
2 namespace Winify
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.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
22 this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
23 this.settingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
24 this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
9 office 25 this.updateToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
3 office 26 this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
27 this.quitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
1 office 28 this.contextMenuStrip1.SuspendLayout();
29 this.SuspendLayout();
30 //
31 // notifyIcon1
32 //
33 this.notifyIcon1.ContextMenuStrip = this.contextMenuStrip1;
34 this.notifyIcon1.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon")));
3 office 35 this.notifyIcon1.Text = "Winify";
1 office 36 this.notifyIcon1.Visible = true;
37 //
38 // contextMenuStrip1
39 //
40 this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
41 this.settingsToolStripMenuItem,
42 this.toolStripSeparator1,
9 office 43 this.updateToolStripMenuItem,
1 office 44 this.aboutToolStripMenuItem,
45 this.quitToolStripMenuItem});
46 this.contextMenuStrip1.Name = "contextMenuStrip1";
9 office 47 this.contextMenuStrip1.Size = new System.Drawing.Size(181, 120);
1 office 48 //
49 // settingsToolStripMenuItem
50 //
51 this.settingsToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("settingsToolStripMenuItem.Image")));
52 this.settingsToolStripMenuItem.Name = "settingsToolStripMenuItem";
9 office 53 this.settingsToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
14 office 54 this.settingsToolStripMenuItem.Text = "Settings...";
1 office 55 this.settingsToolStripMenuItem.Click += new System.EventHandler(this.SettingsToolStripMenuItem_Click);
56 //
57 // toolStripSeparator1
58 //
59 this.toolStripSeparator1.Name = "toolStripSeparator1";
9 office 60 this.toolStripSeparator1.Size = new System.Drawing.Size(177, 6);
1 office 61 //
9 office 62 // updateToolStripMenuItem
63 //
64 this.updateToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("updateToolStripMenuItem.Image")));
65 this.updateToolStripMenuItem.Name = "updateToolStripMenuItem";
66 this.updateToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
67 this.updateToolStripMenuItem.Text = "Update...";
68 this.updateToolStripMenuItem.Click += new System.EventHandler(this.UpdateToolStripMenuItem_Click);
69 //
3 office 70 // aboutToolStripMenuItem
71 //
72 this.aboutToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("aboutToolStripMenuItem.Image")));
73 this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
9 office 74 this.aboutToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
3 office 75 this.aboutToolStripMenuItem.Text = "About";
76 this.aboutToolStripMenuItem.Click += new System.EventHandler(this.AboutToolStripMenuItem_Click);
77 //
78 // quitToolStripMenuItem
79 //
80 this.quitToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("quitToolStripMenuItem.Image")));
81 this.quitToolStripMenuItem.Name = "quitToolStripMenuItem";
9 office 82 this.quitToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
3 office 83 this.quitToolStripMenuItem.Text = "Quit";
84 this.quitToolStripMenuItem.Click += new System.EventHandler(this.QuitToolStripMenuItem_Click);
85 //
1 office 86 // Form1
87 //
88 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
89 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
90 this.ClientSize = new System.Drawing.Size(800, 450);
91 this.Name = "Form1";
92 this.Text = "Form1";
93 this.contextMenuStrip1.ResumeLayout(false);
94 this.ResumeLayout(false);
95  
96 }
97  
98 #endregion
99  
100 private System.Windows.Forms.NotifyIcon notifyIcon1;
101 private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
102 private System.Windows.Forms.ToolStripMenuItem settingsToolStripMenuItem;
103 private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
104 private System.Windows.Forms.ToolStripMenuItem aboutToolStripMenuItem;
105 private System.Windows.Forms.ToolStripMenuItem quitToolStripMenuItem;
9 office 106 private System.Windows.Forms.ToolStripMenuItem updateToolStripMenuItem;
1 office 107 }
108 }
109