namespace ShortcutUtil { 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.searchLabel = new System.Windows.Forms.Label(); this.optionsLabel = new System.Windows.Forms.Label(); this.optionsList = new System.Windows.Forms.ListBox(); this.selectButton = new System.Windows.Forms.Button(); this.searchBox = new ShortcutUtil.WatermarkTextBox(); this.SuspendLayout(); // // searchLabel // this.searchLabel.AutoSize = true; this.searchLabel.Location = new System.Drawing.Point(13, 13); this.searchLabel.Name = "searchLabel"; this.searchLabel.Size = new System.Drawing.Size(94, 20); this.searchLabel.TabIndex = 0; this.searchLabel.Text = "Search text:"; // // optionsLabel // this.optionsLabel.AutoSize = true; this.optionsLabel.Location = new System.Drawing.Point(13, 80); this.optionsLabel.Name = "optionsLabel"; this.optionsLabel.Size = new System.Drawing.Size(68, 20); this.optionsLabel.TabIndex = 2; this.optionsLabel.Text = "Options:"; // // optionsList // this.optionsList.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.optionsList.FormattingEnabled = true; this.optionsList.ItemHeight = 20; this.optionsList.Location = new System.Drawing.Point(17, 104); this.optionsList.Name = "optionsList"; this.optionsList.Size = new System.Drawing.Size(771, 304); this.optionsList.TabIndex = 3; // // selectButton // this.selectButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.selectButton.DialogResult = System.Windows.Forms.DialogResult.OK; this.selectButton.Location = new System.Drawing.Point(661, 414); this.selectButton.Name = "selectButton"; this.selectButton.Size = new System.Drawing.Size(127, 41); this.selectButton.TabIndex = 4; this.selectButton.Text = "Select"; this.selectButton.UseVisualStyleBackColor = true; // // searchBox // this.searchBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.searchBox.Location = new System.Drawing.Point(17, 37); this.searchBox.Name = "searchBox"; this.searchBox.Size = new System.Drawing.Size(771, 26); this.searchBox.TabIndex = 1; this.searchBox.WaterMarkColor = System.Drawing.Color.Gray; this.searchBox.WaterMarkText = "Match text here"; this.searchBox.TextChanged += new System.EventHandler(this.searchBox_TextChanged); // // SearchForm // this.AcceptButton = this.selectButton; this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(800, 463); this.Controls.Add(this.selectButton); this.Controls.Add(this.optionsList); this.Controls.Add(this.optionsLabel); this.Controls.Add(this.searchBox); this.Controls.Add(this.searchLabel); this.Name = "SearchForm"; this.Text = "Search"; this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label searchLabel; private System.Windows.Forms.Label optionsLabel; private System.Windows.Forms.ListBox optionsList; private System.Windows.Forms.Button selectButton; private WatermarkTextBox searchBox; } }