30 lines
692 B
C#
30 lines
692 B
C#
|
namespace Lab3_CalebFontenot
|
||
|
{
|
||
|
public partial class Form1 : Form
|
||
|
{
|
||
|
public Form1()
|
||
|
{
|
||
|
InitializeComponent();
|
||
|
}
|
||
|
|
||
|
private void instructionLabel_Click(object sender, EventArgs e)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
private void francePictureBox_Click(object sender, EventArgs e)
|
||
|
{
|
||
|
countryLabel.Text = "France";
|
||
|
}
|
||
|
|
||
|
private void finlandPictureBox_Click(object sender, EventArgs e)
|
||
|
{
|
||
|
countryLabel.Text = "Finland";
|
||
|
}
|
||
|
|
||
|
private void germanyPictureBox_Click(object sender, EventArgs e)
|
||
|
{
|
||
|
countryLabel.Text = "Germany";
|
||
|
}
|
||
|
}
|
||
|
}
|