añadido skeleton de los form ordendecompra y remito
This commit is contained in:
100
Vista/FrmOrdenDeCompra.Designer.cs
generated
100
Vista/FrmOrdenDeCompra.Designer.cs
generated
@@ -1,100 +0,0 @@
|
||||
namespace Vista
|
||||
{
|
||||
partial class FrmOrdenDeCompra
|
||||
{
|
||||
/// <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()
|
||||
{
|
||||
groupBox1 = new GroupBox();
|
||||
dataGridView1 = new DataGridView();
|
||||
BtnAdd = new Button();
|
||||
BtnEliminar = new Button();
|
||||
groupBox1.SuspendLayout();
|
||||
((System.ComponentModel.ISupportInitialize)dataGridView1).BeginInit();
|
||||
SuspendLayout();
|
||||
//
|
||||
// groupBox1
|
||||
//
|
||||
groupBox1.Controls.Add(dataGridView1);
|
||||
groupBox1.Controls.Add(BtnAdd);
|
||||
groupBox1.Controls.Add(BtnEliminar);
|
||||
groupBox1.Location = new Point(12, 3);
|
||||
groupBox1.Name = "groupBox1";
|
||||
groupBox1.Size = new Size(776, 351);
|
||||
groupBox1.TabIndex = 4;
|
||||
groupBox1.TabStop = false;
|
||||
//
|
||||
// dataGridView1
|
||||
//
|
||||
dataGridView1.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.DisplayedCells;
|
||||
dataGridView1.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
||||
dataGridView1.Location = new Point(6, 22);
|
||||
dataGridView1.Name = "dataGridView1";
|
||||
dataGridView1.RowTemplate.Height = 25;
|
||||
dataGridView1.Size = new Size(550, 235);
|
||||
dataGridView1.TabIndex = 3;
|
||||
//
|
||||
// BtnAdd
|
||||
//
|
||||
BtnAdd.Location = new Point(6, 302);
|
||||
BtnAdd.Name = "BtnAdd";
|
||||
BtnAdd.Size = new Size(75, 23);
|
||||
BtnAdd.TabIndex = 0;
|
||||
BtnAdd.Text = "Añadir";
|
||||
BtnAdd.UseVisualStyleBackColor = true;
|
||||
BtnAdd.Click += BtnAdd_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;
|
||||
//
|
||||
// FrmOrdenDeCompra
|
||||
//
|
||||
AutoScaleDimensions = new SizeF(7F, 15F);
|
||||
AutoScaleMode = AutoScaleMode.Font;
|
||||
ClientSize = new Size(800, 450);
|
||||
Controls.Add(groupBox1);
|
||||
Name = "FrmOrdenDeCompra";
|
||||
Text = "OrdenDeCompra";
|
||||
WindowState = FormWindowState.Maximized;
|
||||
groupBox1.ResumeLayout(false);
|
||||
((System.ComponentModel.ISupportInitialize)dataGridView1).EndInit();
|
||||
ResumeLayout(false);
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private GroupBox groupBox1;
|
||||
private DataGridView dataGridView1;
|
||||
private Button BtnAdd;
|
||||
private Button BtnEliminar;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user