Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/WindowsFormsApplication2/WindowsFormsApplication2/MainWindow.Designer.cs
diff options
context:
space:
mode:
Diffstat (limited to 'WindowsFormsApplication2/WindowsFormsApplication2/MainWindow.Designer.cs')
-rw-r--r--WindowsFormsApplication2/WindowsFormsApplication2/MainWindow.Designer.cs361
1 files changed, 361 insertions, 0 deletions
diff --git a/WindowsFormsApplication2/WindowsFormsApplication2/MainWindow.Designer.cs b/WindowsFormsApplication2/WindowsFormsApplication2/MainWindow.Designer.cs
new file mode 100644
index 0000000..05b8a92
--- /dev/null
+++ b/WindowsFormsApplication2/WindowsFormsApplication2/MainWindow.Designer.cs
@@ -0,0 +1,361 @@
+
+namespace MSDNForums
+{
+ partial class MainWindow
+ {
+
+
+ ///// <summary>
+ ///// Required designer variable.
+ ///// </summary>
+ //private System.ComponentModel.IContainer components = null;
+
+ ///// <summary>
+ ///// Clean up any resources being used.
+ ///// </summary>
+ ///// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
+ //protected override void Dispose(bool disposing)
+ //{
+ // if (disposing && (components != null))
+ // {
+ // components.Dispose();
+ // }
+ // base.Dispose(disposing);
+ //}
+
+
+ /// <summary>
+ /// Required designer variable.
+ /// </summary>
+ private System.ComponentModel.IContainer components = null;
+
+ /// <summary>
+ /// Clean up any resources being used.
+ /// </summary>
+ /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ /// <summary>
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ /// </summary>
+ private void InitializeComponent()
+ {
+ this.components = new System.ComponentModel.Container();
+ System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainWindow));
+ this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
+ this.rowsLabel = new System.Windows.Forms.Label();
+ this.columnsLabel = new System.Windows.Forms.Label();
+ this.rowsTextBox = new System.Windows.Forms.TextBox();
+ this.columnsTextBox = new System.Windows.Forms.TextBox();
+ this.button1 = new System.Windows.Forms.Button();
+ this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
+ this.menuStrip1 = new System.Windows.Forms.MenuStrip();
+ this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.newToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.openToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.saveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.modeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.teacherModeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.childModeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.intelligentSensingToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.automaticToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.timer1 = new System.Windows.Forms.Timer(this.components);
+ this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
+ this.panel1 = new System.Windows.Forms.Panel();
+ this.flowLayoutPanel1.SuspendLayout();
+ this.menuStrip1.SuspendLayout();
+ this.panel1.SuspendLayout();
+ this.SuspendLayout();
+ //
+ // tableLayoutPanel1
+ //
+ this.tableLayoutPanel1.AutoSize = true;
+ this.tableLayoutPanel1.ColumnCount = 2;
+ this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
+ this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
+ this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
+ this.tableLayoutPanel1.Name = "tableLayoutPanel1";
+ this.tableLayoutPanel1.RightToLeft = System.Windows.Forms.RightToLeft.No;
+ this.tableLayoutPanel1.RowCount = 2;
+ this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
+ this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
+ this.tableLayoutPanel1.Size = new System.Drawing.Size(884, 513);
+ this.tableLayoutPanel1.TabIndex = 0;
+ //
+ // rowsLabel
+ //
+ this.rowsLabel.AutoSize = true;
+ this.rowsLabel.BackColor = System.Drawing.Color.Transparent;
+ this.rowsLabel.Location = new System.Drawing.Point(3, 0);
+ this.rowsLabel.Name = "rowsLabel";
+ this.rowsLabel.Size = new System.Drawing.Size(86, 13);
+ this.rowsLabel.TabIndex = 1;
+ this.rowsLabel.Text = "Number of Rows";
+ //
+ // columnsLabel
+ //
+ this.columnsLabel.AutoSize = true;
+ this.columnsLabel.BackColor = System.Drawing.Color.Transparent;
+ this.columnsLabel.Location = new System.Drawing.Point(201, 0);
+ this.columnsLabel.Name = "columnsLabel";
+ this.columnsLabel.Size = new System.Drawing.Size(99, 13);
+ this.columnsLabel.TabIndex = 1;
+ this.columnsLabel.Text = "Number of Columns";
+ //
+ // rowsTextBox
+ //
+ this.rowsTextBox.Location = new System.Drawing.Point(95, 3);
+ this.rowsTextBox.MaxLength = 1;
+ this.rowsTextBox.Name = "rowsTextBox";
+ this.rowsTextBox.Size = new System.Drawing.Size(100, 20);
+ this.rowsTextBox.TabIndex = 2;
+ this.toolTip1.SetToolTip(this.rowsTextBox, "Specify number of rows");
+ //
+ // columnsTextBox
+ //
+ this.columnsTextBox.Location = new System.Drawing.Point(306, 3);
+ this.columnsTextBox.MaxLength = 1;
+ this.columnsTextBox.Name = "columnsTextBox";
+ this.columnsTextBox.Size = new System.Drawing.Size(100, 20);
+ this.columnsTextBox.TabIndex = 2;
+ this.toolTip1.SetToolTip(this.columnsTextBox, "Specify number of columns");
+ //
+ // button1
+ //
+ this.button1.Location = new System.Drawing.Point(412, 3);
+ this.button1.Name = "button1";
+ this.button1.Size = new System.Drawing.Size(75, 23);
+ this.button1.TabIndex = 3;
+ this.button1.Text = "Create";
+ this.toolTip1.SetToolTip(this.button1, "Create the table");
+ this.button1.UseVisualStyleBackColor = true;
+ this.button1.Click += new System.EventHandler(this.button1_Click);
+ //
+ // flowLayoutPanel1
+ //
+ this.flowLayoutPanel1.Controls.Add(this.rowsLabel);
+ this.flowLayoutPanel1.Controls.Add(this.rowsTextBox);
+ this.flowLayoutPanel1.Controls.Add(this.columnsLabel);
+ this.flowLayoutPanel1.Controls.Add(this.columnsTextBox);
+ this.flowLayoutPanel1.Controls.Add(this.button1);
+ this.flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Top;
+ this.flowLayoutPanel1.Location = new System.Drawing.Point(0, 24);
+ this.flowLayoutPanel1.Name = "flowLayoutPanel1";
+ this.flowLayoutPanel1.Size = new System.Drawing.Size(884, 25);
+ this.flowLayoutPanel1.TabIndex = 4;
+ //
+ // menuStrip1
+ //
+ this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.fileToolStripMenuItem,
+ this.modeToolStripMenuItem,
+ this.helpToolStripMenuItem});
+ this.menuStrip1.Location = new System.Drawing.Point(0, 0);
+ this.menuStrip1.Name = "menuStrip1";
+ this.menuStrip1.Size = new System.Drawing.Size(884, 24);
+ this.menuStrip1.TabIndex = 5;
+ this.menuStrip1.Text = "menuStrip1";
+ //
+ // fileToolStripMenuItem
+ //
+ this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.newToolStripMenuItem,
+ this.openToolStripMenuItem,
+ this.saveToolStripMenuItem,
+ this.exitToolStripMenuItem});
+ this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
+ this.fileToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.F)));
+ this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
+ this.fileToolStripMenuItem.Text = "File";
+ //
+ // newToolStripMenuItem
+ //
+ this.newToolStripMenuItem.Name = "newToolStripMenuItem";
+ this.newToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N)));
+ this.newToolStripMenuItem.Size = new System.Drawing.Size(146, 22);
+ this.newToolStripMenuItem.Text = "New";
+ this.newToolStripMenuItem.ToolTipText = "New lesson";
+ this.newToolStripMenuItem.Click += new System.EventHandler(this.newToolStripMenuItem_Click);
+ //
+ // openToolStripMenuItem
+ //
+ this.openToolStripMenuItem.Name = "openToolStripMenuItem";
+ this.openToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O)));
+ this.openToolStripMenuItem.Size = new System.Drawing.Size(146, 22);
+ this.openToolStripMenuItem.Text = "Open";
+ this.openToolStripMenuItem.ToolTipText = "Open a lesson";
+ this.openToolStripMenuItem.Click += new System.EventHandler(this.openToolStripMenuItem_Click);
+ //
+ // saveToolStripMenuItem
+ //
+ this.saveToolStripMenuItem.Name = "saveToolStripMenuItem";
+ this.saveToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
+ this.saveToolStripMenuItem.Size = new System.Drawing.Size(146, 22);
+ this.saveToolStripMenuItem.Text = "Save";
+ this.saveToolStripMenuItem.ToolTipText = "Save a lesson";
+ this.saveToolStripMenuItem.Click += new System.EventHandler(this.saveToolStripMenuItem_Click);
+ //
+ // exitToolStripMenuItem
+ //
+ this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
+ this.exitToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.F4)));
+ this.exitToolStripMenuItem.Size = new System.Drawing.Size(146, 22);
+ this.exitToolStripMenuItem.Text = "Exit";
+ this.exitToolStripMenuItem.ToolTipText = "Exit";
+ this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
+ //
+ // modeToolStripMenuItem
+ //
+ this.modeToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.teacherModeToolStripMenuItem,
+ this.childModeToolStripMenuItem,
+ this.intelligentSensingToolStripMenuItem});
+ this.modeToolStripMenuItem.Name = "modeToolStripMenuItem";
+ this.modeToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.M)));
+ this.modeToolStripMenuItem.Size = new System.Drawing.Size(50, 20);
+ this.modeToolStripMenuItem.Text = "Mode";
+ //
+ // teacherModeToolStripMenuItem
+ //
+ this.teacherModeToolStripMenuItem.CheckOnClick = true;
+ this.teacherModeToolStripMenuItem.Name = "teacherModeToolStripMenuItem";
+ this.teacherModeToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.T)));
+ this.teacherModeToolStripMenuItem.Size = new System.Drawing.Size(191, 22);
+ this.teacherModeToolStripMenuItem.Text = "Teacher Mode";
+ this.teacherModeToolStripMenuItem.ToolTipText = "Teacher Mode";
+ this.teacherModeToolStripMenuItem.CheckStateChanged += new System.EventHandler(this.CheckMode);
+ this.teacherModeToolStripMenuItem.Click += new System.EventHandler(this.teacherModeToolStripMenuItem_Click);
+ //
+ // childModeToolStripMenuItem
+ //
+ this.childModeToolStripMenuItem.CheckOnClick = true;
+ this.childModeToolStripMenuItem.Name = "childModeToolStripMenuItem";
+ this.childModeToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.C)));
+ this.childModeToolStripMenuItem.Size = new System.Drawing.Size(191, 22);
+ this.childModeToolStripMenuItem.Text = "Child Mode";
+ this.childModeToolStripMenuItem.ToolTipText = "Child Mode";
+ this.childModeToolStripMenuItem.CheckStateChanged += new System.EventHandler(this.CheckMode);
+ this.childModeToolStripMenuItem.Click += new System.EventHandler(this.teacherModeToolStripMenuItem_Click);
+ //
+ // intelligentSensingToolStripMenuItem
+ //
+ this.intelligentSensingToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.automaticToolStripMenuItem});
+ this.intelligentSensingToolStripMenuItem.Name = "intelligentSensingToolStripMenuItem";
+ this.intelligentSensingToolStripMenuItem.Size = new System.Drawing.Size(191, 22);
+ this.intelligentSensingToolStripMenuItem.Text = "Intelligent Sensing";
+ this.intelligentSensingToolStripMenuItem.ToolTipText = "Enable automatic navigation";
+ //
+ // automaticToolStripMenuItem
+ //
+ this.automaticToolStripMenuItem.CheckOnClick = true;
+ this.automaticToolStripMenuItem.Name = "automaticToolStripMenuItem";
+ this.automaticToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.S)));
+ this.automaticToolStripMenuItem.Size = new System.Drawing.Size(166, 22);
+ this.automaticToolStripMenuItem.Text = "Automatic";
+ this.automaticToolStripMenuItem.ToolTipText = "Alt + S to Start/Stop";
+ this.automaticToolStripMenuItem.CheckStateChanged += new System.EventHandler(this.automaticToolStripMenuItem_CheckStateChanged);
+ this.automaticToolStripMenuItem.Click += new System.EventHandler(this.automaticToolStripMenuItem_Click);
+ //
+ // helpToolStripMenuItem
+ //
+ this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.aboutToolStripMenuItem});
+ this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
+ this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
+ this.helpToolStripMenuItem.Text = "Help";
+ //
+ // aboutToolStripMenuItem
+ //
+ this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
+ this.aboutToolStripMenuItem.Size = new System.Drawing.Size(107, 22);
+ this.aboutToolStripMenuItem.Text = "About";
+ this.aboutToolStripMenuItem.ToolTipText = "About";
+ this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click);
+ //
+ // timer1
+ //
+ this.timer1.Interval = 1500;
+ this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
+ //
+ // panel1
+ //
+ this.panel1.AutoSize = true;
+ this.panel1.Controls.Add(this.tableLayoutPanel1);
+ this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.panel1.Location = new System.Drawing.Point(0, 49);
+ this.panel1.Name = "panel1";
+ this.panel1.Size = new System.Drawing.Size(884, 513);
+ this.panel1.TabIndex = 7;
+ //
+ // MainWindow
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.AutoScroll = true;
+ this.BackColor = System.Drawing.Color.White;
+ this.ClientSize = new System.Drawing.Size(884, 562);
+ this.Controls.Add(this.panel1);
+ this.Controls.Add(this.flowLayoutPanel1);
+ this.Controls.Add(this.menuStrip1);
+ this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
+ this.KeyPreview = true;
+ this.MainMenuStrip = this.menuStrip1;
+ this.MinimumSize = new System.Drawing.Size(800, 600);
+ this.Name = "MainWindow";
+ this.Text = "Lend me your voice";
+ //this.OnFormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainWindow_FormClosing);
+ this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainWindow_FormClosing);
+ this.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.MainWindow_KeyPress);
+ this.flowLayoutPanel1.ResumeLayout(false);
+ this.flowLayoutPanel1.PerformLayout();
+ this.menuStrip1.ResumeLayout(false);
+ this.menuStrip1.PerformLayout();
+ this.panel1.ResumeLayout(false);
+ this.panel1.PerformLayout();
+ this.ResumeLayout(false);
+ this.PerformLayout();
+
+ }
+
+ #endregion
+
+ private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
+ private System.Windows.Forms.Label rowsLabel;
+ private System.Windows.Forms.Label columnsLabel;
+ private System.Windows.Forms.TextBox rowsTextBox;
+ private System.Windows.Forms.TextBox columnsTextBox;
+ private System.Windows.Forms.Button button1;
+ private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1;
+ private System.Windows.Forms.MenuStrip menuStrip1;
+ private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem newToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem saveToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem openToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem helpToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem aboutToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem modeToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem teacherModeToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem childModeToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem intelligentSensingToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem automaticToolStripMenuItem;
+ private System.Windows.Forms.Timer timer1;
+ private System.Windows.Forms.ToolTip toolTip1;
+ private System.Windows.Forms.Panel panel1;
+ }
+}