177 lines
		
	
	
		
			9.4 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			177 lines
		
	
	
		
			9.4 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System.Collections.Generic;
 | |
| using System;
 | |
| using System.Drawing;
 | |
| using System.Diagnostics;
 | |
| using System.Data;
 | |
| using System.Collections;
 | |
| using System.Windows.Forms;
 | |
| 
 | |
| namespace vmsnet
 | |
| {
 | |
| 	partial class Frm_About : System.Windows.Forms.Form
 | |
| 	{
 | |
| 		
 | |
| 		//Form은 Dispose를 재정의하여 구성 요소 목록을 정리합니다.
 | |
| 		[System.Diagnostics.DebuggerNonUserCode()]protected override void Dispose(bool disposing)
 | |
| 		{
 | |
| 			try
 | |
| 			{
 | |
| 				if (disposing && components != null)
 | |
| 				{
 | |
| 					components.Dispose();
 | |
| 				}
 | |
| 			}
 | |
| 			finally
 | |
| 			{
 | |
| 				base.Dispose(disposing);
 | |
| 			}
 | |
| 		}
 | |
| 		internal System.Windows.Forms.Label ApplicationTitle;
 | |
| 		internal System.Windows.Forms.Label Version;
 | |
| 		internal System.Windows.Forms.Label Copyright;
 | |
| 		internal System.Windows.Forms.TableLayoutPanel MainLayoutPanel;
 | |
| 		internal System.Windows.Forms.TableLayoutPanel DetailsLayoutPanel;
 | |
| 		
 | |
| 		//Windows Form 디자이너에 필요합니다.
 | |
| 		private System.ComponentModel.Container components = null;
 | |
| 		
 | |
| 		//참고: 다음 프로시저는 Windows Form 디자이너에 필요합니다.
 | |
| 		//수정하려면 Windows Form 디자이너를 사용하십시오.
 | |
| 		//코드 편집기를 사용하여 수정하지 마십시오.
 | |
| 		[System.Diagnostics.DebuggerStepThrough()]private void InitializeComponent()
 | |
| 		{
 | |
|             System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_About));
 | |
|             this.MainLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
 | |
|             this.DetailsLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
 | |
|             this.Panel1 = new System.Windows.Forms.Panel();
 | |
|             this.lb_Status = new System.Windows.Forms.Label();
 | |
|             this.Version = new System.Windows.Forms.Label();
 | |
|             this.Copyright = new System.Windows.Forms.Label();
 | |
|             this.ApplicationTitle = new System.Windows.Forms.Label();
 | |
|             this.MainLayoutPanel.SuspendLayout();
 | |
|             this.DetailsLayoutPanel.SuspendLayout();
 | |
|             this.Panel1.SuspendLayout();
 | |
|             this.SuspendLayout();
 | |
|             // 
 | |
|             // MainLayoutPanel
 | |
|             // 
 | |
|             this.MainLayoutPanel.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("MainLayoutPanel.BackgroundImage")));
 | |
|             this.MainLayoutPanel.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
 | |
|             this.MainLayoutPanel.ColumnCount = 2;
 | |
|             this.MainLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 153F));
 | |
|             this.MainLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 551F));
 | |
|             this.MainLayoutPanel.Controls.Add(this.DetailsLayoutPanel, 1, 1);
 | |
|             this.MainLayoutPanel.Controls.Add(this.ApplicationTitle, 1, 0);
 | |
|             this.MainLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill;
 | |
|             this.MainLayoutPanel.Location = new System.Drawing.Point(0, 0);
 | |
|             this.MainLayoutPanel.Name = "MainLayoutPanel";
 | |
|             this.MainLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 47F));
 | |
|             this.MainLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 209F));
 | |
|             this.MainLayoutPanel.Size = new System.Drawing.Size(704, 186);
 | |
|             this.MainLayoutPanel.TabIndex = 0;
 | |
|             this.MainLayoutPanel.Click += new System.EventHandler(this.MainLayoutPanel_MouseClick);
 | |
|             this.MainLayoutPanel.MouseClick += new System.Windows.Forms.MouseEventHandler(this.MainLayoutPanel_MouseClick);
 | |
|             // 
 | |
|             // DetailsLayoutPanel
 | |
|             // 
 | |
|             this.DetailsLayoutPanel.BackColor = System.Drawing.Color.Transparent;
 | |
|             this.DetailsLayoutPanel.ColumnCount = 1;
 | |
|             this.DetailsLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 545F));
 | |
|             this.DetailsLayoutPanel.Controls.Add(this.Panel1, 0, 0);
 | |
|             this.DetailsLayoutPanel.Location = new System.Drawing.Point(156, 50);
 | |
|             this.DetailsLayoutPanel.Name = "DetailsLayoutPanel";
 | |
|             this.DetailsLayoutPanel.RowCount = 1;
 | |
|             this.DetailsLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 136F));
 | |
|             this.DetailsLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 136F));
 | |
|             this.DetailsLayoutPanel.Size = new System.Drawing.Size(545, 136);
 | |
|             this.DetailsLayoutPanel.TabIndex = 1;
 | |
|             // 
 | |
|             // Panel1
 | |
|             // 
 | |
|             this.Panel1.Controls.Add(this.lb_Status);
 | |
|             this.Panel1.Controls.Add(this.Version);
 | |
|             this.Panel1.Controls.Add(this.Copyright);
 | |
|             this.Panel1.Dock = System.Windows.Forms.DockStyle.Fill;
 | |
|             this.Panel1.Location = new System.Drawing.Point(0, 0);
 | |
|             this.Panel1.Margin = new System.Windows.Forms.Padding(0);
 | |
|             this.Panel1.Name = "Panel1";
 | |
|             this.Panel1.Size = new System.Drawing.Size(545, 136);
 | |
|             this.Panel1.TabIndex = 4;
 | |
|             this.Panel1.Click += new System.EventHandler(this.MainLayoutPanel_MouseClick);
 | |
|             // 
 | |
|             // lb_Status
 | |
|             // 
 | |
|             this.lb_Status.Anchor = System.Windows.Forms.AnchorStyles.None;
 | |
|             this.lb_Status.BackColor = System.Drawing.Color.Transparent;
 | |
|             this.lb_Status.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.999999F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
 | |
|             this.lb_Status.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))));
 | |
|             this.lb_Status.Location = new System.Drawing.Point(219, 80);
 | |
|             this.lb_Status.Name = "lb_Status";
 | |
|             this.lb_Status.Size = new System.Drawing.Size(318, 48);
 | |
|             this.lb_Status.TabIndex = 3;
 | |
|             this.lb_Status.Text = "Homepage : http://jdtek.co.kr\nEmail : help@jdtek.co.kr\nTel : 062-364-0177 / FAX :" +
 | |
|     " 062-364-0179";
 | |
|             this.lb_Status.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
 | |
|             // 
 | |
|             // Version
 | |
|             // 
 | |
|             this.Version.Anchor = System.Windows.Forms.AnchorStyles.None;
 | |
|             this.Version.BackColor = System.Drawing.Color.Transparent;
 | |
|             this.Version.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.999999F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
 | |
|             this.Version.Location = new System.Drawing.Point(3, 114);
 | |
|             this.Version.Name = "Version";
 | |
|             this.Version.Size = new System.Drawing.Size(241, 20);
 | |
|             this.Version.TabIndex = 1;
 | |
|             this.Version.Text = "버전 {0}.{1:00}";
 | |
|             // 
 | |
|             // Copyright
 | |
|             // 
 | |
|             this.Copyright.Anchor = System.Windows.Forms.AnchorStyles.None;
 | |
|             this.Copyright.BackColor = System.Drawing.Color.Transparent;
 | |
|             this.Copyright.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.999999F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
 | |
|             this.Copyright.Location = new System.Drawing.Point(3, 94);
 | |
|             this.Copyright.Name = "Copyright";
 | |
|             this.Copyright.Size = new System.Drawing.Size(241, 17);
 | |
|             this.Copyright.TabIndex = 2;
 | |
|             this.Copyright.Text = "저작권";
 | |
|             // 
 | |
|             // ApplicationTitle
 | |
|             // 
 | |
|             this.ApplicationTitle.BackColor = System.Drawing.Color.Transparent;
 | |
|             this.ApplicationTitle.Dock = System.Windows.Forms.DockStyle.Fill;
 | |
|             this.ApplicationTitle.Font = new System.Drawing.Font("Microsoft Sans Serif", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
 | |
|             this.ApplicationTitle.Location = new System.Drawing.Point(156, 0);
 | |
|             this.ApplicationTitle.Name = "ApplicationTitle";
 | |
|             this.ApplicationTitle.Size = new System.Drawing.Size(545, 47);
 | |
|             this.ApplicationTitle.TabIndex = 0;
 | |
|             this.ApplicationTitle.Text = "응용 프로그램 제목";
 | |
|             this.ApplicationTitle.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
 | |
|             this.ApplicationTitle.Click += new System.EventHandler(this.MainLayoutPanel_MouseClick);
 | |
|             // 
 | |
|             // Frm_About
 | |
|             // 
 | |
|             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
 | |
|             this.ClientSize = new System.Drawing.Size(704, 186);
 | |
|             this.Controls.Add(this.MainLayoutPanel);
 | |
|             this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
 | |
|             this.KeyPreview = true;
 | |
|             this.MaximizeBox = false;
 | |
|             this.MinimizeBox = false;
 | |
|             this.Name = "Frm_About";
 | |
|             this.ShowInTaskbar = false;
 | |
|             this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
 | |
|             this.Load += new System.EventHandler(this.SplashScreen1_Load);
 | |
|             this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Frm_About_KeyDown);
 | |
|             this.MainLayoutPanel.ResumeLayout(false);
 | |
|             this.DetailsLayoutPanel.ResumeLayout(false);
 | |
|             this.Panel1.ResumeLayout(false);
 | |
|             this.ResumeLayout(false);
 | |
| 
 | |
| 		}
 | |
| 		internal System.Windows.Forms.Label lb_Status;
 | |
| 		internal System.Windows.Forms.Panel Panel1;
 | |
| 		
 | |
| 	}
 | |
| 	
 | |
| }
 | 
