Program.cs
上传用户:linger1010
上传日期:2008-12-08
资源大小:561k
文件大小:0k
源码类别:

Windows Mobile

开发平台:

C#

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Windows.Forms;
  4. namespace MouseEvents
  5. {
  6. static class Program
  7. {
  8. /// <summary>
  9. /// The main entry point for the application.
  10. /// </summary>
  11. [MTAThread]
  12. static void Main()
  13. {
  14. Application.Run(new MainForm());
  15. }
  16. }
  17. }