Client/MainForm.Designer.cs
author StephaneLenclud
Mon, 18 Aug 2014 23:43:44 +0200
changeset 35 f3893924a6eb
parent 29 c4e03315035c
child 43 86aad774b532
permissions -rw-r--r--
Tried using Control instead of Label as base class for our Marquee.
Sticking to Label for now.
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
        {
sl@18
    31
            this.buttonSetText = new System.Windows.Forms.Button();
sl@33
    32
            this.textBoxTop = new System.Windows.Forms.TextBox();
sl@33
    33
            this.textBoxBottom = new System.Windows.Forms.TextBox();
sl@18
    34
            this.SuspendLayout();
sl@18
    35
            // 
sl@18
    36
            // buttonSetText
sl@18
    37
            // 
sl@33
    38
            this.buttonSetText.Location = new System.Drawing.Point(12, 132);
sl@18
    39
            this.buttonSetText.Name = "buttonSetText";
sl@18
    40
            this.buttonSetText.Size = new System.Drawing.Size(75, 23);
sl@18
    41
            this.buttonSetText.TabIndex = 0;
sl@18
    42
            this.buttonSetText.Text = "Set Text";
sl@18
    43
            this.buttonSetText.UseVisualStyleBackColor = true;
sl@18
    44
            this.buttonSetText.Click += new System.EventHandler(this.buttonSetText_Click);
sl@18
    45
            // 
sl@33
    46
            // textBoxTop
sl@33
    47
            // 
sl@33
    48
            this.textBoxTop.Location = new System.Drawing.Point(12, 31);
sl@33
    49
            this.textBoxTop.Name = "textBoxTop";
sl@33
    50
            this.textBoxTop.Size = new System.Drawing.Size(419, 20);
sl@33
    51
            this.textBoxTop.TabIndex = 1;
sl@33
    52
            // 
sl@33
    53
            // textBoxBottom
sl@33
    54
            // 
sl@33
    55
            this.textBoxBottom.Location = new System.Drawing.Point(12, 57);
sl@33
    56
            this.textBoxBottom.Name = "textBoxBottom";
sl@33
    57
            this.textBoxBottom.Size = new System.Drawing.Size(419, 20);
sl@33
    58
            this.textBoxBottom.TabIndex = 2;
sl@33
    59
            // 
sl@18
    60
            // MainForm
sl@18
    61
            // 
sl@18
    62
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
sl@18
    63
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
sl@18
    64
            this.ClientSize = new System.Drawing.Size(443, 252);
sl@33
    65
            this.Controls.Add(this.textBoxBottom);
sl@33
    66
            this.Controls.Add(this.textBoxTop);
sl@18
    67
            this.Controls.Add(this.buttonSetText);
sl@18
    68
            this.Name = "MainForm";
sl@29
    69
            this.Text = "Client";
sl@26
    70
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
sl@18
    71
            this.Load += new System.EventHandler(this.MainForm_Load);
sl@18
    72
            this.ResumeLayout(false);
sl@33
    73
            this.PerformLayout();
sl@18
    74
sl@18
    75
        }
sl@18
    76
sl@18
    77
        #endregion
sl@18
    78
sl@18
    79
        private System.Windows.Forms.Button buttonSetText;
sl@33
    80
        private System.Windows.Forms.TextBox textBoxTop;
sl@33
    81
        private System.Windows.Forms.TextBox textBoxBottom;
sl@18
    82
    }
sl@18
    83
}
sl@18
    84