X-Aim – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 namespace X_Aim
2 {
3 partial class Form1
4 {
5 /// <summary>
6 /// Required designer variable.
7 /// </summary>
8 private System.ComponentModel.IContainer components = null;
9  
10 /// <summary>
11 /// Clean up any resources being used.
12 /// </summary>
13 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14 protected override void Dispose(bool disposing)
15 {
16 if (disposing && (components != null))
17 {
18 components.Dispose();
19 }
20 base.Dispose(disposing);
21 }
22  
23 #region Windows Form Designer generated code
24  
25 /// <summary>
26 /// Required method for Designer support - do not modify
27 /// the contents of this method with the code editor.
28 /// </summary>
29 private void InitializeComponent()
30 {
31 this.components = new System.ComponentModel.Container();
32 System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
33 this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
34 this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
35 this.quitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
36 this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
37 this.contextMenuStrip1.SuspendLayout();
38 this.SuspendLayout();
39 //
40 // notifyIcon1
41 //
42 this.notifyIcon1.ContextMenuStrip = this.contextMenuStrip1;
43 this.notifyIcon1.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon")));
44 this.notifyIcon1.Text = "X-Aim";
45 this.notifyIcon1.Visible = true;
46 //
47 // contextMenuStrip1
48 //
49 this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
50 this.aboutToolStripMenuItem,
51 this.quitToolStripMenuItem});
52 this.contextMenuStrip1.Name = "contextMenuStrip1";
53 this.contextMenuStrip1.Size = new System.Drawing.Size(144, 48);
54 //
55 // quitToolStripMenuItem
56 //
57 this.quitToolStripMenuItem.Image = global::X_Aim.Properties.Resources.quit;
58 this.quitToolStripMenuItem.Name = "quitToolStripMenuItem";
59 this.quitToolStripMenuItem.Size = new System.Drawing.Size(143, 22);
60 this.quitToolStripMenuItem.Text = "Quit";
61 this.quitToolStripMenuItem.Click += new System.EventHandler(this.quitToolStripMenuItem_Click);
62 //
63 // aboutToolStripMenuItem
64 //
65 this.aboutToolStripMenuItem.Image = global::X_Aim.Properties.Resources.help;
66 this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
67 this.aboutToolStripMenuItem.Size = new System.Drawing.Size(143, 22);
68 this.aboutToolStripMenuItem.Text = "Help / About";
69 this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click);
70 //
71 // Form1
72 //
73 this.AllowDrop = true;
74 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
75 this.BackColor = System.Drawing.Color.White;
76 this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
77 this.ClientSize = new System.Drawing.Size(256, 256);
78 this.DoubleBuffered = true;
79 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
80 this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
81 this.MaximizeBox = false;
82 this.MaximumSize = new System.Drawing.Size(256, 256);
83 this.MinimizeBox = false;
84 this.MinimumSize = new System.Drawing.Size(256, 256);
85 this.Name = "Form1";
86 this.ShowIcon = false;
87 this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
88 this.Text = "Form1";
89 this.TopMost = true;
90 this.TransparencyKey = System.Drawing.Color.White;
91 this.Load += new System.EventHandler(this.OnLoad);
92 this.DragDrop += new System.Windows.Forms.DragEventHandler(this.OnDragDrop);
93 this.DragEnter += new System.Windows.Forms.DragEventHandler(this.OnDragEnter);
94 this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.OnMouseDown);
95 this.MouseMove += new System.Windows.Forms.MouseEventHandler(this.OnMouseMove);
96 this.MouseUp += new System.Windows.Forms.MouseEventHandler(this.OnMouseUp);
97 this.contextMenuStrip1.ResumeLayout(false);
98 this.ResumeLayout(false);
99  
100 }
101  
102 #endregion
103  
104 private System.Windows.Forms.NotifyIcon notifyIcon1;
105 private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
106 private System.Windows.Forms.ToolStripMenuItem aboutToolStripMenuItem;
107 private System.Windows.Forms.ToolStripMenuItem quitToolStripMenuItem;
108 }
109 }
110