#region Using directives using System; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; #endregion namespace blurbsnews { class FormAbout : Form { private System.Windows.Forms.Label label2; private System.Windows.Forms.Label label1; public FormAbout() { InitializeComponent(); } private void FormAbout_Load(object sender, EventArgs e) { } private void InitializeComponent() { this.label1 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.SuspendLayout(); // // label1 // this.label1.Location = new System.Drawing.Point(8, 8); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(232, 16); this.label1.TabIndex = 0; this.label1.Text = "Captivate 0.0.1 - 2004"; // // label2 // this.label2.Location = new System.Drawing.Point(8, 32); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(280, 16); this.label2.TabIndex = 1; this.label2.Text = "Double click to save screenshot to Desktop"; // // FormAbout // this.AutoScaleBaseSize = new System.Drawing.Size(6, 16); this.ClientSize = new System.Drawing.Size(296, 74); this.Controls.Add(this.label2); this.Controls.Add(this.label1); this.Name = "FormAbout"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "Captivate"; this.ResumeLayout(false); } } }