soundbeam – Blame information for rev 1

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";
52 this.contextMenuStrip1.Size = new System.Drawing.Size(181, 148);
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";
60 this.sendToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
61 this.sendToolStripMenuItem.Text = "Send";
62 this.sendToolStripMenuItem.CheckedChanged += new System.EventHandler(this.OnSendToolStripMenuItemCheckedChanged);
63 //
64 // sendToolStripComboBox
65 //
66 this.sendToolStripComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
67 this.sendToolStripComboBox.Name = "sendToolStripComboBox";
68 this.sendToolStripComboBox.Size = new System.Drawing.Size(121, 23);
69 //
70 // receiveToolStripMenuItem
71 //
72 this.receiveToolStripMenuItem.CheckOnClick = true;
73 this.receiveToolStripMenuItem.Name = "receiveToolStripMenuItem";
74 this.receiveToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
75 this.receiveToolStripMenuItem.Text = "Receive";
76 this.receiveToolStripMenuItem.CheckedChanged += new System.EventHandler(this.OnReceiveToolStripMenuItemCheckedChanged);
77 //
78 // toolStripSeparator2
79 //
80 this.toolStripSeparator2.Name = "toolStripSeparator2";
81 this.toolStripSeparator2.Size = new System.Drawing.Size(177, 6);
82 //
83 // settingsToolStripMenuItem
84 //
85 this.settingsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
86 this.startOnBootToolStripMenuItem});
87 this.settingsToolStripMenuItem.Name = "settingsToolStripMenuItem";
88 this.settingsToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
89 this.settingsToolStripMenuItem.Text = "Settings";
90 //
91 // startOnBootToolStripMenuItem
92 //
93 this.startOnBootToolStripMenuItem.Name = "startOnBootToolStripMenuItem";
94 this.startOnBootToolStripMenuItem.Size = new System.Drawing.Size(145, 22);
95 this.startOnBootToolStripMenuItem.Text = "Start On Boot";
96 //
97 // toolStripSeparator1
98 //
99 this.toolStripSeparator1.Name = "toolStripSeparator1";
100 this.toolStripSeparator1.Size = new System.Drawing.Size(177, 6);
101 //
102 // aboutToolStripMenuItem
103 //
104 this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
105 this.aboutToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
106 this.aboutToolStripMenuItem.Text = "About...";
107 //
108 // quitToolStripMenuItem
109 //
110 this.quitToolStripMenuItem.Name = "quitToolStripMenuItem";
111 this.quitToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
112 this.quitToolStripMenuItem.Text = "Quit";
113 this.quitToolStripMenuItem.Click += new System.EventHandler(this.OnQuitToolStripMenuItemClick);
114 //
115 // Form1
116 //
117 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
118 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
119 this.ClientSize = new System.Drawing.Size(800, 450);
120 this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
121 this.Name = "Form1";
122 this.Text = "Form1";
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