118 lines
5.3 KiB
C#
118 lines
5.3 KiB
C#
namespace bzit.bomg
|
|
{
|
|
partial class FindForm
|
|
{
|
|
/// <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()
|
|
{
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FindForm));
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.textBox1 = new System.Windows.Forms.TextBox();
|
|
this.btnSave = new RyzStudio.Windows.Forms.BigButton();
|
|
this.button3 = new RyzStudio.Windows.Forms.BigButton();
|
|
this.SuspendLayout();
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(12, 12);
|
|
this.label1.Margin = new System.Windows.Forms.Padding(3);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(96, 13);
|
|
this.label1.TabIndex = 0;
|
|
this.label1.Text = "Find a search term";
|
|
//
|
|
// textBox1
|
|
//
|
|
this.textBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.textBox1.Location = new System.Drawing.Point(12, 31);
|
|
this.textBox1.MaxLength = 128;
|
|
this.textBox1.Name = "textBox1";
|
|
this.textBox1.Size = new System.Drawing.Size(280, 21);
|
|
this.textBox1.TabIndex = 0;
|
|
this.textBox1.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.textBox1_PreviewKeyDown);
|
|
//
|
|
// btnSave
|
|
//
|
|
this.btnSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.btnSave.BackColor = System.Drawing.Color.WhiteSmoke;
|
|
this.btnSave.Location = new System.Drawing.Point(196, 67);
|
|
this.btnSave.MaximumSize = new System.Drawing.Size(120, 32);
|
|
this.btnSave.MinimumSize = new System.Drawing.Size(32, 32);
|
|
this.btnSave.Name = "btnSave";
|
|
this.btnSave.Padding = new System.Windows.Forms.Padding(4);
|
|
this.btnSave.Size = new System.Drawing.Size(96, 32);
|
|
this.btnSave.TabIndex = 22;
|
|
this.btnSave.Value = "&Next";
|
|
this.btnSave.Click += new System.EventHandler(this.button1_Click);
|
|
//
|
|
// button3
|
|
//
|
|
this.button3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.button3.BackColor = System.Drawing.Color.WhiteSmoke;
|
|
this.button3.Location = new System.Drawing.Point(94, 67);
|
|
this.button3.MaximumSize = new System.Drawing.Size(120, 32);
|
|
this.button3.MinimumSize = new System.Drawing.Size(32, 32);
|
|
this.button3.Name = "button3";
|
|
this.button3.Padding = new System.Windows.Forms.Padding(4);
|
|
this.button3.Size = new System.Drawing.Size(96, 32);
|
|
this.button3.TabIndex = 23;
|
|
this.button3.Value = "&Find";
|
|
this.button3.Click += new System.EventHandler(this.button2_Click);
|
|
//
|
|
// FindForm
|
|
//
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
|
|
this.BackColor = System.Drawing.Color.White;
|
|
this.ClientSize = new System.Drawing.Size(304, 111);
|
|
this.Controls.Add(this.button3);
|
|
this.Controls.Add(this.btnSave);
|
|
this.Controls.Add(this.textBox1);
|
|
this.Controls.Add(this.label1);
|
|
this.Font = new System.Drawing.Font("Tahoma", 8.25F);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "FindForm";
|
|
this.ShowInTaskbar = false;
|
|
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
this.Text = "Find";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.TextBox textBox1;
|
|
private RyzStudio.Windows.Forms.BigButton btnSave;
|
|
private RyzStudio.Windows.Forms.BigButton button3;
|
|
}
|
|
} |