DialogNames.cs 587 B

123456789101112131415161718192021222324
  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. }
  22. }