Clients/Test/FormClientTest.Designer.cs
author StephaneLenclud
Wed, 04 Jan 2017 18:43:28 +0100
changeset 274 920fea7a6427
parent 261 e2729a990e8b
permissions -rw-r--r--
Proper basic support for Audio Visualizer.
StephaneLenclud@191
     1
namespace SharpDisplayClient
StephaneLenclud@191
     2
{
StephaneLenclud@191
     3
    partial class FormClientTest
StephaneLenclud@191
     4
    {
StephaneLenclud@191
     5
        /// <summary>
StephaneLenclud@191
     6
        /// Required designer variable.
StephaneLenclud@191
     7
        /// </summary>
StephaneLenclud@191
     8
        private System.ComponentModel.IContainer components = null;
StephaneLenclud@191
     9
StephaneLenclud@191
    10
        /// <summary>
StephaneLenclud@191
    11
        /// Clean up any resources being used.
StephaneLenclud@191
    12
        /// </summary>
StephaneLenclud@191
    13
        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
StephaneLenclud@191
    14
        protected override void Dispose(bool disposing)
StephaneLenclud@191
    15
        {
StephaneLenclud@191
    16
            if (disposing && (components != null))
StephaneLenclud@191
    17
            {
StephaneLenclud@191
    18
                components.Dispose();
StephaneLenclud@191
    19
            }
StephaneLenclud@191
    20
            base.Dispose(disposing);
StephaneLenclud@191
    21
        }
StephaneLenclud@191
    22
StephaneLenclud@191
    23
        #region Windows Form Designer generated code
StephaneLenclud@191
    24
StephaneLenclud@191
    25
        /// <summary>
StephaneLenclud@191
    26
        /// Required method for Designer support - do not modify
StephaneLenclud@191
    27
        /// the contents of this method with the code editor.
StephaneLenclud@191
    28
        /// </summary>
StephaneLenclud@191
    29
        private void InitializeComponent()
StephaneLenclud@191
    30
        {
StephaneLenclud@191
    31
            this.buttonSetText = new System.Windows.Forms.Button();
StephaneLenclud@191
    32
            this.textBoxTop = new System.Windows.Forms.TextBox();
StephaneLenclud@191
    33
            this.textBoxBottom = new System.Windows.Forms.TextBox();
StephaneLenclud@191
    34
            this.buttonAlignRight = new System.Windows.Forms.Button();
StephaneLenclud@191
    35
            this.buttonAlignCenter = new System.Windows.Forms.Button();
StephaneLenclud@191
    36
            this.buttonAlignLeft = new System.Windows.Forms.Button();
StephaneLenclud@191
    37
            this.buttonSetTopText = new System.Windows.Forms.Button();
StephaneLenclud@191
    38
            this.buttonLayoutUpdate = new System.Windows.Forms.Button();
StephaneLenclud@191
    39
            this.buttonSetBitmap = new System.Windows.Forms.Button();
StephaneLenclud@191
    40
            this.buttonBitmapLayout = new System.Windows.Forms.Button();
StephaneLenclud@191
    41
            this.buttonIndicatorsLayout = new System.Windows.Forms.Button();
StephaneLenclud@191
    42
            this.buttonUpdateTexts = new System.Windows.Forms.Button();
StephaneLenclud@191
    43
            this.buttonLayoutOneTextField = new System.Windows.Forms.Button();
StephaneLenclud@191
    44
            this.numericUpDownPriority = new System.Windows.Forms.NumericUpDown();
StephaneLenclud@191
    45
            this.labelPriority = new System.Windows.Forms.Label();
StephaneLenclud@261
    46
            this.buttonTriggerEvents = new System.Windows.Forms.Button();
StephaneLenclud@261
    47
            this.textBoxEventName = new System.Windows.Forms.TextBox();
StephaneLenclud@261
    48
            this.label1 = new System.Windows.Forms.Label();
StephaneLenclud@274
    49
            this.buttonLayoutAudioVisualizer = new System.Windows.Forms.Button();
StephaneLenclud@274
    50
            this.buttonLayoutMultipleAudioVisualizers = new System.Windows.Forms.Button();
StephaneLenclud@191
    51
            ((System.ComponentModel.ISupportInitialize)(this.numericUpDownPriority)).BeginInit();
StephaneLenclud@191
    52
            this.SuspendLayout();
StephaneLenclud@191
    53
            // 
StephaneLenclud@191
    54
            // buttonSetText
StephaneLenclud@191
    55
            // 
StephaneLenclud@261
    56
            this.buttonSetText.Location = new System.Drawing.Point(12, 109);
StephaneLenclud@191
    57
            this.buttonSetText.Name = "buttonSetText";
StephaneLenclud@191
    58
            this.buttonSetText.Size = new System.Drawing.Size(75, 23);
StephaneLenclud@191
    59
            this.buttonSetText.TabIndex = 0;
StephaneLenclud@191
    60
            this.buttonSetText.Text = "Set Text";
StephaneLenclud@191
    61
            this.buttonSetText.UseVisualStyleBackColor = true;
StephaneLenclud@191
    62
            this.buttonSetText.Click += new System.EventHandler(this.buttonSetText_Click);
StephaneLenclud@191
    63
            // 
StephaneLenclud@191
    64
            // textBoxTop
StephaneLenclud@191
    65
            // 
StephaneLenclud@191
    66
            this.textBoxTop.Location = new System.Drawing.Point(12, 31);
StephaneLenclud@191
    67
            this.textBoxTop.Name = "textBoxTop";
StephaneLenclud@191
    68
            this.textBoxTop.Size = new System.Drawing.Size(419, 20);
StephaneLenclud@191
    69
            this.textBoxTop.TabIndex = 1;
StephaneLenclud@191
    70
            // 
StephaneLenclud@191
    71
            // textBoxBottom
StephaneLenclud@191
    72
            // 
StephaneLenclud@191
    73
            this.textBoxBottom.Location = new System.Drawing.Point(12, 57);
StephaneLenclud@191
    74
            this.textBoxBottom.Name = "textBoxBottom";
StephaneLenclud@191
    75
            this.textBoxBottom.Size = new System.Drawing.Size(419, 20);
StephaneLenclud@191
    76
            this.textBoxBottom.TabIndex = 2;
StephaneLenclud@191
    77
            // 
StephaneLenclud@191
    78
            // buttonAlignRight
StephaneLenclud@191
    79
            // 
StephaneLenclud@261
    80
            this.buttonAlignRight.Location = new System.Drawing.Point(175, 137);
StephaneLenclud@191
    81
            this.buttonAlignRight.Name = "buttonAlignRight";
StephaneLenclud@191
    82
            this.buttonAlignRight.Size = new System.Drawing.Size(75, 23);
StephaneLenclud@191
    83
            this.buttonAlignRight.TabIndex = 23;
StephaneLenclud@191
    84
            this.buttonAlignRight.Text = "Align Right";
StephaneLenclud@191
    85
            this.buttonAlignRight.UseVisualStyleBackColor = true;
StephaneLenclud@191
    86
            this.buttonAlignRight.Click += new System.EventHandler(this.buttonAlignRight_Click);
StephaneLenclud@191
    87
            // 
StephaneLenclud@191
    88
            // buttonAlignCenter
StephaneLenclud@191
    89
            // 
StephaneLenclud@261
    90
            this.buttonAlignCenter.Location = new System.Drawing.Point(93, 138);
StephaneLenclud@191
    91
            this.buttonAlignCenter.Name = "buttonAlignCenter";
StephaneLenclud@191
    92
            this.buttonAlignCenter.Size = new System.Drawing.Size(75, 23);
StephaneLenclud@191
    93
            this.buttonAlignCenter.TabIndex = 22;
StephaneLenclud@191
    94
            this.buttonAlignCenter.Text = "Align Center";
StephaneLenclud@191
    95
            this.buttonAlignCenter.UseVisualStyleBackColor = true;
StephaneLenclud@191
    96
            this.buttonAlignCenter.Click += new System.EventHandler(this.buttonAlignCenter_Click);
StephaneLenclud@191
    97
            // 
StephaneLenclud@191
    98
            // buttonAlignLeft
StephaneLenclud@191
    99
            // 
StephaneLenclud@261
   100
            this.buttonAlignLeft.Location = new System.Drawing.Point(11, 138);
StephaneLenclud@191
   101
            this.buttonAlignLeft.Name = "buttonAlignLeft";
StephaneLenclud@191
   102
            this.buttonAlignLeft.Size = new System.Drawing.Size(75, 23);
StephaneLenclud@191
   103
            this.buttonAlignLeft.TabIndex = 21;
StephaneLenclud@191
   104
            this.buttonAlignLeft.Text = "Align Left";
StephaneLenclud@191
   105
            this.buttonAlignLeft.UseVisualStyleBackColor = true;
StephaneLenclud@191
   106
            this.buttonAlignLeft.Click += new System.EventHandler(this.buttonAlignLeft_Click);
StephaneLenclud@191
   107
            // 
StephaneLenclud@191
   108
            // buttonSetTopText
StephaneLenclud@191
   109
            // 
StephaneLenclud@261
   110
            this.buttonSetTopText.Location = new System.Drawing.Point(93, 109);
StephaneLenclud@191
   111
            this.buttonSetTopText.Name = "buttonSetTopText";
StephaneLenclud@191
   112
            this.buttonSetTopText.Size = new System.Drawing.Size(75, 23);
StephaneLenclud@191
   113
            this.buttonSetTopText.TabIndex = 24;
StephaneLenclud@191
   114
            this.buttonSetTopText.Text = "Set Top Text";
StephaneLenclud@191
   115
            this.buttonSetTopText.UseVisualStyleBackColor = true;
StephaneLenclud@191
   116
            this.buttonSetTopText.Click += new System.EventHandler(this.buttonSetTopText_Click);
StephaneLenclud@191
   117
            // 
StephaneLenclud@191
   118
            // buttonLayoutUpdate
StephaneLenclud@191
   119
            // 
StephaneLenclud@261
   120
            this.buttonLayoutUpdate.Location = new System.Drawing.Point(175, 108);
StephaneLenclud@191
   121
            this.buttonLayoutUpdate.Name = "buttonLayoutUpdate";
StephaneLenclud@191
   122
            this.buttonLayoutUpdate.Size = new System.Drawing.Size(156, 23);
StephaneLenclud@191
   123
            this.buttonLayoutUpdate.TabIndex = 25;
StephaneLenclud@191
   124
            this.buttonLayoutUpdate.Text = "Layout 2x2 and Recording";
StephaneLenclud@191
   125
            this.buttonLayoutUpdate.UseVisualStyleBackColor = true;
StephaneLenclud@191
   126
            this.buttonLayoutUpdate.Click += new System.EventHandler(this.buttonLayoutUpdate_Click);
StephaneLenclud@191
   127
            // 
StephaneLenclud@191
   128
            // buttonSetBitmap
StephaneLenclud@191
   129
            // 
StephaneLenclud@261
   130
            this.buttonSetBitmap.Location = new System.Drawing.Point(11, 167);
StephaneLenclud@191
   131
            this.buttonSetBitmap.Name = "buttonSetBitmap";
StephaneLenclud@191
   132
            this.buttonSetBitmap.Size = new System.Drawing.Size(75, 23);
StephaneLenclud@191
   133
            this.buttonSetBitmap.TabIndex = 26;
StephaneLenclud@191
   134
            this.buttonSetBitmap.Text = "Set Bitmap";
StephaneLenclud@191
   135
            this.buttonSetBitmap.UseVisualStyleBackColor = true;
StephaneLenclud@191
   136
            this.buttonSetBitmap.Click += new System.EventHandler(this.buttonSetBitmap_Click);
StephaneLenclud@191
   137
            // 
StephaneLenclud@191
   138
            // buttonBitmapLayout
StephaneLenclud@191
   139
            // 
StephaneLenclud@261
   140
            this.buttonBitmapLayout.Location = new System.Drawing.Point(175, 166);
StephaneLenclud@191
   141
            this.buttonBitmapLayout.Name = "buttonBitmapLayout";
StephaneLenclud@191
   142
            this.buttonBitmapLayout.Size = new System.Drawing.Size(75, 35);
StephaneLenclud@191
   143
            this.buttonBitmapLayout.TabIndex = 27;
StephaneLenclud@191
   144
            this.buttonBitmapLayout.Text = "Bitmap Layout";
StephaneLenclud@191
   145
            this.buttonBitmapLayout.UseVisualStyleBackColor = true;
StephaneLenclud@191
   146
            this.buttonBitmapLayout.Click += new System.EventHandler(this.buttonBitmapLayout_Click);
StephaneLenclud@191
   147
            // 
StephaneLenclud@191
   148
            // buttonIndicatorsLayout
StephaneLenclud@191
   149
            // 
StephaneLenclud@261
   150
            this.buttonIndicatorsLayout.Location = new System.Drawing.Point(93, 166);
StephaneLenclud@191
   151
            this.buttonIndicatorsLayout.Name = "buttonIndicatorsLayout";
StephaneLenclud@191
   152
            this.buttonIndicatorsLayout.Size = new System.Drawing.Size(75, 35);
StephaneLenclud@191
   153
            this.buttonIndicatorsLayout.TabIndex = 28;
StephaneLenclud@191
   154
            this.buttonIndicatorsLayout.Text = "Indicators Layout ";
StephaneLenclud@191
   155
            this.buttonIndicatorsLayout.UseVisualStyleBackColor = true;
StephaneLenclud@191
   156
            this.buttonIndicatorsLayout.Click += new System.EventHandler(this.buttonIndicatorsLayout_Click);
StephaneLenclud@191
   157
            // 
StephaneLenclud@191
   158
            // buttonUpdateTexts
StephaneLenclud@191
   159
            // 
StephaneLenclud@261
   160
            this.buttonUpdateTexts.Location = new System.Drawing.Point(256, 166);
StephaneLenclud@191
   161
            this.buttonUpdateTexts.Name = "buttonUpdateTexts";
StephaneLenclud@191
   162
            this.buttonUpdateTexts.Size = new System.Drawing.Size(75, 35);
StephaneLenclud@191
   163
            this.buttonUpdateTexts.TabIndex = 29;
StephaneLenclud@191
   164
            this.buttonUpdateTexts.Text = "Update Texts";
StephaneLenclud@191
   165
            this.buttonUpdateTexts.UseVisualStyleBackColor = true;
StephaneLenclud@191
   166
            this.buttonUpdateTexts.Click += new System.EventHandler(this.buttonUpdateTexts_Click);
StephaneLenclud@191
   167
            // 
StephaneLenclud@191
   168
            // buttonLayoutOneTextField
StephaneLenclud@191
   169
            // 
StephaneLenclud@261
   170
            this.buttonLayoutOneTextField.Location = new System.Drawing.Point(256, 137);
StephaneLenclud@191
   171
            this.buttonLayoutOneTextField.Name = "buttonLayoutOneTextField";
StephaneLenclud@191
   172
            this.buttonLayoutOneTextField.Size = new System.Drawing.Size(75, 23);
StephaneLenclud@191
   173
            this.buttonLayoutOneTextField.TabIndex = 30;
StephaneLenclud@191
   174
            this.buttonLayoutOneTextField.Text = "Layout 1x1";
StephaneLenclud@191
   175
            this.buttonLayoutOneTextField.UseVisualStyleBackColor = true;
StephaneLenclud@191
   176
            this.buttonLayoutOneTextField.Click += new System.EventHandler(this.buttonLayoutOneTextField_Click);
StephaneLenclud@191
   177
            // 
StephaneLenclud@191
   178
            // numericUpDownPriority
StephaneLenclud@191
   179
            // 
StephaneLenclud@191
   180
            this.numericUpDownPriority.Increment = new decimal(new int[] {
StephaneLenclud@191
   181
            10,
StephaneLenclud@191
   182
            0,
StephaneLenclud@191
   183
            0,
StephaneLenclud@191
   184
            0});
StephaneLenclud@191
   185
            this.numericUpDownPriority.Location = new System.Drawing.Point(57, 83);
StephaneLenclud@191
   186
            this.numericUpDownPriority.Maximum = new decimal(new int[] {
StephaneLenclud@191
   187
            1000,
StephaneLenclud@191
   188
            0,
StephaneLenclud@191
   189
            0,
StephaneLenclud@191
   190
            0});
StephaneLenclud@191
   191
            this.numericUpDownPriority.Name = "numericUpDownPriority";
StephaneLenclud@191
   192
            this.numericUpDownPriority.Size = new System.Drawing.Size(60, 20);
StephaneLenclud@191
   193
            this.numericUpDownPriority.TabIndex = 31;
StephaneLenclud@191
   194
            this.numericUpDownPriority.Value = new decimal(new int[] {
StephaneLenclud@191
   195
            500,
StephaneLenclud@191
   196
            0,
StephaneLenclud@191
   197
            0,
StephaneLenclud@191
   198
            0});
StephaneLenclud@191
   199
            this.numericUpDownPriority.ValueChanged += new System.EventHandler(this.numericUpDownPriority_ValueChanged);
StephaneLenclud@191
   200
            // 
StephaneLenclud@191
   201
            // labelPriority
StephaneLenclud@191
   202
            // 
StephaneLenclud@191
   203
            this.labelPriority.AutoSize = true;
StephaneLenclud@191
   204
            this.labelPriority.Location = new System.Drawing.Point(12, 85);
StephaneLenclud@191
   205
            this.labelPriority.Name = "labelPriority";
StephaneLenclud@191
   206
            this.labelPriority.Size = new System.Drawing.Size(41, 13);
StephaneLenclud@191
   207
            this.labelPriority.TabIndex = 32;
StephaneLenclud@191
   208
            this.labelPriority.Text = "Priority:";
StephaneLenclud@191
   209
            // 
StephaneLenclud@261
   210
            // buttonTriggerEvents
StephaneLenclud@261
   211
            // 
StephaneLenclud@274
   212
            this.buttonTriggerEvents.Location = new System.Drawing.Point(8, 317);
StephaneLenclud@261
   213
            this.buttonTriggerEvents.Name = "buttonTriggerEvents";
StephaneLenclud@261
   214
            this.buttonTriggerEvents.Size = new System.Drawing.Size(75, 23);
StephaneLenclud@261
   215
            this.buttonTriggerEvents.TabIndex = 33;
StephaneLenclud@261
   216
            this.buttonTriggerEvents.Text = "Trigger Events";
StephaneLenclud@261
   217
            this.buttonTriggerEvents.UseVisualStyleBackColor = true;
StephaneLenclud@261
   218
            this.buttonTriggerEvents.Click += new System.EventHandler(this.buttonTriggerEvents_Click);
StephaneLenclud@261
   219
            // 
StephaneLenclud@261
   220
            // textBoxEventName
StephaneLenclud@261
   221
            // 
StephaneLenclud@274
   222
            this.textBoxEventName.Location = new System.Drawing.Point(8, 291);
StephaneLenclud@261
   223
            this.textBoxEventName.Name = "textBoxEventName";
StephaneLenclud@261
   224
            this.textBoxEventName.Size = new System.Drawing.Size(202, 20);
StephaneLenclud@261
   225
            this.textBoxEventName.TabIndex = 34;
StephaneLenclud@261
   226
            // 
StephaneLenclud@261
   227
            // label1
StephaneLenclud@261
   228
            // 
StephaneLenclud@261
   229
            this.label1.AutoSize = true;
StephaneLenclud@274
   230
            this.label1.Location = new System.Drawing.Point(8, 272);
StephaneLenclud@261
   231
            this.label1.Name = "label1";
StephaneLenclud@261
   232
            this.label1.Size = new System.Drawing.Size(67, 13);
StephaneLenclud@261
   233
            this.label1.TabIndex = 35;
StephaneLenclud@261
   234
            this.label1.Text = "Event name:";
StephaneLenclud@261
   235
            // 
StephaneLenclud@274
   236
            // buttonLayoutAudioVisualizer
StephaneLenclud@274
   237
            // 
StephaneLenclud@274
   238
            this.buttonLayoutAudioVisualizer.Location = new System.Drawing.Point(11, 207);
StephaneLenclud@274
   239
            this.buttonLayoutAudioVisualizer.Name = "buttonLayoutAudioVisualizer";
StephaneLenclud@274
   240
            this.buttonLayoutAudioVisualizer.Size = new System.Drawing.Size(94, 35);
StephaneLenclud@274
   241
            this.buttonLayoutAudioVisualizer.TabIndex = 36;
StephaneLenclud@274
   242
            this.buttonLayoutAudioVisualizer.Text = "Audio Visualizer Layout";
StephaneLenclud@274
   243
            this.buttonLayoutAudioVisualizer.UseVisualStyleBackColor = true;
StephaneLenclud@274
   244
            this.buttonLayoutAudioVisualizer.Click += new System.EventHandler(this.buttonLayoutAudioVisualizer_Click);
StephaneLenclud@274
   245
            // 
StephaneLenclud@274
   246
            // buttonLayoutMultipleAudioVisualizers
StephaneLenclud@274
   247
            // 
StephaneLenclud@274
   248
            this.buttonLayoutMultipleAudioVisualizers.Location = new System.Drawing.Point(111, 207);
StephaneLenclud@274
   249
            this.buttonLayoutMultipleAudioVisualizers.Name = "buttonLayoutMultipleAudioVisualizers";
StephaneLenclud@274
   250
            this.buttonLayoutMultipleAudioVisualizers.Size = new System.Drawing.Size(94, 35);
StephaneLenclud@274
   251
            this.buttonLayoutMultipleAudioVisualizers.TabIndex = 37;
StephaneLenclud@274
   252
            this.buttonLayoutMultipleAudioVisualizers.Text = "Multiple Audio Visualizers Layout";
StephaneLenclud@274
   253
            this.buttonLayoutMultipleAudioVisualizers.UseVisualStyleBackColor = true;
StephaneLenclud@274
   254
            this.buttonLayoutMultipleAudioVisualizers.Click += new System.EventHandler(this.buttonLayoutMultipleAudioVisualizers_Click);
StephaneLenclud@274
   255
            // 
StephaneLenclud@261
   256
            // FormClientTest
StephaneLenclud@191
   257
            // 
StephaneLenclud@191
   258
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
StephaneLenclud@191
   259
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
StephaneLenclud@274
   260
            this.ClientSize = new System.Drawing.Size(564, 351);
StephaneLenclud@274
   261
            this.Controls.Add(this.buttonLayoutMultipleAudioVisualizers);
StephaneLenclud@274
   262
            this.Controls.Add(this.buttonLayoutAudioVisualizer);
StephaneLenclud@261
   263
            this.Controls.Add(this.label1);
StephaneLenclud@261
   264
            this.Controls.Add(this.textBoxEventName);
StephaneLenclud@261
   265
            this.Controls.Add(this.buttonTriggerEvents);
StephaneLenclud@191
   266
            this.Controls.Add(this.labelPriority);
StephaneLenclud@191
   267
            this.Controls.Add(this.numericUpDownPriority);
StephaneLenclud@191
   268
            this.Controls.Add(this.buttonLayoutOneTextField);
StephaneLenclud@191
   269
            this.Controls.Add(this.buttonUpdateTexts);
StephaneLenclud@191
   270
            this.Controls.Add(this.buttonIndicatorsLayout);
StephaneLenclud@191
   271
            this.Controls.Add(this.buttonBitmapLayout);
StephaneLenclud@191
   272
            this.Controls.Add(this.buttonSetBitmap);
StephaneLenclud@191
   273
            this.Controls.Add(this.buttonLayoutUpdate);
StephaneLenclud@191
   274
            this.Controls.Add(this.buttonSetTopText);
StephaneLenclud@191
   275
            this.Controls.Add(this.buttonAlignRight);
StephaneLenclud@191
   276
            this.Controls.Add(this.buttonAlignCenter);
StephaneLenclud@191
   277
            this.Controls.Add(this.buttonAlignLeft);
StephaneLenclud@191
   278
            this.Controls.Add(this.textBoxBottom);
StephaneLenclud@191
   279
            this.Controls.Add(this.textBoxTop);
StephaneLenclud@191
   280
            this.Controls.Add(this.buttonSetText);
StephaneLenclud@261
   281
            this.Name = "FormClientTest";
StephaneLenclud@191
   282
            this.Text = "Client";
StephaneLenclud@191
   283
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
StephaneLenclud@191
   284
            this.Load += new System.EventHandler(this.MainForm_Load);
StephaneLenclud@191
   285
            ((System.ComponentModel.ISupportInitialize)(this.numericUpDownPriority)).EndInit();
StephaneLenclud@191
   286
            this.ResumeLayout(false);
StephaneLenclud@191
   287
            this.PerformLayout();
StephaneLenclud@191
   288
StephaneLenclud@191
   289
        }
StephaneLenclud@191
   290
StephaneLenclud@191
   291
        #endregion
StephaneLenclud@191
   292
StephaneLenclud@191
   293
        private System.Windows.Forms.Button buttonSetText;
StephaneLenclud@191
   294
        private System.Windows.Forms.TextBox textBoxTop;
StephaneLenclud@191
   295
        private System.Windows.Forms.TextBox textBoxBottom;
StephaneLenclud@191
   296
        private System.Windows.Forms.Button buttonAlignRight;
StephaneLenclud@191
   297
        private System.Windows.Forms.Button buttonAlignCenter;
StephaneLenclud@191
   298
        private System.Windows.Forms.Button buttonAlignLeft;
StephaneLenclud@191
   299
        private System.Windows.Forms.Button buttonSetTopText;
StephaneLenclud@191
   300
        private System.Windows.Forms.Button buttonLayoutUpdate;
StephaneLenclud@191
   301
        private System.Windows.Forms.Button buttonSetBitmap;
StephaneLenclud@191
   302
        private System.Windows.Forms.Button buttonBitmapLayout;
StephaneLenclud@191
   303
        private System.Windows.Forms.Button buttonIndicatorsLayout;
StephaneLenclud@191
   304
        private System.Windows.Forms.Button buttonUpdateTexts;
StephaneLenclud@191
   305
		private System.Windows.Forms.Button buttonLayoutOneTextField;
StephaneLenclud@191
   306
        private System.Windows.Forms.NumericUpDown numericUpDownPriority;
StephaneLenclud@191
   307
        private System.Windows.Forms.Label labelPriority;
StephaneLenclud@261
   308
        private System.Windows.Forms.Button buttonTriggerEvents;
StephaneLenclud@261
   309
        private System.Windows.Forms.TextBox textBoxEventName;
StephaneLenclud@261
   310
        private System.Windows.Forms.Label label1;
StephaneLenclud@274
   311
        private System.Windows.Forms.Button buttonLayoutAudioVisualizer;
StephaneLenclud@274
   312
        private System.Windows.Forms.Button buttonLayoutMultipleAudioVisualizers;
StephaneLenclud@191
   313
    }
StephaneLenclud@191
   314
}
StephaneLenclud@191
   315