Приложение, которое ищет файлы по заданному шаблону имени файла и по заданной фразе для внутреннего содержимого файла.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

182 lines
8.5 KiB

namespace fileFinder
{
partial class MainForm
{
/// <summary>
/// Обязательная переменная конструктора.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Освободить все используемые ресурсы.
/// </summary>
/// <param name="disposing">истинно, если управляемый ресурс должен быть удален; иначе ложно.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Код, автоматически созданный конструктором форм Windows
/// <summary>
/// Требуемый метод для поддержки конструктора — не изменяйте
/// содержимое этого метода с помощью редактора кода.
/// </summary>
private void InitializeComponent()
{
System.Windows.Forms.TreeNode treeNode1 = new System.Windows.Forms.TreeNode("Node 1");
System.Windows.Forms.TreeNode treeNode2 = new System.Windows.Forms.TreeNode("Узел3");
System.Windows.Forms.TreeNode treeNode3 = new System.Windows.Forms.TreeNode("Узел4");
System.Windows.Forms.TreeNode treeNode4 = new System.Windows.Forms.TreeNode("Root node", new System.Windows.Forms.TreeNode[] {
treeNode1,
treeNode2,
treeNode3});
this.resultViewer = new System.Windows.Forms.TreeView();
this.dirSelectBtn = new System.Windows.Forms.Button();
this.curDirTextBox = new System.Windows.Forms.TextBox();
this.splitContainer = new System.Windows.Forms.SplitContainer();
this.handleSearch = new System.Windows.Forms.Button();
this.queryTextBox = new System.Windows.Forms.TextBox();
this.bottomPanel = new System.Windows.Forms.Panel();
this.infoLabel = new System.Windows.Forms.Label();
((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
this.splitContainer.Panel1.SuspendLayout();
this.splitContainer.Panel2.SuspendLayout();
this.splitContainer.SuspendLayout();
this.bottomPanel.SuspendLayout();
this.SuspendLayout();
//
// resultViewer
//
this.resultViewer.Dock = System.Windows.Forms.DockStyle.Top;
this.resultViewer.Location = new System.Drawing.Point(0, 0);
this.resultViewer.Name = "resultViewer";
treeNode1.Name = "Node 1";
treeNode1.Text = "Node 1";
treeNode2.Name = "Узел3";
treeNode2.Text = "Узел3";
treeNode3.Name = "Узел4";
treeNode3.Text = "Узел4";
treeNode4.Name = "Root";
treeNode4.Text = "Root node";
this.resultViewer.Nodes.AddRange(new System.Windows.Forms.TreeNode[] {
treeNode4});
this.resultViewer.Size = new System.Drawing.Size(800, 358);
this.resultViewer.TabIndex = 3;
//
// dirSelectBtn
//
this.dirSelectBtn.Location = new System.Drawing.Point(667, 11);
this.dirSelectBtn.Name = "dirSelectBtn";
this.dirSelectBtn.Size = new System.Drawing.Size(120, 21);
this.dirSelectBtn.TabIndex = 2;
this.dirSelectBtn.Text = "Select Directory";
this.dirSelectBtn.UseVisualStyleBackColor = true;
this.dirSelectBtn.Click += new System.EventHandler(this.dirSelectBtn_Click);
//
// curDirTextBox
//
this.curDirTextBox.Location = new System.Drawing.Point(11, 12);
this.curDirTextBox.Name = "curDirTextBox";
this.curDirTextBox.Size = new System.Drawing.Size(650, 20);
this.curDirTextBox.TabIndex = 1;
this.curDirTextBox.Text = "Choose or enter folder location";
this.curDirTextBox.Enter += new System.EventHandler(this.curDirTextBox_Enter);
//
// splitContainer
//
this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
this.splitContainer.Location = new System.Drawing.Point(0, 0);
this.splitContainer.Name = "splitContainer";
this.splitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
//
// splitContainer.Panel1
//
this.splitContainer.Panel1.Controls.Add(this.handleSearch);
this.splitContainer.Panel1.Controls.Add(this.dirSelectBtn);
this.splitContainer.Panel1.Controls.Add(this.queryTextBox);
this.splitContainer.Panel1.Controls.Add(this.curDirTextBox);
//
// splitContainer.Panel2
//
this.splitContainer.Panel2.Controls.Add(this.bottomPanel);
this.splitContainer.Panel2.Controls.Add(this.resultViewer);
this.splitContainer.Size = new System.Drawing.Size(800, 450);
this.splitContainer.SplitterDistance = 66;
this.splitContainer.TabIndex = 4;
//
// handleSearch
//
this.handleSearch.Location = new System.Drawing.Point(667, 38);
this.handleSearch.Name = "handleSearch";
this.handleSearch.Size = new System.Drawing.Size(120, 21);
this.handleSearch.TabIndex = 2;
this.handleSearch.Text = "Start/Pause";
this.handleSearch.UseVisualStyleBackColor = true;
//
// queryTextBox
//
this.queryTextBox.Location = new System.Drawing.Point(11, 39);
this.queryTextBox.Name = "queryTextBox";
this.queryTextBox.Size = new System.Drawing.Size(650, 20);
this.queryTextBox.TabIndex = 1;
this.queryTextBox.Tag = "";
//
// bottomPanel
//
this.bottomPanel.AutoSize = true;
this.bottomPanel.Controls.Add(this.infoLabel);
this.bottomPanel.Dock = System.Windows.Forms.DockStyle.Bottom;
this.bottomPanel.Location = new System.Drawing.Point(0, 367);
this.bottomPanel.Name = "bottomPanel";
this.bottomPanel.Size = new System.Drawing.Size(800, 13);
this.bottomPanel.TabIndex = 4;
//
// infoLabel
//
this.infoLabel.AutoSize = true;
this.infoLabel.Dock = System.Windows.Forms.DockStyle.Fill;
this.infoLabel.Location = new System.Drawing.Point(0, 0);
this.infoLabel.Name = "infoLabel";
this.infoLabel.Size = new System.Drawing.Size(423, 13);
this.infoLabel.TabIndex = 0;
this.infoLabel.Text = "Current file is: C:\\nextcloud\\scripts\\... | Number of handled files: 123 | It\'s b" +
"een 30 secs...\r\n";
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450);
this.Controls.Add(this.splitContainer);
this.Name = "MainForm";
this.Text = "fileFinder Utility Created by Defend";
this.splitContainer.Panel1.ResumeLayout(false);
this.splitContainer.Panel1.PerformLayout();
this.splitContainer.Panel2.ResumeLayout(false);
this.splitContainer.Panel2.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
this.splitContainer.ResumeLayout(false);
this.bottomPanel.ResumeLayout(false);
this.bottomPanel.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.TreeView resultViewer;
private System.Windows.Forms.Button dirSelectBtn;
private System.Windows.Forms.TextBox curDirTextBox;
private System.Windows.Forms.SplitContainer splitContainer;
private System.Windows.Forms.Button handleSearch;
private System.Windows.Forms.Panel bottomPanel;
private System.Windows.Forms.Label infoLabel;
private System.Windows.Forms.TextBox queryTextBox;
}
}