Subversion Repositories DevTools

Rev

Rev 2094 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2088 ghuddy 1
using System;
2
using System.Drawing;
3
using System.Collections;
4
using System.ComponentModel;
5
using System.Windows.Forms;
6
 
7
namespace EA_DocGen
8
{
9
	/// <summary>
10
	/// Summary description for AboutForm.
11
	/// </summary>
12
	public class AboutForm : System.Windows.Forms.Form
13
	{
14
      private System.Windows.Forms.Label label1;
15
      private System.Windows.Forms.Label label3;
16
		/// <summary>
17
		/// Required designer variable.
18
		/// </summary>
19
		private System.ComponentModel.Container components = null;
20
 
21
		public AboutForm()
22
		{
23
			//
24
			// Required for Windows Form Designer support
25
			//
26
			InitializeComponent();
27
 
28
			//
29
			// TODO: Add any constructor code after InitializeComponent call
30
			//
31
		}
32
 
33
		/// <summary>
34
		/// Clean up any resources being used.
35
		/// </summary>
36
		protected override void Dispose( bool disposing )
37
		{
38
			if( disposing )
39
			{
40
				if(components != null)
41
				{
42
					components.Dispose();
43
				}
44
			}
45
			base.Dispose( disposing );
46
		}
47
 
48
		#region Windows Form Designer generated code
49
		/// <summary>
50
		/// Required method for Designer support - do not modify
51
		/// the contents of this method with the code editor.
52
		/// </summary>
53
		private void InitializeComponent()
54
		{
55
         this.label1 = new System.Windows.Forms.Label();
56
         this.label3 = new System.Windows.Forms.Label();
57
         this.SuspendLayout();
58
         // 
59
         // label1
60
         // 
61
         this.label1.Location = new System.Drawing.Point(24, 8);
62
         this.label1.Name = "label1";
63
         this.label1.Size = new System.Drawing.Size(248, 40);
64
         this.label1.TabIndex = 0;
65
         this.label1.Text = "ERG Enterprise Architect Document Generation Addin";
66
         // 
67
         // label3
68
         // 
69
         this.label3.Location = new System.Drawing.Point(24, 56);
70
         this.label3.Name = "label3";
71
         this.label3.Size = new System.Drawing.Size(256, 40);
72
         this.label3.TabIndex = 2;
73
         this.label3.Text = "See TECHGP-00177 EA_DocGen User Manual";
74
         // 
75
         // Form1
76
         // 
77
         this.AutoScaleBaseSize = new System.Drawing.Size(6, 15);
78
         this.ClientSize = new System.Drawing.Size(292, 120);
79
         this.Controls.Add(this.label3);
80
         this.Controls.Add(this.label1);
81
         this.Name = "Form1";
82
         this.Text = "About";
83
         this.ResumeLayout(false);
84
 
85
      }
86
		#endregion
87
 
88
 
89
	}
90
}