Ok, but I'm confused. If I have a class that is this:
namespace WindowsFormsApplication3
{
static class Program
{
///
/// The main entry point for the application.
///
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}
(which is the default class generated when creating a form app) do I just add members functions to this and they will be callable? How do I do event callbacks?