Client/MainForm.Designer.cs
author sl
Sat, 16 Aug 2014 11:15:42 +0200
changeset 33 1363bda20171
parent 29 c4e03315035c
child 43 86aad774b532
permissions -rw-r--r--
Adding texts fields to our test client.
Trying to fix bugs and optimize our marquee control.
Creating a proper ClientData class to use in our UI thread client dictionary.
Centralising tree-view update.
     1 namespace SharpDisplayClient
     2 {
     3     partial class MainForm
     4     {
     5         /// <summary>
     6         /// Required designer variable.
     7         /// </summary>
     8         private System.ComponentModel.IContainer components = null;
     9 
    10         /// <summary>
    11         /// Clean up any resources being used.
    12         /// </summary>
    13         /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
    14         protected override void Dispose(bool disposing)
    15         {
    16             if (disposing && (components != null))
    17             {
    18                 components.Dispose();
    19             }
    20             base.Dispose(disposing);
    21         }
    22 
    23         #region Windows Form Designer generated code
    24 
    25         /// <summary>
    26         /// Required method for Designer support - do not modify
    27         /// the contents of this method with the code editor.
    28         /// </summary>
    29         private void InitializeComponent()
    30         {
    31             this.buttonSetText = new System.Windows.Forms.Button();
    32             this.textBoxTop = new System.Windows.Forms.TextBox();
    33             this.textBoxBottom = new System.Windows.Forms.TextBox();
    34             this.SuspendLayout();
    35             // 
    36             // buttonSetText
    37             // 
    38             this.buttonSetText.Location = new System.Drawing.Point(12, 132);
    39             this.buttonSetText.Name = "buttonSetText";
    40             this.buttonSetText.Size = new System.Drawing.Size(75, 23);
    41             this.buttonSetText.TabIndex = 0;
    42             this.buttonSetText.Text = "Set Text";
    43             this.buttonSetText.UseVisualStyleBackColor = true;
    44             this.buttonSetText.Click += new System.EventHandler(this.buttonSetText_Click);
    45             // 
    46             // textBoxTop
    47             // 
    48             this.textBoxTop.Location = new System.Drawing.Point(12, 31);
    49             this.textBoxTop.Name = "textBoxTop";
    50             this.textBoxTop.Size = new System.Drawing.Size(419, 20);
    51             this.textBoxTop.TabIndex = 1;
    52             // 
    53             // textBoxBottom
    54             // 
    55             this.textBoxBottom.Location = new System.Drawing.Point(12, 57);
    56             this.textBoxBottom.Name = "textBoxBottom";
    57             this.textBoxBottom.Size = new System.Drawing.Size(419, 20);
    58             this.textBoxBottom.TabIndex = 2;
    59             // 
    60             // MainForm
    61             // 
    62             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
    63             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
    64             this.ClientSize = new System.Drawing.Size(443, 252);
    65             this.Controls.Add(this.textBoxBottom);
    66             this.Controls.Add(this.textBoxTop);
    67             this.Controls.Add(this.buttonSetText);
    68             this.Name = "MainForm";
    69             this.Text = "Client";
    70             this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
    71             this.Load += new System.EventHandler(this.MainForm_Load);
    72             this.ResumeLayout(false);
    73             this.PerformLayout();
    74 
    75         }
    76 
    77         #endregion
    78 
    79         private System.Windows.Forms.Button buttonSetText;
    80         private System.Windows.Forms.TextBox textBoxTop;
    81         private System.Windows.Forms.TextBox textBoxBottom;
    82     }
    83 }
    84