Files
ayanova7/source/Plugins/AyaNovaOL/SearchForAyaNovaItem.Designer.cs
2018-06-29 19:47:36 +00:00

163 lines
7.8 KiB
C#

namespace AyaNovaOL
{
partial class SearchForAyaNovaItem
{
/// <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.edEmail = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.edSearchText = new System.Windows.Forms.TextBox();
this.btnOK = new System.Windows.Forms.Button();
this.btnCancel = new System.Windows.Forms.Button();
this.btnSearch = new System.Windows.Forms.Button();
this.cbItems = new System.Windows.Forms.ComboBox();
this.lblItems = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// edEmail
//
this.edEmail.AcceptsReturn = true;
this.edEmail.AcceptsTab = true;
this.edEmail.Location = new System.Drawing.Point(12, 29);
this.edEmail.Multiline = true;
this.edEmail.Name = "edEmail";
this.edEmail.ReadOnly = true;
this.edEmail.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.edEmail.Size = new System.Drawing.Size(608, 234);
this.edEmail.TabIndex = 1;
this.edEmail.MouseUp += new System.Windows.Forms.MouseEventHandler(this.edEmail_MouseUp);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(13, 10);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(71, 13);
this.label1.TabIndex = 2;
this.label1.Text = "Highlight text ";
//
// edSearchText
//
this.edSearchText.Location = new System.Drawing.Point(12, 293);
this.edSearchText.Name = "edSearchText";
this.edSearchText.Size = new System.Drawing.Size(577, 20);
this.edSearchText.TabIndex = 3;
//
// btnOK
//
this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnOK.Enabled = false;
this.btnOK.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
this.btnOK.Image = global::AyaNovaOL.Resource1.OK24;
this.btnOK.Location = new System.Drawing.Point(564, 406);
this.btnOK.Name = "btnOK";
this.btnOK.Size = new System.Drawing.Size(56, 35);
this.btnOK.TabIndex = 30;
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// btnCancel
//
this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnCancel.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
this.btnCancel.Image = global::AyaNovaOL.Resource1.Cancel24;
this.btnCancel.Location = new System.Drawing.Point(12, 406);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(56, 35);
this.btnCancel.TabIndex = 29;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// btnSearch
//
this.btnSearch.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.btnSearch.Image = global::AyaNovaOL.Resource1.SearchDatabase16;
this.btnSearch.Location = new System.Drawing.Point(595, 289);
this.btnSearch.Name = "btnSearch";
this.btnSearch.Size = new System.Drawing.Size(25, 26);
this.btnSearch.TabIndex = 31;
this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
//
// cbItems
//
this.cbItems.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.cbItems.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
this.cbItems.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
this.cbItems.FormattingEnabled = true;
this.cbItems.Location = new System.Drawing.Point(12, 350);
this.cbItems.Name = "cbItems";
this.cbItems.Size = new System.Drawing.Size(608, 21);
this.cbItems.TabIndex = 33;
this.cbItems.SelectedIndexChanged += new System.EventHandler(this.cbItems_SelectedIndexChanged);
//
// lblItems
//
this.lblItems.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.lblItems.AutoSize = true;
this.lblItems.Location = new System.Drawing.Point(9, 333);
this.lblItems.Name = "lblItems";
this.lblItems.Size = new System.Drawing.Size(78, 13);
this.lblItems.TabIndex = 32;
this.lblItems.Text = "Matching items";
//
// SearchForAyaNovaItem
//
this.AcceptButton = this.btnOK;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.btnCancel;
this.ClientSize = new System.Drawing.Size(632, 453);
this.Controls.Add(this.cbItems);
this.Controls.Add(this.lblItems);
this.Controls.Add(this.btnSearch);
this.Controls.Add(this.btnOK);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.edSearchText);
this.Controls.Add(this.label1);
this.Controls.Add(this.edEmail);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.Name = "SearchForAyaNovaItem";
this.Text = "Search";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox edEmail;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox edSearchText;
private System.Windows.Forms.Button btnOK;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.Button btnSearch;
private System.Windows.Forms.ComboBox cbItems;
private System.Windows.Forms.Label lblItems;
}
}