130 lines
5.8 KiB
C#
130 lines
5.8 KiB
C#
namespace ServerExplorer.UI
|
|
{
|
|
partial class FrmPrincipal
|
|
{
|
|
/// <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.menuPrincipal = new System.Windows.Forms.MenuStrip();
|
|
this.menuServidor = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.menuBuscarServidor = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.menuBaseDatos = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.menuConectarA = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.menuConectarPRUEBAS = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.flowpnlWindows = new System.Windows.Forms.FlowLayoutPanel();
|
|
this.menuPrincipal.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// menuPrincipal
|
|
//
|
|
this.menuPrincipal.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.menuServidor,
|
|
this.menuBaseDatos});
|
|
this.menuPrincipal.Location = new System.Drawing.Point(0, 0);
|
|
this.menuPrincipal.Name = "menuPrincipal";
|
|
this.menuPrincipal.Size = new System.Drawing.Size(800, 24);
|
|
this.menuPrincipal.TabIndex = 4;
|
|
this.menuPrincipal.Text = "menuPrincipal";
|
|
//
|
|
// menuServidor
|
|
//
|
|
this.menuServidor.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.menuBuscarServidor});
|
|
this.menuServidor.Name = "menuServidor";
|
|
this.menuServidor.Size = new System.Drawing.Size(62, 20);
|
|
this.menuServidor.Text = "Servidor";
|
|
//
|
|
// menuBuscarServidor
|
|
//
|
|
this.menuBuscarServidor.Name = "menuBuscarServidor";
|
|
this.menuBuscarServidor.Size = new System.Drawing.Size(155, 22);
|
|
this.menuBuscarServidor.Text = "Buscar Servidor";
|
|
this.menuBuscarServidor.Click += new System.EventHandler(this.menuBuscarServidor_Click);
|
|
//
|
|
// menuBaseDatos
|
|
//
|
|
this.menuBaseDatos.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.menuConectarA,
|
|
this.menuConectarPRUEBAS});
|
|
this.menuBaseDatos.Name = "menuBaseDatos";
|
|
this.menuBaseDatos.Size = new System.Drawing.Size(92, 20);
|
|
this.menuBaseDatos.Text = "Base de Datos";
|
|
//
|
|
// menuConectarA
|
|
//
|
|
this.menuConectarA.Name = "menuConectarA";
|
|
this.menuConectarA.Size = new System.Drawing.Size(183, 22);
|
|
this.menuConectarA.Text = "Conectar a...";
|
|
this.menuConectarA.Click += new System.EventHandler(this.menuConectarA_Click);
|
|
//
|
|
// menuConectarPRUEBAS
|
|
//
|
|
this.menuConectarPRUEBAS.Name = "menuConectarPRUEBAS";
|
|
this.menuConectarPRUEBAS.Size = new System.Drawing.Size(183, 22);
|
|
this.menuConectarPRUEBAS.Text = "Conectar a PRUEBAS";
|
|
this.menuConectarPRUEBAS.Click += new System.EventHandler(this.menuConectarPRUEBAS_Click);
|
|
//
|
|
// flowpnlWindows
|
|
//
|
|
this.flowpnlWindows.AutoSize = true;
|
|
this.flowpnlWindows.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
|
|
this.flowpnlWindows.Dock = System.Windows.Forms.DockStyle.Top;
|
|
this.flowpnlWindows.Location = new System.Drawing.Point(0, 24);
|
|
this.flowpnlWindows.Name = "flowpnlWindows";
|
|
this.flowpnlWindows.Size = new System.Drawing.Size(800, 0);
|
|
this.flowpnlWindows.TabIndex = 6;
|
|
//
|
|
// FrmPrincipal
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(800, 601);
|
|
this.Controls.Add(this.flowpnlWindows);
|
|
this.Controls.Add(this.menuPrincipal);
|
|
this.IsMdiContainer = true;
|
|
this.MainMenuStrip = this.menuPrincipal;
|
|
this.Name = "FrmPrincipal";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
this.Text = "Explorador de Servidores";
|
|
this.MdiChildActivate += new System.EventHandler(this.FrmPrincipal_MdiChildActivate);
|
|
this.menuPrincipal.ResumeLayout(false);
|
|
this.menuPrincipal.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.MenuStrip menuPrincipal;
|
|
private System.Windows.Forms.ToolStripMenuItem menuServidor;
|
|
private System.Windows.Forms.ToolStripMenuItem menuBuscarServidor;
|
|
private System.Windows.Forms.ToolStripMenuItem menuBaseDatos;
|
|
private System.Windows.Forms.ToolStripMenuItem menuConectarA;
|
|
private System.Windows.Forms.ToolStripMenuItem menuConectarPRUEBAS;
|
|
private System.Windows.Forms.FlowLayoutPanel flowpnlWindows;
|
|
}
|
|
} |