Client/MainForm.Designer.cs
author sl
Mon, 13 Oct 2014 21:21:53 +0200
changeset 68 1d0cd5e6e0a9
parent 67 6e50baf5a811
child 70 dcd2bbb90d42
permissions -rw-r--r--
Bitmap field now mostly working.
     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.buttonAlignRight = new System.Windows.Forms.Button();
    35             this.buttonAlignCenter = new System.Windows.Forms.Button();
    36             this.buttonAlignLeft = new System.Windows.Forms.Button();
    37             this.buttonSetTopText = new System.Windows.Forms.Button();
    38             this.buttonLayoutUpdate = new System.Windows.Forms.Button();
    39             this.buttonSetBitmap = new System.Windows.Forms.Button();
    40             this.SuspendLayout();
    41             // 
    42             // buttonSetText
    43             // 
    44             this.buttonSetText.Location = new System.Drawing.Point(13, 132);
    45             this.buttonSetText.Name = "buttonSetText";
    46             this.buttonSetText.Size = new System.Drawing.Size(75, 23);
    47             this.buttonSetText.TabIndex = 0;
    48             this.buttonSetText.Text = "Set Text";
    49             this.buttonSetText.UseVisualStyleBackColor = true;
    50             this.buttonSetText.Click += new System.EventHandler(this.buttonSetText_Click);
    51             // 
    52             // textBoxTop
    53             // 
    54             this.textBoxTop.Location = new System.Drawing.Point(12, 31);
    55             this.textBoxTop.Name = "textBoxTop";
    56             this.textBoxTop.Size = new System.Drawing.Size(419, 20);
    57             this.textBoxTop.TabIndex = 1;
    58             // 
    59             // textBoxBottom
    60             // 
    61             this.textBoxBottom.Location = new System.Drawing.Point(12, 57);
    62             this.textBoxBottom.Name = "textBoxBottom";
    63             this.textBoxBottom.Size = new System.Drawing.Size(419, 20);
    64             this.textBoxBottom.TabIndex = 2;
    65             // 
    66             // buttonAlignRight
    67             // 
    68             this.buttonAlignRight.Location = new System.Drawing.Point(176, 160);
    69             this.buttonAlignRight.Name = "buttonAlignRight";
    70             this.buttonAlignRight.Size = new System.Drawing.Size(75, 23);
    71             this.buttonAlignRight.TabIndex = 23;
    72             this.buttonAlignRight.Text = "Align Right";
    73             this.buttonAlignRight.UseVisualStyleBackColor = true;
    74             this.buttonAlignRight.Click += new System.EventHandler(this.buttonAlignRight_Click);
    75             // 
    76             // buttonAlignCenter
    77             // 
    78             this.buttonAlignCenter.Location = new System.Drawing.Point(94, 161);
    79             this.buttonAlignCenter.Name = "buttonAlignCenter";
    80             this.buttonAlignCenter.Size = new System.Drawing.Size(75, 23);
    81             this.buttonAlignCenter.TabIndex = 22;
    82             this.buttonAlignCenter.Text = "Align Center";
    83             this.buttonAlignCenter.UseVisualStyleBackColor = true;
    84             this.buttonAlignCenter.Click += new System.EventHandler(this.buttonAlignCenter_Click);
    85             // 
    86             // buttonAlignLeft
    87             // 
    88             this.buttonAlignLeft.Location = new System.Drawing.Point(12, 161);
    89             this.buttonAlignLeft.Name = "buttonAlignLeft";
    90             this.buttonAlignLeft.Size = new System.Drawing.Size(75, 23);
    91             this.buttonAlignLeft.TabIndex = 21;
    92             this.buttonAlignLeft.Text = "Align Left";
    93             this.buttonAlignLeft.UseVisualStyleBackColor = true;
    94             this.buttonAlignLeft.Click += new System.EventHandler(this.buttonAlignLeft_Click);
    95             // 
    96             // buttonSetTopText
    97             // 
    98             this.buttonSetTopText.Location = new System.Drawing.Point(94, 132);
    99             this.buttonSetTopText.Name = "buttonSetTopText";
   100             this.buttonSetTopText.Size = new System.Drawing.Size(75, 23);
   101             this.buttonSetTopText.TabIndex = 24;
   102             this.buttonSetTopText.Text = "Set Top Text";
   103             this.buttonSetTopText.UseVisualStyleBackColor = true;
   104             this.buttonSetTopText.Click += new System.EventHandler(this.buttonSetTopText_Click);
   105             // 
   106             // buttonLayoutUpdate
   107             // 
   108             this.buttonLayoutUpdate.Location = new System.Drawing.Point(176, 131);
   109             this.buttonLayoutUpdate.Name = "buttonLayoutUpdate";
   110             this.buttonLayoutUpdate.Size = new System.Drawing.Size(75, 23);
   111             this.buttonLayoutUpdate.TabIndex = 25;
   112             this.buttonLayoutUpdate.Text = "Layout 2x2";
   113             this.buttonLayoutUpdate.UseVisualStyleBackColor = true;
   114             this.buttonLayoutUpdate.Click += new System.EventHandler(this.buttonLayoutUpdate_Click);
   115             // 
   116             // buttonSetBitmap
   117             // 
   118             this.buttonSetBitmap.Location = new System.Drawing.Point(12, 190);
   119             this.buttonSetBitmap.Name = "buttonSetBitmap";
   120             this.buttonSetBitmap.Size = new System.Drawing.Size(75, 23);
   121             this.buttonSetBitmap.TabIndex = 26;
   122             this.buttonSetBitmap.Text = "Set Bitmap";
   123             this.buttonSetBitmap.UseVisualStyleBackColor = true;
   124             this.buttonSetBitmap.Click += new System.EventHandler(this.buttonSetBitmap_Click);
   125             // 
   126             // MainForm
   127             // 
   128             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
   129             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
   130             this.ClientSize = new System.Drawing.Size(443, 252);
   131             this.Controls.Add(this.buttonSetBitmap);
   132             this.Controls.Add(this.buttonLayoutUpdate);
   133             this.Controls.Add(this.buttonSetTopText);
   134             this.Controls.Add(this.buttonAlignRight);
   135             this.Controls.Add(this.buttonAlignCenter);
   136             this.Controls.Add(this.buttonAlignLeft);
   137             this.Controls.Add(this.textBoxBottom);
   138             this.Controls.Add(this.textBoxTop);
   139             this.Controls.Add(this.buttonSetText);
   140             this.Name = "MainForm";
   141             this.Text = "Client";
   142             this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
   143             this.Load += new System.EventHandler(this.MainForm_Load);
   144             this.ResumeLayout(false);
   145             this.PerformLayout();
   146 
   147         }
   148 
   149         #endregion
   150 
   151         private System.Windows.Forms.Button buttonSetText;
   152         private System.Windows.Forms.TextBox textBoxTop;
   153         private System.Windows.Forms.TextBox textBoxBottom;
   154         private System.Windows.Forms.Button buttonAlignRight;
   155         private System.Windows.Forms.Button buttonAlignCenter;
   156         private System.Windows.Forms.Button buttonAlignLeft;
   157         private System.Windows.Forms.Button buttonSetTopText;
   158         private System.Windows.Forms.Button buttonLayoutUpdate;
   159         private System.Windows.Forms.Button buttonSetBitmap;
   160     }
   161 }
   162