Client/MainForm.Designer.cs
author sl
Fri, 15 Aug 2014 13:26:38 +0200
changeset 32 4c416d2878dd
parent 26 a6fb2b2f73b0
child 33 1363bda20171
permissions -rw-r--r--
Reworking our protocols. Client name now displayed in our clients tab.
     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.SuspendLayout();
    33             // 
    34             // buttonSetText
    35             // 
    36             this.buttonSetText.Location = new System.Drawing.Point(170, 104);
    37             this.buttonSetText.Name = "buttonSetText";
    38             this.buttonSetText.Size = new System.Drawing.Size(75, 23);
    39             this.buttonSetText.TabIndex = 0;
    40             this.buttonSetText.Text = "Set Text";
    41             this.buttonSetText.UseVisualStyleBackColor = true;
    42             this.buttonSetText.Click += new System.EventHandler(this.buttonSetText_Click);
    43             // 
    44             // MainForm
    45             // 
    46             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
    47             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
    48             this.ClientSize = new System.Drawing.Size(443, 252);
    49             this.Controls.Add(this.buttonSetText);
    50             this.Name = "MainForm";
    51             this.Text = "Client";
    52             this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
    53             this.Load += new System.EventHandler(this.MainForm_Load);
    54             this.ResumeLayout(false);
    55 
    56         }
    57 
    58         #endregion
    59 
    60         private System.Windows.Forms.Button buttonSetText;
    61     }
    62 }
    63