1
0
mirror of https://github.com/dkmstr/openuds.git synced 2025-01-07 17:17:55 +03:00
openuds/client/administration/UdsAdmin/forms/SearchForm.Designer.cs
2012-07-19 23:47:54 +00:00

146 lines
6.4 KiB
C#

namespace UdsAdmin.forms
{
partial class SearchForm
{
/// <summary>
/// Variable del diseñador requerida.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Limpiar los recursos que se estén utilizando.
/// </summary>
/// <param name="disposing">true si los recursos administrados se deben eliminar; false en caso contrario, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Código generado por el Diseñador de Windows Forms
/// <summary>
/// Método necesario para admitir el Diseñador. No se puede modificar
/// el contenido del método con el editor de código.
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SearchForm));
this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
this.close = new System.Windows.Forms.Button();
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.searchLabel = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.searchText = new System.Windows.Forms.TextBox();
this.searchButton = new System.Windows.Forms.Button();
this.resultsList = new System.Windows.Forms.ListView();
this.id = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.name = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.tableLayoutPanel2.SuspendLayout();
this.tableLayoutPanel1.SuspendLayout();
this.SuspendLayout();
//
// tableLayoutPanel2
//
resources.ApplyResources(this.tableLayoutPanel2, "tableLayoutPanel2");
this.tableLayoutPanel2.Controls.Add(this.close, 2, 0);
this.tableLayoutPanel2.Name = "tableLayoutPanel2";
//
// close
//
resources.ApplyResources(this.close, "close");
this.close.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.close.Name = "close";
this.close.UseVisualStyleBackColor = true;
this.close.Click += new System.EventHandler(this.cancel_Click);
//
// tableLayoutPanel1
//
resources.ApplyResources(this.tableLayoutPanel1, "tableLayoutPanel1");
this.tableLayoutPanel1.Controls.Add(this.searchLabel, 0, 0);
this.tableLayoutPanel1.Controls.Add(this.label1, 0, 1);
this.tableLayoutPanel1.Controls.Add(this.searchText, 1, 0);
this.tableLayoutPanel1.Controls.Add(this.searchButton, 2, 0);
this.tableLayoutPanel1.Controls.Add(this.resultsList, 1, 1);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
//
// searchLabel
//
resources.ApplyResources(this.searchLabel, "searchLabel");
this.searchLabel.Name = "searchLabel";
//
// label1
//
resources.ApplyResources(this.label1, "label1");
this.label1.Name = "label1";
//
// searchText
//
resources.ApplyResources(this.searchText, "searchText");
this.searchText.Name = "searchText";
//
// searchButton
//
resources.ApplyResources(this.searchButton, "searchButton");
this.searchButton.Name = "searchButton";
this.searchButton.UseVisualStyleBackColor = true;
this.searchButton.Click += new System.EventHandler(this.searchButton_Click);
//
// resultsList
//
this.resultsList.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.id,
this.name});
this.tableLayoutPanel1.SetColumnSpan(this.resultsList, 2);
resources.ApplyResources(this.resultsList, "resultsList");
this.resultsList.FullRowSelect = true;
this.resultsList.Name = "resultsList";
this.resultsList.UseCompatibleStateImageBehavior = false;
this.resultsList.View = System.Windows.Forms.View.Details;
this.resultsList.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.resultsList_ColumnClick);
this.resultsList.DoubleClick += new System.EventHandler(this.resultsList_DoubleClick);
//
// id
//
resources.ApplyResources(this.id, "id");
//
// name
//
resources.ApplyResources(this.name, "name");
//
// SearchForm
//
this.AcceptButton = this.searchButton;
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.close;
this.Controls.Add(this.tableLayoutPanel2);
this.Controls.Add(this.tableLayoutPanel1);
this.Name = "SearchForm";
this.Load += new System.EventHandler(this.SearchForm_Load);
this.tableLayoutPanel2.ResumeLayout(false);
this.tableLayoutPanel1.ResumeLayout(false);
this.tableLayoutPanel1.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel2;
private System.Windows.Forms.Button close;
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
private System.Windows.Forms.Label searchLabel;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox searchText;
private System.Windows.Forms.Button searchButton;
private System.Windows.Forms.ListView resultsList;
private System.Windows.Forms.ColumnHeader id;
private System.Windows.Forms.ColumnHeader name;
}
}