Files
Final_Das/Vista/FrmClientes.Designer.cs
2024-08-11 18:25:24 -03:00

118 lines
4.3 KiB
C#

namespace Vista
{
partial class FrmClientes
{
/// <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()
{
BtnModificar = new Button();
BtnEliminar = new Button();
groupBox1 = new GroupBox();
BtnAceptar = new Button();
dgvCliente = new DataGridView();
groupBox1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)dgvCliente).BeginInit();
SuspendLayout();
//
// BtnModificar
//
BtnModificar.Location = new Point(108, 302);
BtnModificar.Name = "BtnModificar";
BtnModificar.Size = new Size(75, 23);
BtnModificar.TabIndex = 1;
BtnModificar.Text = "Modificar";
BtnModificar.UseVisualStyleBackColor = true;
BtnModificar.Click += BtnModificar_Click;
//
// BtnEliminar
//
BtnEliminar.Location = new Point(215, 302);
BtnEliminar.Name = "BtnEliminar";
BtnEliminar.Size = new Size(75, 23);
BtnEliminar.TabIndex = 2;
BtnEliminar.Text = "Eliminar";
BtnEliminar.UseVisualStyleBackColor = true;
BtnEliminar.Click += BtnEliminar_Click;
//
// groupBox1
//
groupBox1.Controls.Add(BtnAceptar);
groupBox1.Controls.Add(dgvCliente);
groupBox1.Controls.Add(BtnEliminar);
groupBox1.Controls.Add(BtnModificar);
groupBox1.Location = new Point(12, 2);
groupBox1.Name = "groupBox1";
groupBox1.Size = new Size(776, 351);
groupBox1.TabIndex = 3;
groupBox1.TabStop = false;
//
// BtnAceptar
//
BtnAceptar.Location = new Point(6, 302);
BtnAceptar.Name = "BtnAceptar";
BtnAceptar.Size = new Size(75, 23);
BtnAceptar.TabIndex = 4;
BtnAceptar.Text = "Añadir";
BtnAceptar.UseVisualStyleBackColor = true;
BtnAceptar.Click += BtnAceptar_Click;
//
// dgvCliente
//
dgvCliente.AllowUserToAddRows = false;
dgvCliente.AllowUserToDeleteRows = false;
dgvCliente.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.Fill;
dgvCliente.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
dgvCliente.Location = new Point(6, 22);
dgvCliente.MultiSelect = false;
dgvCliente.Name = "dgvCliente";
dgvCliente.ReadOnly = true;
dgvCliente.RowTemplate.Height = 25;
dgvCliente.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
dgvCliente.Size = new Size(737, 235);
dgvCliente.TabIndex = 3;
//
// FrmClientes
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(800, 450);
Controls.Add(groupBox1);
Name = "FrmClientes";
Text = "Clientes";
WindowState = FormWindowState.Maximized;
groupBox1.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)dgvCliente).EndInit();
ResumeLayout(false);
}
#endregion
private Button BtnModificar;
private Button BtnEliminar;
private GroupBox groupBox1;
private DataGridView dgvCliente;
private Button BtnAceptar;
}
}