191 lines
		
	
	
		
			9.6 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			191 lines
		
	
	
		
			9.6 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| 
 | |
| namespace FCOMMON
 | |
| {
 | |
|     partial class fFileExplorer
 | |
|     {
 | |
|         /// <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.components = new System.ComponentModel.Container();
 | |
|             System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(fFileExplorer));
 | |
|             this.listView1 = new System.Windows.Forms.ListView();
 | |
|             this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
 | |
|             this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
 | |
|             this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
 | |
|             this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
 | |
|             this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
 | |
|             this.새로고침ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
 | |
|             this.toolStrip1 = new System.Windows.Forms.ToolStrip();
 | |
|             this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
 | |
|             this.toolStripButton2 = new System.Windows.Forms.ToolStripButton();
 | |
|             this.toolStripButton3 = new System.Windows.Forms.ToolStripButton();
 | |
|             this.toolStripButton4 = new System.Windows.Forms.ToolStripButton();
 | |
|             this.contextMenuStrip1.SuspendLayout();
 | |
|             this.toolStrip1.SuspendLayout();
 | |
|             this.SuspendLayout();
 | |
|             // 
 | |
|             // listView1
 | |
|             // 
 | |
|             this.listView1.AllowDrop = true;
 | |
|             this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
 | |
|             this.columnHeader1,
 | |
|             this.columnHeader2,
 | |
|             this.columnHeader3,
 | |
|             this.columnHeader4});
 | |
|             this.listView1.ContextMenuStrip = this.contextMenuStrip1;
 | |
|             this.listView1.Dock = System.Windows.Forms.DockStyle.Fill;
 | |
|             this.listView1.FullRowSelect = true;
 | |
|             this.listView1.GridLines = true;
 | |
|             this.listView1.HideSelection = false;
 | |
|             this.listView1.Location = new System.Drawing.Point(0, 0);
 | |
|             this.listView1.MultiSelect = false;
 | |
|             this.listView1.Name = "listView1";
 | |
|             this.listView1.Size = new System.Drawing.Size(475, 207);
 | |
|             this.listView1.TabIndex = 0;
 | |
|             this.listView1.UseCompatibleStateImageBehavior = false;
 | |
|             this.listView1.View = System.Windows.Forms.View.Details;
 | |
|             this.listView1.DragDrop += new System.Windows.Forms.DragEventHandler(this.fFileExplorer_DragDrop);
 | |
|             this.listView1.DragEnter += new System.Windows.Forms.DragEventHandler(this.listView1_DragEnter);
 | |
|             this.listView1.DragLeave += new System.EventHandler(this.listView1_DragLeave);
 | |
|             // 
 | |
|             // columnHeader1
 | |
|             // 
 | |
|             this.columnHeader1.Text = "Nane";
 | |
|             this.columnHeader1.Width = 200;
 | |
|             // 
 | |
|             // columnHeader2
 | |
|             // 
 | |
|             this.columnHeader2.Text = "Ext";
 | |
|             // 
 | |
|             // columnHeader3
 | |
|             // 
 | |
|             this.columnHeader3.Text = "Size";
 | |
|             this.columnHeader3.Width = 80;
 | |
|             // 
 | |
|             // columnHeader4
 | |
|             // 
 | |
|             this.columnHeader4.Text = "변경일자";
 | |
|             this.columnHeader4.Width = 70;
 | |
|             // 
 | |
|             // contextMenuStrip1
 | |
|             // 
 | |
|             this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
 | |
|             this.새로고침ToolStripMenuItem});
 | |
|             this.contextMenuStrip1.Name = "contextMenuStrip1";
 | |
|             this.contextMenuStrip1.Size = new System.Drawing.Size(127, 26);
 | |
|             // 
 | |
|             // 새로고침ToolStripMenuItem
 | |
|             // 
 | |
|             this.새로고침ToolStripMenuItem.Name = "새로고침ToolStripMenuItem";
 | |
|             this.새로고침ToolStripMenuItem.Size = new System.Drawing.Size(126, 22);
 | |
|             this.새로고침ToolStripMenuItem.Text = "새로 고침";
 | |
|             this.새로고침ToolStripMenuItem.Click += new System.EventHandler(this.새로고침ToolStripMenuItem_Click);
 | |
|             // 
 | |
|             // toolStrip1
 | |
|             // 
 | |
|             this.toolStrip1.Dock = System.Windows.Forms.DockStyle.Bottom;
 | |
|             this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
 | |
|             this.toolStripButton1,
 | |
|             this.toolStripButton2,
 | |
|             this.toolStripButton3,
 | |
|             this.toolStripButton4});
 | |
|             this.toolStrip1.Location = new System.Drawing.Point(0, 207);
 | |
|             this.toolStrip1.Name = "toolStrip1";
 | |
|             this.toolStrip1.Size = new System.Drawing.Size(475, 25);
 | |
|             this.toolStrip1.TabIndex = 2;
 | |
|             this.toolStrip1.Text = "toolStrip1";
 | |
|             // 
 | |
|             // toolStripButton1
 | |
|             // 
 | |
|             this.toolStripButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
 | |
|             this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
 | |
|             this.toolStripButton1.Name = "toolStripButton1";
 | |
|             this.toolStripButton1.Size = new System.Drawing.Size(51, 22);
 | |
|             this.toolStripButton1.Text = "추가";
 | |
|             this.toolStripButton1.Click += new System.EventHandler(this.toolStripButton1_Click);
 | |
|             // 
 | |
|             // toolStripButton2
 | |
|             // 
 | |
|             this.toolStripButton2.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton2.Image")));
 | |
|             this.toolStripButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
 | |
|             this.toolStripButton2.Name = "toolStripButton2";
 | |
|             this.toolStripButton2.Size = new System.Drawing.Size(51, 22);
 | |
|             this.toolStripButton2.Text = "받기";
 | |
|             this.toolStripButton2.Click += new System.EventHandler(this.toolStripButton2_Click);
 | |
|             // 
 | |
|             // toolStripButton3
 | |
|             // 
 | |
|             this.toolStripButton3.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
 | |
|             this.toolStripButton3.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton3.Image")));
 | |
|             this.toolStripButton3.ImageTransparentColor = System.Drawing.Color.Magenta;
 | |
|             this.toolStripButton3.Name = "toolStripButton3";
 | |
|             this.toolStripButton3.Size = new System.Drawing.Size(51, 22);
 | |
|             this.toolStripButton3.Text = "삭제";
 | |
|             this.toolStripButton3.Click += new System.EventHandler(this.toolStripButton3_Click);
 | |
|             // 
 | |
|             // toolStripButton4
 | |
|             // 
 | |
|             this.toolStripButton4.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton4.Image")));
 | |
|             this.toolStripButton4.ImageTransparentColor = System.Drawing.Color.Magenta;
 | |
|             this.toolStripButton4.Name = "toolStripButton4";
 | |
|             this.toolStripButton4.Size = new System.Drawing.Size(75, 22);
 | |
|             this.toolStripButton4.Text = "새로고침";
 | |
|             this.toolStripButton4.Click += new System.EventHandler(this.toolStripButton4_Click);
 | |
|             // 
 | |
|             // fFileExplorer
 | |
|             // 
 | |
|             this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
 | |
|             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
 | |
|             this.ClientSize = new System.Drawing.Size(475, 232);
 | |
|             this.Controls.Add(this.listView1);
 | |
|             this.Controls.Add(this.toolStrip1);
 | |
|             this.Name = "fFileExplorer";
 | |
|             this.Text = "fFileExplorer";
 | |
|             this.Load += new System.EventHandler(this.fFileExplorer_Load);
 | |
|             this.contextMenuStrip1.ResumeLayout(false);
 | |
|             this.toolStrip1.ResumeLayout(false);
 | |
|             this.toolStrip1.PerformLayout();
 | |
|             this.ResumeLayout(false);
 | |
|             this.PerformLayout();
 | |
| 
 | |
|         }
 | |
| 
 | |
|         #endregion
 | |
| 
 | |
|         private System.Windows.Forms.ListView listView1;
 | |
|         private System.Windows.Forms.ColumnHeader columnHeader1;
 | |
|         private System.Windows.Forms.ColumnHeader columnHeader2;
 | |
|         private System.Windows.Forms.ColumnHeader columnHeader3;
 | |
|         private System.Windows.Forms.ColumnHeader columnHeader4;
 | |
|         private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
 | |
|         private System.Windows.Forms.ToolStripMenuItem 새로고침ToolStripMenuItem;
 | |
|         private System.Windows.Forms.ToolStrip toolStrip1;
 | |
|         private System.Windows.Forms.ToolStripButton toolStripButton1;
 | |
|         private System.Windows.Forms.ToolStripButton toolStripButton2;
 | |
|         private System.Windows.Forms.ToolStripButton toolStripButton3;
 | |
|         private System.Windows.Forms.ToolStripButton toolStripButton4;
 | |
|     }
 | |
| } | 
