Subversion Repositories DevTools

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2094 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 TerminologyForm.
11
	/// </summary>
12
	public class TerminologyForm : System.Windows.Forms.Form
13
	{
14
      private System.Windows.Forms.Button buttonCancel;
15
      private System.Windows.Forms.Button buttonOK;
16
      public System.Windows.Forms.TextBox textBox_Term;
17
      public System.Windows.Forms.TextBox textBox_TermExpansion;
18
      private System.Windows.Forms.Label label1;
19
      private System.Windows.Forms.Label label2;
20
		/// <summary>
21
		/// Required designer variable.
22
		/// </summary>
23
		private System.ComponentModel.Container components = null;
24
 
25
		public TerminologyForm()
26
		{
27
			//
28
			// Required for Windows Form Designer support
29
			//
30
			InitializeComponent();
31
 
32
			//
33
			// TODO: Add any constructor code after InitializeComponent call
34
			//
35
		}
36
 
37
		/// <summary>
38
		/// Clean up any resources being used.
39
		/// </summary>
40
		protected override void Dispose( bool disposing )
41
		{
42
			if( disposing )
43
			{
44
				if(components != null)
45
				{
46
					components.Dispose();
47
				}
48
			}
49
			base.Dispose( disposing );
50
		}
51
 
52
		#region Windows Form Designer generated code
53
		/// <summary>
54
		/// Required method for Designer support - do not modify
55
		/// the contents of this method with the code editor.
56
		/// </summary>
57
		private void InitializeComponent()
58
		{
59
         this.buttonCancel = new System.Windows.Forms.Button();
60
         this.buttonOK = new System.Windows.Forms.Button();
61
         this.textBox_Term = new System.Windows.Forms.TextBox();
62
         this.textBox_TermExpansion = new System.Windows.Forms.TextBox();
63
         this.label1 = new System.Windows.Forms.Label();
64
         this.label2 = new System.Windows.Forms.Label();
65
         this.SuspendLayout();
66
         // 
67
         // buttonCancel
68
         // 
69
         this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
70
         this.buttonCancel.Location = new System.Drawing.Point(312, 224);
71
         this.buttonCancel.Name = "buttonCancel";
72
         this.buttonCancel.Size = new System.Drawing.Size(64, 24);
73
         this.buttonCancel.TabIndex = 0;
74
         this.buttonCancel.Text = "Cancel";
75
         // 
76
         // buttonOK
77
         // 
78
         this.buttonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
79
         this.buttonOK.Location = new System.Drawing.Point(216, 224);
80
         this.buttonOK.Name = "buttonOK";
81
         this.buttonOK.TabIndex = 1;
82
         this.buttonOK.Text = "OK";
83
         // 
84
         // textBox_Term
85
         // 
86
         this.textBox_Term.Location = new System.Drawing.Point(8, 32);
87
         this.textBox_Term.Name = "textBox_Term";
88
         this.textBox_Term.Size = new System.Drawing.Size(264, 22);
89
         this.textBox_Term.TabIndex = 2;
90
         this.textBox_Term.Text = "";
91
         // 
92
         // textBox_TermExpansion
93
         // 
94
         this.textBox_TermExpansion.Location = new System.Drawing.Point(8, 96);
95
         this.textBox_TermExpansion.Multiline = true;
96
         this.textBox_TermExpansion.Name = "textBox_TermExpansion";
97
         this.textBox_TermExpansion.Size = new System.Drawing.Size(368, 104);
98
         this.textBox_TermExpansion.TabIndex = 3;
99
         this.textBox_TermExpansion.Text = "";
100
         // 
101
         // label1
102
         // 
103
         this.label1.Location = new System.Drawing.Point(8, 8);
104
         this.label1.Name = "label1";
105
         this.label1.Size = new System.Drawing.Size(256, 16);
106
         this.label1.TabIndex = 4;
107
         this.label1.Text = "Term / Acronym / etc";
108
         // 
109
         // label2
110
         // 
111
         this.label2.Location = new System.Drawing.Point(8, 72);
112
         this.label2.Name = "label2";
113
         this.label2.Size = new System.Drawing.Size(240, 16);
114
         this.label2.TabIndex = 5;
115
         this.label2.Text = "Meaning / Explanation / Expansion";
116
         // 
117
         // TerminologyForm
118
         // 
119
         this.AutoScaleBaseSize = new System.Drawing.Size(6, 15);
120
         this.ClientSize = new System.Drawing.Size(392, 264);
121
         this.Controls.Add(this.label2);
122
         this.Controls.Add(this.label1);
123
         this.Controls.Add(this.textBox_TermExpansion);
124
         this.Controls.Add(this.textBox_Term);
125
         this.Controls.Add(this.buttonOK);
126
         this.Controls.Add(this.buttonCancel);
127
         this.Name = "TerminologyForm";
128
         this.Text = "TerminologyForm";
129
         this.ResumeLayout(false);
130
 
131
      }
132
		#endregion
133
	}
134
}