IdwTest/MainForm.Designer.cs
author StephaneLenclud
Mon, 28 Apr 2014 20:02:08 +0200
changeset 5 d16669f69f0d
parent 4 328515997e35
permissions -rw-r--r--
IdwTest:Adding support for sending text to VFD.
sl@4
     1
namespace IdwTest
sl@4
     2
{
sl@4
     3
    partial class MainForm
sl@4
     4
    {
sl@4
     5
        /// <summary>
sl@4
     6
        /// Required designer variable.
sl@4
     7
        /// </summary>
sl@4
     8
        private System.ComponentModel.IContainer components = null;
sl@4
     9
sl@4
    10
        /// <summary>
sl@4
    11
        /// Clean up any resources being used.
sl@4
    12
        /// </summary>
sl@4
    13
        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
sl@4
    14
        protected override void Dispose(bool disposing)
sl@4
    15
        {
sl@4
    16
            if (disposing && (components != null))
sl@4
    17
            {
sl@4
    18
                components.Dispose();
sl@4
    19
            }
sl@4
    20
            base.Dispose(disposing);
sl@4
    21
        }
sl@4
    22
sl@4
    23
        #region Windows Form Designer generated code
sl@4
    24
sl@4
    25
        /// <summary>
sl@4
    26
        /// Required method for Designer support - do not modify
sl@4
    27
        /// the contents of this method with the code editor.
sl@4
    28
        /// </summary>
sl@4
    29
        private void InitializeComponent()
sl@4
    30
        {
sl@4
    31
            this.buttonInit = new System.Windows.Forms.Button();
sl@4
    32
            this.buttonUninit = new System.Windows.Forms.Button();
sl@4
    33
            this.labelStatus = new System.Windows.Forms.Label();
sl@4
    34
            this.textBoxVfdTop = new System.Windows.Forms.TextBox();
sl@4
    35
            this.textBoxVfdBottom = new System.Windows.Forms.TextBox();
sl@4
    36
            this.groupBoxVfd = new System.Windows.Forms.GroupBox();
sl@4
    37
            this.label2 = new System.Windows.Forms.Label();
sl@4
    38
            this.label1 = new System.Windows.Forms.Label();
sl@4
    39
            this.buttonSetVfdText = new System.Windows.Forms.Button();
sl@4
    40
            this.groupBoxLcd = new System.Windows.Forms.GroupBox();
sl@4
    41
            this.textBoxLcd = new System.Windows.Forms.TextBox();
sl@4
    42
            this.buttonSetLcdText = new System.Windows.Forms.Button();
sl@4
    43
            this.label3 = new System.Windows.Forms.Label();
sl@4
    44
            this.buttonToggleTimer = new System.Windows.Forms.Button();
sl@4
    45
            this.groupBoxTimer = new System.Windows.Forms.GroupBox();
StephaneLenclud@5
    46
            this.checkBoxRandomEq = new System.Windows.Forms.CheckBox();
StephaneLenclud@5
    47
            this.numericTimerInterval = new System.Windows.Forms.NumericUpDown();
sl@4
    48
            this.label4 = new System.Windows.Forms.Label();
sl@4
    49
            this.groupBoxVfd.SuspendLayout();
sl@4
    50
            this.groupBoxLcd.SuspendLayout();
sl@4
    51
            this.groupBoxTimer.SuspendLayout();
sl@4
    52
            ((System.ComponentModel.ISupportInitialize)(this.numericTimerInterval)).BeginInit();
sl@4
    53
            this.SuspendLayout();
sl@4
    54
            // 
sl@4
    55
            // buttonInit
sl@4
    56
            // 
sl@4
    57
            this.buttonInit.Location = new System.Drawing.Point(12, 12);
sl@4
    58
            this.buttonInit.Name = "buttonInit";
sl@4
    59
            this.buttonInit.Size = new System.Drawing.Size(75, 23);
sl@4
    60
            this.buttonInit.TabIndex = 0;
sl@4
    61
            this.buttonInit.Text = "Init";
sl@4
    62
            this.buttonInit.UseVisualStyleBackColor = true;
sl@4
    63
            this.buttonInit.Click += new System.EventHandler(this.buttonInit_Click);
sl@4
    64
            // 
sl@4
    65
            // buttonUninit
sl@4
    66
            // 
sl@4
    67
            this.buttonUninit.Location = new System.Drawing.Point(93, 12);
sl@4
    68
            this.buttonUninit.Name = "buttonUninit";
sl@4
    69
            this.buttonUninit.Size = new System.Drawing.Size(75, 23);
sl@4
    70
            this.buttonUninit.TabIndex = 1;
sl@4
    71
            this.buttonUninit.Text = "Uninit";
sl@4
    72
            this.buttonUninit.UseVisualStyleBackColor = true;
sl@4
    73
            this.buttonUninit.Click += new System.EventHandler(this.buttonUninit_Click);
sl@4
    74
            // 
sl@4
    75
            // labelStatus
sl@4
    76
            // 
sl@4
    77
            this.labelStatus.AutoSize = true;
sl@4
    78
            this.labelStatus.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
sl@4
    79
            this.labelStatus.Location = new System.Drawing.Point(174, 15);
sl@4
    80
            this.labelStatus.Name = "labelStatus";
sl@4
    81
            this.labelStatus.Size = new System.Drawing.Size(113, 20);
sl@4
    82
            this.labelStatus.TabIndex = 2;
sl@4
    83
            this.labelStatus.Text = "Not connected";
sl@4
    84
            // 
sl@4
    85
            // textBoxVfdTop
sl@4
    86
            // 
sl@4
    87
            this.textBoxVfdTop.Location = new System.Drawing.Point(94, 19);
sl@4
    88
            this.textBoxVfdTop.MaxLength = 16;
sl@4
    89
            this.textBoxVfdTop.Name = "textBoxVfdTop";
sl@4
    90
            this.textBoxVfdTop.Size = new System.Drawing.Size(100, 20);
sl@4
    91
            this.textBoxVfdTop.TabIndex = 3;
sl@4
    92
            // 
sl@4
    93
            // textBoxVfdBottom
sl@4
    94
            // 
sl@4
    95
            this.textBoxVfdBottom.Location = new System.Drawing.Point(94, 45);
sl@4
    96
            this.textBoxVfdBottom.Name = "textBoxVfdBottom";
sl@4
    97
            this.textBoxVfdBottom.Size = new System.Drawing.Size(100, 20);
sl@4
    98
            this.textBoxVfdBottom.TabIndex = 4;
sl@4
    99
            // 
sl@4
   100
            // groupBoxVfd
sl@4
   101
            // 
sl@4
   102
            this.groupBoxVfd.Controls.Add(this.label2);
sl@4
   103
            this.groupBoxVfd.Controls.Add(this.label1);
sl@4
   104
            this.groupBoxVfd.Controls.Add(this.buttonSetVfdText);
sl@4
   105
            this.groupBoxVfd.Controls.Add(this.textBoxVfdTop);
sl@4
   106
            this.groupBoxVfd.Controls.Add(this.textBoxVfdBottom);
sl@4
   107
            this.groupBoxVfd.Location = new System.Drawing.Point(12, 41);
sl@4
   108
            this.groupBoxVfd.Name = "groupBoxVfd";
sl@4
   109
            this.groupBoxVfd.Size = new System.Drawing.Size(200, 100);
sl@4
   110
            this.groupBoxVfd.TabIndex = 5;
sl@4
   111
            this.groupBoxVfd.TabStop = false;
sl@4
   112
            this.groupBoxVfd.Text = "VFD";
sl@4
   113
            // 
sl@4
   114
            // label2
sl@4
   115
            // 
sl@4
   116
            this.label2.AutoSize = true;
sl@4
   117
            this.label2.Location = new System.Drawing.Point(7, 48);
sl@4
   118
            this.label2.Name = "label2";
sl@4
   119
            this.label2.Size = new System.Drawing.Size(85, 13);
sl@4
   120
            this.label2.TabIndex = 7;
sl@4
   121
            this.label2.Text = "Text bottom line:";
sl@4
   122
            // 
sl@4
   123
            // label1
sl@4
   124
            // 
sl@4
   125
            this.label1.AutoSize = true;
sl@4
   126
            this.label1.Location = new System.Drawing.Point(7, 22);
sl@4
   127
            this.label1.Name = "label1";
sl@4
   128
            this.label1.Size = new System.Drawing.Size(68, 13);
sl@4
   129
            this.label1.TabIndex = 6;
sl@4
   130
            this.label1.Text = "Text top line:";
sl@4
   131
            // 
sl@4
   132
            // buttonSetVfdText
sl@4
   133
            // 
sl@4
   134
            this.buttonSetVfdText.Location = new System.Drawing.Point(119, 71);
sl@4
   135
            this.buttonSetVfdText.Name = "buttonSetVfdText";
sl@4
   136
            this.buttonSetVfdText.Size = new System.Drawing.Size(75, 23);
sl@4
   137
            this.buttonSetVfdText.TabIndex = 5;
sl@4
   138
            this.buttonSetVfdText.Text = "Update";
sl@4
   139
            this.buttonSetVfdText.UseVisualStyleBackColor = true;
StephaneLenclud@5
   140
            this.buttonSetVfdText.Click += new System.EventHandler(this.buttonSetVfdText_Click);
sl@4
   141
            // 
sl@4
   142
            // groupBoxLcd
sl@4
   143
            // 
sl@4
   144
            this.groupBoxLcd.Controls.Add(this.textBoxLcd);
sl@4
   145
            this.groupBoxLcd.Controls.Add(this.buttonSetLcdText);
sl@4
   146
            this.groupBoxLcd.Controls.Add(this.label3);
sl@4
   147
            this.groupBoxLcd.Location = new System.Drawing.Point(218, 41);
sl@4
   148
            this.groupBoxLcd.Name = "groupBoxLcd";
sl@4
   149
            this.groupBoxLcd.Size = new System.Drawing.Size(200, 100);
sl@4
   150
            this.groupBoxLcd.TabIndex = 6;
sl@4
   151
            this.groupBoxLcd.TabStop = false;
sl@4
   152
            this.groupBoxLcd.Text = "LCD";
sl@4
   153
            // 
sl@4
   154
            // textBoxLcd
sl@4
   155
            // 
sl@4
   156
            this.textBoxLcd.Location = new System.Drawing.Point(94, 19);
sl@4
   157
            this.textBoxLcd.Name = "textBoxLcd";
sl@4
   158
            this.textBoxLcd.Size = new System.Drawing.Size(100, 20);
sl@4
   159
            this.textBoxLcd.TabIndex = 2;
sl@4
   160
            // 
sl@4
   161
            // buttonSetLcdText
sl@4
   162
            // 
sl@4
   163
            this.buttonSetLcdText.Location = new System.Drawing.Point(119, 71);
sl@4
   164
            this.buttonSetLcdText.Name = "buttonSetLcdText";
sl@4
   165
            this.buttonSetLcdText.Size = new System.Drawing.Size(75, 23);
sl@4
   166
            this.buttonSetLcdText.TabIndex = 1;
sl@4
   167
            this.buttonSetLcdText.Text = "Update";
sl@4
   168
            this.buttonSetLcdText.UseVisualStyleBackColor = true;
sl@4
   169
            this.buttonSetLcdText.Click += new System.EventHandler(this.buttonSetLcdText_Click);
sl@4
   170
            // 
sl@4
   171
            // label3
sl@4
   172
            // 
sl@4
   173
            this.label3.AutoSize = true;
sl@4
   174
            this.label3.Location = new System.Drawing.Point(6, 22);
sl@4
   175
            this.label3.Name = "label3";
sl@4
   176
            this.label3.Size = new System.Drawing.Size(28, 13);
sl@4
   177
            this.label3.TabIndex = 0;
sl@4
   178
            this.label3.Text = "Text";
sl@4
   179
            // 
sl@4
   180
            // buttonToggleTimer
sl@4
   181
            // 
sl@4
   182
            this.buttonToggleTimer.Location = new System.Drawing.Point(119, 71);
sl@4
   183
            this.buttonToggleTimer.Name = "buttonToggleTimer";
sl@4
   184
            this.buttonToggleTimer.Size = new System.Drawing.Size(75, 23);
sl@4
   185
            this.buttonToggleTimer.TabIndex = 3;
sl@4
   186
            this.buttonToggleTimer.Text = "Start";
sl@4
   187
            this.buttonToggleTimer.UseVisualStyleBackColor = true;
sl@4
   188
            this.buttonToggleTimer.Click += new System.EventHandler(this.buttonToggleTimer_Click);
sl@4
   189
            // 
sl@4
   190
            // groupBoxTimer
sl@4
   191
            // 
sl@4
   192
            this.groupBoxTimer.Controls.Add(this.checkBoxRandomEq);
sl@4
   193
            this.groupBoxTimer.Controls.Add(this.numericTimerInterval);
sl@4
   194
            this.groupBoxTimer.Controls.Add(this.label4);
sl@4
   195
            this.groupBoxTimer.Controls.Add(this.buttonToggleTimer);
sl@4
   196
            this.groupBoxTimer.Location = new System.Drawing.Point(12, 147);
sl@4
   197
            this.groupBoxTimer.Name = "groupBoxTimer";
sl@4
   198
            this.groupBoxTimer.Size = new System.Drawing.Size(200, 100);
sl@4
   199
            this.groupBoxTimer.TabIndex = 7;
sl@4
   200
            this.groupBoxTimer.TabStop = false;
sl@4
   201
            this.groupBoxTimer.Text = "Timer";
sl@4
   202
            // 
sl@4
   203
            // checkBoxRandomEq
sl@4
   204
            // 
sl@4
   205
            this.checkBoxRandomEq.AutoSize = true;
sl@4
   206
            this.checkBoxRandomEq.Location = new System.Drawing.Point(10, 46);
sl@4
   207
            this.checkBoxRandomEq.Name = "checkBoxRandomEq";
sl@4
   208
            this.checkBoxRandomEq.Size = new System.Drawing.Size(84, 17);
sl@4
   209
            this.checkBoxRandomEq.TabIndex = 9;
sl@4
   210
            this.checkBoxRandomEq.Text = "Random EQ";
sl@4
   211
            this.checkBoxRandomEq.UseVisualStyleBackColor = true;
sl@4
   212
            // 
StephaneLenclud@5
   213
            // numericTimerInterval
StephaneLenclud@5
   214
            // 
StephaneLenclud@5
   215
            this.numericTimerInterval.Location = new System.Drawing.Point(74, 18);
StephaneLenclud@5
   216
            this.numericTimerInterval.Maximum = new decimal(new int[] {
StephaneLenclud@5
   217
            10000,
StephaneLenclud@5
   218
            0,
StephaneLenclud@5
   219
            0,
StephaneLenclud@5
   220
            0});
StephaneLenclud@5
   221
            this.numericTimerInterval.Minimum = new decimal(new int[] {
StephaneLenclud@5
   222
            1,
StephaneLenclud@5
   223
            0,
StephaneLenclud@5
   224
            0,
StephaneLenclud@5
   225
            0});
StephaneLenclud@5
   226
            this.numericTimerInterval.Name = "numericTimerInterval";
StephaneLenclud@5
   227
            this.numericTimerInterval.Size = new System.Drawing.Size(120, 20);
StephaneLenclud@5
   228
            this.numericTimerInterval.TabIndex = 8;
StephaneLenclud@5
   229
            this.numericTimerInterval.Value = new decimal(new int[] {
StephaneLenclud@5
   230
            250,
StephaneLenclud@5
   231
            0,
StephaneLenclud@5
   232
            0,
StephaneLenclud@5
   233
            0});
StephaneLenclud@5
   234
            // 
StephaneLenclud@5
   235
            // label4
StephaneLenclud@5
   236
            // 
StephaneLenclud@5
   237
            this.label4.AutoSize = true;
StephaneLenclud@5
   238
            this.label4.Location = new System.Drawing.Point(7, 20);
StephaneLenclud@5
   239
            this.label4.Name = "label4";
StephaneLenclud@5
   240
            this.label4.Size = new System.Drawing.Size(67, 13);
StephaneLenclud@5
   241
            this.label4.TabIndex = 4;
StephaneLenclud@5
   242
            this.label4.Text = "Interval (ms):";
StephaneLenclud@5
   243
            // 
sl@4
   244
            // MainForm
sl@4
   245
            // 
sl@4
   246
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
sl@4
   247
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
sl@4
   248
            this.ClientSize = new System.Drawing.Size(741, 454);
sl@4
   249
            this.Controls.Add(this.groupBoxTimer);
sl@4
   250
            this.Controls.Add(this.groupBoxLcd);
sl@4
   251
            this.Controls.Add(this.groupBoxVfd);
sl@4
   252
            this.Controls.Add(this.labelStatus);
sl@4
   253
            this.Controls.Add(this.buttonUninit);
sl@4
   254
            this.Controls.Add(this.buttonInit);
sl@4
   255
            this.Name = "MainForm";
sl@4
   256
            this.Text = "iMON Display Wrapper test";
sl@4
   257
            this.groupBoxVfd.ResumeLayout(false);
sl@4
   258
            this.groupBoxVfd.PerformLayout();
sl@4
   259
            this.groupBoxLcd.ResumeLayout(false);
sl@4
   260
            this.groupBoxLcd.PerformLayout();
sl@4
   261
            this.groupBoxTimer.ResumeLayout(false);
sl@4
   262
            this.groupBoxTimer.PerformLayout();
sl@4
   263
            ((System.ComponentModel.ISupportInitialize)(this.numericTimerInterval)).EndInit();
sl@4
   264
            this.ResumeLayout(false);
sl@4
   265
            this.PerformLayout();
sl@4
   266
sl@4
   267
        }
sl@4
   268
sl@4
   269
        #endregion
sl@4
   270
sl@4
   271
        private System.Windows.Forms.Button buttonInit;
sl@4
   272
        private System.Windows.Forms.Button buttonUninit;
sl@4
   273
        private System.Windows.Forms.Label labelStatus;
sl@4
   274
        private System.Windows.Forms.TextBox textBoxVfdTop;
sl@4
   275
        private System.Windows.Forms.TextBox textBoxVfdBottom;
sl@4
   276
        private System.Windows.Forms.GroupBox groupBoxVfd;
sl@4
   277
        private System.Windows.Forms.Label label2;
sl@4
   278
        private System.Windows.Forms.Label label1;
sl@4
   279
        private System.Windows.Forms.Button buttonSetVfdText;
sl@4
   280
        private System.Windows.Forms.GroupBox groupBoxLcd;
sl@4
   281
        private System.Windows.Forms.TextBox textBoxLcd;
sl@4
   282
        private System.Windows.Forms.Button buttonSetLcdText;
sl@4
   283
        private System.Windows.Forms.Label label3;
sl@4
   284
        private System.Windows.Forms.Button buttonToggleTimer;
sl@4
   285
        private System.Windows.Forms.GroupBox groupBoxTimer;
sl@4
   286
        private System.Windows.Forms.NumericUpDown numericTimerInterval;
sl@4
   287
        private System.Windows.Forms.Label label4;
sl@4
   288
        private System.Windows.Forms.CheckBox checkBoxRandomEq;
sl@4
   289
    }
sl@4
   290
}
sl@4
   291