示例#1
0
    public static void Main()
    {
        MDHHandler MyForm = new MDHHandler();

        MyForm.Paint += MyForm.MyPaint;
        Application.Run(MyForm);
    }
 public static void Main()
 {
     MDHHandler MyForm = new MDHHandler();
     MyForm.Paint += new PaintEventHandler(MyPaint);
     Application.Run(MyForm);
 }