25 lines
566 B
C#
25 lines
566 B
C#
|
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");
|
||
|
}
|
||
|
}
|
||
|
}
|