Client/MainForm.Designer.cs
author sl
Tue, 12 Aug 2014 20:55:50 +0200
changeset 18 7acec5059fa6
child 26 a6fb2b2f73b0
permissions -rw-r--r--
Adding our client implementation. Moving server into its own folder.
     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 = "Sharp Display Client";
    52             this.Load += new System.EventHandler(this.MainForm_Load);
    53             this.ResumeLayout(false);
    54 
    55         }
    56 
    57         #endregion
    58 
    59         private System.Windows.Forms.Button buttonSetText;
    60     }
    61 }
    62