8.- Programar C#, el uso de pictureBox y poner imagenes en form
Si tienes Dudas Registrate en esta Pagina Ahí te Ayudara
http://terespondere.com/
Código
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace Hola_Mundo
{
public partial class Login : Form
{
public Login()
{
InitializeComponent();
pictureBox1.Image = Image.FromFile(«user.png»);
}
private void button1_Click(object sender, EventArgs e)
{
}
private void button1_Click_1(object sender, EventArgs e)
{
if (textBox1.Text == «luga»)
{
if (textBox2.Text == «123456»)
{
Inicio abrir = new Inicio();
abrir.Show();
this.Hide();
}
else
{
MessageBox.Show(«Contraseña Incorracta»);
}
}
else {
MessageBox.Show(«Usuario Incorrecto»);
}
}
}
}