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