- Regjistruar më
- Dhjetor 13, 2004
- Mesazhe
- 43,056
- Pëlqime
- 40,059
C#:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApp1
{
public partial class LOGIN : Form
{
public LOGIN()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
MessageBox.Show("User: " + textBox1.Text + " Password: "+textBox2.Text);
}
private void textBox1_TextChanged(object sender, EventArgs e)
{
// do nothing
}
private void label1_Click(object sender, EventArgs e)
{
// do nothing
}
private void label3_Click(object sender, EventArgs e)
{
// do nothing
}
}
}
Rezultati:
