185 lines
9.1 KiB
C#
185 lines
9.1 KiB
C#
namespace ScanAssistant
|
|
{
|
|
partial class FormOpenSourceDir
|
|
{
|
|
/// <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()
|
|
{
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormOpenSourceDir));
|
|
this.buttonBrowseSource = new System.Windows.Forms.Button();
|
|
this.buttonBrowseDestination = new System.Windows.Forms.Button();
|
|
this.textSourceDir = new System.Windows.Forms.TextBox();
|
|
this.textDestinationDir = new System.Windows.Forms.TextBox();
|
|
this.buttonSetDefault = new System.Windows.Forms.Button();
|
|
this.directoryEntry1 = new System.DirectoryServices.DirectoryEntry();
|
|
this.listBoxSourceDir = new System.Windows.Forms.ListBox();
|
|
this.buttonOK = new System.Windows.Forms.Button();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.labelSourceFileCount = new System.Windows.Forms.Label();
|
|
this.pictureBox1 = new System.Windows.Forms.PictureBox();
|
|
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// buttonBrowseSource
|
|
//
|
|
this.buttonBrowseSource.Location = new System.Drawing.Point(214, 10);
|
|
this.buttonBrowseSource.Name = "buttonBrowseSource";
|
|
this.buttonBrowseSource.Size = new System.Drawing.Size(84, 23);
|
|
this.buttonBrowseSource.TabIndex = 0;
|
|
this.buttonBrowseSource.Text = "Source...";
|
|
this.buttonBrowseSource.UseVisualStyleBackColor = true;
|
|
this.buttonBrowseSource.Click += new System.EventHandler(this.buttonBrowseSource_Click);
|
|
//
|
|
// buttonBrowseDestination
|
|
//
|
|
this.buttonBrowseDestination.Location = new System.Drawing.Point(214, 39);
|
|
this.buttonBrowseDestination.Name = "buttonBrowseDestination";
|
|
this.buttonBrowseDestination.Size = new System.Drawing.Size(84, 23);
|
|
this.buttonBrowseDestination.TabIndex = 1;
|
|
this.buttonBrowseDestination.Text = "Destination...";
|
|
this.buttonBrowseDestination.UseVisualStyleBackColor = true;
|
|
this.buttonBrowseDestination.Click += new System.EventHandler(this.buttonBrowseDestination_Click);
|
|
//
|
|
// textSourceDir
|
|
//
|
|
this.textSourceDir.Location = new System.Drawing.Point(12, 12);
|
|
this.textSourceDir.Name = "textSourceDir";
|
|
this.textSourceDir.Size = new System.Drawing.Size(195, 20);
|
|
this.textSourceDir.TabIndex = 2;
|
|
this.textSourceDir.KeyUp += new System.Windows.Forms.KeyEventHandler(this.textSourceDir_KeyUp);
|
|
//
|
|
// textDestinationDir
|
|
//
|
|
this.textDestinationDir.Location = new System.Drawing.Point(12, 41);
|
|
this.textDestinationDir.Name = "textDestinationDir";
|
|
this.textDestinationDir.Size = new System.Drawing.Size(195, 20);
|
|
this.textDestinationDir.TabIndex = 3;
|
|
this.textDestinationDir.KeyUp += new System.Windows.Forms.KeyEventHandler(this.textDestinationDir_KeyUp);
|
|
//
|
|
// buttonSetDefault
|
|
//
|
|
this.buttonSetDefault.Enabled = false;
|
|
this.buttonSetDefault.Location = new System.Drawing.Point(304, 39);
|
|
this.buttonSetDefault.Name = "buttonSetDefault";
|
|
this.buttonSetDefault.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonSetDefault.TabIndex = 4;
|
|
this.buttonSetDefault.Text = "Set Default";
|
|
this.buttonSetDefault.UseVisualStyleBackColor = true;
|
|
this.buttonSetDefault.Click += new System.EventHandler(this.buttonSetDefault_Click);
|
|
//
|
|
// listBoxSourceDir
|
|
//
|
|
this.listBoxSourceDir.FormattingEnabled = true;
|
|
this.listBoxSourceDir.HorizontalScrollbar = true;
|
|
this.listBoxSourceDir.Location = new System.Drawing.Point(13, 67);
|
|
this.listBoxSourceDir.Name = "listBoxSourceDir";
|
|
this.listBoxSourceDir.Size = new System.Drawing.Size(194, 446);
|
|
this.listBoxSourceDir.TabIndex = 5;
|
|
this.listBoxSourceDir.SelectedIndexChanged += new System.EventHandler(this.listBoxSourceDir_SelectedIndexChanged);
|
|
//
|
|
// buttonOK
|
|
//
|
|
this.buttonOK.Enabled = false;
|
|
this.buttonOK.Location = new System.Drawing.Point(12, 539);
|
|
this.buttonOK.Name = "buttonOK";
|
|
this.buttonOK.Size = new System.Drawing.Size(195, 23);
|
|
this.buttonOK.TabIndex = 11;
|
|
this.buttonOK.Text = "OK";
|
|
this.buttonOK.UseVisualStyleBackColor = true;
|
|
this.buttonOK.Click += new System.EventHandler(this.buttonOK_Click);
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(12, 516);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(34, 13);
|
|
this.label1.TabIndex = 12;
|
|
this.label1.Text = "Files: ";
|
|
//
|
|
// labelSourceFileCount
|
|
//
|
|
this.labelSourceFileCount.AutoSize = true;
|
|
this.labelSourceFileCount.Location = new System.Drawing.Point(39, 516);
|
|
this.labelSourceFileCount.Name = "labelSourceFileCount";
|
|
this.labelSourceFileCount.Size = new System.Drawing.Size(13, 13);
|
|
this.labelSourceFileCount.TabIndex = 13;
|
|
this.labelSourceFileCount.Text = "0";
|
|
this.labelSourceFileCount.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
|
|
//
|
|
// pictureBox1
|
|
//
|
|
this.pictureBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
|
| System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.pictureBox1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
|
|
this.pictureBox1.Location = new System.Drawing.Point(214, 67);
|
|
this.pictureBox1.Name = "pictureBox1";
|
|
this.pictureBox1.Size = new System.Drawing.Size(421, 449);
|
|
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
|
|
this.pictureBox1.TabIndex = 14;
|
|
this.pictureBox1.TabStop = false;
|
|
//
|
|
// FormOpenSourceDir
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(647, 577);
|
|
this.Controls.Add(this.pictureBox1);
|
|
this.Controls.Add(this.labelSourceFileCount);
|
|
this.Controls.Add(this.label1);
|
|
this.Controls.Add(this.buttonOK);
|
|
this.Controls.Add(this.listBoxSourceDir);
|
|
this.Controls.Add(this.buttonSetDefault);
|
|
this.Controls.Add(this.textDestinationDir);
|
|
this.Controls.Add(this.textSourceDir);
|
|
this.Controls.Add(this.buttonBrowseDestination);
|
|
this.Controls.Add(this.buttonBrowseSource);
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.MinimumSize = new System.Drawing.Size(498, 616);
|
|
this.Name = "FormOpenSourceDir";
|
|
this.Text = "Set working environment";
|
|
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button buttonBrowseSource;
|
|
private System.Windows.Forms.Button buttonBrowseDestination;
|
|
private System.Windows.Forms.TextBox textSourceDir;
|
|
private System.Windows.Forms.TextBox textDestinationDir;
|
|
private System.Windows.Forms.Button buttonSetDefault;
|
|
private System.DirectoryServices.DirectoryEntry directoryEntry1;
|
|
private System.Windows.Forms.ListBox listBoxSourceDir;
|
|
private System.Windows.Forms.Button buttonOK;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.Label labelSourceFileCount;
|
|
private System.Windows.Forms.PictureBox pictureBox1;
|
|
}
|
|
} |