soundbeam – Blame information for rev 2

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 namespace SoundBeam
2 {
3 partial class Form1
4 {
5 /// <summary>
6 /// Required designer variable.
7 /// </summary>
8 private System.ComponentModel.IContainer components = null;
9  
10 #region Windows Form Designer generated code
11  
12 /// <summary>
13 /// Required method for Designer support - do not modify
14 /// the contents of this method with the code editor.
15 /// </summary>
16 private void InitializeComponent()
17 {
18 this.components = new System.ComponentModel.Container();
19 System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
20 this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
21 this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
22 this.sendToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
23 this.sendToolStripComboBox = new System.Windows.Forms.ToolStripComboBox();
24 this.receiveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
25 this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
26 this.settingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
27 this.startOnBootToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
28 this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
29 this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
30 this.quitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
31 this.contextMenuStrip1.SuspendLayout();
32 this.SuspendLayout();
33 //
34 // notifyIcon1
35 //
36 this.notifyIcon1.ContextMenuStrip = this.contextMenuStrip1;
37 this.notifyIcon1.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon")));
38 this.notifyIcon1.Text = "SoundBeam";
39 this.notifyIcon1.Visible = true;
40 //
41 // contextMenuStrip1
42 //
43 this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
44 this.sendToolStripMenuItem,
45 this.receiveToolStripMenuItem,
46 this.toolStripSeparator2,
47 this.settingsToolStripMenuItem,
48 this.toolStripSeparator1,
49 this.aboutToolStripMenuItem,
50 this.quitToolStripMenuItem});
51 this.contextMenuStrip1.Name = "contextMenuStrip1";
2 office 52 this.contextMenuStrip1.Size = new System.Drawing.Size(117, 126);
1 office 53 //
54 // sendToolStripMenuItem
55 //
56 this.sendToolStripMenuItem.CheckOnClick = true;
57 this.sendToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
58 this.sendToolStripComboBox});
59 this.sendToolStripMenuItem.Name = "sendToolStripMenuItem";
2 office 60 this.sendToolStripMenuItem.Size = new System.Drawing.Size(116, 22);
1 office 61 this.sendToolStripMenuItem.Text = "Send";
62 this.sendToolStripMenuItem.CheckedChanged += new System.EventHandler(this.OnSendToolStripMenuItemCheckedChanged);
63 //
64 // sendToolStripComboBox
65 //
66 this.sendToolStripComboBox.Name = "sendToolStripComboBox";
67 this.sendToolStripComboBox.Size = new System.Drawing.Size(121, 23);
68 //
69 // receiveToolStripMenuItem
70 //
71 this.receiveToolStripMenuItem.CheckOnClick = true;
72 this.receiveToolStripMenuItem.Name = "receiveToolStripMenuItem";
2 office 73 this.receiveToolStripMenuItem.Size = new System.Drawing.Size(116, 22);
1 office 74 this.receiveToolStripMenuItem.Text = "Receive";
75 this.receiveToolStripMenuItem.CheckedChanged += new System.EventHandler(this.OnReceiveToolStripMenuItemCheckedChanged);
76 //
77 // toolStripSeparator2
78 //
79 this.toolStripSeparator2.Name = "toolStripSeparator2";
2 office 80 this.toolStripSeparator2.Size = new System.Drawing.Size(113, 6);
1 office 81 //
82 // settingsToolStripMenuItem
83 //
84 this.settingsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
85 this.startOnBootToolStripMenuItem});
86 this.settingsToolStripMenuItem.Name = "settingsToolStripMenuItem";
2 office 87 this.settingsToolStripMenuItem.Size = new System.Drawing.Size(116, 22);
1 office 88 this.settingsToolStripMenuItem.Text = "Settings";
89 //
90 // startOnBootToolStripMenuItem
91 //
92 this.startOnBootToolStripMenuItem.Name = "startOnBootToolStripMenuItem";
93 this.startOnBootToolStripMenuItem.Size = new System.Drawing.Size(145, 22);
94 this.startOnBootToolStripMenuItem.Text = "Start On Boot";
95 //
96 // toolStripSeparator1
97 //
98 this.toolStripSeparator1.Name = "toolStripSeparator1";
2 office 99 this.toolStripSeparator1.Size = new System.Drawing.Size(113, 6);
1 office 100 //
101 // aboutToolStripMenuItem
102 //
103 this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
2 office 104 this.aboutToolStripMenuItem.Size = new System.Drawing.Size(116, 22);
1 office 105 this.aboutToolStripMenuItem.Text = "About...";
106 //
107 // quitToolStripMenuItem
108 //
109 this.quitToolStripMenuItem.Name = "quitToolStripMenuItem";
2 office 110 this.quitToolStripMenuItem.Size = new System.Drawing.Size(116, 22);
1 office 111 this.quitToolStripMenuItem.Text = "Quit";
112 this.quitToolStripMenuItem.Click += new System.EventHandler(this.OnQuitToolStripMenuItemClick);
113 //
114 // Form1
115 //
116 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
117 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
118 this.ClientSize = new System.Drawing.Size(800, 450);
119 this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
120 this.Name = "Form1";
121 this.Text = "Form1";
2 office 122 this.Load += new System.EventHandler(this.OnFormLoad);
1 office 123 this.contextMenuStrip1.ResumeLayout(false);
124 this.ResumeLayout(false);
125  
126 }
127  
128 #endregion
129  
130 private System.Windows.Forms.NotifyIcon notifyIcon1;
131 private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
132 private System.Windows.Forms.ToolStripMenuItem sendToolStripMenuItem;
133 private System.Windows.Forms.ToolStripComboBox sendToolStripComboBox;
134 private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
135 private System.Windows.Forms.ToolStripMenuItem settingsToolStripMenuItem;
136 private System.Windows.Forms.ToolStripMenuItem startOnBootToolStripMenuItem;
137 private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
138 private System.Windows.Forms.ToolStripMenuItem aboutToolStripMenuItem;
139 private System.Windows.Forms.ToolStripMenuItem quitToolStripMenuItem;
140 private System.Windows.Forms.ToolStripMenuItem receiveToolStripMenuItem;
141 }
142 }
143