Adding current client concept.
1 namespace SharpDisplayClient
6 /// Required designer variable.
8 private System.ComponentModel.IContainer components = null;
11 /// Clean up any resources being used.
13 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14 protected override void Dispose(bool disposing)
16 if (disposing && (components != null))
20 base.Dispose(disposing);
23 #region Windows Form Designer generated code
26 /// Required method for Designer support - do not modify
27 /// the contents of this method with the code editor.
29 private void InitializeComponent()
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();
43 this.buttonSetText.Location = new System.Drawing.Point(13, 132);
44 this.buttonSetText.Name = "buttonSetText";
45 this.buttonSetText.Size = new System.Drawing.Size(75, 23);
46 this.buttonSetText.TabIndex = 0;
47 this.buttonSetText.Text = "Set Text";
48 this.buttonSetText.UseVisualStyleBackColor = true;
49 this.buttonSetText.Click += new System.EventHandler(this.buttonSetText_Click);
53 this.textBoxTop.Location = new System.Drawing.Point(12, 31);
54 this.textBoxTop.Name = "textBoxTop";
55 this.textBoxTop.Size = new System.Drawing.Size(419, 20);
56 this.textBoxTop.TabIndex = 1;
60 this.textBoxBottom.Location = new System.Drawing.Point(12, 57);
61 this.textBoxBottom.Name = "textBoxBottom";
62 this.textBoxBottom.Size = new System.Drawing.Size(419, 20);
63 this.textBoxBottom.TabIndex = 2;
67 this.buttonAlignRight.Location = new System.Drawing.Point(176, 160);
68 this.buttonAlignRight.Name = "buttonAlignRight";
69 this.buttonAlignRight.Size = new System.Drawing.Size(75, 23);
70 this.buttonAlignRight.TabIndex = 23;
71 this.buttonAlignRight.Text = "Align Right";
72 this.buttonAlignRight.UseVisualStyleBackColor = true;
73 this.buttonAlignRight.Click += new System.EventHandler(this.buttonAlignRight_Click);
77 this.buttonAlignCenter.Location = new System.Drawing.Point(94, 161);
78 this.buttonAlignCenter.Name = "buttonAlignCenter";
79 this.buttonAlignCenter.Size = new System.Drawing.Size(75, 23);
80 this.buttonAlignCenter.TabIndex = 22;
81 this.buttonAlignCenter.Text = "Align Center";
82 this.buttonAlignCenter.UseVisualStyleBackColor = true;
83 this.buttonAlignCenter.Click += new System.EventHandler(this.buttonAlignCenter_Click);
87 this.buttonAlignLeft.Location = new System.Drawing.Point(12, 161);
88 this.buttonAlignLeft.Name = "buttonAlignLeft";
89 this.buttonAlignLeft.Size = new System.Drawing.Size(75, 23);
90 this.buttonAlignLeft.TabIndex = 21;
91 this.buttonAlignLeft.Text = "Align Left";
92 this.buttonAlignLeft.UseVisualStyleBackColor = true;
93 this.buttonAlignLeft.Click += new System.EventHandler(this.buttonAlignLeft_Click);
97 this.buttonSetTopText.Location = new System.Drawing.Point(94, 132);
98 this.buttonSetTopText.Name = "buttonSetTopText";
99 this.buttonSetTopText.Size = new System.Drawing.Size(75, 23);
100 this.buttonSetTopText.TabIndex = 24;
101 this.buttonSetTopText.Text = "Set Top Text";
102 this.buttonSetTopText.UseVisualStyleBackColor = true;
103 this.buttonSetTopText.Click += new System.EventHandler(this.buttonSetTopText_Click);
105 // buttonLayoutUpdate
107 this.buttonLayoutUpdate.Location = new System.Drawing.Point(176, 131);
108 this.buttonLayoutUpdate.Name = "buttonLayoutUpdate";
109 this.buttonLayoutUpdate.Size = new System.Drawing.Size(75, 23);
110 this.buttonLayoutUpdate.TabIndex = 25;
111 this.buttonLayoutUpdate.Text = "Layout 2x2";
112 this.buttonLayoutUpdate.UseVisualStyleBackColor = true;
113 this.buttonLayoutUpdate.Click += new System.EventHandler(this.buttonLayoutUpdate_Click);
117 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
118 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
119 this.ClientSize = new System.Drawing.Size(443, 252);
120 this.Controls.Add(this.buttonLayoutUpdate);
121 this.Controls.Add(this.buttonSetTopText);
122 this.Controls.Add(this.buttonAlignRight);
123 this.Controls.Add(this.buttonAlignCenter);
124 this.Controls.Add(this.buttonAlignLeft);
125 this.Controls.Add(this.textBoxBottom);
126 this.Controls.Add(this.textBoxTop);
127 this.Controls.Add(this.buttonSetText);
128 this.Name = "MainForm";
129 this.Text = "Client";
130 this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
131 this.Load += new System.EventHandler(this.MainForm_Load);
132 this.ResumeLayout(false);
133 this.PerformLayout();
139 private System.Windows.Forms.Button buttonSetText;
140 private System.Windows.Forms.TextBox textBoxTop;
141 private System.Windows.Forms.TextBox textBoxBottom;
142 private System.Windows.Forms.Button buttonAlignRight;
143 private System.Windows.Forms.Button buttonAlignCenter;
144 private System.Windows.Forms.Button buttonAlignLeft;
145 private System.Windows.Forms.Button buttonSetTopText;
146 private System.Windows.Forms.Button buttonLayoutUpdate;