diff -r d5f6b2119a13 -r 328515997e35 IdwTest/MainForm.Designer.cs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/IdwTest/MainForm.Designer.cs Mon Apr 21 12:02:38 2014 +0200 @@ -0,0 +1,290 @@ +namespace IdwTest +{ + partial class MainForm + { + /// + /// 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.buttonInit = new System.Windows.Forms.Button(); + this.buttonUninit = new System.Windows.Forms.Button(); + this.labelStatus = new System.Windows.Forms.Label(); + this.textBoxVfdTop = new System.Windows.Forms.TextBox(); + this.textBoxVfdBottom = new System.Windows.Forms.TextBox(); + this.groupBoxVfd = new System.Windows.Forms.GroupBox(); + this.label2 = new System.Windows.Forms.Label(); + this.label1 = new System.Windows.Forms.Label(); + this.buttonSetVfdText = new System.Windows.Forms.Button(); + this.groupBoxLcd = new System.Windows.Forms.GroupBox(); + this.textBoxLcd = new System.Windows.Forms.TextBox(); + this.buttonSetLcdText = new System.Windows.Forms.Button(); + this.label3 = new System.Windows.Forms.Label(); + this.buttonToggleTimer = new System.Windows.Forms.Button(); + this.groupBoxTimer = new System.Windows.Forms.GroupBox(); + this.label4 = new System.Windows.Forms.Label(); + this.numericTimerInterval = new System.Windows.Forms.NumericUpDown(); + this.checkBoxRandomEq = new System.Windows.Forms.CheckBox(); + this.groupBoxVfd.SuspendLayout(); + this.groupBoxLcd.SuspendLayout(); + this.groupBoxTimer.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.numericTimerInterval)).BeginInit(); + this.SuspendLayout(); + // + // buttonInit + // + this.buttonInit.Location = new System.Drawing.Point(12, 12); + this.buttonInit.Name = "buttonInit"; + this.buttonInit.Size = new System.Drawing.Size(75, 23); + this.buttonInit.TabIndex = 0; + this.buttonInit.Text = "Init"; + this.buttonInit.UseVisualStyleBackColor = true; + this.buttonInit.Click += new System.EventHandler(this.buttonInit_Click); + // + // buttonUninit + // + this.buttonUninit.Location = new System.Drawing.Point(93, 12); + this.buttonUninit.Name = "buttonUninit"; + this.buttonUninit.Size = new System.Drawing.Size(75, 23); + this.buttonUninit.TabIndex = 1; + this.buttonUninit.Text = "Uninit"; + this.buttonUninit.UseVisualStyleBackColor = true; + this.buttonUninit.Click += new System.EventHandler(this.buttonUninit_Click); + // + // labelStatus + // + this.labelStatus.AutoSize = true; + this.labelStatus.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.labelStatus.Location = new System.Drawing.Point(174, 15); + this.labelStatus.Name = "labelStatus"; + this.labelStatus.Size = new System.Drawing.Size(113, 20); + this.labelStatus.TabIndex = 2; + this.labelStatus.Text = "Not connected"; + // + // textBoxVfdTop + // + this.textBoxVfdTop.Location = new System.Drawing.Point(94, 19); + this.textBoxVfdTop.MaxLength = 16; + this.textBoxVfdTop.Name = "textBoxVfdTop"; + this.textBoxVfdTop.Size = new System.Drawing.Size(100, 20); + this.textBoxVfdTop.TabIndex = 3; + // + // textBoxVfdBottom + // + this.textBoxVfdBottom.Location = new System.Drawing.Point(94, 45); + this.textBoxVfdBottom.Name = "textBoxVfdBottom"; + this.textBoxVfdBottom.Size = new System.Drawing.Size(100, 20); + this.textBoxVfdBottom.TabIndex = 4; + // + // groupBoxVfd + // + this.groupBoxVfd.Controls.Add(this.label2); + this.groupBoxVfd.Controls.Add(this.label1); + this.groupBoxVfd.Controls.Add(this.buttonSetVfdText); + this.groupBoxVfd.Controls.Add(this.textBoxVfdTop); + this.groupBoxVfd.Controls.Add(this.textBoxVfdBottom); + this.groupBoxVfd.Location = new System.Drawing.Point(12, 41); + this.groupBoxVfd.Name = "groupBoxVfd"; + this.groupBoxVfd.Size = new System.Drawing.Size(200, 100); + this.groupBoxVfd.TabIndex = 5; + this.groupBoxVfd.TabStop = false; + this.groupBoxVfd.Text = "VFD"; + // + // label2 + // + this.label2.AutoSize = true; + this.label2.Location = new System.Drawing.Point(7, 48); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(85, 13); + this.label2.TabIndex = 7; + this.label2.Text = "Text bottom line:"; + // + // label1 + // + this.label1.AutoSize = true; + this.label1.Location = new System.Drawing.Point(7, 22); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(68, 13); + this.label1.TabIndex = 6; + this.label1.Text = "Text top line:"; + // + // buttonSetVfdText + // + this.buttonSetVfdText.Location = new System.Drawing.Point(119, 71); + this.buttonSetVfdText.Name = "buttonSetVfdText"; + this.buttonSetVfdText.Size = new System.Drawing.Size(75, 23); + this.buttonSetVfdText.TabIndex = 5; + this.buttonSetVfdText.Text = "Update"; + this.buttonSetVfdText.UseVisualStyleBackColor = true; + // + // groupBoxLcd + // + this.groupBoxLcd.Controls.Add(this.textBoxLcd); + this.groupBoxLcd.Controls.Add(this.buttonSetLcdText); + this.groupBoxLcd.Controls.Add(this.label3); + this.groupBoxLcd.Location = new System.Drawing.Point(218, 41); + this.groupBoxLcd.Name = "groupBoxLcd"; + this.groupBoxLcd.Size = new System.Drawing.Size(200, 100); + this.groupBoxLcd.TabIndex = 6; + this.groupBoxLcd.TabStop = false; + this.groupBoxLcd.Text = "LCD"; + // + // textBoxLcd + // + this.textBoxLcd.Location = new System.Drawing.Point(94, 19); + this.textBoxLcd.Name = "textBoxLcd"; + this.textBoxLcd.Size = new System.Drawing.Size(100, 20); + this.textBoxLcd.TabIndex = 2; + // + // buttonSetLcdText + // + this.buttonSetLcdText.Location = new System.Drawing.Point(119, 71); + this.buttonSetLcdText.Name = "buttonSetLcdText"; + this.buttonSetLcdText.Size = new System.Drawing.Size(75, 23); + this.buttonSetLcdText.TabIndex = 1; + this.buttonSetLcdText.Text = "Update"; + this.buttonSetLcdText.UseVisualStyleBackColor = true; + this.buttonSetLcdText.Click += new System.EventHandler(this.buttonSetLcdText_Click); + // + // label3 + // + this.label3.AutoSize = true; + this.label3.Location = new System.Drawing.Point(6, 22); + this.label3.Name = "label3"; + this.label3.Size = new System.Drawing.Size(28, 13); + this.label3.TabIndex = 0; + this.label3.Text = "Text"; + // + // buttonToggleTimer + // + this.buttonToggleTimer.Location = new System.Drawing.Point(119, 71); + this.buttonToggleTimer.Name = "buttonToggleTimer"; + this.buttonToggleTimer.Size = new System.Drawing.Size(75, 23); + this.buttonToggleTimer.TabIndex = 3; + this.buttonToggleTimer.Text = "Start"; + this.buttonToggleTimer.UseVisualStyleBackColor = true; + this.buttonToggleTimer.Click += new System.EventHandler(this.buttonToggleTimer_Click); + // + // groupBoxTimer + // + this.groupBoxTimer.Controls.Add(this.checkBoxRandomEq); + this.groupBoxTimer.Controls.Add(this.numericTimerInterval); + this.groupBoxTimer.Controls.Add(this.label4); + this.groupBoxTimer.Controls.Add(this.buttonToggleTimer); + this.groupBoxTimer.Location = new System.Drawing.Point(12, 147); + this.groupBoxTimer.Name = "groupBoxTimer"; + this.groupBoxTimer.Size = new System.Drawing.Size(200, 100); + this.groupBoxTimer.TabIndex = 7; + this.groupBoxTimer.TabStop = false; + this.groupBoxTimer.Text = "Timer"; + // + // label4 + // + this.label4.AutoSize = true; + this.label4.Location = new System.Drawing.Point(7, 20); + this.label4.Name = "label4"; + this.label4.Size = new System.Drawing.Size(67, 13); + this.label4.TabIndex = 4; + this.label4.Text = "Interval (ms):"; + // + // numericTimerInterval + // + this.numericTimerInterval.Location = new System.Drawing.Point(74, 18); + this.numericTimerInterval.Maximum = new decimal(new int[] { + 10000, + 0, + 0, + 0}); + this.numericTimerInterval.Minimum = new decimal(new int[] { + 1, + 0, + 0, + 0}); + this.numericTimerInterval.Name = "numericTimerInterval"; + this.numericTimerInterval.Size = new System.Drawing.Size(120, 20); + this.numericTimerInterval.TabIndex = 8; + this.numericTimerInterval.Value = new decimal(new int[] { + 250, + 0, + 0, + 0}); + // + // checkBoxRandomEq + // + this.checkBoxRandomEq.AutoSize = true; + this.checkBoxRandomEq.Location = new System.Drawing.Point(10, 46); + this.checkBoxRandomEq.Name = "checkBoxRandomEq"; + this.checkBoxRandomEq.Size = new System.Drawing.Size(84, 17); + this.checkBoxRandomEq.TabIndex = 9; + this.checkBoxRandomEq.Text = "Random EQ"; + this.checkBoxRandomEq.UseVisualStyleBackColor = true; + // + // MainForm + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(741, 454); + this.Controls.Add(this.groupBoxTimer); + this.Controls.Add(this.groupBoxLcd); + this.Controls.Add(this.groupBoxVfd); + this.Controls.Add(this.labelStatus); + this.Controls.Add(this.buttonUninit); + this.Controls.Add(this.buttonInit); + this.Name = "MainForm"; + this.Text = "iMON Display Wrapper test"; + this.groupBoxVfd.ResumeLayout(false); + this.groupBoxVfd.PerformLayout(); + this.groupBoxLcd.ResumeLayout(false); + this.groupBoxLcd.PerformLayout(); + this.groupBoxTimer.ResumeLayout(false); + this.groupBoxTimer.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.numericTimerInterval)).EndInit(); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private System.Windows.Forms.Button buttonInit; + private System.Windows.Forms.Button buttonUninit; + private System.Windows.Forms.Label labelStatus; + private System.Windows.Forms.TextBox textBoxVfdTop; + private System.Windows.Forms.TextBox textBoxVfdBottom; + private System.Windows.Forms.GroupBox groupBoxVfd; + private System.Windows.Forms.Label label2; + private System.Windows.Forms.Label label1; + private System.Windows.Forms.Button buttonSetVfdText; + private System.Windows.Forms.GroupBox groupBoxLcd; + private System.Windows.Forms.TextBox textBoxLcd; + private System.Windows.Forms.Button buttonSetLcdText; + private System.Windows.Forms.Label label3; + private System.Windows.Forms.Button buttonToggleTimer; + private System.Windows.Forms.GroupBox groupBoxTimer; + private System.Windows.Forms.NumericUpDown numericTimerInterval; + private System.Windows.Forms.Label label4; + private System.Windows.Forms.CheckBox checkBoxRandomEq; + } +} +