namespace TestBench
{
partial class MainForm
{
///
/// Variabile di progettazione necessaria.
///
private System.ComponentModel.IContainer components = null;
///
/// Pulire le risorse in uso.
///
/// ha valore true se le risorse gestite devono essere eliminate, false in caso contrario.
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Codice generato da Progettazione Windows Form
///
/// Metodo necessario per il supporto della finestra di progettazione. Non modificare
/// il contenuto del metodo con l'editor di codice.
///
private void InitializeComponent()
{
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.txtSourceDir = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.txtDestDir = new System.Windows.Forms.TextBox();
this.btnCopyAll = new System.Windows.Forms.Button();
this.chkRecursive = new System.Windows.Forms.CheckBox();
this.lblOutMessage = new System.Windows.Forms.Label();
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
// groupBox1
//
this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.groupBox1.AutoSize = true;
this.groupBox1.Controls.Add(this.lblOutMessage);
this.groupBox1.Controls.Add(this.chkRecursive);
this.groupBox1.Controls.Add(this.btnCopyAll);
this.groupBox1.Controls.Add(this.label2);
this.groupBox1.Controls.Add(this.txtDestDir);
this.groupBox1.Controls.Add(this.label1);
this.groupBox1.Controls.Add(this.txtSourceDir);
this.groupBox1.Location = new System.Drawing.Point(12, 12);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(776, 97);
this.groupBox1.TabIndex = 1;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "File IO test";
//
// txtSourceDir
//
this.txtSourceDir.Location = new System.Drawing.Point(103, 21);
this.txtSourceDir.Name = "txtSourceDir";
this.txtSourceDir.Size = new System.Drawing.Size(156, 22);
this.txtSourceDir.TabIndex = 1;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(17, 24);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(80, 17);
this.label1.TabIndex = 2;
this.label1.Text = "Source DIR";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(301, 24);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(64, 17);
this.label2.TabIndex = 4;
this.label2.Text = "Dest DIR";
//
// txtDestDir
//
this.txtDestDir.Location = new System.Drawing.Point(371, 21);
this.txtDestDir.Name = "txtDestDir";
this.txtDestDir.Size = new System.Drawing.Size(156, 22);
this.txtDestDir.TabIndex = 3;
//
// btnCopyAll
//
this.btnCopyAll.Location = new System.Drawing.Point(695, 18);
this.btnCopyAll.Name = "btnCopyAll";
this.btnCopyAll.Size = new System.Drawing.Size(75, 23);
this.btnCopyAll.TabIndex = 5;
this.btnCopyAll.Text = "Copy All";
this.btnCopyAll.UseVisualStyleBackColor = true;
this.btnCopyAll.Click += new System.EventHandler(this.BtnCopyAll_Click);
//
// chkRecursive
//
this.chkRecursive.AutoSize = true;
this.chkRecursive.Location = new System.Drawing.Point(534, 21);
this.chkRecursive.Name = "chkRecursive";
this.chkRecursive.Size = new System.Drawing.Size(88, 21);
this.chkRecursive.TabIndex = 6;
this.chkRecursive.Text = "recursive";
this.chkRecursive.UseVisualStyleBackColor = true;
//
// lblOutMessage
//
this.lblOutMessage.AutoSize = true;
this.lblOutMessage.Location = new System.Drawing.Point(17, 62);
this.lblOutMessage.Name = "lblOutMessage";
this.lblOutMessage.Size = new System.Drawing.Size(20, 17);
this.lblOutMessage.TabIndex = 7;
this.lblOutMessage.Text = "...";
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450);
this.Controls.Add(this.groupBox1);
this.Name = "MainForm";
this.Text = "WinForm library POC";
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.Button btnCopyAll;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox txtDestDir;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox txtSourceDir;
private System.Windows.Forms.CheckBox chkRecursive;
private System.Windows.Forms.Label lblOutMessage;
}
}