222 lines
9.9 KiB
C#
222 lines
9.9 KiB
C#
namespace FCOMMON
|
|
{
|
|
partial class fFTPExplorer
|
|
{
|
|
/// <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();
|
|
this.tbpath = new System.Windows.Forms.TextBox();
|
|
this.panel1 = new System.Windows.Forms.Panel();
|
|
this.btQuery = new System.Windows.Forms.Button();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
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.cm = new System.Windows.Forms.ContextMenuStrip(this.components);
|
|
this.uploadToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.downLoadToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.timer1 = new System.Windows.Forms.Timer(this.components);
|
|
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
|
|
this.progressBar1 = new System.Windows.Forms.ToolStripProgressBar();
|
|
this.lbPath = new System.Windows.Forms.ToolStripStatusLabel();
|
|
this.panel1.SuspendLayout();
|
|
this.cm.SuspendLayout();
|
|
this.statusStrip1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// tbpath
|
|
//
|
|
this.tbpath.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.tbpath.Font = new System.Drawing.Font("굴림", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
|
|
this.tbpath.Location = new System.Drawing.Point(49, 11);
|
|
this.tbpath.Name = "tbpath";
|
|
this.tbpath.Size = new System.Drawing.Size(429, 22);
|
|
this.tbpath.TabIndex = 0;
|
|
//
|
|
// panel1
|
|
//
|
|
this.panel1.Controls.Add(this.btQuery);
|
|
this.panel1.Controls.Add(this.label1);
|
|
this.panel1.Controls.Add(this.tbpath);
|
|
this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
|
|
this.panel1.Location = new System.Drawing.Point(0, 0);
|
|
this.panel1.Name = "panel1";
|
|
this.panel1.Size = new System.Drawing.Size(550, 42);
|
|
this.panel1.TabIndex = 1;
|
|
//
|
|
// btQuery
|
|
//
|
|
this.btQuery.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.btQuery.Location = new System.Drawing.Point(483, 11);
|
|
this.btQuery.Name = "btQuery";
|
|
this.btQuery.Size = new System.Drawing.Size(55, 22);
|
|
this.btQuery.TabIndex = 2;
|
|
this.btQuery.Text = "query";
|
|
this.btQuery.UseVisualStyleBackColor = true;
|
|
this.btQuery.Click += new System.EventHandler(this.button1_Click);
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(11, 16);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(29, 12);
|
|
this.label1.TabIndex = 1;
|
|
this.label1.Text = "path";
|
|
//
|
|
// 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.cm;
|
|
this.listView1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.listView1.FullRowSelect = true;
|
|
this.listView1.Location = new System.Drawing.Point(0, 42);
|
|
this.listView1.Name = "listView1";
|
|
this.listView1.Size = new System.Drawing.Size(550, 308);
|
|
this.listView1.TabIndex = 2;
|
|
this.listView1.UseCompatibleStateImageBehavior = false;
|
|
this.listView1.View = System.Windows.Forms.View.Details;
|
|
//
|
|
// columnHeader1
|
|
//
|
|
this.columnHeader1.Text = "Name";
|
|
this.columnHeader1.Width = 202;
|
|
//
|
|
// columnHeader2
|
|
//
|
|
this.columnHeader2.Text = "Type";
|
|
this.columnHeader2.Width = 108;
|
|
//
|
|
// columnHeader3
|
|
//
|
|
this.columnHeader3.Text = "Size";
|
|
this.columnHeader3.Width = 91;
|
|
//
|
|
// columnHeader4
|
|
//
|
|
this.columnHeader4.Text = "Time";
|
|
this.columnHeader4.Width = 143;
|
|
//
|
|
// cm
|
|
//
|
|
this.cm.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.uploadToolStripMenuItem,
|
|
this.downLoadToolStripMenuItem});
|
|
this.cm.Name = "contextMenuStrip1";
|
|
this.cm.Size = new System.Drawing.Size(133, 48);
|
|
//
|
|
// uploadToolStripMenuItem
|
|
//
|
|
this.uploadToolStripMenuItem.Name = "uploadToolStripMenuItem";
|
|
this.uploadToolStripMenuItem.Size = new System.Drawing.Size(132, 22);
|
|
this.uploadToolStripMenuItem.Text = "Upload";
|
|
this.uploadToolStripMenuItem.Click += new System.EventHandler(this.uploadToolStripMenuItem_Click);
|
|
//
|
|
// downLoadToolStripMenuItem
|
|
//
|
|
this.downLoadToolStripMenuItem.Name = "downLoadToolStripMenuItem";
|
|
this.downLoadToolStripMenuItem.Size = new System.Drawing.Size(132, 22);
|
|
this.downLoadToolStripMenuItem.Text = "DownLoad";
|
|
this.downLoadToolStripMenuItem.Click += new System.EventHandler(this.downLoadToolStripMenuItem_Click);
|
|
//
|
|
// timer1
|
|
//
|
|
this.timer1.Interval = 500;
|
|
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
|
|
//
|
|
// statusStrip1
|
|
//
|
|
this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.progressBar1,
|
|
this.lbPath});
|
|
this.statusStrip1.Location = new System.Drawing.Point(0, 350);
|
|
this.statusStrip1.Name = "statusStrip1";
|
|
this.statusStrip1.Size = new System.Drawing.Size(550, 22);
|
|
this.statusStrip1.TabIndex = 5;
|
|
this.statusStrip1.Text = "statusStrip1";
|
|
//
|
|
// progressBar1
|
|
//
|
|
this.progressBar1.Name = "progressBar1";
|
|
this.progressBar1.Size = new System.Drawing.Size(200, 16);
|
|
//
|
|
// lbPath
|
|
//
|
|
this.lbPath.Name = "lbPath";
|
|
this.lbPath.Size = new System.Drawing.Size(13, 17);
|
|
this.lbPath.Text = "..";
|
|
//
|
|
// fFTPExplorer
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(550, 372);
|
|
this.Controls.Add(this.listView1);
|
|
this.Controls.Add(this.statusStrip1);
|
|
this.Controls.Add(this.panel1);
|
|
this.Name = "fFTPExplorer";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
this.Text = "fFTPExplorer";
|
|
this.Load += new System.EventHandler(this.@__Load);
|
|
this.panel1.ResumeLayout(false);
|
|
this.panel1.PerformLayout();
|
|
this.cm.ResumeLayout(false);
|
|
this.statusStrip1.ResumeLayout(false);
|
|
this.statusStrip1.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.TextBox tbpath;
|
|
private System.Windows.Forms.Panel panel1;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.Button btQuery;
|
|
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.Timer timer1;
|
|
private System.Windows.Forms.StatusStrip statusStrip1;
|
|
private System.Windows.Forms.ToolStripProgressBar progressBar1;
|
|
private System.Windows.Forms.ToolStripStatusLabel lbPath;
|
|
private System.Windows.Forms.ContextMenuStrip cm;
|
|
private System.Windows.Forms.ToolStripMenuItem uploadToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem downLoadToolStripMenuItem;
|
|
}
|
|
} |