90 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			90 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace VEPROMS
 | |
| {
 | |
| 	partial class frmPSI
 | |
| 	{
 | |
| 		/// <summary>
 | |
| 		/// Required designer variable.
 | |
| 		/// </summary>
 | |
| 		private System.ComponentModel.IContainer components = null;
 | |
| 
 | |
| 		/// <summary>
 | |
| 		/// Clean up any resources being used.
 | |
| 		/// </summary>
 | |
| 		/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
 | |
| 		protected override void Dispose(bool disposing)
 | |
| 		{
 | |
| 			if (disposing && (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.btnOk = new System.Windows.Forms.Button();
 | |
| 			this.btnCancel = new System.Windows.Forms.Button();
 | |
| 			this.panelPSI = new System.Windows.Forms.Panel();
 | |
| 			this.SuspendLayout();
 | |
| 			// 
 | |
| 			// btnOk
 | |
| 			// 
 | |
| 			this.btnOk.DialogResult = System.Windows.Forms.DialogResult.OK;
 | |
| 			this.btnOk.Location = new System.Drawing.Point(12, 222);
 | |
| 			this.btnOk.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
 | |
| 			this.btnOk.Name = "btnOk";
 | |
| 			this.btnOk.Size = new System.Drawing.Size(75, 23);
 | |
| 			this.btnOk.TabIndex = 0;
 | |
| 			this.btnOk.Text = "OK";//Fixed Code Change Request C2015-056
 | |
| 			this.btnOk.UseVisualStyleBackColor = true;
 | |
| 			this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
 | |
| 			// 
 | |
| 			// btnCancel
 | |
| 			// 
 | |
| 			this.btnCancel.Location = new System.Drawing.Point(109, 222);
 | |
| 			this.btnCancel.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
 | |
| 			this.btnCancel.Name = "btnCancel";
 | |
| 			this.btnCancel.Size = new System.Drawing.Size(75, 23);
 | |
| 			this.btnCancel.TabIndex = 1;
 | |
| 			this.btnCancel.Text = "Cancel";
 | |
| 			this.btnCancel.UseVisualStyleBackColor = true;
 | |
| 			this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
 | |
| 			// 
 | |
| 			// panelPSI
 | |
| 			// 
 | |
| 			this.panelPSI.AutoScroll = true;
 | |
| 			this.panelPSI.Location = new System.Drawing.Point(12, 12);
 | |
| 			this.panelPSI.Name = "panelPSI";
 | |
| 			this.panelPSI.Size = new System.Drawing.Size(349, 205);
 | |
| 			this.panelPSI.TabIndex = 2;
 | |
| 			// 
 | |
| 			// frmPSI
 | |
| 			// 
 | |
| 			this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
 | |
| 			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
 | |
| 			this.AutoSize = true;
 | |
| 			this.ClientSize = new System.Drawing.Size(373, 257);
 | |
| 			this.Controls.Add(this.panelPSI);
 | |
| 			this.Controls.Add(this.btnCancel);
 | |
| 			this.Controls.Add(this.btnOk);
 | |
| 			this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
 | |
| 			this.Name = "frmPSI";
 | |
| 			this.Text = "frmPSI";
 | |
| 			this.TopMost = true;
 | |
| 			this.ResumeLayout(false);
 | |
| 
 | |
| 		}
 | |
| 
 | |
| 		#endregion
 | |
| 
 | |
| 		private System.Windows.Forms.Button btnOk;
 | |
| 		private System.Windows.Forms.Button btnCancel;
 | |
| 		private System.Windows.Forms.Panel panelPSI;
 | |
| 	}
 | |
| } | 
