Files
ASDV-C-Sharp/Student Sample Programs/Chap02/Cat/Cat/Form1.cs
2022-08-30 14:15:11 -05:00

25 lines
514 B
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 Cat
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void catPictureBox_Click(object sender, EventArgs e)
{
MessageBox.Show("Meow");
}
}
}