259 lines
13 KiB
C#
259 lines
13 KiB
C#
namespace ServerExplorer.UI
|
|
{
|
|
partial class FrmServidores
|
|
{
|
|
/// <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.lsvServidores = new ServerExplorer.Controls.CustomListView();
|
|
this.colNombreServidor = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.colInstancia = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.colVersion = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.btnListarServidores = new System.Windows.Forms.Button();
|
|
this.lblServidor = new System.Windows.Forms.Label();
|
|
this.txtServidor = new ServerExplorer.Controls.CustomTextBox();
|
|
this.lblUsuario = new System.Windows.Forms.Label();
|
|
this.lblContrasenha = new System.Windows.Forms.Label();
|
|
this.txtUsuario = new ServerExplorer.Controls.CustomTextBox();
|
|
this.TxtContrasenha = new ServerExplorer.Controls.CustomTextBox();
|
|
this.btnListarBBDD = new System.Windows.Forms.Button();
|
|
this.lsvBBDD = new ServerExplorer.Controls.CustomListView();
|
|
this.colDBName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.colFechaCreacion = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.splitContainer1 = new System.Windows.Forms.SplitContainer();
|
|
this.splitContainer1.Panel1.SuspendLayout();
|
|
this.splitContainer1.Panel2.SuspendLayout();
|
|
this.splitContainer1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// lsvServidores
|
|
//
|
|
this.lsvServidores.AllowSorting = true;
|
|
this.lsvServidores.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
|
| System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.lsvServidores.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
|
this.colNombreServidor,
|
|
this.colInstancia,
|
|
this.colVersion});
|
|
this.lsvServidores.FullRowSelect = true;
|
|
this.lsvServidores.Location = new System.Drawing.Point(3, 32);
|
|
this.lsvServidores.Name = "lsvServidores";
|
|
this.lsvServidores.Size = new System.Drawing.Size(306, 386);
|
|
this.lsvServidores.TabIndex = 1;
|
|
this.lsvServidores.UseCompatibleStateImageBehavior = false;
|
|
this.lsvServidores.View = System.Windows.Forms.View.Details;
|
|
this.lsvServidores.SelectedIndexChanged += new System.EventHandler(this.lsvServidores_SelectedIndexChanged);
|
|
//
|
|
// colNombreServidor
|
|
//
|
|
this.colNombreServidor.Text = "Servidor";
|
|
this.colNombreServidor.Width = 110;
|
|
//
|
|
// colInstancia
|
|
//
|
|
this.colInstancia.Text = "Instancia";
|
|
this.colInstancia.Width = 94;
|
|
//
|
|
// colVersion
|
|
//
|
|
this.colVersion.Text = "Version";
|
|
this.colVersion.Width = 73;
|
|
//
|
|
// btnListarServidores
|
|
//
|
|
this.btnListarServidores.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.btnListarServidores.Location = new System.Drawing.Point(3, 3);
|
|
this.btnListarServidores.Name = "btnListarServidores";
|
|
this.btnListarServidores.Size = new System.Drawing.Size(306, 23);
|
|
this.btnListarServidores.TabIndex = 2;
|
|
this.btnListarServidores.Text = "Listar Servidores";
|
|
this.btnListarServidores.UseVisualStyleBackColor = true;
|
|
this.btnListarServidores.Click += new System.EventHandler(this.btnListarServidores_Click);
|
|
//
|
|
// lblServidor
|
|
//
|
|
this.lblServidor.AutoSize = true;
|
|
this.lblServidor.Location = new System.Drawing.Point(3, 8);
|
|
this.lblServidor.Name = "lblServidor";
|
|
this.lblServidor.Size = new System.Drawing.Size(46, 13);
|
|
this.lblServidor.TabIndex = 3;
|
|
this.lblServidor.Text = "Servidor";
|
|
//
|
|
// txtServidor
|
|
//
|
|
this.txtServidor.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.txtServidor.Location = new System.Drawing.Point(70, 6);
|
|
this.txtServidor.Name = "txtServidor";
|
|
this.txtServidor.Size = new System.Drawing.Size(218, 20);
|
|
this.txtServidor.TabIndex = 4;
|
|
//
|
|
// lblUsuario
|
|
//
|
|
this.lblUsuario.AutoSize = true;
|
|
this.lblUsuario.Location = new System.Drawing.Point(3, 35);
|
|
this.lblUsuario.Name = "lblUsuario";
|
|
this.lblUsuario.Size = new System.Drawing.Size(43, 13);
|
|
this.lblUsuario.TabIndex = 5;
|
|
this.lblUsuario.Text = "Usuario";
|
|
//
|
|
// lblContrasenha
|
|
//
|
|
this.lblContrasenha.AutoSize = true;
|
|
this.lblContrasenha.Location = new System.Drawing.Point(3, 61);
|
|
this.lblContrasenha.Name = "lblContrasenha";
|
|
this.lblContrasenha.Size = new System.Drawing.Size(61, 13);
|
|
this.lblContrasenha.TabIndex = 6;
|
|
this.lblContrasenha.Text = "Contraseña";
|
|
//
|
|
// txtUsuario
|
|
//
|
|
this.txtUsuario.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.txtUsuario.Location = new System.Drawing.Point(70, 32);
|
|
this.txtUsuario.Name = "txtUsuario";
|
|
this.txtUsuario.Size = new System.Drawing.Size(218, 20);
|
|
this.txtUsuario.TabIndex = 7;
|
|
//
|
|
// TxtContrasenha
|
|
//
|
|
this.TxtContrasenha.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.TxtContrasenha.Location = new System.Drawing.Point(70, 58);
|
|
this.TxtContrasenha.Name = "TxtContrasenha";
|
|
this.TxtContrasenha.Size = new System.Drawing.Size(218, 20);
|
|
this.TxtContrasenha.TabIndex = 8;
|
|
this.TxtContrasenha.UseSystemPasswordChar = true;
|
|
//
|
|
// btnListarBBDD
|
|
//
|
|
this.btnListarBBDD.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.btnListarBBDD.Location = new System.Drawing.Point(6, 84);
|
|
this.btnListarBBDD.Name = "btnListarBBDD";
|
|
this.btnListarBBDD.Size = new System.Drawing.Size(282, 23);
|
|
this.btnListarBBDD.TabIndex = 9;
|
|
this.btnListarBBDD.Text = "Listar BBDD";
|
|
this.btnListarBBDD.UseVisualStyleBackColor = true;
|
|
this.btnListarBBDD.Click += new System.EventHandler(this.btnListarBBDD_Click);
|
|
//
|
|
// lsvBBDD
|
|
//
|
|
this.lsvBBDD.AllowSorting = true;
|
|
this.lsvBBDD.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
|
| System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.lsvBBDD.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
|
this.colDBName,
|
|
this.colFechaCreacion});
|
|
this.lsvBBDD.FullRowSelect = true;
|
|
this.lsvBBDD.Location = new System.Drawing.Point(6, 113);
|
|
this.lsvBBDD.Name = "lsvBBDD";
|
|
this.lsvBBDD.Size = new System.Drawing.Size(282, 305);
|
|
this.lsvBBDD.TabIndex = 11;
|
|
this.lsvBBDD.UseCompatibleStateImageBehavior = false;
|
|
this.lsvBBDD.View = System.Windows.Forms.View.Details;
|
|
this.lsvBBDD.DoubleClick += new System.EventHandler(this.lsvBBDD_DoubleClick);
|
|
//
|
|
// colDBName
|
|
//
|
|
this.colDBName.Text = "Base de Datos";
|
|
this.colDBName.Width = 165;
|
|
//
|
|
// colFechaCreacion
|
|
//
|
|
this.colFechaCreacion.Text = "Fecha de Creacion";
|
|
this.colFechaCreacion.Width = 107;
|
|
//
|
|
// splitContainer1
|
|
//
|
|
this.splitContainer1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
|
| System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.splitContainer1.Location = new System.Drawing.Point(12, 12);
|
|
this.splitContainer1.Name = "splitContainer1";
|
|
//
|
|
// splitContainer1.Panel1
|
|
//
|
|
this.splitContainer1.Panel1.Controls.Add(this.lsvServidores);
|
|
this.splitContainer1.Panel1.Controls.Add(this.btnListarServidores);
|
|
//
|
|
// splitContainer1.Panel2
|
|
//
|
|
this.splitContainer1.Panel2.Controls.Add(this.lblServidor);
|
|
this.splitContainer1.Panel2.Controls.Add(this.lsvBBDD);
|
|
this.splitContainer1.Panel2.Controls.Add(this.txtServidor);
|
|
this.splitContainer1.Panel2.Controls.Add(this.btnListarBBDD);
|
|
this.splitContainer1.Panel2.Controls.Add(this.lblUsuario);
|
|
this.splitContainer1.Panel2.Controls.Add(this.lblContrasenha);
|
|
this.splitContainer1.Panel2.Controls.Add(this.TxtContrasenha);
|
|
this.splitContainer1.Panel2.Controls.Add(this.txtUsuario);
|
|
this.splitContainer1.Size = new System.Drawing.Size(607, 421);
|
|
this.splitContainer1.SplitterDistance = 312;
|
|
this.splitContainer1.TabIndex = 12;
|
|
//
|
|
// FrmServidores
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(631, 445);
|
|
this.Controls.Add(this.splitContainer1);
|
|
this.Name = "FrmServidores";
|
|
this.Text = "Servidores";
|
|
this.Load += new System.EventHandler(this.Form1_Load);
|
|
this.splitContainer1.Panel1.ResumeLayout(false);
|
|
this.splitContainer1.Panel2.ResumeLayout(false);
|
|
this.splitContainer1.Panel2.PerformLayout();
|
|
this.splitContainer1.ResumeLayout(false);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private ServerExplorer.Controls.CustomListView lsvServidores;
|
|
private System.Windows.Forms.Button btnListarServidores;
|
|
private System.Windows.Forms.ColumnHeader colNombreServidor;
|
|
private System.Windows.Forms.ColumnHeader colInstancia;
|
|
private System.Windows.Forms.ColumnHeader colVersion;
|
|
private System.Windows.Forms.Label lblServidor;
|
|
private ServerExplorer.Controls.CustomTextBox txtServidor;
|
|
private System.Windows.Forms.Label lblUsuario;
|
|
private System.Windows.Forms.Label lblContrasenha;
|
|
private ServerExplorer.Controls.CustomTextBox txtUsuario;
|
|
private ServerExplorer.Controls.CustomTextBox TxtContrasenha;
|
|
private System.Windows.Forms.Button btnListarBBDD;
|
|
private ServerExplorer.Controls.CustomListView lsvBBDD;
|
|
private System.Windows.Forms.ColumnHeader colDBName;
|
|
private System.Windows.Forms.ColumnHeader colFechaCreacion;
|
|
private System.Windows.Forms.SplitContainer splitContainer1;
|
|
|
|
}
|
|
}
|
|
|