tpDictionary/tpDictionary/SearchForm.Designer.cs
kawaiizenbo fd1806f019 h
2022-09-02 18:37:09 -07:00

117 lines
No EOL
4.8 KiB
C#

namespace tpDictionary
{
partial class SearchForm
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
private System.Windows.Forms.MainMenu mainMenu1;
/// <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.mainMenu1 = new System.Windows.Forms.MainMenu();
this.queryTypeComboBox = new System.Windows.Forms.ComboBox();
this.backButton = new System.Windows.Forms.MenuItem();
this.searchButton = new System.Windows.Forms.MenuItem();
this.searchTextBox = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// mainMenu1
//
this.mainMenu1.MenuItems.Add(this.backButton);
this.mainMenu1.MenuItems.Add(this.searchButton);
//
// queryTypeComboBox
//
this.queryTypeComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.queryTypeComboBox.Items.Add("Word");
this.queryTypeComboBox.Items.Add("Definition");
this.queryTypeComboBox.Items.Add("Part of Speech");
this.queryTypeComboBox.Location = new System.Drawing.Point(3, 33);
this.queryTypeComboBox.Name = "queryTypeComboBox";
this.queryTypeComboBox.Size = new System.Drawing.Size(314, 30);
this.queryTypeComboBox.TabIndex = 0;
//
// backButton
//
this.backButton.Text = "Back";
this.backButton.Click += new System.EventHandler(this.backButton_Click);
//
// searchButton
//
this.searchButton.Text = "Search";
this.searchButton.Click += new System.EventHandler(this.searchButton_Click);
//
// searchTextBox
//
this.searchTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.searchTextBox.Location = new System.Drawing.Point(3, 99);
this.searchTextBox.Name = "searchTextBox";
this.searchTextBox.Size = new System.Drawing.Size(314, 30);
this.searchTextBox.TabIndex = 1;
//
// label1
//
this.label1.Location = new System.Drawing.Point(3, 0);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(207, 30);
this.label1.Text = "Search Type";
//
// label2
//
this.label2.Location = new System.Drawing.Point(3, 66);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(207, 30);
this.label2.Text = "Search Query";
//
// SearchForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(131F, 131F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.AutoScroll = true;
this.ClientSize = new System.Drawing.Size(320, 186);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.searchTextBox);
this.Controls.Add(this.queryTypeComboBox);
this.Menu = this.mainMenu1;
this.Name = "SearchForm";
this.Text = "Search";
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.ComboBox queryTypeComboBox;
private System.Windows.Forms.MenuItem backButton;
private System.Windows.Forms.MenuItem searchButton;
private System.Windows.Forms.TextBox searchTextBox;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
}
}