25 lines
566 B
C#
Executable File
25 lines
566 B
C#
Executable File
namespace Lab1CalebFontenot
|
|
{
|
|
public partial class Form1 : Form
|
|
{
|
|
public Form1()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void button1_Click(object sender, EventArgs e)
|
|
{
|
|
MessageBox.Show("Thanks for clicking the button");
|
|
}
|
|
|
|
private void label1_Click(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
|
|
private void button1_Click_1(object sender, EventArgs e)
|
|
{
|
|
MessageBox.Show("Thanks for clicking buttonSpanish");
|
|
}
|
|
}
|
|
} |