ab56a9bcf7
SVN-Revision: r240
113 lines
4.2 KiB
C#
113 lines
4.2 KiB
C#
|
|
namespace Lskj.GetFilesInDirectory
|
|
{
|
|
partial class FrmMain
|
|
{
|
|
/// <summary>
|
|
/// 必需的设计器变量。
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// 清理所有正在使用的资源。
|
|
/// </summary>
|
|
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Windows 窗体设计器生成的代码
|
|
|
|
/// <summary>
|
|
/// 设计器支持所需的方法 - 不要修改
|
|
/// 使用代码编辑器修改此方法的内容。
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
this.panel1 = new System.Windows.Forms.Panel();
|
|
this.pathBox = new System.Windows.Forms.TextBox();
|
|
this.startBtn = new System.Windows.Forms.Button();
|
|
this.panel2 = new System.Windows.Forms.Panel();
|
|
this.msgBox = new System.Windows.Forms.TextBox();
|
|
this.panel1.SuspendLayout();
|
|
this.panel2.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// panel1
|
|
//
|
|
this.panel1.Controls.Add(this.pathBox);
|
|
this.panel1.Controls.Add(this.startBtn);
|
|
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(363, 36);
|
|
this.panel1.TabIndex = 0;
|
|
//
|
|
// pathBox
|
|
//
|
|
this.pathBox.Location = new System.Drawing.Point(12, 8);
|
|
this.pathBox.Name = "pathBox";
|
|
this.pathBox.Size = new System.Drawing.Size(264, 21);
|
|
this.pathBox.TabIndex = 1;
|
|
//
|
|
// startBtn
|
|
//
|
|
this.startBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.startBtn.Location = new System.Drawing.Point(283, 6);
|
|
this.startBtn.Name = "startBtn";
|
|
this.startBtn.Size = new System.Drawing.Size(75, 23);
|
|
this.startBtn.TabIndex = 0;
|
|
this.startBtn.Text = "开始";
|
|
this.startBtn.UseVisualStyleBackColor = true;
|
|
//
|
|
// panel2
|
|
//
|
|
this.panel2.Controls.Add(this.msgBox);
|
|
this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.panel2.Location = new System.Drawing.Point(0, 36);
|
|
this.panel2.Name = "panel2";
|
|
this.panel2.Size = new System.Drawing.Size(363, 340);
|
|
this.panel2.TabIndex = 1;
|
|
//
|
|
// msgBox
|
|
//
|
|
this.msgBox.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.msgBox.Location = new System.Drawing.Point(0, 0);
|
|
this.msgBox.Multiline = true;
|
|
this.msgBox.Name = "msgBox";
|
|
this.msgBox.Size = new System.Drawing.Size(363, 340);
|
|
this.msgBox.TabIndex = 0;
|
|
//
|
|
// FrmMain
|
|
//
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
|
|
this.ClientSize = new System.Drawing.Size(363, 376);
|
|
this.Controls.Add(this.panel2);
|
|
this.Controls.Add(this.panel1);
|
|
this.Name = "FrmMain";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
this.Text = "FrmMain";
|
|
this.panel1.ResumeLayout(false);
|
|
this.panel1.PerformLayout();
|
|
this.panel2.ResumeLayout(false);
|
|
this.panel2.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Panel panel1;
|
|
private System.Windows.Forms.Panel panel2;
|
|
private System.Windows.Forms.Button startBtn;
|
|
private System.Windows.Forms.TextBox msgBox;
|
|
private System.Windows.Forms.TextBox pathBox;
|
|
}
|
|
}
|
|
|