Client/MainForm.Designer.cs
author sl
Sat, 30 Aug 2014 19:24:47 +0200
changeset 47 c9e3d1389d06
parent 33 1363bda20171
child 62 ac698f4e1b36
permissions -rw-r--r--
Timer interval can now be set and is persisted.
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@43
    34
            this.buttonAlignRight = new System.Windows.Forms.Button();
sl@43
    35
            this.buttonAlignCenter = new System.Windows.Forms.Button();
sl@43
    36
            this.buttonAlignLeft = new System.Windows.Forms.Button();
sl@43
    37
            this.buttonSetTopText = new System.Windows.Forms.Button();
sl@18
    38
            this.SuspendLayout();
sl@18
    39
            // 
sl@18
    40
            // buttonSetText
sl@18
    41
            // 
sl@43
    42
            this.buttonSetText.Location = new System.Drawing.Point(13, 132);
sl@18
    43
            this.buttonSetText.Name = "buttonSetText";
sl@18
    44
            this.buttonSetText.Size = new System.Drawing.Size(75, 23);
sl@18
    45
            this.buttonSetText.TabIndex = 0;
sl@18
    46
            this.buttonSetText.Text = "Set Text";
sl@18
    47
            this.buttonSetText.UseVisualStyleBackColor = true;
sl@18
    48
            this.buttonSetText.Click += new System.EventHandler(this.buttonSetText_Click);
sl@18
    49
            // 
sl@33
    50
            // textBoxTop
sl@33
    51
            // 
sl@33
    52
            this.textBoxTop.Location = new System.Drawing.Point(12, 31);
sl@33
    53
            this.textBoxTop.Name = "textBoxTop";
sl@33
    54
            this.textBoxTop.Size = new System.Drawing.Size(419, 20);
sl@33
    55
            this.textBoxTop.TabIndex = 1;
sl@33
    56
            // 
sl@33
    57
            // textBoxBottom
sl@33
    58
            // 
sl@33
    59
            this.textBoxBottom.Location = new System.Drawing.Point(12, 57);
sl@33
    60
            this.textBoxBottom.Name = "textBoxBottom";
sl@33
    61
            this.textBoxBottom.Size = new System.Drawing.Size(419, 20);
sl@33
    62
            this.textBoxBottom.TabIndex = 2;
sl@33
    63
            // 
sl@43
    64
            // buttonAlignRight
sl@43
    65
            // 
sl@43
    66
            this.buttonAlignRight.Location = new System.Drawing.Point(176, 160);
sl@43
    67
            this.buttonAlignRight.Name = "buttonAlignRight";
sl@43
    68
            this.buttonAlignRight.Size = new System.Drawing.Size(75, 23);
sl@43
    69
            this.buttonAlignRight.TabIndex = 23;
sl@43
    70
            this.buttonAlignRight.Text = "Align Right";
sl@43
    71
            this.buttonAlignRight.UseVisualStyleBackColor = true;
sl@43
    72
            this.buttonAlignRight.Click += new System.EventHandler(this.buttonAlignRight_Click);
sl@43
    73
            // 
sl@43
    74
            // buttonAlignCenter
sl@43
    75
            // 
sl@43
    76
            this.buttonAlignCenter.Location = new System.Drawing.Point(94, 161);
sl@43
    77
            this.buttonAlignCenter.Name = "buttonAlignCenter";
sl@43
    78
            this.buttonAlignCenter.Size = new System.Drawing.Size(75, 23);
sl@43
    79
            this.buttonAlignCenter.TabIndex = 22;
sl@43
    80
            this.buttonAlignCenter.Text = "Align Center";
sl@43
    81
            this.buttonAlignCenter.UseVisualStyleBackColor = true;
sl@43
    82
            this.buttonAlignCenter.Click += new System.EventHandler(this.buttonAlignCenter_Click);
sl@43
    83
            // 
sl@43
    84
            // buttonAlignLeft
sl@43
    85
            // 
sl@43
    86
            this.buttonAlignLeft.Location = new System.Drawing.Point(12, 161);
sl@43
    87
            this.buttonAlignLeft.Name = "buttonAlignLeft";
sl@43
    88
            this.buttonAlignLeft.Size = new System.Drawing.Size(75, 23);
sl@43
    89
            this.buttonAlignLeft.TabIndex = 21;
sl@43
    90
            this.buttonAlignLeft.Text = "Align Left";
sl@43
    91
            this.buttonAlignLeft.UseVisualStyleBackColor = true;
sl@43
    92
            this.buttonAlignLeft.Click += new System.EventHandler(this.buttonAlignLeft_Click);
sl@43
    93
            // 
sl@43
    94
            // buttonSetTopText
sl@43
    95
            // 
sl@43
    96
            this.buttonSetTopText.Location = new System.Drawing.Point(94, 132);
sl@43
    97
            this.buttonSetTopText.Name = "buttonSetTopText";
sl@43
    98
            this.buttonSetTopText.Size = new System.Drawing.Size(75, 23);
sl@43
    99
            this.buttonSetTopText.TabIndex = 24;
sl@43
   100
            this.buttonSetTopText.Text = "Set Top Text";
sl@43
   101
            this.buttonSetTopText.UseVisualStyleBackColor = true;
sl@43
   102
            this.buttonSetTopText.Click += new System.EventHandler(this.buttonSetTopText_Click);
sl@43
   103
            // 
sl@18
   104
            // MainForm
sl@18
   105
            // 
sl@18
   106
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
sl@18
   107
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
sl@18
   108
            this.ClientSize = new System.Drawing.Size(443, 252);
sl@43
   109
            this.Controls.Add(this.buttonSetTopText);
sl@43
   110
            this.Controls.Add(this.buttonAlignRight);
sl@43
   111
            this.Controls.Add(this.buttonAlignCenter);
sl@43
   112
            this.Controls.Add(this.buttonAlignLeft);
sl@33
   113
            this.Controls.Add(this.textBoxBottom);
sl@33
   114
            this.Controls.Add(this.textBoxTop);
sl@18
   115
            this.Controls.Add(this.buttonSetText);
sl@18
   116
            this.Name = "MainForm";
sl@29
   117
            this.Text = "Client";
sl@26
   118
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
sl@18
   119
            this.Load += new System.EventHandler(this.MainForm_Load);
sl@18
   120
            this.ResumeLayout(false);
sl@33
   121
            this.PerformLayout();
sl@18
   122
sl@18
   123
        }
sl@18
   124
sl@18
   125
        #endregion
sl@18
   126
sl@18
   127
        private System.Windows.Forms.Button buttonSetText;
sl@33
   128
        private System.Windows.Forms.TextBox textBoxTop;
sl@33
   129
        private System.Windows.Forms.TextBox textBoxBottom;
sl@43
   130
        private System.Windows.Forms.Button buttonAlignRight;
sl@43
   131
        private System.Windows.Forms.Button buttonAlignCenter;
sl@43
   132
        private System.Windows.Forms.Button buttonAlignLeft;
sl@43
   133
        private System.Windows.Forms.Button buttonSetTopText;
sl@18
   134
    }
sl@18
   135
}
sl@18
   136