From 42dc1d36235292786322d28340a81c6cb3fd46c0 Mon Sep 17 00:00:00 2001 From: hurter Date: Wed, 31 Aug 2011 16:25:05 +0000 Subject: --- .../FormProjectedStripBoard.Designer.cs | 159 +++++++++++++++++++++ 1 file changed, 159 insertions(+) create mode 100644 ProjectedStripBoard/FormProjectedStripBoard.Designer.cs (limited to 'ProjectedStripBoard/FormProjectedStripBoard.Designer.cs') diff --git a/ProjectedStripBoard/FormProjectedStripBoard.Designer.cs b/ProjectedStripBoard/FormProjectedStripBoard.Designer.cs new file mode 100644 index 0000000..429427c --- /dev/null +++ b/ProjectedStripBoard/FormProjectedStripBoard.Designer.cs @@ -0,0 +1,159 @@ +namespace ProjectedStripBoard +{ + partial class FormProjectedStripBoard + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.components = new System.ComponentModel.Container(); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormProjectedStripBoard)); + this.TheContextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components); + this.changeBackgroundColorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.whiteBoarderToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.ivySetupToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.drawingModeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.testToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.setDetlaParamToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.IvyBus = new IvyBus.IvyControl(this.components); + this.timerRefresh = new System.Windows.Forms.Timer(this.components); + this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator(); + this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.TheContextMenuStrip.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.IvyBus)).BeginInit(); + this.SuspendLayout(); + // + // TheContextMenuStrip + // + this.TheContextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.changeBackgroundColorToolStripMenuItem, + this.whiteBoarderToolStripMenuItem, + this.ivySetupToolStripMenuItem, + this.drawingModeToolStripMenuItem, + this.testToolStripMenuItem, + this.setDetlaParamToolStripMenuItem, + this.toolStripMenuItem1, + this.exitToolStripMenuItem}); + this.TheContextMenuStrip.Name = "TheContextMenuStrip"; + this.TheContextMenuStrip.Size = new System.Drawing.Size(213, 186); + // + // changeBackgroundColorToolStripMenuItem + // + this.changeBackgroundColorToolStripMenuItem.Name = "changeBackgroundColorToolStripMenuItem"; + this.changeBackgroundColorToolStripMenuItem.Size = new System.Drawing.Size(212, 22); + this.changeBackgroundColorToolStripMenuItem.Text = "Change Background color"; + this.changeBackgroundColorToolStripMenuItem.Click += new System.EventHandler(this.changeBackgroundColorToolStripMenuItem_Click); + // + // whiteBoarderToolStripMenuItem + // + this.whiteBoarderToolStripMenuItem.Checked = true; + this.whiteBoarderToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked; + this.whiteBoarderToolStripMenuItem.Name = "whiteBoarderToolStripMenuItem"; + this.whiteBoarderToolStripMenuItem.Size = new System.Drawing.Size(212, 22); + this.whiteBoarderToolStripMenuItem.Text = "WhiteBoarder"; + this.whiteBoarderToolStripMenuItem.Click += new System.EventHandler(this.whiteBoarderToolStripMenuItem_Click); + // + // ivySetupToolStripMenuItem + // + this.ivySetupToolStripMenuItem.Name = "ivySetupToolStripMenuItem"; + this.ivySetupToolStripMenuItem.Size = new System.Drawing.Size(212, 22); + this.ivySetupToolStripMenuItem.Text = "IvySetup"; + this.ivySetupToolStripMenuItem.Click += new System.EventHandler(this.ivySetupToolStripMenuItem_Click); + // + // drawingModeToolStripMenuItem + // + this.drawingModeToolStripMenuItem.Name = "drawingModeToolStripMenuItem"; + this.drawingModeToolStripMenuItem.Size = new System.Drawing.Size(212, 22); + this.drawingModeToolStripMenuItem.Text = "DrawingMode"; + // + // testToolStripMenuItem + // + this.testToolStripMenuItem.Name = "testToolStripMenuItem"; + this.testToolStripMenuItem.Size = new System.Drawing.Size(212, 22); + this.testToolStripMenuItem.Text = "Test"; + this.testToolStripMenuItem.Click += new System.EventHandler(this.testToolStripMenuItem_Click); + // + // setDetlaParamToolStripMenuItem + // + this.setDetlaParamToolStripMenuItem.Name = "setDetlaParamToolStripMenuItem"; + this.setDetlaParamToolStripMenuItem.Size = new System.Drawing.Size(212, 22); + this.setDetlaParamToolStripMenuItem.Text = "SetDetlaParam"; + this.setDetlaParamToolStripMenuItem.Click += new System.EventHandler(this.setDetlaParamToolStripMenuItem_Click); + // + // IvyBus + // + this.IvyBus.AppName = "ProjectedStripBoard"; + this.IvyBus.Culture = new System.Globalization.CultureInfo("en-US"); + // + // timerRefresh + // + this.timerRefresh.Enabled = true; + this.timerRefresh.Tick += new System.EventHandler(this.timerRefresh_Tick); + // + // toolStripMenuItem1 + // + this.toolStripMenuItem1.Name = "toolStripMenuItem1"; + this.toolStripMenuItem1.Size = new System.Drawing.Size(209, 6); + // + // exitToolStripMenuItem + // + this.exitToolStripMenuItem.Name = "exitToolStripMenuItem"; + this.exitToolStripMenuItem.Size = new System.Drawing.Size(212, 22); + this.exitToolStripMenuItem.Text = "Exit"; + this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click); + // + // FormProjectedStripBoard + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(624, 446); + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow; + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.Name = "FormProjectedStripBoard"; + this.Text = "Double click to remove title"; + this.Load += new System.EventHandler(this.FormProjectedStripBoard_Load); + this.Resize += new System.EventHandler(this.FormProjectedStripBoard_Resize); + this.TheContextMenuStrip.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)(this.IvyBus)).EndInit(); + this.ResumeLayout(false); + + } + + #endregion + + private System.Windows.Forms.ContextMenuStrip TheContextMenuStrip; + private System.Windows.Forms.ToolStripMenuItem changeBackgroundColorToolStripMenuItem; + private System.Windows.Forms.ToolStripMenuItem ivySetupToolStripMenuItem; + private IvyBus.IvyControl IvyBus; + private System.Windows.Forms.Timer timerRefresh; + private System.Windows.Forms.ToolStripMenuItem drawingModeToolStripMenuItem; + private System.Windows.Forms.ToolStripMenuItem testToolStripMenuItem; + private System.Windows.Forms.ToolStripMenuItem whiteBoarderToolStripMenuItem; + private System.Windows.Forms.ToolStripMenuItem setDetlaParamToolStripMenuItem; + private System.Windows.Forms.ToolStripSeparator toolStripMenuItem1; + private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem; + } +} + -- cgit v1.1