声明委托
											 System;
using System.Windows.Forms;
namespace _05_08
{
    public class Form_05_08 : Form
    {
        public Form_05_08()
        {
            this.Click += new EventHandler(this.Form_Click);
        }
        public void Form_Click(object sender, EventArgs e)
        {
            MessageBox.Show("您在窗体上单击了鼠标!");
        }
    }
    public class Class_05_08
    {
        public static void Main(String[] args)
        {
            Application.Run(new Form_05_08());
        }
    }
请问。。此处为什么没有用public event 代理名 事件名来声明事件呢??为什么没有用delegate代理来声明呢??

											