Blame | 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 TerminologyForm./// </summary>public class TerminologyForm : System.Windows.Forms.Form{private System.Windows.Forms.Button buttonCancel;private System.Windows.Forms.Button buttonOK;public System.Windows.Forms.TextBox textBox_Term;public System.Windows.Forms.TextBox textBox_TermExpansion;private System.Windows.Forms.Label label1;private System.Windows.Forms.Label label2;/// <summary>/// Required designer variable./// </summary>private System.ComponentModel.Container components = null;public TerminologyForm(){//// 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.buttonCancel = new System.Windows.Forms.Button();this.buttonOK = new System.Windows.Forms.Button();this.textBox_Term = new System.Windows.Forms.TextBox();this.textBox_TermExpansion = new System.Windows.Forms.TextBox();this.label1 = new System.Windows.Forms.Label();this.label2 = new System.Windows.Forms.Label();this.SuspendLayout();//// buttonCancel//this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;this.buttonCancel.Location = new System.Drawing.Point(312, 224);this.buttonCancel.Name = "buttonCancel";this.buttonCancel.Size = new System.Drawing.Size(64, 24);this.buttonCancel.TabIndex = 0;this.buttonCancel.Text = "Cancel";//// buttonOK//this.buttonOK.DialogResult = System.Windows.Forms.DialogResult.OK;this.buttonOK.Location = new System.Drawing.Point(216, 224);this.buttonOK.Name = "buttonOK";this.buttonOK.TabIndex = 1;this.buttonOK.Text = "OK";//// textBox_Term//this.textBox_Term.Location = new System.Drawing.Point(8, 32);this.textBox_Term.Name = "textBox_Term";this.textBox_Term.Size = new System.Drawing.Size(264, 22);this.textBox_Term.TabIndex = 2;this.textBox_Term.Text = "";//// textBox_TermExpansion//this.textBox_TermExpansion.Location = new System.Drawing.Point(8, 96);this.textBox_TermExpansion.Multiline = true;this.textBox_TermExpansion.Name = "textBox_TermExpansion";this.textBox_TermExpansion.Size = new System.Drawing.Size(368, 104);this.textBox_TermExpansion.TabIndex = 3;this.textBox_TermExpansion.Text = "";//// label1//this.label1.Location = new System.Drawing.Point(8, 8);this.label1.Name = "label1";this.label1.Size = new System.Drawing.Size(256, 16);this.label1.TabIndex = 4;this.label1.Text = "Term / Acronym / etc";//// label2//this.label2.Location = new System.Drawing.Point(8, 72);this.label2.Name = "label2";this.label2.Size = new System.Drawing.Size(240, 16);this.label2.TabIndex = 5;this.label2.Text = "Meaning / Explanation / Expansion";//// TerminologyForm//this.AutoScaleBaseSize = new System.Drawing.Size(6, 15);this.ClientSize = new System.Drawing.Size(392, 264);this.Controls.Add(this.label2);this.Controls.Add(this.label1);this.Controls.Add(this.textBox_TermExpansion);this.Controls.Add(this.textBox_Term);this.Controls.Add(this.buttonOK);this.Controls.Add(this.buttonCancel);this.Name = "TerminologyForm";this.Text = "TerminologyForm";this.ResumeLayout(false);}#endregion}}