20 lines
376 B
C#
Raw Normal View History

2022-11-17 14:45:04 -06:00
namespace lab7_2_CalebFontenot
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
}
private void button2_Click(object sender, EventArgs e)
{
this.Close();
}
}
}