-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSearchForm.Designer.cs
More file actions
132 lines (125 loc) · 6.14 KB
/
SearchForm.Designer.cs
File metadata and controls
132 lines (125 loc) · 6.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
namespace NanoByte.LightTag
{
partial class SearchForm
{
/// <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.folderBrowserDialog = new System.Windows.Forms.FolderBrowserDialog();
this.textFolder = new NanoByte.Common.Controls.HintTextBox();
this.buttonBrowseFolder = new System.Windows.Forms.Button();
this.groupTags = new System.Windows.Forms.GroupBox();
this.tags = new NanoByte.LightTag.TagSelectionControl();
this.buttonSearch = new System.Windows.Forms.Button();
this.groupTags.SuspendLayout();
this.SuspendLayout();
//
// folderBrowserDialog
//
this.folderBrowserDialog.Description = "Folder to search for tagged files:";
this.folderBrowserDialog.ShowNewFolderButton = false;
//
// textFolder
//
this.textFolder.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.textFolder.HintText = "Select folder to search";
this.textFolder.Location = new System.Drawing.Point(12, 12);
this.textFolder.Name = "textFolder";
this.textFolder.Size = new System.Drawing.Size(253, 20);
this.textFolder.TabIndex = 2;
//
// buttonBrowseFolder
//
this.buttonBrowseFolder.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.buttonBrowseFolder.Location = new System.Drawing.Point(271, 12);
this.buttonBrowseFolder.Name = "buttonBrowseFolder";
this.buttonBrowseFolder.Size = new System.Drawing.Size(25, 23);
this.buttonBrowseFolder.TabIndex = 3;
this.buttonBrowseFolder.Text = "...";
this.buttonBrowseFolder.UseVisualStyleBackColor = true;
this.buttonBrowseFolder.Click += new System.EventHandler(this.buttonBrowseFolder_Click);
//
// groupTags
//
this.groupTags.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.groupTags.Controls.Add(this.tags);
this.groupTags.Location = new System.Drawing.Point(12, 41);
this.groupTags.Name = "groupTags";
this.groupTags.Size = new System.Drawing.Size(284, 303);
this.groupTags.TabIndex = 0;
this.groupTags.TabStop = false;
this.groupTags.Tag = "";
this.groupTags.Text = "Tags";
//
// tags
//
this.tags.Dock = System.Windows.Forms.DockStyle.Fill;
this.tags.Location = new System.Drawing.Point(3, 16);
this.tags.Name = "tags";
this.tags.Size = new System.Drawing.Size(278, 284);
this.tags.TabIndex = 5;
//
// buttonSearch
//
this.buttonSearch.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.buttonSearch.Enabled = false;
this.buttonSearch.Location = new System.Drawing.Point(12, 350);
this.buttonSearch.Name = "buttonSearch";
this.buttonSearch.Size = new System.Drawing.Size(284, 23);
this.buttonSearch.TabIndex = 1;
this.buttonSearch.Text = "Search";
this.buttonSearch.UseVisualStyleBackColor = true;
this.buttonSearch.Click += new System.EventHandler(this.buttonSearch_Click);
//
// SearchForm
//
this.AcceptButton = this.buttonSearch;
this.AllowDrop = true;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(308, 385);
this.Controls.Add(this.buttonSearch);
this.Controls.Add(this.groupTags);
this.Controls.Add(this.buttonBrowseFolder);
this.Controls.Add(this.textFolder);
this.Name = "SearchForm";
this.Text = "LightTag - Search";
this.DragDrop += new System.Windows.Forms.DragEventHandler(this.SearchForm_DragDrop);
this.DragEnter += new System.Windows.Forms.DragEventHandler(this.SearchForm_DragEnter);
this.groupTags.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.FolderBrowserDialog folderBrowserDialog;
private NanoByte.Common.Controls.HintTextBox textFolder;
private System.Windows.Forms.Button buttonBrowseFolder;
private System.Windows.Forms.GroupBox groupTags;
private System.Windows.Forms.Button buttonSearch;
private TagSelectionControl tags;
}
}