datos de libro
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace libros
{
public partial class frmLibros : Form
{
public frmLibros()
{
InitializeComponent();
}
private void btnTitulo_Click(object sender, EventArgs e)
{
lbltitulo.Text = "base de datos";
string texto = lbltitulo.Text;
}
private void btnAutor_Click(object sender, EventArgs e)
{
lblAutor.Text = "joyanes";
string texto = lblAutor.Text;
}
private void btnEditorial_Click(object sender, EventArgs e)
{
lblEditorial.Text = "navarrete";
string texto = lblEditorial.Text;
}
private void btnEdicion_Click(object sender, EventArgs e)
{
lblEdicion.Text = "2006";
string texto = lblEdicion.Text;
}
private void btnNrodepaginas_Click(object sender, EventArgs e)
{
lblNrodepaginas.Text = "456";
string texto = lblNrodepaginas.Text;
}
}
}
0 Response to "datos de libro"
Publicar un comentario