Winify – Blame information for rev 43

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 
2 namespace Winify
3 {
30 office 4 partial class MainForm
1 office 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();
30 office 20 System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
1 office 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();
43 office 28 this.logViewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
29 this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
1 office 30 this.contextMenuStrip1.SuspendLayout();
31 this.SuspendLayout();
32 //
33 // notifyIcon1
34 //
35 this.notifyIcon1.ContextMenuStrip = this.contextMenuStrip1;
36 this.notifyIcon1.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon")));
3 office 37 this.notifyIcon1.Text = "Winify";
1 office 38 this.notifyIcon1.Visible = true;
39 //
40 // contextMenuStrip1
41 //
42 this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
43 this.settingsToolStripMenuItem,
44 this.toolStripSeparator1,
43 office 45 this.logViewToolStripMenuItem,
9 office 46 this.updateToolStripMenuItem,
43 office 47 this.toolStripSeparator2,
1 office 48 this.aboutToolStripMenuItem,
49 this.quitToolStripMenuItem});
50 this.contextMenuStrip1.Name = "contextMenuStrip1";
43 office 51 this.contextMenuStrip1.Size = new System.Drawing.Size(181, 148);
1 office 52 //
53 // settingsToolStripMenuItem
54 //
55 this.settingsToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("settingsToolStripMenuItem.Image")));
56 this.settingsToolStripMenuItem.Name = "settingsToolStripMenuItem";
43 office 57 this.settingsToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
14 office 58 this.settingsToolStripMenuItem.Text = "Settings...";
1 office 59 this.settingsToolStripMenuItem.Click += new System.EventHandler(this.SettingsToolStripMenuItem_Click);
60 //
61 // toolStripSeparator1
62 //
63 this.toolStripSeparator1.Name = "toolStripSeparator1";
9 office 64 this.toolStripSeparator1.Size = new System.Drawing.Size(177, 6);
1 office 65 //
9 office 66 // updateToolStripMenuItem
67 //
68 this.updateToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("updateToolStripMenuItem.Image")));
69 this.updateToolStripMenuItem.Name = "updateToolStripMenuItem";
70 this.updateToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
71 this.updateToolStripMenuItem.Text = "Update...";
72 this.updateToolStripMenuItem.Click += new System.EventHandler(this.UpdateToolStripMenuItem_Click);
73 //
3 office 74 // aboutToolStripMenuItem
75 //
76 this.aboutToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("aboutToolStripMenuItem.Image")));
77 this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
9 office 78 this.aboutToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
3 office 79 this.aboutToolStripMenuItem.Text = "About";
80 this.aboutToolStripMenuItem.Click += new System.EventHandler(this.AboutToolStripMenuItem_Click);
81 //
82 // quitToolStripMenuItem
83 //
84 this.quitToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("quitToolStripMenuItem.Image")));
85 this.quitToolStripMenuItem.Name = "quitToolStripMenuItem";
9 office 86 this.quitToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
3 office 87 this.quitToolStripMenuItem.Text = "Quit";
88 this.quitToolStripMenuItem.Click += new System.EventHandler(this.QuitToolStripMenuItem_Click);
89 //
43 office 90 // logViewToolStripMenuItem
91 //
92 this.logViewToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("logViewToolStripMenuItem.Image")));
93 this.logViewToolStripMenuItem.Name = "logViewToolStripMenuItem";
94 this.logViewToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
95 this.logViewToolStripMenuItem.Text = "Log View...";
96 this.logViewToolStripMenuItem.Click += new System.EventHandler(this.LogViewToolStripMenuItem_Click);
97 //
98 // toolStripSeparator2
99 //
100 this.toolStripSeparator2.Name = "toolStripSeparator2";
101 this.toolStripSeparator2.Size = new System.Drawing.Size(177, 6);
102 //
30 office 103 // MainForm
1 office 104 //
105 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
106 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
107 this.ClientSize = new System.Drawing.Size(800, 450);
30 office 108 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
109 this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
110 this.Name = "MainForm";
111 this.Opacity = 0D;
112 this.ShowIcon = false;
113 this.ShowInTaskbar = false;
114 this.Text = "Winify: Main";
115 this.WindowState = System.Windows.Forms.FormWindowState.Minimized;
116 this.Load += new System.EventHandler(this.MainForm_Load);
1 office 117 this.contextMenuStrip1.ResumeLayout(false);
118 this.ResumeLayout(false);
119  
120 }
121  
122 #endregion
123  
124 private System.Windows.Forms.NotifyIcon notifyIcon1;
125 private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
126 private System.Windows.Forms.ToolStripMenuItem settingsToolStripMenuItem;
127 private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
128 private System.Windows.Forms.ToolStripMenuItem aboutToolStripMenuItem;
129 private System.Windows.Forms.ToolStripMenuItem quitToolStripMenuItem;
9 office 130 private System.Windows.Forms.ToolStripMenuItem updateToolStripMenuItem;
43 office 131 private System.Windows.Forms.ToolStripMenuItem logViewToolStripMenuItem;
132 private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
1 office 133 }
134 }
135