1.1 --- a/Client/MainForm.Designer.cs Fri Aug 22 10:55:34 2014 +0200
1.2 +++ b/Client/MainForm.Designer.cs Fri Aug 22 22:48:30 2014 +0200
1.3 @@ -31,11 +31,15 @@
1.4 this.buttonSetText = new System.Windows.Forms.Button();
1.5 this.textBoxTop = new System.Windows.Forms.TextBox();
1.6 this.textBoxBottom = new System.Windows.Forms.TextBox();
1.7 + this.buttonAlignRight = new System.Windows.Forms.Button();
1.8 + this.buttonAlignCenter = new System.Windows.Forms.Button();
1.9 + this.buttonAlignLeft = new System.Windows.Forms.Button();
1.10 + this.buttonSetTopText = new System.Windows.Forms.Button();
1.11 this.SuspendLayout();
1.12 //
1.13 // buttonSetText
1.14 //
1.15 - this.buttonSetText.Location = new System.Drawing.Point(12, 132);
1.16 + this.buttonSetText.Location = new System.Drawing.Point(13, 132);
1.17 this.buttonSetText.Name = "buttonSetText";
1.18 this.buttonSetText.Size = new System.Drawing.Size(75, 23);
1.19 this.buttonSetText.TabIndex = 0;
1.20 @@ -57,11 +61,55 @@
1.21 this.textBoxBottom.Size = new System.Drawing.Size(419, 20);
1.22 this.textBoxBottom.TabIndex = 2;
1.23 //
1.24 + // buttonAlignRight
1.25 + //
1.26 + this.buttonAlignRight.Location = new System.Drawing.Point(176, 160);
1.27 + this.buttonAlignRight.Name = "buttonAlignRight";
1.28 + this.buttonAlignRight.Size = new System.Drawing.Size(75, 23);
1.29 + this.buttonAlignRight.TabIndex = 23;
1.30 + this.buttonAlignRight.Text = "Align Right";
1.31 + this.buttonAlignRight.UseVisualStyleBackColor = true;
1.32 + this.buttonAlignRight.Click += new System.EventHandler(this.buttonAlignRight_Click);
1.33 + //
1.34 + // buttonAlignCenter
1.35 + //
1.36 + this.buttonAlignCenter.Location = new System.Drawing.Point(94, 161);
1.37 + this.buttonAlignCenter.Name = "buttonAlignCenter";
1.38 + this.buttonAlignCenter.Size = new System.Drawing.Size(75, 23);
1.39 + this.buttonAlignCenter.TabIndex = 22;
1.40 + this.buttonAlignCenter.Text = "Align Center";
1.41 + this.buttonAlignCenter.UseVisualStyleBackColor = true;
1.42 + this.buttonAlignCenter.Click += new System.EventHandler(this.buttonAlignCenter_Click);
1.43 + //
1.44 + // buttonAlignLeft
1.45 + //
1.46 + this.buttonAlignLeft.Location = new System.Drawing.Point(12, 161);
1.47 + this.buttonAlignLeft.Name = "buttonAlignLeft";
1.48 + this.buttonAlignLeft.Size = new System.Drawing.Size(75, 23);
1.49 + this.buttonAlignLeft.TabIndex = 21;
1.50 + this.buttonAlignLeft.Text = "Align Left";
1.51 + this.buttonAlignLeft.UseVisualStyleBackColor = true;
1.52 + this.buttonAlignLeft.Click += new System.EventHandler(this.buttonAlignLeft_Click);
1.53 + //
1.54 + // buttonSetTopText
1.55 + //
1.56 + this.buttonSetTopText.Location = new System.Drawing.Point(94, 132);
1.57 + this.buttonSetTopText.Name = "buttonSetTopText";
1.58 + this.buttonSetTopText.Size = new System.Drawing.Size(75, 23);
1.59 + this.buttonSetTopText.TabIndex = 24;
1.60 + this.buttonSetTopText.Text = "Set Top Text";
1.61 + this.buttonSetTopText.UseVisualStyleBackColor = true;
1.62 + this.buttonSetTopText.Click += new System.EventHandler(this.buttonSetTopText_Click);
1.63 + //
1.64 // MainForm
1.65 //
1.66 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
1.67 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
1.68 this.ClientSize = new System.Drawing.Size(443, 252);
1.69 + this.Controls.Add(this.buttonSetTopText);
1.70 + this.Controls.Add(this.buttonAlignRight);
1.71 + this.Controls.Add(this.buttonAlignCenter);
1.72 + this.Controls.Add(this.buttonAlignLeft);
1.73 this.Controls.Add(this.textBoxBottom);
1.74 this.Controls.Add(this.textBoxTop);
1.75 this.Controls.Add(this.buttonSetText);
1.76 @@ -79,6 +127,10 @@
1.77 private System.Windows.Forms.Button buttonSetText;
1.78 private System.Windows.Forms.TextBox textBoxTop;
1.79 private System.Windows.Forms.TextBox textBoxBottom;
1.80 + private System.Windows.Forms.Button buttonAlignRight;
1.81 + private System.Windows.Forms.Button buttonAlignCenter;
1.82 + private System.Windows.Forms.Button buttonAlignLeft;
1.83 + private System.Windows.Forms.Button buttonSetTopText;
1.84 }
1.85 }
1.86