no pude usar controladoras, no carga los datos ,interface de cliente y provedor

This commit is contained in:
Nacho
2024-04-19 21:04:35 -03:00
parent cefd645974
commit f2457d4eaa
53 changed files with 6314 additions and 135 deletions

View File

@@ -39,6 +39,7 @@
label3 = new Label();
checkBoxHabilitado = new CheckBox();
label4 = new Label();
button1 = new Button();
((System.ComponentModel.ISupportInitialize)numCuit).BeginInit();
SuspendLayout();
//
@@ -79,7 +80,6 @@
numCuit.Name = "numCuit";
numCuit.Size = new Size(100, 23);
numCuit.TabIndex = 4;
numCuit.ValueChanged += numCuit_ValueChanged;
//
// Nombre
//
@@ -135,11 +135,22 @@
label4.TabIndex = 10;
label4.Text = "Habilitado";
//
// button1
//
button1.Location = new Point(174, 195);
button1.Name = "button1";
button1.Size = new Size(75, 23);
button1.TabIndex = 11;
button1.Text = "Cancelar";
button1.UseVisualStyleBackColor = true;
button1.Click += button1_Click;
//
// FrmProveedor
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(409, 230);
Controls.Add(button1);
Controls.Add(label4);
Controls.Add(checkBoxHabilitado);
Controls.Add(label3);
@@ -172,5 +183,6 @@
private Label label3;
private CheckBox checkBoxHabilitado;
private Label label4;
private Button button1;
}
}