DialogNames.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace PDF_Office.Model
  7. {
  8. /// <summary>
  9. /// 记录弹窗的名称
  10. /// </summary>
  11. public static class DialogNames
  12. {
  13. /// <summary>
  14. /// 文档解密弹窗 需要传参PDFDocument对象
  15. /// </summary>
  16. public static string VerifyPassWordDialog = "PassWordDialog";
  17. /// <summary>
  18. /// 全屏模式弹窗
  19. /// </summary>
  20. public static string FullScreenDialog = "FullScreenDialog";
  21. /// <summary>
  22. /// 解压缩弹窗
  23. /// </summary>
  24. public static string CompressDialog = "CompressDialog";
  25. /// <summary>
  26. /// 解压缩弹窗
  27. /// </summary>
  28. public static string SetPasswordDialog = "SetPasswordDialog";
  29. /// <summary>
  30. /// 解压缩弹窗
  31. /// </summary>
  32. public static string CheckPasswordDialog = "CheckPasswordDialog";
  33. /// <summary>
  34. /// 解压缩弹窗
  35. /// </summary>
  36. public static string CancelPasswordDialog = "CancelPasswordDialog";
  37. }
  38. }