sfApplication.cs
上传用户:lctyggxszx
上传日期:2022-06-30
资源大小:280k
文件大小:1k
源码类别:

FlashMX/Flex源码

开发平台:

C#

  1. using System;
  2. using System.Collections;
  3. using System.ComponentModel;
  4. using System.Windows.Forms;
  5. using AxShockwaveFlashObjects;
  6. namespace SharpFlash
  7. {
  8. /// <summary>
  9. /// Summary description for sfApplication.
  10. /// </summary>
  11. public class sfApplication
  12. {
  13. //These libraries can be static for now.. depends on what their use is.
  14. public sfApplication() 
  15. {
  16. }
  17. //Handles any command.. Will exist for any library - main library "loop"
  18. public static void Command(Form form, AxShockwaveFlash flashApp, string list, String method) 
  19. {
  20. switch(method) 
  21. {
  22. case "exit":
  23. sfApplication.exit();
  24. break;
  25. }
  26. }
  27. public static void exit() 
  28. {
  29. Application.Exit();
  30. }
  31. }
  32. }