92 lines
3.9 KiB
C#
92 lines
3.9 KiB
C#
namespace CSharpLibrary.stuff
|
|
{
|
|
partial class search
|
|
{
|
|
/// <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.txtQuery = new System.Windows.Forms.TextBox();
|
|
this.btnQuery = new System.Windows.Forms.Button();
|
|
this.dataGridView1 = new System.Windows.Forms.DataGridView();
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// txtQuery
|
|
//
|
|
this.txtQuery.Location = new System.Drawing.Point(12, 29);
|
|
this.txtQuery.Name = "txtQuery";
|
|
this.txtQuery.Size = new System.Drawing.Size(295, 20);
|
|
this.txtQuery.TabIndex = 0;
|
|
//
|
|
// btnQuery
|
|
//
|
|
this.btnQuery.Location = new System.Drawing.Point(327, 27);
|
|
this.btnQuery.Name = "btnQuery";
|
|
this.btnQuery.Size = new System.Drawing.Size(75, 23);
|
|
this.btnQuery.TabIndex = 1;
|
|
this.btnQuery.Text = "Pesquisar";
|
|
this.btnQuery.UseVisualStyleBackColor = true;
|
|
this.btnQuery.Click += new System.EventHandler(this.btnQuery_Click);
|
|
//
|
|
// dataGridView1
|
|
//
|
|
this.dataGridView1.AllowUserToAddRows = false;
|
|
this.dataGridView1.AllowUserToDeleteRows = false;
|
|
this.dataGridView1.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
|
|
this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.dataGridView1.Location = new System.Drawing.Point(12, 56);
|
|
this.dataGridView1.Name = "dataGridView1";
|
|
this.dataGridView1.ReadOnly = true;
|
|
this.dataGridView1.ShowEditingIcon = false;
|
|
this.dataGridView1.Size = new System.Drawing.Size(479, 250);
|
|
this.dataGridView1.TabIndex = 2;
|
|
this.dataGridView1.CellMouseDoubleClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dataGridView1_CellMouseDoubleClick);
|
|
//
|
|
// search
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(503, 318);
|
|
this.Controls.Add(this.dataGridView1);
|
|
this.Controls.Add(this.btnQuery);
|
|
this.Controls.Add(this.txtQuery);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
|
|
this.Name = "search";
|
|
this.Text = "Pesquisar";
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.TextBox txtQuery;
|
|
private System.Windows.Forms.Button btnQuery;
|
|
private System.Windows.Forms.DataGridView dataGridView1;
|
|
}
|
|
}
|