Tried using Control instead of Label as base class for our Marquee.
Sticking to Label for now.
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();
38 this.buttonSetText.Location = new System.Drawing.Point(12, 132);
39 this.buttonSetText.Name = "buttonSetText";
40 this.buttonSetText.Size = new System.Drawing.Size(75, 23);
41 this.buttonSetText.TabIndex = 0;
42 this.buttonSetText.Text = "Set Text";
43 this.buttonSetText.UseVisualStyleBackColor = true;
44 this.buttonSetText.Click += new System.EventHandler(this.buttonSetText_Click);
48 this.textBoxTop.Location = new System.Drawing.Point(12, 31);
49 this.textBoxTop.Name = "textBoxTop";
50 this.textBoxTop.Size = new System.Drawing.Size(419, 20);
51 this.textBoxTop.TabIndex = 1;
55 this.textBoxBottom.Location = new System.Drawing.Point(12, 57);
56 this.textBoxBottom.Name = "textBoxBottom";
57 this.textBoxBottom.Size = new System.Drawing.Size(419, 20);
58 this.textBoxBottom.TabIndex = 2;
62 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
63 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
64 this.ClientSize = new System.Drawing.Size(443, 252);
65 this.Controls.Add(this.textBoxBottom);
66 this.Controls.Add(this.textBoxTop);
67 this.Controls.Add(this.buttonSetText);
68 this.Name = "MainForm";
70 this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
71 this.Load += new System.EventHandler(this.MainForm_Load);
72 this.ResumeLayout(false);
79 private System.Windows.Forms.Button buttonSetText;
80 private System.Windows.Forms.TextBox textBoxTop;
81 private System.Windows.Forms.TextBox textBoxBottom;