Winify – Blame information for rev 30

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();
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";
30 office 47 this.contextMenuStrip1.Size = new System.Drawing.Size(126, 98);
1 office 48 //
49 // settingsToolStripMenuItem
50 //
51 this.settingsToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("settingsToolStripMenuItem.Image")));
52 this.settingsToolStripMenuItem.Name = "settingsToolStripMenuItem";
30 office 53 this.settingsToolStripMenuItem.Size = new System.Drawing.Size(125, 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 //
30 office 86 // MainForm
1 office 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);
30 office 91 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
92 this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
93 this.Name = "MainForm";
94 this.Opacity = 0D;
95 this.ShowIcon = false;
96 this.ShowInTaskbar = false;
97 this.Text = "Winify: Main";
98 this.WindowState = System.Windows.Forms.FormWindowState.Minimized;
99 this.Load += new System.EventHandler(this.MainForm_Load);
1 office 100 this.contextMenuStrip1.ResumeLayout(false);
101 this.ResumeLayout(false);
102  
103 }
104  
105 #endregion
106  
107 private System.Windows.Forms.NotifyIcon notifyIcon1;
108 private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
109 private System.Windows.Forms.ToolStripMenuItem settingsToolStripMenuItem;
110 private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
111 private System.Windows.Forms.ToolStripMenuItem aboutToolStripMenuItem;
112 private System.Windows.Forms.ToolStripMenuItem quitToolStripMenuItem;
9 office 113 private System.Windows.Forms.ToolStripMenuItem updateToolStripMenuItem;
1 office 114 }
115 }
116