Rev 2094 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
using System;using System.Drawing;using System.Collections;using System.ComponentModel;using System.Windows.Forms;namespace EA_DocGen{/// <summary>/// Summary description for AboutForm./// </summary>public class AboutForm : System.Windows.Forms.Form{private System.Windows.Forms.Label label1;private System.Windows.Forms.Label label3;/// <summary>/// Required designer variable./// </summary>private System.ComponentModel.Container components = null;public AboutForm(){//// Required for Windows Form Designer support//InitializeComponent();//// TODO: Add any constructor code after InitializeComponent call//}/// <summary>/// Clean up any resources being used./// </summary>protected override void Dispose( bool disposing ){if( disposing ){if(components != null){components.Dispose();}}base.Dispose( disposing );}#region Windows Form Designer generated code/// <summary>/// Required method for Designer support - do not modify/// the contents of this method with the code editor./// </summary>private void InitializeComponent(){this.label1 = new System.Windows.Forms.Label();this.label3 = new System.Windows.Forms.Label();this.SuspendLayout();//// label1//this.label1.Location = new System.Drawing.Point(24, 8);this.label1.Name = "label1";this.label1.Size = new System.Drawing.Size(248, 40);this.label1.TabIndex = 0;this.label1.Text = "ERG Enterprise Architect Document Generation Addin";//// label3//this.label3.Location = new System.Drawing.Point(24, 56);this.label3.Name = "label3";this.label3.Size = new System.Drawing.Size(256, 40);this.label3.TabIndex = 2;this.label3.Text = "See TECHGP-00177 EA_DocGen User Manual";//// Form1//this.AutoScaleBaseSize = new System.Drawing.Size(6, 15);this.ClientSize = new System.Drawing.Size(292, 120);this.Controls.Add(this.label3);this.Controls.Add(this.label1);this.Name = "Form1";this.Text = "About";this.ResumeLayout(false);}#endregion}}