sl@18: namespace SharpDisplayClient
sl@18: {
sl@18: partial class MainForm
sl@18: {
sl@18: ///
sl@18: /// Required designer variable.
sl@18: ///
sl@18: private System.ComponentModel.IContainer components = null;
sl@18:
sl@18: ///
sl@18: /// Clean up any resources being used.
sl@18: ///
sl@18: /// true if managed resources should be disposed; otherwise, false.
sl@18: protected override void Dispose(bool disposing)
sl@18: {
sl@18: if (disposing && (components != null))
sl@18: {
sl@18: components.Dispose();
sl@18: }
sl@18: base.Dispose(disposing);
sl@18: }
sl@18:
sl@18: #region Windows Form Designer generated code
sl@18:
sl@18: ///
sl@18: /// Required method for Designer support - do not modify
sl@18: /// the contents of this method with the code editor.
sl@18: ///
sl@18: private void InitializeComponent()
sl@18: {
StephaneLenclud@183: this.buttonSetText = new System.Windows.Forms.Button();
StephaneLenclud@183: this.textBoxTop = new System.Windows.Forms.TextBox();
StephaneLenclud@183: this.textBoxBottom = new System.Windows.Forms.TextBox();
StephaneLenclud@183: this.buttonAlignRight = new System.Windows.Forms.Button();
StephaneLenclud@183: this.buttonAlignCenter = new System.Windows.Forms.Button();
StephaneLenclud@183: this.buttonAlignLeft = new System.Windows.Forms.Button();
StephaneLenclud@183: this.buttonSetTopText = new System.Windows.Forms.Button();
StephaneLenclud@183: this.buttonLayoutUpdate = new System.Windows.Forms.Button();
StephaneLenclud@183: this.buttonSetBitmap = new System.Windows.Forms.Button();
StephaneLenclud@183: this.buttonBitmapLayout = new System.Windows.Forms.Button();
StephaneLenclud@183: this.buttonIndicatorsLayout = new System.Windows.Forms.Button();
StephaneLenclud@183: this.buttonUpdateTexts = new System.Windows.Forms.Button();
StephaneLenclud@183: this.buttonLayoutOneTextField = new System.Windows.Forms.Button();
StephaneLenclud@184: this.numericUpDownPriority = new System.Windows.Forms.NumericUpDown();
StephaneLenclud@184: this.labelPriority = new System.Windows.Forms.Label();
StephaneLenclud@184: ((System.ComponentModel.ISupportInitialize)(this.numericUpDownPriority)).BeginInit();
StephaneLenclud@183: this.SuspendLayout();
StephaneLenclud@183: //
StephaneLenclud@183: // buttonSetText
StephaneLenclud@183: //
StephaneLenclud@183: this.buttonSetText.Location = new System.Drawing.Point(13, 132);
StephaneLenclud@183: this.buttonSetText.Name = "buttonSetText";
StephaneLenclud@183: this.buttonSetText.Size = new System.Drawing.Size(75, 23);
StephaneLenclud@183: this.buttonSetText.TabIndex = 0;
StephaneLenclud@183: this.buttonSetText.Text = "Set Text";
StephaneLenclud@183: this.buttonSetText.UseVisualStyleBackColor = true;
StephaneLenclud@183: this.buttonSetText.Click += new System.EventHandler(this.buttonSetText_Click);
StephaneLenclud@183: //
StephaneLenclud@183: // textBoxTop
StephaneLenclud@183: //
StephaneLenclud@183: this.textBoxTop.Location = new System.Drawing.Point(12, 31);
StephaneLenclud@183: this.textBoxTop.Name = "textBoxTop";
StephaneLenclud@183: this.textBoxTop.Size = new System.Drawing.Size(419, 20);
StephaneLenclud@183: this.textBoxTop.TabIndex = 1;
StephaneLenclud@183: //
StephaneLenclud@183: // textBoxBottom
StephaneLenclud@183: //
StephaneLenclud@183: this.textBoxBottom.Location = new System.Drawing.Point(12, 57);
StephaneLenclud@183: this.textBoxBottom.Name = "textBoxBottom";
StephaneLenclud@183: this.textBoxBottom.Size = new System.Drawing.Size(419, 20);
StephaneLenclud@183: this.textBoxBottom.TabIndex = 2;
StephaneLenclud@183: //
StephaneLenclud@183: // buttonAlignRight
StephaneLenclud@183: //
StephaneLenclud@183: this.buttonAlignRight.Location = new System.Drawing.Point(176, 160);
StephaneLenclud@183: this.buttonAlignRight.Name = "buttonAlignRight";
StephaneLenclud@183: this.buttonAlignRight.Size = new System.Drawing.Size(75, 23);
StephaneLenclud@183: this.buttonAlignRight.TabIndex = 23;
StephaneLenclud@183: this.buttonAlignRight.Text = "Align Right";
StephaneLenclud@183: this.buttonAlignRight.UseVisualStyleBackColor = true;
StephaneLenclud@183: this.buttonAlignRight.Click += new System.EventHandler(this.buttonAlignRight_Click);
StephaneLenclud@183: //
StephaneLenclud@183: // buttonAlignCenter
StephaneLenclud@183: //
StephaneLenclud@183: this.buttonAlignCenter.Location = new System.Drawing.Point(94, 161);
StephaneLenclud@183: this.buttonAlignCenter.Name = "buttonAlignCenter";
StephaneLenclud@183: this.buttonAlignCenter.Size = new System.Drawing.Size(75, 23);
StephaneLenclud@183: this.buttonAlignCenter.TabIndex = 22;
StephaneLenclud@183: this.buttonAlignCenter.Text = "Align Center";
StephaneLenclud@183: this.buttonAlignCenter.UseVisualStyleBackColor = true;
StephaneLenclud@183: this.buttonAlignCenter.Click += new System.EventHandler(this.buttonAlignCenter_Click);
StephaneLenclud@183: //
StephaneLenclud@183: // buttonAlignLeft
StephaneLenclud@183: //
StephaneLenclud@183: this.buttonAlignLeft.Location = new System.Drawing.Point(12, 161);
StephaneLenclud@183: this.buttonAlignLeft.Name = "buttonAlignLeft";
StephaneLenclud@183: this.buttonAlignLeft.Size = new System.Drawing.Size(75, 23);
StephaneLenclud@183: this.buttonAlignLeft.TabIndex = 21;
StephaneLenclud@183: this.buttonAlignLeft.Text = "Align Left";
StephaneLenclud@183: this.buttonAlignLeft.UseVisualStyleBackColor = true;
StephaneLenclud@183: this.buttonAlignLeft.Click += new System.EventHandler(this.buttonAlignLeft_Click);
StephaneLenclud@183: //
StephaneLenclud@183: // buttonSetTopText
StephaneLenclud@183: //
StephaneLenclud@183: this.buttonSetTopText.Location = new System.Drawing.Point(94, 132);
StephaneLenclud@183: this.buttonSetTopText.Name = "buttonSetTopText";
StephaneLenclud@183: this.buttonSetTopText.Size = new System.Drawing.Size(75, 23);
StephaneLenclud@183: this.buttonSetTopText.TabIndex = 24;
StephaneLenclud@183: this.buttonSetTopText.Text = "Set Top Text";
StephaneLenclud@183: this.buttonSetTopText.UseVisualStyleBackColor = true;
StephaneLenclud@183: this.buttonSetTopText.Click += new System.EventHandler(this.buttonSetTopText_Click);
StephaneLenclud@183: //
StephaneLenclud@183: // buttonLayoutUpdate
StephaneLenclud@183: //
StephaneLenclud@183: this.buttonLayoutUpdate.Location = new System.Drawing.Point(176, 131);
StephaneLenclud@183: this.buttonLayoutUpdate.Name = "buttonLayoutUpdate";
StephaneLenclud@183: this.buttonLayoutUpdate.Size = new System.Drawing.Size(156, 23);
StephaneLenclud@183: this.buttonLayoutUpdate.TabIndex = 25;
StephaneLenclud@183: this.buttonLayoutUpdate.Text = "Layout 2x2 and Recording";
StephaneLenclud@183: this.buttonLayoutUpdate.UseVisualStyleBackColor = true;
StephaneLenclud@183: this.buttonLayoutUpdate.Click += new System.EventHandler(this.buttonLayoutUpdate_Click);
StephaneLenclud@183: //
StephaneLenclud@183: // buttonSetBitmap
StephaneLenclud@183: //
StephaneLenclud@183: this.buttonSetBitmap.Location = new System.Drawing.Point(12, 190);
StephaneLenclud@183: this.buttonSetBitmap.Name = "buttonSetBitmap";
StephaneLenclud@183: this.buttonSetBitmap.Size = new System.Drawing.Size(75, 23);
StephaneLenclud@183: this.buttonSetBitmap.TabIndex = 26;
StephaneLenclud@183: this.buttonSetBitmap.Text = "Set Bitmap";
StephaneLenclud@183: this.buttonSetBitmap.UseVisualStyleBackColor = true;
StephaneLenclud@183: this.buttonSetBitmap.Click += new System.EventHandler(this.buttonSetBitmap_Click);
StephaneLenclud@183: //
StephaneLenclud@183: // buttonBitmapLayout
StephaneLenclud@183: //
StephaneLenclud@183: this.buttonBitmapLayout.Location = new System.Drawing.Point(176, 189);
StephaneLenclud@183: this.buttonBitmapLayout.Name = "buttonBitmapLayout";
StephaneLenclud@183: this.buttonBitmapLayout.Size = new System.Drawing.Size(75, 35);
StephaneLenclud@183: this.buttonBitmapLayout.TabIndex = 27;
StephaneLenclud@183: this.buttonBitmapLayout.Text = "Bitmap Layout";
StephaneLenclud@183: this.buttonBitmapLayout.UseVisualStyleBackColor = true;
StephaneLenclud@183: this.buttonBitmapLayout.Click += new System.EventHandler(this.buttonBitmapLayout_Click);
StephaneLenclud@183: //
StephaneLenclud@183: // buttonIndicatorsLayout
StephaneLenclud@183: //
StephaneLenclud@183: this.buttonIndicatorsLayout.Location = new System.Drawing.Point(94, 189);
StephaneLenclud@183: this.buttonIndicatorsLayout.Name = "buttonIndicatorsLayout";
StephaneLenclud@183: this.buttonIndicatorsLayout.Size = new System.Drawing.Size(75, 35);
StephaneLenclud@183: this.buttonIndicatorsLayout.TabIndex = 28;
StephaneLenclud@183: this.buttonIndicatorsLayout.Text = "Indicators Layout ";
StephaneLenclud@183: this.buttonIndicatorsLayout.UseVisualStyleBackColor = true;
StephaneLenclud@183: this.buttonIndicatorsLayout.Click += new System.EventHandler(this.buttonIndicatorsLayout_Click);
StephaneLenclud@183: //
StephaneLenclud@183: // buttonUpdateTexts
StephaneLenclud@183: //
StephaneLenclud@183: this.buttonUpdateTexts.Location = new System.Drawing.Point(257, 189);
StephaneLenclud@183: this.buttonUpdateTexts.Name = "buttonUpdateTexts";
StephaneLenclud@183: this.buttonUpdateTexts.Size = new System.Drawing.Size(75, 35);
StephaneLenclud@183: this.buttonUpdateTexts.TabIndex = 29;
StephaneLenclud@183: this.buttonUpdateTexts.Text = "Update Texts";
StephaneLenclud@183: this.buttonUpdateTexts.UseVisualStyleBackColor = true;
StephaneLenclud@183: this.buttonUpdateTexts.Click += new System.EventHandler(this.buttonUpdateTexts_Click);
StephaneLenclud@183: //
StephaneLenclud@183: // buttonLayoutOneTextField
StephaneLenclud@183: //
StephaneLenclud@183: this.buttonLayoutOneTextField.Location = new System.Drawing.Point(257, 160);
StephaneLenclud@183: this.buttonLayoutOneTextField.Name = "buttonLayoutOneTextField";
StephaneLenclud@183: this.buttonLayoutOneTextField.Size = new System.Drawing.Size(75, 23);
StephaneLenclud@183: this.buttonLayoutOneTextField.TabIndex = 30;
StephaneLenclud@183: this.buttonLayoutOneTextField.Text = "Layout 1x1";
StephaneLenclud@183: this.buttonLayoutOneTextField.UseVisualStyleBackColor = true;
StephaneLenclud@183: this.buttonLayoutOneTextField.Click += new System.EventHandler(this.buttonLayoutOneTextField_Click);
StephaneLenclud@183: //
StephaneLenclud@184: // numericUpDownPriority
StephaneLenclud@184: //
StephaneLenclud@184: this.numericUpDownPriority.Increment = new decimal(new int[] {
StephaneLenclud@184: 10,
StephaneLenclud@184: 0,
StephaneLenclud@184: 0,
StephaneLenclud@184: 0});
StephaneLenclud@184: this.numericUpDownPriority.Location = new System.Drawing.Point(57, 83);
StephaneLenclud@184: this.numericUpDownPriority.Maximum = new decimal(new int[] {
StephaneLenclud@184: 1000,
StephaneLenclud@184: 0,
StephaneLenclud@184: 0,
StephaneLenclud@184: 0});
StephaneLenclud@184: this.numericUpDownPriority.Name = "numericUpDownPriority";
StephaneLenclud@184: this.numericUpDownPriority.Size = new System.Drawing.Size(60, 20);
StephaneLenclud@184: this.numericUpDownPriority.TabIndex = 31;
StephaneLenclud@184: this.numericUpDownPriority.Value = new decimal(new int[] {
StephaneLenclud@184: 500,
StephaneLenclud@184: 0,
StephaneLenclud@184: 0,
StephaneLenclud@184: 0});
StephaneLenclud@184: this.numericUpDownPriority.ValueChanged += new System.EventHandler(this.numericUpDownPriority_ValueChanged);
StephaneLenclud@184: //
StephaneLenclud@184: // labelPriority
StephaneLenclud@184: //
StephaneLenclud@184: this.labelPriority.AutoSize = true;
StephaneLenclud@184: this.labelPriority.Location = new System.Drawing.Point(12, 85);
StephaneLenclud@184: this.labelPriority.Name = "labelPriority";
StephaneLenclud@184: this.labelPriority.Size = new System.Drawing.Size(41, 13);
StephaneLenclud@184: this.labelPriority.TabIndex = 32;
StephaneLenclud@184: this.labelPriority.Text = "Priority:";
StephaneLenclud@184: //
StephaneLenclud@183: // MainForm
StephaneLenclud@183: //
StephaneLenclud@183: this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
StephaneLenclud@183: this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
StephaneLenclud@183: this.ClientSize = new System.Drawing.Size(443, 252);
StephaneLenclud@184: this.Controls.Add(this.labelPriority);
StephaneLenclud@184: this.Controls.Add(this.numericUpDownPriority);
StephaneLenclud@183: this.Controls.Add(this.buttonLayoutOneTextField);
StephaneLenclud@183: this.Controls.Add(this.buttonUpdateTexts);
StephaneLenclud@183: this.Controls.Add(this.buttonIndicatorsLayout);
StephaneLenclud@183: this.Controls.Add(this.buttonBitmapLayout);
StephaneLenclud@183: this.Controls.Add(this.buttonSetBitmap);
StephaneLenclud@183: this.Controls.Add(this.buttonLayoutUpdate);
StephaneLenclud@183: this.Controls.Add(this.buttonSetTopText);
StephaneLenclud@183: this.Controls.Add(this.buttonAlignRight);
StephaneLenclud@183: this.Controls.Add(this.buttonAlignCenter);
StephaneLenclud@183: this.Controls.Add(this.buttonAlignLeft);
StephaneLenclud@183: this.Controls.Add(this.textBoxBottom);
StephaneLenclud@183: this.Controls.Add(this.textBoxTop);
StephaneLenclud@183: this.Controls.Add(this.buttonSetText);
StephaneLenclud@183: this.Name = "MainForm";
StephaneLenclud@183: this.Text = "Client";
StephaneLenclud@183: this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
StephaneLenclud@183: this.Load += new System.EventHandler(this.MainForm_Load);
StephaneLenclud@184: ((System.ComponentModel.ISupportInitialize)(this.numericUpDownPriority)).EndInit();
StephaneLenclud@183: this.ResumeLayout(false);
StephaneLenclud@183: this.PerformLayout();
sl@18:
sl@18: }
sl@18:
sl@18: #endregion
sl@18:
sl@18: private System.Windows.Forms.Button buttonSetText;
sl@33: private System.Windows.Forms.TextBox textBoxTop;
sl@33: private System.Windows.Forms.TextBox textBoxBottom;
sl@43: private System.Windows.Forms.Button buttonAlignRight;
sl@43: private System.Windows.Forms.Button buttonAlignCenter;
sl@43: private System.Windows.Forms.Button buttonAlignLeft;
sl@43: private System.Windows.Forms.Button buttonSetTopText;
sl@62: private System.Windows.Forms.Button buttonLayoutUpdate;
sl@68: private System.Windows.Forms.Button buttonSetBitmap;
sl@71: private System.Windows.Forms.Button buttonBitmapLayout;
sl@79: private System.Windows.Forms.Button buttonIndicatorsLayout;
sl@80: private System.Windows.Forms.Button buttonUpdateTexts;
StephaneLenclud@108: private System.Windows.Forms.Button buttonLayoutOneTextField;
StephaneLenclud@184: private System.Windows.Forms.NumericUpDown numericUpDownPriority;
StephaneLenclud@184: private System.Windows.Forms.Label labelPriority;
sl@18: }
sl@18: }
sl@18: